[
  {
    "path": ".adr-dir",
    "content": "docs/source/design\n"
  },
  {
    "path": ".codespellignore",
    "content": "filetest"
  },
  {
    "path": ".gitattributes",
    "content": "tests/cassettes/**/*.yaml linguist-generated=true\n"
  },
  {
    "path": ".github/dependabot.yml",
    "content": "version: 2\nupdates:\n  - package-ecosystem: github-actions\n    directory: \"/\"\n    schedule:\n      interval: weekly\n  - package-ecosystem: pip\n    directory: \"/.github/workflows\"\n    schedule:\n      interval: weekly\n  - package-ecosystem: pip\n    directory: \".\"\n    schedule:\n      interval: daily\n    versioning-strategy: increase-if-necessary\n"
  },
  {
    "path": ".github/pull_request_template.md",
    "content": "**Related Issue(s):** \n\n- #\n\n\n**Description:**\n\n\n**PR Checklist:**\n\n- [ ] Code is formatted\n- [ ] Tests pass\n- [ ] Changes are added to CHANGELOG.md\n"
  },
  {
    "path": ".github/workflows/continuous-integration.yml",
    "content": "name: CI\n\non:\n  push:\n    branches:\n      - main\n  pull_request:\n\nconcurrency:\n  group: ${{ github.ref }}\n  cancel-in-progress: true\n\njobs:\n  build:\n    name: build\n    runs-on: ${{ matrix.os }}\n    strategy:\n      matrix:\n        python-version:\n          - \"3.10\"\n          - \"3.11\"\n          - \"3.12\"\n        os:\n          - ubuntu-latest\n          - windows-latest\n          - macos-latest\n    steps:\n      - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6\n      - uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0\n        with:\n          python-version: ${{ matrix.python-version }}\n      - name: Sync\n        run: uv sync\n      - name: Run pre-commit\n        run: uv run pre-commit run --all-files\n      - name: Run pytest\n        run: uv run pytest -Werror -s --block-network --cov pystac_client --cov-report term-missing\n      - name: Run coverage\n        run: uv run coverage xml\n      - uses: codecov/codecov-action@57e3a136b779b570ffcdbf80b3bdc90e7fab3de2 # v6\n        with:\n          token: ${{ secrets.CODECOV_TOKEN }}\n          files: ./coverage.xml\n          fail_ci_if_error: false\n\n  min-versions:\n    name: min-versions\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6\n      - uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0\n        with:\n          activate-environment: true\n          python-version: \"3.10\"\n      - name: Install with min requirements\n        run: uv sync --no-dev --resolution=lowest-direct\n      - name: Run smoke test\n        run: stac-client search https://landsatlook.usgs.gov/stac-server -c landsat-c2l2-sr --max-items 1\n\n  pre-release:\n    name: pre-release\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6\n      - uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0\n      - name: Sync\n        run: uv sync\n      - name: Install any pre-releases of pystac\n        run: uv pip install -U --pre pystac\n      - name: Run pytest\n        run: uv run pytest -Werror -s --block-network\n\n  upstream:\n    name: upstream\n    runs-on: ubuntu-latest\n    if: github.event_name != 'pull_request'\n    steps:\n      - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6\n      - uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0\n      - name: Sync\n        run: uv sync\n      - name: Install pystac from main\n        run: uv pip install --force-reinstall git+https://github.com/stac-utils/pystac.git\n      - name: Run pytest\n        run: uv run pytest -Werror -s --block-network\n\n  docs:\n    name: docs\n    runs-on: ubuntu-latest\n    defaults:\n      run:\n        shell: bash -el {0}\n    steps:\n      - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6\n      - uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0\n      - name: Install pandoc\n        run: sudo apt-get install -y pandoc\n      - name: Sync\n        run: uv sync --group docs\n      - name: Build docs\n        run: ./scripts/build-docs\n"
  },
  {
    "path": ".github/workflows/release.yml",
    "content": "name: Release\n\non:\n  push:\n    tags:\n      - \"*\"\n\njobs:\n  release:\n    name: release\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6\n      - name: Set up Python 3.11\n        uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6\n        with:\n          python-version: \"3.11\"\n      - name: Install release dependencies\n        run: |\n          python -m pip install --upgrade pip\n          pip install build twine\n      - name: Build and publish package\n        env:\n          TWINE_USERNAME: ${{ secrets.PYPI_STACUTILS_USERNAME }}\n          TWINE_PASSWORD: ${{ secrets.PYPI_STACUTILS_PASSWORD }}\n        run: |\n          python -m build\n          twine upload dist/*\n"
  },
  {
    "path": ".gitignore",
    "content": ".python-version\n**/*.private*\n\n# Ignore everything JetBrains\n.idea\n\n# Created by .ignore support plugin (hsz.mobi)\n### VisualStudio template\n## Ignore Visual Studio temporary files, build results, and\n## files generated by popular Visual Studio add-ons.\n##\n## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore\n\n# User-specific files\n*.rsuser\n*.suo\n*.user\n*.userosscache\n*.sln.docstates\n\n# User-specific files (MonoDevelop/Xamarin Studio)\n*.userprefs\n\n# Mono auto generated files\nmono_crash.*\n\n# Build results\n[Dd]ebug/\n[Dd]ebugPublic/\n[Rr]elease/\n[Rr]eleases/\nx64/\nx86/\n[Ww][Ii][Nn]32/\n[Aa][Rr][Mm]/\n[Aa][Rr][Mm]64/\nbld/\n[Bb]in/\n[Oo]bj/\n[Ll]og/\n[Ll]ogs/\n\n# Visual Studio 2015/2017 cache/options directory\n.vs/\n# Uncomment if you have tasks that create the project's static files in wwwroot\n#wwwroot/\n\n# Visual Studio 2017 auto generated files\nGenerated\\ Files/\n\n# MSTest test Results\n[Tt]est[Rr]esult*/\n[Bb]uild[Ll]og.*\n\n# NUnit\n*.VisualState.xml\nTestResult.xml\nnunit-*.xml\n\n# Build Results of an ATL Project\n[Dd]ebugPS/\n[Rr]eleasePS/\ndlldata.c\n\n# Benchmark Results\nBenchmarkDotNet.Artifacts/\n\n# .NET Core\nproject.lock.json\nproject.fragment.lock.json\nartifacts/\n\n# ASP.NET Scaffolding\nScaffoldingReadMe.txt\n\n# StyleCop\nStyleCopReport.xml\n\n# Files built by Visual Studio\n*_i.c\n*_p.c\n*_h.h\n*.ilk\n*.meta\n*.obj\n*.iobj\n*.pch\n*.pdb\n*.ipdb\n*.pgc\n*.pgd\n*.rsp\n*.sbr\n*.tlb\n*.tli\n*.tlh\n*.tmp\n*.tmp_proj\n*_wpftmp.csproj\n*.log\n*.vspscc\n*.vssscc\n.builds\n*.pidb\n*.svclog\n*.scc\n\n# Chutzpah Test files\n_Chutzpah*\n\n# Visual C++ cache files\nipch/\n*.aps\n*.ncb\n*.opendb\n*.opensdf\n*.sdf\n*.cachefile\n*.VC.db\n*.VC.VC.opendb\n\n# Visual Studio profiler\n*.psess\n*.vsp\n*.vspx\n*.sap\n\n# Visual Studio Trace Files\n*.e2e\n\n# TFS 2012 Local Workspace\n$tf/\n\n# Guidance Automation Toolkit\n*.gpState\n\n# ReSharper is a .NET coding add-in\n_ReSharper*/\n*.[Rr]e[Ss]harper\n*.DotSettings.user\n\n# TeamCity is a build add-in\n_TeamCity*\n\n# DotCover is a Code Coverage Tool\n*.dotCover\n\n# AxoCover is a Code Coverage Tool\n.axoCover/*\n!.axoCover/settings.json\n\n# Coverlet is a free, cross platform Code Coverage Tool\ncoverage*.json\ncoverage*.xml\ncoverage*.info\n\n# Visual Studio code coverage results\n*.coverage\n*.coveragexml\n\n# NCrunch\n_NCrunch_*\n.*crunch*.local.xml\nnCrunchTemp_*\n\n# MightyMoose\n*.mm.*\nAutoTest.Net/\n\n# Web workbench (sass)\n.sass-cache/\n\n# Installshield output folder\n[Ee]xpress/\n\n# DocProject is a documentation generator add-in\nDocProject/buildhelp/\nDocProject/Help/*.HxT\nDocProject/Help/*.HxC\nDocProject/Help/*.hhc\nDocProject/Help/*.hhk\nDocProject/Help/*.hhp\nDocProject/Help/Html2\nDocProject/Help/html\n\n# Click-Once directory\npublish/\n\n# Publish Web Output\n*.[Pp]ublish.xml\n*.azurePubxml\n# Note: Comment the next line if you want to checkin your web deploy settings,\n# but database connection strings (with potential passwords) will be unencrypted\n*.pubxml\n*.publishproj\n\n# Microsoft Azure Web App publish settings. Comment the next line if you want to\n# checkin your Azure Web App publish settings, but sensitive information contained\n# in these scripts will be unencrypted\nPublishScripts/\n\n# NuGet Packages\n*.nupkg\n# NuGet Symbol Packages\n*.snupkg\n# The packages folder can be ignored because of Package Restore\n**/[Pp]ackages/*\n# except build/, which is used as an MSBuild target.\n!**/[Pp]ackages/build/\n# Uncomment if necessary however generally it will be regenerated when needed\n#!**/[Pp]ackages/repositories.config\n# NuGet v3's project.json files produces more ignorable files\n*.nuget.props\n*.nuget.targets\n\n# Microsoft Azure Build Output\ncsx/\n*.build.csdef\n\n# Microsoft Azure Emulator\necf/\nrcf/\n\n# Windows Store app package directories and files\nAppPackages/\nBundleArtifacts/\nPackage.StoreAssociation.xml\n_pkginfo.txt\n*.appx\n*.appxbundle\n*.appxupload\n\n# Visual Studio cache files\n# files ending in .cache can be ignored\n*.[Cc]ache\n# but keep track of directories ending in .cache\n!?*.[Cc]ache/\n\n# Others\nClientBin/\n~$*\n*~\n*.dbmdl\n*.dbproj.schemaview\n*.jfm\n*.pfx\n*.publishsettings\norleans.codegen.cs\n\n# Including strong name files can present a security risk\n# (https://github.com/github/gitignore/pull/2483#issue-259490424)\n#*.snk\n\n# Since there are multiple workflows, uncomment next line to ignore bower_components\n# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)\n#bower_components/\n\n# RIA/Silverlight projects\nGenerated_Code/\n\n# Backup & report files from converting an old project file\n# to a newer Visual Studio version. Backup files are not needed,\n# because we have git ;-)\n_UpgradeReport_Files/\nBackup*/\nUpgradeLog*.XML\nUpgradeLog*.htm\nServiceFabricBackup/\n*.rptproj.bak\n\n# SQL Server files\n*.mdf\n*.ldf\n*.ndf\n\n# Business Intelligence projects\n*.rdl.data\n*.bim.layout\n*.bim_*.settings\n*.rptproj.rsuser\n*- [Bb]ackup.rdl\n*- [Bb]ackup ([0-9]).rdl\n*- [Bb]ackup ([0-9][0-9]).rdl\n\n# Microsoft Fakes\nFakesAssemblies/\n\n# GhostDoc plugin setting file\n*.GhostDoc.xml\n\n# Node.js Tools for Visual Studio\n.ntvs_analysis.dat\nnode_modules/\n\n# Visual Studio 6 build log\n*.plg\n\n# Visual Studio 6 workspace options file\n*.opt\n\n# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)\n*.vbw\n\n# Visual Studio LightSwitch build output\n**/*.HTMLClient/GeneratedArtifacts\n**/*.DesktopClient/GeneratedArtifacts\n**/*.DesktopClient/ModelManifest.xml\n**/*.Server/GeneratedArtifacts\n**/*.Server/ModelManifest.xml\n_Pvt_Extensions\n\n# Paket dependency manager\n.paket/paket.exe\npaket-files/\n\n# FAKE - F# Make\n.fake/\n\n# CodeRush personal settings\n.cr/personal\n\n# Python Tools for Visual Studio (PTVS)\n__pycache__/\n*.pyc\n\n# Cake - Uncomment if you are using it\n# tools/**\n# !tools/packages.config\n\n# Tabs Studio\n*.tss\n\n# Telerik's JustMock configuration file\n*.jmconfig\n\n# BizTalk build output\n*.btp.cs\n*.btm.cs\n*.odx.cs\n*.xsd.cs\n\n# OpenCover UI analysis results\nOpenCover/\n\n# Azure Stream Analytics local run output\nASALocalRun/\n\n# MSBuild Binary and Structured Log\n*.binlog\n\n# NVidia Nsight GPU debugger configuration file\n*.nvuser\n\n# MFractors (Xamarin productivity tool) working folder\n.mfractor/\n\n# Local History for Visual Studio\n.localhistory/\n\n# BeatPulse healthcheck temp database\nhealthchecksdb\n\n# Backup folder for Package Reference Convert tool in Visual Studio 2017\nMigrationBackup/\n\n# Ionide (cross platform F# VS Code tools) working folder\n.ionide/\n\n# Fody - auto-generated XML schema\nFodyWeavers.xsd\n\n### macOS template\n# General\n.DS_Store\n.AppleDouble\n.LSOverride\n\n# Icon must end with two \\r\nIcon\n\n# Thumbnails\n._*\n\n# Files that might appear in the root of a volume\n.DocumentRevisions-V100\n.fseventsd\n.Spotlight-V100\n.TemporaryItems\n.Trashes\n.VolumeIcon.icns\n.com.apple.timemachine.donotpresent\n\n# Directories potentially created on remote AFP share\n.AppleDB\n.AppleDesktop\nNetwork Trash Folder\nTemporary Items\n.apdisk\n\n### JetBrains template\n# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider\n# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839\n\n\n# CMake\ncmake-build-*/\n\n# File-based project format\n*.iws\n\n# IntelliJ\nout/\n\n# JIRA plugin\natlassian-ide-plugin.xml\n\n# Crashlytics plugin (for Android Studio and IntelliJ)\ncom_crashlytics_export_strings.xml\ncrashlytics.properties\ncrashlytics-build.properties\nfabric.properties\n\n### VirtualEnv template\n# Virtualenv\n# http://iamzed.com/2009/05/07/a-primer-on-virtualenv/\n.Python\n[Bb]in\n[Ii]nclude\n[Ll]ib\n[Ll]ib64\n[Ll]ocal\npyvenv.cfg\n.venv\npip-selfcheck.json\n\n### JupyterNotebooks template\n# gitignore template for Jupyter Notebooks\n# website: http://jupyter.org/\n\n.ipynb_checkpoints\n*/.ipynb_checkpoints/*\n\n# IPython\nprofile_default/\nipython_config.py\n\n# Remove previous ipynb_checkpoints\n#   git rm -r .ipynb_checkpoints/\n\n### Python template\n# Byte-compiled / optimized / DLL files\n*.py[cod]\n*$py.class\n\n# C extensions\n*.so\n\n# Distribution / packaging\nbuild/\ndevelop-eggs/\ndist/\ndownloads/\neggs/\n.eggs/\nlib/\nlib64/\nparts/\nsdist/\nvar/\nwheels/\nshare/python-wheels/\n*.egg-info/\n.installed.cfg\n*.egg\nMANIFEST\n\n# PyInstaller\n#  Usually these files are written by a python script from a template\n#  before PyInstaller builds the exe, so as to inject date/other infos into it.\n*.manifest\n*.spec\n\n# Installer logs\npip-log.txt\npip-delete-this-directory.txt\n\n# Unit test / coverage reports\nhtmlcov/\n.tox/\n.nox/\n.coverage\n.coverage.*\n.cache\nnosetests.xml\ncoverage.xml\n*.cover\n*.py,cover\n.hypothesis/\n.pytest_cache/\ncover/\n\n# Translations\n*.mo\n*.pot\n\n# Django stuff:\nlocal_settings.py\ndb.sqlite3\ndb.sqlite3-journal\n\n# Flask stuff:\ninstance/\n.webassets-cache\n\n# Scrapy stuff:\n.scrapy\n\n# Sphinx documentation\ndocs/_build/\n\n# PyBuilder\n.pybuilder/\ntarget/\n\n# Jupyter Notebook\n\n# IPython\n\n# pyenv\n#   For a library or package, you might want to ignore these files since the code is\n#   intended to run in multiple environments; otherwise, check them in:\n# .python-version\n\n# pipenv\n#   According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.\n#   However, in case of collaboration, if having platform-specific dependencies or dependencies\n#   having no cross-platform support, pipenv may install dependencies that don't work, or not\n#   install all needed dependencies.\n#Pipfile.lock\n\n# PEP 582; used by e.g. github.com/David-OConnor/pyflow\n__pypackages__/\n\n# Celery stuff\ncelerybeat-schedule\ncelerybeat.pid\n\n# SageMath parsed files\n*.sage.py\n\n# Environments\n.env\nenv/\nvenv/\nENV/\nenv.bak/\nvenv.bak/\n\n# Spyder project settings\n.spyderproject\n.spyproject\n\n# Rope project settings\n.ropeproject\n\n# mkdocs documentation\n/site\n\n# mypy\n.mypy_cache/\n.dmypy.json\ndmypy.json\n\n# Pyre type checker\n.pyre/\n\n# pytype static type analyzer\n.pytype/\n\n# Cython debug symbols\ncython_debug/\n\n### Linux template\n\n# temporary files which can be created if a process still has a handle open of a deleted file\n.fuse_hidden*\n\n# KDE directory preferences\n.directory\n\n# Linux trash folder which might appear on any partition or disk\n.Trash-*\n\n# .nfs files are created when an open file is removed but is still being accessed\n.nfs*\n\n### Windows template\n# Windows thumbnail cache files\nThumbs.db\nThumbs.db:encryptable\nehthumbs.db\nehthumbs_vista.db\n\n# Dump file\n*.stackdump\n\n# Folder config file\n[Dd]esktop.ini\n\n# Recycle Bin used on file shares\n$RECYCLE.BIN/\n\n# Windows Installer files\n*.cab\n*.msi\n*.msix\n*.msm\n*.msp\n\n# Windows shortcuts\n*.lnk\n"
  },
  {
    "path": ".pre-commit-config.yaml",
    "content": "# Configuration file for pre-commit (https://pre-commit.com/).\n# Please run `pre-commit run --all-files` when adding or changing entries.\n\nrepos:\n  - repo: https://github.com/charliermarsh/ruff-pre-commit\n    rev: \"v0.9.6\"\n    hooks:\n      - id: ruff\n        args: [--fix, --exit-non-zero-on-fix]\n      - id: ruff-format\n  - repo: https://github.com/codespell-project/codespell\n    rev: v2.4.1\n    hooks:\n      - id: codespell\n        args: [--ignore-words=.codespellignore]\n        types_or: [jupyter, markdown, python, shell]\n  - repo: https://github.com/PyCQA/doc8\n    rev: v1.1.2\n    hooks:\n      - id: doc8\n        args: [--ignore=D004]\n        additional_dependencies:\n          - importlib_metadata < 5; python_version == \"3.7\"\n  - repo: https://github.com/pre-commit/mirrors-mypy\n    rev: v1.15.0\n    hooks:\n      - id: mypy\n        files: \".*\\\\.py$\"\n        additional_dependencies:\n          - pystac\n          - pytest-vcr\n          - types-requests\n          - types-python-dateutil\n"
  },
  {
    "path": ".readthedocs.yml",
    "content": "version: 2\n\nbuild:\n  os: ubuntu-24.04\n  tools:\n    python: \"3.12\"\n  jobs:\n    pre_create_environment:\n      - asdf plugin add uv\n      - asdf install uv latest\n      - asdf global uv latest\n    create_environment:\n      - uv venv \"${READTHEDOCS_VIRTUALENV_PATH}\"\n    install:\n      - UV_PROJECT_ENVIRONMENT=\"${READTHEDOCS_VIRTUALENV_PATH}\" uv sync --group docs --link-mode=copy\n\nsphinx:\n  configuration: docs/conf.py\n  fail_on_warning: false\n\nformats:\n  - pdf\n  - htmlzip\n"
  },
  {
    "path": "CHANGELOG.md",
    "content": "# Changelog\n\nAll notable changes to this project will be documented in this file.\n\nThe format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)\nand this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).\n\n## [Unreleased]\n\n### Added\n\n- Add comprehensive test coverage for warning context managers (`ignore()` and `strict()`) ([#832](https://github.com/stac-utils/pystac-client/pull/832))\n- Moved -Werror to pyproject.toml ([#841](https://github.com/stac-utils/pystac-client/pull/841))\n\n### Changed\n\n- Make `get_collection` raise if `collection_id` is empty ([#809](https://github.com/stac-utils/pystac-client/pull/809))\n- Update `get_collection` to return None if no collection exists ([#861](https://github.com/stac-utils/pystac-client/pull/861))\n\n### Added\n\n- Add comprehensive test coverage for ConformanceClasses enum ([#834](https://github.com/stac-utils/pystac-client/pull/834))\n\n### Documentation\n\n- Update contributing guide to consistently use `uv` workflow ([#822](https://github.com/stac-utils/pystac-client/pull/822))\n- Fix format script to use `ruff-format` instead of deprecated `black` hook ([#822](https://github.com/stac-utils/pystac-client/pull/822))\n- Add \"How to...\" section to usage documentation with latest datetime search across multiple collections example ([#823](https://github.com/stac-utils/pystac-client/pull/823))\n\n\n## [v0.9.0] - 2025-07-17\n\n### Added\n\n- Coerce cql2 style to match HTTP method using `cql2` library ([#804](https://github.com/stac-utils/pystac-client/pull/804))\n\n### Fixed\n\n- Fix usage documentation of `ItemSearch` ([#790](https://github.com/stac-utils/pystac-client/pull/790))\n- Fix fields argument to CLI  ([#797](https://github.com/stac-utils/pystac-client/pull/797))\n- Clarify recursive behaviour of the `get_items` method in the method docstring ([#800](https://github.com/stac-utils/pystac-client/pull/800))\n\n## [v0.8.6] - 2025-02-11\n\n### Changed\n\n- Use [uv](https://docs.astral.sh/uv/) for development ([#784](https://github.com/stac-utils/pystac-client/pull/784))\n- Updated to Python 3.10 syntax with **pyupgrade** ([#783](https://github.com/stac-utils/pystac-client/pull/783/))\n\n### Fixed\n\n- `Client.get_collection` for static catalogs ([#782](https://github.com/stac-utils/pystac-client/pull/782))\n- Permissive collection reading ([#787](https://github.com/stac-utils/pystac-client/pull/787))\n\n## [v0.8.5] - 2024-10-23\n\n### Fixed\n\n- Use urljoin to build hrefs ([#746](https://github.com/stac-utils/pystac-client/pull/746))\n\n## [v0.8.4] - 2024-10-16\n\n### Added\n\n- Support for collection search via `CollectionSearch` class and associated client methods ([#735](https://github.com/stac-utils/pystac-client/pull/735))\n\n### Removed\n\n- Python 3.9 support ([#724](https://github.com/stac-utils/pystac-client/pull/724))\n\n## [v0.8.3] - 2024-07-01\n\n### Fixed\n\n- Actually set `timeout` when initializing `StacApiIO` ([#709](https://github.com/stac-utils/pystac-client/pull/709))\n- Set `_stac_io` on `CollectionClient` when reading ([#709](https://github.com/stac-utils/pystac-client/pull/709))\n\n## [v0.8.2] - 2024-05-30\n\n### Added\n\n- Support for \"Feature\" type `intersects` dictionaries ([#696](https://github.com/stac-utils/pystac-client/pull/696))\n\n## [v0.8.1] - 2024-05-23\n\n### Fixed\n\n- Use singular `include` and `exclude` Field extension key names ([#690](https://github.com/stac-utils/pystac-client/pull/690))\n\n## [v0.8.0] - 2024-05-17\n\n### Fixed\n\n- Update `requires-python` in metadata to require >= 3.9 ([#684](https://github.com/stac-utils/pystac-client/pull/684))\n- Interpret naive datetimes as UTC ([#686](https://github.com/stac-utils/pystac-client/pull/686))\n\n## [v0.7.7] - 2024-04-19\n\n### Changed\n\n- Updated to **pystac** v1.10.0 ([#661](https://github.com/stac-utils/pystac-client/pull/661))\n- Use [uv](https://github.com/astral-sh/uv) for CI ([#663](https://github.com/stac-utils/pystac-client/pull/663))\n- use `APILayoutStrategy` as fallback strategy ([#666](https://github.com/stac-utils/pystac-client/pull/666))\n- Updated grammar in README ([#676](https://github.com/stac-utils/pystac-client/pull/676))\n\n### Fixed\n\n- Respect the `REQUESTS_CA_BUNDLE` and `CURL_CA_BUNDLE` environment variables when sending requests ([#669](https://github.com/stac-utils/pystac-client/pull/669))\n\n## [v0.7.6] - 2024-02-28\n\n### Fixed\n\n- Recursion error in `get_items` ([#608](https://github.com/stac-utils/pystac-client/pull/608))\n- Fixes inconsistent behavior in `CollectionClient.get_items` when Item IDs are supplied ([#639](https://github.com/stac-utils/pystac-client/pull/639))\n- Logic determining if `context.matched` in `ItemSearch.matched` response ([#646](https://github.com/stac-utils/pystac-client/pull/646))\n\n### Removed\n\n- Passing `-q` to the CLI rather than `--query` ([#614](https://github.com/stac-utils/pystac-client/pull/614))\n\n## [v0.7.5] - 2023-09-05\n\n### Fixed\n\n- `--matched` flag in CLI ([#588](https://github.com/stac-utils/pystac-client/pull/588))\n\n## [v0.7.4] - 2023-09-05\n\n### Changed\n\n- Don't provide a `limit` by default, trust the server to know its limits ([#584](https://github.com/stac-utils/pystac-client/pull/584))\n\n## [v0.7.3] - 2023-08-21\n\n### Changed\n\n- Raise more informative errors from CLI ([#554](https://github.com/stac-utils/pystac-client/pull/554))\n- Add `Retry` type hint to `StacApiIO` ([#577](https://github.com/stac-utils/pystac-client/pull/577))\n\n### Fixed\n\n- 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))\n\n## [v0.7.2] - 2023-06-23\n\n### Fixed\n\n- Remove troublesome assertion ([#549](https://github.com/stac-utils/pystac-client/pull/549))\n\n## [v0.7.1] - 2023-06-13\n\n### Fixed\n\n- Remove unnecessary `typing_extensions` import ([#541](https://github.com/stac-utils/pystac-client/pull/541))\n\n## [v0.7.0] - 2023-06-12\n\n### Added\n\n- 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))\n- Support for fetching catalog queryables ([#477](https://github.com/stac-utils/pystac-client/pull/477))\n- PySTAC Client specific warnings ([#480](https://github.com/stac-utils/pystac-client/pull/480))\n- Support for fetching and merging a selection of queryables ([#511](https://github.com/stac-utils/pystac-client/pull/511))\n- Better error messages for the CLI ([#531](https://github.com/stac-utils/pystac-client/pull/531))\n- `Modifiable` to our public API ([#534](https://github.com/stac-utils/pystac-client/pull/534))\n- `max_retries` parameter to `StacApiIO` ([#532](https://github.com/stac-utils/pystac-client/pull/532))\n\n### Changed\n\n- Switched to Ruff from isort/flake8 ([#457](https://github.com/stac-utils/pystac-client/pull/457))\n- 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))\n- Consolidate contributing docs into one place ([#478](https://github.com/stac-utils/pystac-client/issues/478))\n- Use `pyproject.toml` instead of `setup.py` ([#501](https://github.com/stac-utils/pystac-client/pull/501))\n- Enable Ruff import sorting ([#518](https://github.com/stac-utils/pystac-client/pull/518))\n\n### Fixed\n\n- `query` parameter in GET requests ([#362](https://github.com/stac-utils/pystac-client/pull/362))\n- Double encoding of `intersects` parameter in GET requests ([#362](https://github.com/stac-utils/pystac-client/pull/362))\n- Fix geometry instantiation in item-search-intersects.ipynb ([#484](https://github.com/stac-utils/pystac-client/pull/484))\n- Three tests that were false positives due to out-of-date cassettes ([#491](https://github.com/stac-utils/pystac-client/pull/491))\n- Max items checks when paging ([#492](https://github.com/stac-utils/pystac-client/pull/492))\n- `ItemSearch.url_with_parameters` no longer unquotes the url ([#530](https://github.com/stac-utils/pystac-client/pull/530))\n\n### Removed\n\n- `pystac_client.conformance.CONFORMANCE_URIS` dictionary ([#480](https://github.com/stac-utils/pystac-client/pull/480))\n\n## [v0.6.1] - 2023-03-14\n\n### Changed\n\n- Bumped PySTAC dependency to >= 1.7.0 ([#449](https://github.com/stac-utils/pystac-client/pull/449))\n\n### Fixed\n\n- Fix parse fail when header has multiple '=' characters ([#440](https://github.com/stac-utils/pystac-client/pull/440))\n- `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)))\n\n## [v0.6.0] - 2023-01-27\n\n### Added\n\n- Python 3.11 support ([#347](https://github.com/stac-utils/pystac-client/pull/347))\n- `request_modifier` to `StacApiIO` to allow for additional authentication mechanisms (e.g. AWS SigV4) ([#372](https://github.com/stac-utils/pystac-client/pull/372))\n- _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))\n- CI checks for Windows and MacOS ([#378](https://github.com/stac-utils/pystac-client/pull/378))\n- 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))\n\n### Fixed\n\n- Stop iteration on an empty page ([#338](https://github.com/stac-utils/pystac-client/pull/338))\n- Some mishandled cases for datetime intervals ([#363](https://github.com/stac-utils/pystac-client/pull/363))\n- 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))\n- Parse datetimes more strictly ([#364](https://github.com/stac-utils/pystac-client/pull/364))\n\n### Removed\n\n- Python 3.7 support ([#347](https://github.com/stac-utils/pystac-client/pull/347))\n\n## [v0.5.1] - 2022-09-19\n\n### Added\n\n- Added `ItemSearch.url_with_parameters` to get a formatted search url ([#304](https://github.com/stac-utils/pystac-client/issues/304))\n\n### Fixed\n\n- Fix variable name in quickstart example ([#316](https://github.com/stac-utils/pystac-client/pull/316))\n- `StacApiIO.write_text_to_href` ([#312](https://github.com/stac-utils/pystac-client/pull/312))\n- Removed mention of STAC_URL in `Client.open` docstring ([#317](https://github.com/stac-utils/pystac-client/pull/317))\n\n## [v0.5.0] - 2022-08-19\n\n### Added\n\n- Added a new keyword `modifier` to various constructors like `Client.open()` ([#259](https://github.com/stac-utils/pystac-client/issues/259))\n\n### Fixed\n\n- 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))\n- Added `ItemSearch.pages`, `ItemSearch.pages_as_dicts`, `ItemSearch.item_collection`, and `ItemSearch.item_collection_as_dict`\n  as replacements for various deprecated methods ([#237](https://github.com/stac-utils/pystac-client/issues/237))\n- 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))\n\n### Deprecated\n\n- `ItemSearch.item_collections` has been deprecated in favor of `ItemSearch.pages`. ([#237](https://github.com/stac-utils/pystac-client/issues/237))\n\n## [v0.4.0] - 2022-06-08\n\n### Added\n\n- Significantly improved type hints\n- lru_cache to several methods ([#167](https://github.com/stac-utils/pystac-client/pull/167))\n- Direct item GET via ogcapi-features, if conformant ([#166](https://github.com/stac-utils/pystac-client/pull/166))\n- `py.typed` for downstream type checking ([#163](https://github.com/stac-utils/pystac-client/pull/163))\n- 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))\n\n### Changed\n\n- Item Search no longer defaults to returning an unlimited number of result Items from\n  its \"items\" methods. The `max_items` parameter now defaults to 100 instead of None.\n  Since the `limit` parameter also defaults to 100, in an ideal situation, only one request\n  will be made to the server to retrieve all 100 items. Both of these parameters can be\n  carefully adjusted upwards to align with the server's capabilities and the expected\n  number of search results. ([#208](https://github.com/stac-utils/pystac-client/pull/208))\n- Better error message when trying to search a non-item-search-conforming catalog ([#164](https://github.com/stac-utils/pystac-client/pull/164))\n- Search `filter-lang` defaults to `cql2-json` instead of `cql-json` ([#169](https://github.com/stac-utils/pystac-client/pull/169))\n- 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))\n- 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))\n- Better error message when trying to open a Collection with `Client.open` ([#222](https://github.com/stac-utils/pystac-client/pull/222))\n\n### Deprecated\n\n- Item Search methods `get_items()` and `get_item_collections()` have been renamed to\n  `items()` and `item_collections()`. The original methods are now deprecated\n  and may be removed as early as v0.5.0. ([#206](https://github.com/stac-utils/pystac-client/pull/206))\n- Item Search methods `get_all_items()` and `get_all_items_as_dict()` are now deprecated,\n  and may be removed as early as v0.5.0.\n  These have been deprecated because they have the potential to perform a large number\n  of requests to the server and instantiate a large number of objects in memory.\n  To a user, this is only visible as a large delay in the method call and/or the\n  exhaustion of all available memory. The iterator methods `items()` or\n  `item_collections()` should be used instead. ([#206](https://github.com/stac-utils/pystac-client/pull/206))\n- 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))\n\n## Removed\n\n- Client parameter `require_geojson_link` has been removed. ([#165](https://github.com/stac-utils/pystac-client/pull/165))\n\n### Fixed\n\n- Search query parameter now has correct typing and handles Query Extension JSON format. ([#220](https://github.com/stac-utils/pystac-client/pull/220))\n- 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))\n- 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))\n- Use pytest configuration to skip benchmarks by default (instead of a `skip` mark). ([#168](https://github.com/stac-utils/pystac-client/pull/168))\n- Methods retrieving collections incorrectly checked the existence of the OAFeat OpenAPI 3.0 conformance class\n  (<http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30>) instead of the `STAC API - Collections`\n  (<https://api.stacspec.org/v1.0.0-beta.1/collections>) or `STAC API - Features`\n  (<https://api.stacspec.org/v1.0.0-beta.1/ogcapi-features>) conformance classes. ([#223](https://github.com/stac-utils/pystac-client/pull/223))\n\n## [v0.3.5] - 2022-05-26\n\n### Fixed\n\n- 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))\n\n## [v0.3.4] - 2022-05-18\n\n### Changed\n\n- 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))\n\n## [v0.3.3] - 2022-04-28\n\n### Added\n\n- 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))\n- 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))\n\n### Changed\n\n- Relaxed upper bound on PySTAC dependency ([#144](https://github.com/stac-utils/pystac-client/pull/144))\n- Bumped PySTAC dependency to >= 1.4.0 ([#147](https://github.com/stac-utils/pystac-client/pull/147))\n\n## [v0.3.2] - 2022-01-11\n\n### Added\n\n- `Client.search` accepts an optional `filter_lang` argument for `filter` requests ([#128](https://github.com/stac-utils/pystac-client/pull/128))\n- Added support for filtering the search endpoint using the `media_type` in `Client.open` ([#142](https://github.com/stac-utils/pystac-client/pull/142))\n\n### Fixed\n\n- Values from `parameters` and `headers` arguments to `Client.open` and `Client.from_file` are now also used in requests made from `CollectionClient` instances\n  fetched from the same API (([#126](https://github.com/stac-utils/pystac-client/pull/126)))\n- The tests folder is no longer installed as a package.\n\n## [v0.3.1] - 2021-11-17\n\n### Added\n\n- Adds `--block-network` option to all test commands to ensure no network requests are made during unit tests\n  ([#119](https://github.com/stac-utils/pystac-client/pull/119))\n- `parameters` argument to `StacApiIO`, `Client.open`, and `Client.from_file` to allow query string parameters to be passed to all requests\n  ([#118](https://github.com/stac-utils/pystac-client/pull/118))\n\n### Changed\n\n- Update min PySTAC version to 1.2\n- Default page size limit set to 100 rather than relying on the server default\n- Fetch single collection directly from endpoint in API rather than iterating through children [Issue #114](https://github.com/stac-utils/pystac-client/issues/114)\n\n### Fixed\n\n- `Client.get_collections` raised an exception when API did not publish `/collections` conformance class instead of falling back to using child links\n  ([#120](https://github.com/stac-utils/pystac-client/pull/120))\n\n## [v0.3.0] - 2021-09-28\n\n### Added\n\n- Jupyter Notebook tutorials\n- Basic CQL-JSON filtering ([#100](https://github.com/stac-utils/pystac-client/pull/100))\n\n### Changed\n\n- Improved performance when constructing `pystac.ItemCollection` objects.\n- Relax `requests` dependency ([#87](https://github.com/stac-utils/pystac-client/pull/87))\n- Use regular expressions for checking conformance classes ([#97](https://github.com/stac-utils/pystac-client/pull/97))\n- Reorganized documentation, updated all docs\n\n### Fixed\n\n- `ItemSearch` now correctly handles times without a timezone specifier ([#92](https://github.com/stac-utils/pystac-client/issues/92))\n- 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))\n- Documentation lints ([#108](https://github.com/stac-utils/pystac-client/pull/108))\n\n## [v0.2.0] - 2021-08-04\n\n### Added\n\n- `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))\n- New Search.get_pages() iterator function to retrieve pages as raw JSON, not as ItemCollections\n- `StacApiIO` class added, subclass from PySTAC `StacIO`. A `StacApiIO` instance is used for all IO for a Client instance, and all requests\n  are in a single HTTP session, handle pagination and respects conformance\n- `conformance.CONFORMANCE_CLASSES` dictionary added containing all STAC API Capabilities from stac-api-spec\n- `collections` subcommand to CLI, for saving all Collections in catalog as JSON\n- `Client.get_collections` overrides Catalog to use /collections endpoint if API conforms\n- `Client.get_collection(<collection_id>)` for getting specific collection\n- `Client.get_items` and `Client.get_all_items` override Catalog functions to use search endpoint instead of traversing catalog\n\n### Changed\n\n- Update to use PySTAC 1.1.0\n- IO changed to use PySTAC's new StacIO base class.\n- `Search.item_collections()` renamed to `Search.get_item_collections()`\n- `Search.item()` renamed to `Search.get_items()`\n- Conformance is checked by each individual function that requires a particular conformance\n- STAC API testing URLs changed to updated APIs\n- `ItemSearch.get_pages()` function moved to StacApiIO class for general use\n- Logging is now enabled in the CLI in all cases.\n  If data are being printed to stdout, logging goes to stderr.\n  ([#79](https://github.com/stac-utils/pystac-client/pull/79))\n- Improved logging for GET requests (prints encoded URL)\n\n### Removed\n\n- `get_pages` and `simple_stac_resolver` functions from `pystac_client.stac_io` (The new StacApiIO class understands `Link` objects)\n- `Client.search()` no longer accepts a `next_resolver` argument\n- pystac.extensions modules, which were based on PySTAC's previous extension implementation, replaced in 1.0.0\n- `stac_api_object.StacApiObjectMixin`, replaced with conformance checking in `StacApiIO`\n- PySTAC Collection objects can no longer be passed in as `collections` arguments to the `ItemSearch` class (just pass ids)\n- `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`\n- `Search.item_collections()`\n- `Search.items()`\n- STAC_URL environment variable in Client.open(). url parameter in Client is now required\n- STAC_URL environment variable in CLI. CLI now has a required positional argument for the URL\n\n### Fixed\n\n- Running `stac-client` with no arguments no longer raises a confusing exception ([#52](https://github.com/stac-utils/pystac-client/pull/52))\n- `Client.get_collections_list` ([#44](https://github.com/stac-utils/pystac-client/issues/44))\n- The regular expression used for datetime parsing ([#59](https://github.com/stac-utils/pystac-client/pull/59))\n- `Client.from_file` now works as expected, using `Client.open` is not required, although it will fetch STAC_URL from an envvar\n\n## [v0.1.1] - 2021-04-16\n\n### Added\n\n- `ItemSearch.items_as_collection` ([#37](https://github.com/stac-utils/pystac-client/pull/37))\n- Documentation [published on ReadTheDocs](https://pystac-client.readthedocs.io/en/latest/) ([#46](https://github.com/stac-utils/pystac-client/pull/46))\n\n### Changed\n\n- CLI: pass in headers as list of KEY=VALUE pairs\n\n### Fixed\n\n- Include headers in STAC_IO ([#38](https://github.com/stac-utils/pystac-client/pull/38))\n- README updated to reflect actual CLI behavior\n\n## [v0.1.0] - 2021-04-14\n\nInitial release.\n\n[Unreleased]: https://github.com/stac-utils/pystac-client/compare/v0.9.0...main\n[v0.9.0]: https://github.com/stac-utils/pystac-client/compare/v0.8.6...v0.9.0\n[v0.8.6]: https://github.com/stac-utils/pystac-client/compare/v0.8.5...v0.8.6\n[v0.8.5]: https://github.com/stac-utils/pystac-client/compare/v0.8.4...v0.8.5\n[v0.8.4]: https://github.com/stac-utils/pystac-client/compare/v0.8.3...v0.8.4\n[v0.8.3]: https://github.com/stac-utils/pystac-client/compare/v0.8.2...v0.8.3\n[v0.8.2]: https://github.com/stac-utils/pystac-client/compare/v0.8.1...v0.8.2\n[v0.8.1]: https://github.com/stac-utils/pystac-client/compare/v0.8.0...v0.8.1\n[v0.8.0]: https://github.com/stac-utils/pystac-client/compare/v0.7.7...v0.8.0\n[v0.7.7]: https://github.com/stac-utils/pystac-client/compare/v0.7.6...v0.7.7\n[v0.7.6]: https://github.com/stac-utils/pystac-client/compare/v0.7.5...v0.7.6\n[v0.7.5]: https://github.com/stac-utils/pystac-client/compare/v0.7.4...v0.7.5\n[v0.7.4]: https://github.com/stac-utils/pystac-client/compare/v0.7.3...v0.7.4\n[v0.7.3]: https://github.com/stac-utils/pystac-client/compare/v0.7.2...v0.7.3\n[v0.7.2]: https://github.com/stac-utils/pystac-client/compare/v0.7.1...v0.7.2\n[v0.7.1]: https://github.com/stac-utils/pystac-client/compare/v0.7.0...v0.7.1\n[v0.7.0]: https://github.com/stac-utils/pystac-client/compare/v0.6.1...v0.7.0\n[v0.6.1]: https://github.com/stac-utils/pystac-client/compare/v0.6.0...v0.6.1\n[v0.6.0]: https://github.com/stac-utils/pystac-client/compare/v0.5.1...v0.6.0\n[v0.5.1]: https://github.com/stac-utils/pystac-client/compare/v0.5.0...v0.5.1\n[v0.5.0]: https://github.com/stac-utils/pystac-client/compare/v0.4.0...v0.5.0\n[v0.4.0]: https://github.com/stac-utils/pystac-client/compare/v0.3.5...v0.4.0\n[v0.3.5]: https://github.com/stac-utils/pystac-client/compare/v0.3.4...v0.3.5\n[v0.3.4]: https://github.com/stac-utils/pystac-client/compare/v0.3.3...v0.3.4\n[v0.3.3]: https://github.com/stac-utils/pystac-client/compare/v0.3.2...v0.3.3\n[v0.3.2]: https://github.com/stac-utils/pystac-client/compare/v0.3.1...v0.3.2\n[v0.3.1]: https://github.com/stac-utils/pystac-client/compare/v0.3.0...v0.3.1\n[v0.3.0]: https://github.com/stac-utils/pystac-client/compare/v0.2.0...v0.3.0\n[v0.2.0]: https://github.com/stac-utils/pystac-client/compare/v0.1.1...v0.2.0\n[v0.1.1]: https://github.com/stac-utils/pystac-client/compare/v0.1.0...v0.1.1\n[v0.1.0]: https://github.com/stac-utils/pystac-client/tree/v0.1.0\n"
  },
  {
    "path": "LICENSE",
    "content": "Copyright 2021 Jon Duckworth\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n   http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n"
  },
  {
    "path": "MANIFEST.in",
    "content": "global-include *.typed\n"
  },
  {
    "path": "README.md",
    "content": "# pystac-client\n\n[![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)\n[![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)\n[![PyPI version](https://badge.fury.io/py/pystac-client.svg)](https://badge.fury.io/py/pystac-client)\n[![Documentation](https://readthedocs.org/projects/pystac-client/badge/?version=stable)](https://pystac-client.readthedocs.io)\n[![codecov](https://codecov.io/gh/stac-utils/pystac-client/branch/main/graph/badge.svg)](https://codecov.io/gh/stac-utils/pystac-client)\n\nA Python client for working with [STAC](https://stacspec.org/) APIs.\n\n## Installation\n\nPySTAC Client is published to PyPi as [pystac-client](https://pypi.org/project/pystac-client/).\n\nThe only direct Python dependencies of **pystac-client** are [PySTAC](https://pystac.readthedocs.io),\n[requests](https://docs.python-requests.org), and [dateutil](https://dateutil.readthedocs.io).\n\nTo install with pip, run:\n\n```shell\npython -m pip install pystac-client\n```\n\n## Documentation\n\nSee the [documentation page](https://pystac-client.readthedocs.io/en/latest/) for the latest docs.\n\n## Development\n\nSee the [contributing page](https://pystac-client.readthedocs.io/en/latest/contributing.html) for the latest development instructions.\n"
  },
  {
    "path": "RELEASING.md",
    "content": "# Releasing\n\n1. Determine the next version.\n   We follow [semantic versioning](https://semver.org/).\n2. Create a release branch named `release/vX.Y.Z`, where `X.Y.Z` is the next version.\n3. Update [version.py](pystac_client/version.py) with the new version.\n4. Update all cassettes: `pytest --record-mode rewrite`\n5. Update the pre-commit hook versions: `pre-commit autoupdate`\n6. Update [CHANGELOG.md](CHANGELOG.md).\n   1. Add a new header under \"Unreleased\" with the new version and the date, e.g. `## [vX.Y.Z] - YYYY-MM-DD`.\n   2. Audit the changelog section to ensure all changes are captured.\n   3. Add a link reference for the new version after the Unreleased link reference at the bottom of the file.\n      Follow the format from the previous version links.\n7. If necessary, update the versions table in [the documentation](docs/index.rst)\n8. (optional) Build the package locally and inspect its contents: `pip install build && python -m build`\n9. 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`).\n10. After pull request merge, create an annotated tag for your version, e.g. `git tag -a vX.Y.Z`.\n11. Push the tag.\n   This will trigger [the Github release workflow](.github/workflows/release.yml) and publish to PyPI.\n12. [Create a new release on Github](https://github.com/stac-utils/pystac-client/releases/new) pointing to the new tag.\n"
  },
  {
    "path": "docs/_static/custom.css",
    "content": ".no-sidebar {\n    display: none;\n}\n\n.card-text a {\n    font-weight: 600;\n    color: rgb(255, 26, 26);\n}\n\n.card-header p {\n    font-size: large;\n    font-weight: 600;\n}\n\n.navbar-brand img {\n    height: 50px;\n}\n\n.navbar-brand {\n    height: 75px;\n}\n"
  },
  {
    "path": "docs/api.rst",
    "content": "API Reference\n=============\n\nThis section is autogenerated from in-line code documentation. It is mostly useful as a\nreference for the various classes, methods, and other objects in the library, but is\nnot intended to function as a starting point for working with ``pystac_client``.\n\nClient\n------\n\nClient is the base PySTAC-Client that inherits from :class:`Catalog <pystac.Catalog>`.\nIn addition to the PySTAC functionality, Client allows opening of API URLs,\nunderstanding of conformance, and support for searching and paging through results.\n\n.. autoclass:: pystac_client.Client\n   :members:\n   :undoc-members:\n   :show-inheritance:\n\nCollection Client\n-----------------\n\nClient is the a PySTAC-Client that inherits from\n:class:`Collection <pystac.Collection>`. In addition to the PySTAC functionality,\nCollectionClient allows opening of API URLs, and iterating through items at a search\nendpoint, if supported.\n\n.. autoclass:: pystac_client.CollectionClient\n   :members:\n   :undoc-members:\n\nCollection Search\n-----------------\n\nThe `CollectionSearch` class represents a search of collections in a STAC API.\n\n.. autoclass:: pystac_client.CollectionSearch\n   :members:\n   :undoc-members:\n   :member-order: bysource\n\nItem Search\n-----------\n\nThe `ItemSearch` class represents a search of a STAC API.\n\n.. autoclass:: pystac_client.ItemSearch\n   :members:\n   :undoc-members:\n   :member-order: bysource\n\n\nSTAC API IO\n-----------\n\nThe StacApiIO class inherits from the :class:`Collection <pystac.DefaultStacIO>`\nclass and allows for reading over http, such as with REST APIs.\n\n.. autoclass:: pystac_client.stac_api_io.StacApiIO\n   :members:\n   :undoc-members:\n   :show-inheritance:\n\n\nConformance\n-----------\n\n.. automodule:: pystac_client.conformance\n    :members:\n    :undoc-members:\n    :show-inheritance:\n\n\nExceptions\n----------\n\n.. automodule:: pystac_client.exceptions\n    :members:\n    :undoc-members:\n    :show-inheritance:\n\nWarnings\n--------\n\n.. automodule:: pystac_client.warnings\n    :members:\n    :undoc-members:\n    :show-inheritance:\n"
  },
  {
    "path": "docs/conf.py",
    "content": "# Configuration file for the Sphinx documentation builder.\n#\n# This file only contains a selection of the most common options. For a full\n# list see the documentation:\n# https://www.sphinx-doc.org/en/master/usage/configuration.html\n\nimport re\nimport subprocess\nimport sys\nfrom pathlib import Path\n\n# -- Path setup --------------------------------------------------------------\n\n# If extensions (or modules to document with autodoc) are in another directory,\n# add these directories to sys.path here. If the directory is relative to the\n# documentation root, use os.path.abspath to make it absolute, like shown here.\n#\nsys.path.insert(0, str(Path(__file__).parent.parent.parent.resolve()))\nfrom pystac_client import __version__  # noqa: E402\n\ngit_branch = (\n    subprocess.check_output([\"git\", \"rev-parse\", \"--abbrev-ref\", \"HEAD\"])\n    .decode(\"utf-8\")\n    .strip()\n)\n\n# -- Project information -----------------------------------------------------\n\nproject = \"pystac-client\"\ncopyright = \"2021, Jon Duckworth\"\nauthor = \"Matthew Hanson, Jon Duckworth\"\ngithub_user = \"stac-utils\"\ngithub_repo = \"pystac-client\"\npackage_description = \"A Python client for the STAC and STAC-API specs\"\n\n# The full version, including alpha/beta/rc tags\nversion = re.fullmatch(r\"^(\\d+\\.\\d+\\.\\d).*$\", __version__).group(1)  # type: ignore\nrelease = __version__\n\n\n# -- General configuration ---------------------------------------------------\n\n# Add any Sphinx extension module names here, as strings. They can be\n# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom\n# ones.\nextensions = [\n    \"sphinx.ext.autodoc\",\n    \"sphinx.ext.viewcode\",\n    \"sphinx.ext.intersphinx\",\n    \"sphinx.ext.napoleon\",\n    \"sphinx.ext.extlinks\",\n    \"sphinxcontrib.fulltoc\",\n    \"nbsphinx\",\n    \"myst_parser\",\n]\n\nextlinks = {\n    \"tutorial\": (\n        \"https://github.com/stac-utils/pystac-client/tree/{}/docs/tutorials/%s\".format(\n            git_branch\n        ),\n        \"tutorial\",\n    )\n}\n\nnbsphinx_allow_errors = False\n\n# Add any paths that contain templates here, relative to this directory.\ntemplates_path = [\"_templates\"]\n\n# List of patterns, relative to source directory, that match files and\n# directories to ignore when looking for source files.\n# This pattern also affects html_static_path and html_extra_path.\nsource_suffix = [\".rst\", \"*.md\", \"*.ipynb\"]\nexclude_patterns = [\"build/*\"]\n\n\n# -- Options for HTML output -------------------------------------------------\n\n# The theme to use for HTML and HTML Help pages.  See the documentation for\n# a list of builtin themes.\n#\nhtml_theme = \"pydata_sphinx_theme\"\n\n# Theme options are theme-specific and customize the look and feel of a theme\n# further.  For a list of options available for each theme, see the\n# documentation.\n#\nhtml_theme_options = {\n    \"icon_links\": [\n        {\n            \"name\": \"GitHub\",\n            \"url\": \"https://github.com/stac-utils/pystac-client\",\n            \"icon\": \"fab fa-github-square\",\n        },\n        {\n            \"name\": \"Gitter\",\n            \"url\": \"https://gitter.im/SpatioTemporal-Asset-Catalog/\"\n            \"python?utm_source=share-link&utm_medium=link&utm_campaign=share-link\",\n            \"icon\": \"fab fa-gitter\",\n        },\n    ],\n    \"external_links\": [\n        {\"name\": \"STAC Spec\", \"url\": \"https://github.com/radiantearth/stac-spec\"}\n    ],\n    \"navigation_with_keys\": False,\n    # \"navbar_end\": [\"navbar-icon-links.html\", \"search-field.html\"]\n}\n\nhtml_logo = \"_static/STAC-03.png\"\n\n# Add any paths that contain custom static files (such as style sheets) here,\n# relative to this directory. They are copied after the builtin static files,\n# so a file named \"default.css\" will overwrite the builtin \"default.css\".\nhtml_static_path: list[str] = [\"_static\"]\n\n\n# -- Options for intersphinx extension ---------------------------------------\n\nintersphinx_mapping = {\n    \"python\": (\"https://docs.python.org/3\", None),\n    \"requests\": (\"https://requests.readthedocs.io/en/latest\", None),\n    \"pystac\": (\"https://pystac.readthedocs.io/en/latest\", None),\n    \"dateutil\": (\"https://dateutil.readthedocs.io/en/stable/\", None),\n}\n\n# -- Options for autodoc extension -------------------------------------------\n\nautodoc_typehints = \"none\"\n"
  },
  {
    "path": "docs/contributing.rst",
    "content": "Contributing\n============\n\nA list of issues and ongoing work is available on the PySTAC Client `issues page\n<https://github.com/stac-utils/pystac-client/issues>`_. If you want to contribute code, the best\nway is to coordinate with the core developers via an issue or pull request conversation.\n\nDevelopment installation\n^^^^^^^^^^^^^^^^^^^^^^^^\nFork PySTAC Client into your GitHub account. Clone the repo, install `uv\n<https://docs.astral.sh/uv/getting-started/installation/>`_ then install the package in editable mode with development dependencies:\n\n.. code-block:: bash\n\n    $ git clone git@github.com:your_user_name/pystac-client.git\n    $ cd pystac-client\n    $ uv pip install -e . --group dev\n    $ uv run pre-commit install\n\nTesting\n^^^^^^^\ntl;dr: Run ``./scripts/test`` to run all tests and linters.\n\nPySTAC Client runs tests using `pytest <https://docs.pytest.org/en/latest/>`_. You can find unit tests in the ``tests/``\ndirectory.\n\nTo run the tests and generate the coverage report:\n\n.. code-block:: bash\n\n    $ uv run pytest -v -s --block-network --cov pystac_client --cov-report term-missing\n\nThe PySTAC Client tests use `vcrpy <https://vcrpy.readthedocs.io/en/latest/>`_ to mock API calls\nwith \"pre-recorded\" API responses. When adding new tests use the ``@pytest.mark.vcr`` decorator\nfunction to indicate ``vcrpy`` should be used. Record the new responses and commit them to the\nrepository.\n\n.. code-block:: bash\n\n    $ uv run pytest -v -s --record-mode new_episodes\n    $ git add <new files here>\n    $ git commit -a -m 'new test episodes'\n\n\nTo update PySTAC Client to use future versions of STAC API, the existing recorded API responses\nshould be \"re-recorded\":\n\n.. code-block:: bash\n\n    $ uv run pytest -v -s --record-mode rewrite --block-network\n    $ git commit -a -m 'updated test episodes'\n\n\nCode quality checks\n^^^^^^^^^^^^^^^^^^^\n\n`pre-commit <https://pre-commit.com/>`_ is used to ensure a standard set of formatting and\nlinting is run before every commit. These hooks should be installed with:\n\n.. code-block:: bash\n\n    $ uv run pre-commit install\n\nThese can then be run independent of a commit with:\n\n.. code-block:: bash\n\n    $ uv run pre-commit run --all-files\n\nPySTAC Client uses\n\n- `ruff <https://docs.astral.sh/ruff/>`_ for Python code formatting and style checks\n- `codespell <https://github.com/codespell-project/codespell/>`_ to check code for common misspellings\n- `doc8 <https://github.com/pycqa/doc8>`_ for style checking on RST files in the docs\n- `mypy <http://www.mypy-lang.org/>`_ for Python type annotation checks\n\nOnce installed you can bypass pre-commit by adding the ``--no-verify`` (or ``-n``)\nflag to Git commit commands, as in ``git commit --no-verify``.\n\nPull Requests\n^^^^^^^^^^^^^\n\nTo make Pull Requests to PySTAC Client, the code must pass linting, formatting, and code tests. To run\nthe entire suit of checks and tests that will be run the GitHub Action Pipeline, use the ``test`` script.\n\n.. code-block:: bash\n\n    $ uv run scripts/test\n\nIf automatic formatting is desired (incorrect formatting will cause the GitHub Action to fail),\nuse the format script (which uses ruff) and commit the resulting files:\n\n.. code-block:: bash\n\n    $ uv run scripts/format\n    $ git commit -a -m 'formatting updates'\n\n\nTo build the documentation, `install Pandoc <https://pandoc.org/installing.html>`_, install the\nPython documentation requirements via uv, then use the ``build-docs`` script:\n\n.. code-block:: bash\n\n    $ uv pip install -e . --group docs\n    $ uv run scripts/build-docs\n\nCHANGELOG\n^^^^^^^^^\n\nPySTAC Client maintains a\n`changelog  <https://github.com/stac-utils/pystac-client/blob/main/CHANGELOG.md>`_\nto track changes between releases. All Pull Requests should make a changelog entry unless\nthe change is trivial (e.g. fixing typos) or is entirely invisible to users who may\nbe upgrading versions (e.g. an improvement to the CI system).\n\nFor changelog entries, please link to the PR of that change. This needs to happen in a\nfew steps:\n\n- Make a Pull Request (see above) to PySTAC Client with your changes\n- Record the link to the Pull Request\n- Push an additional commit to your branch with the changelog entry with the link to the\n  Pull Request.\n\nFor more information on changelogs and how to write a good entry, see `keep a changelog\n<https://keepachangelog.com/en/1.0.0/>`_.\n\nBenchmark\n^^^^^^^^^\n\nBy default, PySTAC Client benchmarks are skipped during test runs.\nTo run the benchmarks, use the ``--benchmark-only`` flag:\n\n.. code-block:: bash\n\n    $ uv run pytest --benchmark-only\n    ============================= test session starts ==============================\n    platform darwin -- Python 3.9.13, pytest-6.2.4, py-1.10.0, pluggy-0.13.1\n    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)\n    rootdir: /Users/gadomski/Code/pystac-client, configfile: pytest.ini\n    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\n    collected 75 items\n\n    tests/test_cli.py ss                                                     [  2%]\n    tests/test_client.py ssssssssssssssss                                    [ 24%]\n    tests/test_collection_client.py ss                                       [ 26%]\n    tests/test_item_search.py ...sssssssssssssssssssssssssssssssssssssssssss [ 88%]\n    s                                                                        [ 89%]\n    tests/test_stac_api_io.py ssssssss                                       [100%]\n\n\n    --------------------------------------------------------------------------------------- benchmark: 3 tests --------------------------------------------------------------------------------------\n    Name (time in ms)                Min                 Max                Mean              StdDev              Median                IQR            Outliers     OPS            Rounds  Iterations\n    -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------\n    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\n    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\n    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\n    -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------\n\n    Legend:\n    Outliers: 1 Standard Deviation from Mean; 1.5 IQR (InterQuartile Range) from 1st Quartile and 3rd Quartile.\n    OPS: Operations Per Second, computed as 1 / Mean\n    ======================== 3 passed, 72 skipped in 11.86s ========================\n\n\nFor more information on running and comparing benchmarks, see the `pytest-benchmark documentation <https://pytest-benchmark.readthedocs.io/en/latest/>`_.\n"
  },
  {
    "path": "docs/design/0001-record-architecture-decisions.md",
    "content": "# 1. Record architecture decisions\n\nDate: 2021-03-01\n\n## Status\n\nAccepted\n\n## Context\n\nWe need to record the architectural decisions made on this project.\n\n## Decision\n\nWe will use Architecture Decision Records, as \n[described by Michael Nygard](http://thinkrelevance.com/blog/2011/11/15/documenting-architecture-decisions).\n\n## Consequences\n\nSee Michael Nygard's article, linked above. For a lightweight ADR toolset, see Nat Pryce's \n[adr-tools](https://github.com/npryce/adr-tools).\n"
  },
  {
    "path": "docs/design/0002-choose-stac-library.md",
    "content": "# 2. Choose STAC library\n\nDate: 2021-03-01\n\n## Status\n\nAccepted\n\n## Context\n\nWe would like to use an existing Python library for working with STAC objects as Python objects. Ideally this library \nwill meet the following requirements:\n\n* **Actively maintained** to ensure that it is up-to-date with the latest STAC spec\n* **Well-documented** to reduce the documentation burden for this library\n* **Easily extensible** to allow us to take advantage of existing STAC object functionality\n\nThe 2 most obvious choices for Python STAC clients are \n[`PySTAC`](https://github.com/stac-utils/pystac) and [`sat-stac`](https://github.com/sat-utils/sat-stac). \n\n### `PySTAC`\n\n`PySTAC` is an actively maintained STAC client for Python 3. Its last release was less than 2 months ago and its last \ncommit was less than 2 weeks ago. It has had 15 contributors within the last year and it supports the latest release \ncandidate for the STAC spec (as well as previous releases). `PySTAC` hosts \n[documentation on ReadTheDocs](https://pystac.readthedocs.io/en/latest/) that includes a description of programming \nconcepts related to the library, quickstart instructions, tutorials, and an API reference.\n\n`PySTAC` supports both reading and writing of STAC objects. Extending `PySTAC` classes through inheritance is made a \nbit more difficult by the fact that some class methods (like ``from_dict``) have references to specific classes \n(like ``Catalog``) rather than using the ``cls`` argument. This will require us to overwrite some of these methods to \nimplement inheritance. It has robust support for traversing catalogs using links. There is no existing support for the \nSTAC API spec in `PySTAC` or any related tooling.\n\n### `sat-stac`\n\n`sat-stac` is an actively maintained STAC client for Python 3. Its last release was less than 2 months ago and its \nlast commit was at that same time. It has had 2 contributors within the last year and it supports the latest release \ncandidate for the STAC spec (as well as previous releases). `sat-stac` has installation documented in the GitHub repo's \nmain README and has 2 tutorials in the form of Jupyter Notebooks in that repo. \n\n`sat-stac` supports reading STAC catalogs (support for writing STAC catalogs was removed in v0.4.0). There is also an \nexisting library for working with STAC API - Item Search results called \n[sat-search](https://github.com/sat-utils/sat-search) that uses `sat-stac` as its backend. \n\n## Decision\n\nWe will use `PySTAC` as our \"backend\" for working with STAC objects in Python. While both libraries are well-maintained, \n`PySTAC` has more thorough documentation and seems to be more widely supported through community contribution. \n\n## Consequences\n\nWe will need to create our own implementation of a STAC API - Item Search client since there is not existing tooling \nbased on `PySTAC`. We will be able to point to the hosted documentation for `PySTAC` to guide users through existing \nfunctionality for navigating STAC Catalogs. Special care should be taken to ensure that we do not break any of \n`PySTAC`'s functionality through inheritance.\n"
  },
  {
    "path": "docs/design/design_decisions.rst",
    "content": "Design Decisions\n================\n\n`Architectural Design Records (ADRs)\n<https://cognitect.com/blog/2011/11/15/documenting-architecture-decisions>`__ for major\ndesign decisions related to the library. In general, this library makes an attempt to\nfollow the design patterns laid out in the PySTAC library.\n\n.. toctree::\n   :glob:\n   :maxdepth: 1\n\n   *\n"
  },
  {
    "path": "docs/index.rst",
    "content": "PySTAC Client Documentation\n===========================\n\nPySTAC Client is a Python package for working with `STAC <https://github.com/radiantearth/stac-spec>`__\nCatalogs and `STAC APIs <https://github.com/radiantearth/stac-api-spec>`__.\nPySTAC Client builds upon PySTAC through higher-level functionality and ability to\naccess STAC API search endpoints.\n\nSTAC Versions\n=============\n\n+---------------+---------------+-----------------------------+\n| pystac-client |   STAC spec   |        STAC API Spec        |\n+===============+===============+=============================+\n| 0.9.x         | 1.0.x - 1.1.x | 1.0.0-beta.1 - 1.0.0        |\n+---------------+---------------+-----------------------------+\n| 0.8.x         | 1.0.x         | 1.0.0-beta.1 - 1.0.0        |\n+---------------+---------------+-----------------------------+\n| 0.7.x         | 1.0.x         | 1.0.0-beta.1 - 1.0.0        |\n+---------------+---------------+-----------------------------+\n| 0.6.x         | 1.0.x         | 1.0.0-beta.1 - 1.0.0-rc.2   |\n+---------------+---------------+-----------------------------+\n| 0.5.x         | 1.0.x         | 1.0.0-beta.1 - 1.0.0-rc.1   |\n+---------------+---------------+-----------------------------+\n| 0.4.x         | 1.0.x         | 1.0.0-beta.1 - 1.0.0-rc.1   |\n+---------------+---------------+-----------------------------+\n| 0.3.x         | 1.0.x         | 1.0.0-beta.1 - 1.0.0-beta.4 |\n+---------------+---------------+-----------------------------+\n| 0.2.x         | 1.0.x         | 1.0.0-beta.1 - 1.0.0-beta.2 |\n+---------------+---------------+-----------------------------+\n\nInstallation\n------------\n\n``pystac-client`` requires `Python >=3.10 <https://www.python.org/>`__.\n\nTo install with pip, run:\n\n.. code-block:: console\n\n   $ python -m pip install pystac-client\n\nThis will install the dependencies :doc:`pystac <pystac:index>`,\n:doc:`python-dateutil <dateutil:index>`, and :doc:`requests <requests:index>`.\n\nAcknowledgements\n----------------\n\nThis package builds upon the great work of the PySTAC library for working with\nSTAC objects in Python. It also uses concepts from the\n`sat-search <https://github.com/sat-utils/sat-search>`__ library for working with STAC\nAPI search endpoints.\n\nTable of Contents\n-----------------\n\n.. toctree::\n   :maxdepth: 2\n\n   quickstart\n   usage\n   api\n   tutorials\n   contributing\n   design/design_decisions\n"
  },
  {
    "path": "docs/quickstart.rst",
    "content": "Quickstart\n----------\n\nPySTAC Client can be used as either a Command Line Interface (CLI) or a\nPython library.\n\nCLI\n~~~\n\nUse the CLI to quickly perform Item or Collection searches and\noutput or save the results.\n\nThe ``--matched`` switch performs a search with limit=1 so does not get\nany Items, but gets the total number of matches which will be output to\nthe screen (if supported by the STAC API).\n\n.. code-block:: console\n\n    $ stac-client search https://earth-search.aws.element84.com/v1 -c sentinel-2-l2a --bbox -72.5 40.5 -72 41 --matched\n    3141 items matched\n\nThe ``--matched`` flag can also be used for collection search to get\nthe total number of collections that match your search terms.\n\n\n.. code-block:: console\n\n    $ stac-client collections https://emc.spacebel.be --q sentinel-2 --matched\n    76 collections matched\n\nIf the same URL is to be used over and over, define an environment\nvariable to be used in the CLI call:\n\n.. code-block:: console\n\n    $ export STAC_API_URL=https://earth-search.aws.element84.com/v1\n    $ 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\n    48 items matched\n\nWithout the ``--matched`` switch, all items will be fetched, paginating\nif necessary. If the ``--max-items`` switch is provided it will stop\npaging once that many items has been retrieved. It then prints all items\nto stdout as an ItemCollection. This can be useful to pipe output to\nanother process such as\n`stac-terminal <https://github.com/stac-utils/stac-terminal>`__,\n`geojsonio-cli <https://github.com/mapbox/geojsonio-cli>`__, or\n`jq <https://stedolan.github.io/jq/>`__.\n\n.. code-block:: console\n\n    $ 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\n\n.. figure:: images/stacterm-cal.png\n   :alt:\n\nIf the ``--save`` switch is provided instead, the results will not be\noutput to stdout, but instead will be saved to the specified file.\n\n.. code-block:: console\n\n    $ 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\n\nIf the Catalog supports the `Query\nextension <https://github.com/radiantearth/stac-api-spec/tree/master/fragments/query>`__,\nany Item property can also be included in the search. Rather than\nrequiring the JSON syntax the Query extension uses, pystac-client uses a\nsimpler syntax that it will translate to the JSON equivalent. Note\nhowever that when the simple syntax is used it sends all property values\nto the server as strings, except for ``gsd`` which it casts to\n``float``. This means that if there are extensions in use with numeric\nproperties these will be sent as strings. Some servers may automatically\ncast this to the appropriate data type, others may not.\n\nThe query filter will also accept complete JSON as per the specification.\n\n::\n\n    <property><operator><value>\n\n    where operator is one of `>=`, `<=`, `>`, `<`, `=`\n\n    Examples:\n    eo:cloud_cover<10\n    created=2021-01-06\n    view:sun_elevation<20\n\nAny number of properties can be included, and each can be included more\nthan once to use additional operators.\n\n.. code-block:: console\n\n    $ 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\n    10 items matched\n\n.. code-block:: console\n\n    $ 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\n    4 items matched\n\n\nCollection searches can also use multiple filters like this example\nsearch for collections that include the term ``\"biomass\"`` and have\na spatial extent that intersects Scandinavia.\n\n.. code-block:: console\n\n    $ stac-client collections https://emc.spacebel.be --q biomass --bbox 0.09 54.72 33.31 71.36  --matched\n    43 items matched\n\nSince most STAC APIs have not yet implemented the `collection search \nextension <https://github.com/stac-api-extensions/collection-search>`__, \n``pystac-client`` will perform a limited client-side \nfilter on the full list of collections using only the ``bbox``, \n``datetime``, and ``q`` (free-text search) parameters.\nIn the case that the STAC API does not support collection search, a\nwarning will be displayed to inform you that the filter is being\napplied client-side.\n\n\nPython\n~~~~~~\n\nFirst, create a Client instance configured to use a specific STAC API by the root URL of that API. For this example, we\nwill use `Earth Search <https://earth-search.aws.element84.com/v1>`__.\n\n.. code-block:: python\n\n    from pystac_client import Client\n\n    client = Client.open(\"https://earth-search.aws.element84.com/v1\")\n\nCreate an Item Search instance that represents a search to run. This does not actually run a search yet --\nthat does not happen until a method is called that requires data from the STAC API.\n\n.. code-block:: python\n\n    search = client.search(\n        max_items=10,\n        collections=[\"sentinel-2-c1-l2a\"],\n        bbox=[-72.5,40.5,-72,41]\n    )\n\nCalling ``matched()`` will send a request to the STAC API and retrieve a single item and metadata about how many Items\nmatch the search criteria.\n\n.. code-block:: python\n\n    print(f\"{search.matched()} items found\")\n\nThe ``items()`` iterator method can be used to iterate through all resulting items. This iterator\nhides the pagination behavior that the may occur if there are sufficient results. Be careful with this\nmethod -- you could end up iterating over the entire catalog if ``max_items`` is not set!\n\n.. code-block:: python\n\n    for item in search.items():\n        print(item.id)\n\nUse ``item_collection()`` to convert all Items from a search into a single `PySTAC\nItemCollection <https://pystac.readthedocs.io/en/latest/api/pystac.html#pystac.ItemCollection>`__.\nThe ``ItemCollection`` can then be saved as a GeoJSON FeatureCollection. This requires retrieving all\nof the results from the search, so it may take some time to retrieve all the paginated responses.\n\n.. code-block:: python\n\n    item_collection = search.item_collection()\n    item_collection.save_object(\"my_itemcollection.json\")\n\nSome STAC APIs also implement the Collection Search Extension. Earth Search does not, so we use the\nORNL_CLOUD CMR-STAC Catalog instead:\n\n.. code-block:: python\n\n    client = Client.open(\"https://cmr.earthdata.nasa.gov/stac/ORNL_CLOUD\")\n    collection_search = client.collection_search(\n        q=\"rain\",\n    )\n    print(f\"{collection_search.matched()} collections found\")\n\n\nThe ``collections()`` iterator method can be used to iterate through all\nresulting collections.\n\n.. code-block:: python\n\n    for collection in collection_search.collections():\n        print(collection.id)\n\n"
  },
  {
    "path": "docs/tutorials/aoi-coverage.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"e06a27bf\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Calculating Coverage Percentage of the AOI by an Item\\n\",\n    \"\\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.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"b65de617\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"from typing import Any, Dict\\n\",\n    \"\\n\",\n    \"import matplotlib.pyplot as plt\\n\",\n    \"from pystac.item import Item\\n\",\n    \"from shapely.geometry import shape\\n\",\n    \"\\n\",\n    \"from pystac_client import Client\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"98942e75\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"def intersection_percent(item: Item, aoi: Dict[str, Any]) -> float:\\n\",\n    \"    \\\"\\\"\\\"The percentage that the Item's geometry intersects the AOI. An Item that\\n\",\n    \"    completely covers the AOI has a value of 100.\\n\",\n    \"    \\\"\\\"\\\"\\n\",\n    \"    geom_item = shape(item.geometry)\\n\",\n    \"    geom_aoi = shape(aoi)\\n\",\n    \"\\n\",\n    \"    intersected_geom = geom_aoi.intersection(geom_item)\\n\",\n    \"\\n\",\n    \"    intersection_percent = (intersected_geom.area * 100) / geom_aoi.area\\n\",\n    \"\\n\",\n    \"    return intersection_percent\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"# STAC API root URL\\n\",\n    \"URL = \\\"https://planetarycomputer.microsoft.com/api/stac/v1\\\"\\n\",\n    \"\\n\",\n    \"# geometry of the AOI to search over\\n\",\n    \"intersects_geometry = {\\n\",\n    \"    \\\"type\\\": \\\"Polygon\\\",\\n\",\n    \"    \\\"coordinates\\\": [\\n\",\n    \"        [\\n\",\n    \"            [-73.21, 43.99],\\n\",\n    \"            [-73.21, 47.05],\\n\",\n    \"            [-70.12, 47.05],\\n\",\n    \"            [-70.12, 43.99],\\n\",\n    \"            [-73.21, 43.99],\\n\",\n    \"        ]\\n\",\n    \"    ],\\n\",\n    \"}\\n\",\n    \"\\n\",\n    \"# Create a Client and an ItemSearch representing our search\\n\",\n    \"# No search operations will be performed until we call the items() method\\n\",\n    \"client = Client.open(URL)\\n\",\n    \"item_search = client.search(\\n\",\n    \"    collections=[\\\"sentinel-2-l2a\\\"], intersects=intersects_geometry, max_items=100\\n\",\n    \")\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"0b0883fe\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"print(\\n\",\n    \"    [\\n\",\n    \"        f\\\"{intersection_percent(item, intersects_geometry):.2f}\\\"\\n\",\n    \"        for item in item_search.items()\\n\",\n    \"    ]\\n\",\n    \")\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"03254847\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# create a generator that filters to only those Items that intersect more than 5%\\n\",\n    \"items_gt_5_percent = (\\n\",\n    \"    i for i in item_search.items() if intersection_percent(i, intersects_geometry) > 5\\n\",\n    \")\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"e1de7a09\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# Render the AOI and Item results\\n\",\n    \"# The green shape is the AOI\\n\",\n    \"# The blue shapes are the Item geometries\\n\",\n    \"# If there are no blue shapes, adjust the intersection percent filter above\\n\",\n    \"# until there are\\n\",\n    \"\\n\",\n    \"cm = plt.get_cmap(\\\"RdBu\\\")\\n\",\n    \"fig, axs = plt.subplots()\\n\",\n    \"axs.set_aspect(\\\"equal\\\", \\\"datalim\\\")\\n\",\n    \"\\n\",\n    \"for item in items_gt_5_percent:\\n\",\n    \"    xs, ys = shape(item.geometry).exterior.xy\\n\",\n    \"    axs.fill(xs, ys, alpha=0.5, fc=\\\"b\\\", ec=\\\"none\\\")\\n\",\n    \"\\n\",\n    \"geom_intersects = shape(intersects_geometry)\\n\",\n    \"xs, ys = geom_intersects.exterior.xy\\n\",\n    \"axs.fill(xs, ys, alpha=0.5, fc=\\\"g\\\", ec=\\\"none\\\")\\n\",\n    \"\\n\",\n    \"plt.show()\"\n   ]\n  }\n ],\n \"metadata\": {\n  \"interpreter\": {\n   \"hash\": \"6b6313dbab648ff537330b996f33bf845c0da10ea77ae70864d6ca8e2699c7ea\"\n  },\n  \"kernelspec\": {\n   \"display_name\": \"Python 3.9.11 ('.venv': venv)\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.9.11\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 5\n}\n"
  },
  {
    "path": "docs/tutorials/authentication.md",
    "content": "# Authentication\n\nWhile 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.\n\n## Basic auth\n\nPystac-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.\n\n```python\nimport base64\nimport pystac_client\n\n# encode credentials\nuser_name = \"yellowbeard\"\npassword = \"yaarg\"\nuserpass = f\"{user_name}:{password}\"\nb64_userpass = base64.b64encode(userpass.encode()).decode()\n\n# create the client\nclient = pystac_client.Client.open(\n    url=\"https://planetarycomputer.microsoft.com/api/stac/v1\",\n    headers={\n        'Authorization': f\"Basic {b64_userpass}\"\n    }\n)\n```\n\n## Token auth\n\nProviding 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.\n\n## AWS SigV4\n\nAccessing 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.\n\nPystac-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.\n\nThe code cell below demonstrates this, using the `boto3` module.\n\n```python\nimport boto3\nimport botocore.auth\nimport botocore.awsrequest\nimport pystac_client\nimport requests\n\n# Details regarding the private stac api\nregion = \"us-east-1\"\nservice_name = \"execute-api\"\nendpoint_id = \"xxxxxxxx\"\ndeployment_stage = \"dev\"\nstac_api_url = f\"https://{endpoint_id}.{service_name}.{region}.amazonaws.com/{deployment_stage}\"\n\n# load AWS credentials\ncredentials = boto3.Session(region_name=region).get_credentials()\nsigner = botocore.auth.SigV4Auth(credentials, service_name, region)\n\ndef sign_request(request: requests.Request) -> requests.Request:\n    \"\"\"Sign the request using AWS SigV4.\n\n    Args:\n        request (requests.Request): The fully populated request to sign.\n\n    Returns:\n        requests.Request: The provided request object, with auth header added.\n    \"\"\"\n    aws_request = botocore.awsrequest.AWSRequest(\n        method=request.method,\n        url=request.url,\n        params=request.params,\n        data=request.data,\n        headers=request.headers\n    )\n    signer.add_auth(aws_request)\n    request.headers = aws_request.headers\n    return request\n\n# create the client\nclient = pystac_client.Client.open(\n    url=stac_api_url,\n    request_modifier=sign_request\n)\n```\n"
  },
  {
    "path": "docs/tutorials/cql2-filter.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"attachments\": {},\n   \"cell_type\": \"markdown\",\n   \"id\": \"e06a27bf\",\n   \"metadata\": {},\n   \"source\": [\n    \"# CQL2 Filtering\\n\",\n    \"\\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    \"\\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.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"b65de617\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"import json\\n\",\n    \"\\n\",\n    \"import geopandas as gpd\\n\",\n    \"import pandas as pd\\n\",\n    \"\\n\",\n    \"from pystac_client import Client\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"c8ac88bb\",\n   \"metadata\": {},\n   \"source\": [\n    \"The first step as always with pystac-client is opening the catalog:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"98942e75\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# STAC API root URL\\n\",\n    \"URL = \\\"https://planetarycomputer.microsoft.com/api/stac/v1\\\"\\n\",\n    \"\\n\",\n    \"catalog = Client.open(URL)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"1e16077c\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Initial Search Parameters\\n\",\n    \"\\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`).\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"5e961981\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# AOI around Delfzijl, in the north of The Netherlands\\n\",\n    \"geom = {\\n\",\n    \"    \\\"type\\\": \\\"Polygon\\\",\\n\",\n    \"    \\\"coordinates\\\": [\\n\",\n    \"        [\\n\",\n    \"            [6.42425537109375, 53.174765470134616],\\n\",\n    \"            [7.344360351562499, 53.174765470134616],\\n\",\n    \"            [7.344360351562499, 53.67393435835391],\\n\",\n    \"            [6.42425537109375, 53.67393435835391],\\n\",\n    \"            [6.42425537109375, 53.174765470134616],\\n\",\n    \"        ]\\n\",\n    \"    ],\\n\",\n    \"}\\n\",\n    \"\\n\",\n    \"params = {\\n\",\n    \"    \\\"max_items\\\": 100,\\n\",\n    \"    \\\"collections\\\": \\\"landsat-8-c2-l2\\\",\\n\",\n    \"    \\\"intersects\\\": geom,\\n\",\n    \"    \\\"datetime\\\": \\\"2018-01-01/2020-12-31\\\",\\n\",\n    \"}\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"d6f1dd5f\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Using Filters\\n\",\n    \"\\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    \"\\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.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"8b26e89b\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"def search_and_plot(filter):\\n\",\n    \"    search = catalog.search(**params, filter=filter)\\n\",\n    \"\\n\",\n    \"    gdf = gpd.GeoDataFrame.from_features(search.item_collection_as_dict())\\n\",\n    \"    gdf[\\\"datetime\\\"] = pd.to_datetime(gdf[\\\"datetime\\\"])\\n\",\n    \"    print(f\\\"Found {len(gdf)} items\\\")\\n\",\n    \"\\n\",\n    \"    gdf.plot.line(x=\\\"datetime\\\", y=\\\"eo:cloud_cover\\\", title=json.dumps(filter))\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"11afcc19\",\n   \"metadata\": {},\n   \"source\": [\n    \"We can test out the function by passing an empty dict to do no filtering at all.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"b6293c11\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"search_and_plot({})\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"44d3bc04\",\n   \"metadata\": {},\n   \"source\": [\n    \"## CQL2 Filters\\n\",\n    \"\\n\",\n    \"We will use `eo:cloud_cover` as an example and filter for all the STAC Items where `eo:cloud_cover <= 10%`.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"dfc0e759\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"filter = {\\\"op\\\": \\\"<=\\\", \\\"args\\\": [{\\\"property\\\": \\\"eo:cloud_cover\\\"}, 10]}\\n\",\n    \"\\n\",\n    \"search_and_plot(filter)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"75e835f1\",\n   \"metadata\": {},\n   \"source\": [\n    \"Next let's look for all the STAC Items where `eo:cloud_cover >= 80%`.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"9c2f9ca1\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"filter = {\\\"op\\\": \\\">=\\\", \\\"args\\\": [{\\\"property\\\": \\\"eo:cloud_cover\\\"}, 80]}\\n\",\n    \"\\n\",\n    \"search_and_plot(filter)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"0ad984bf\",\n   \"metadata\": {},\n   \"source\": [\n    \"We can combine multiple CQL2 statements to express more complicated logic:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"109f673c\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"filter = {\\n\",\n    \"    \\\"op\\\": \\\"and\\\",\\n\",\n    \"    \\\"args\\\": [\\n\",\n    \"        {\\\"op\\\": \\\"<=\\\", \\\"args\\\": [{\\\"property\\\": \\\"eo:cloud_cover\\\"}, 60]},\\n\",\n    \"        {\\\"op\\\": \\\">=\\\", \\\"args\\\": [{\\\"property\\\": \\\"eo:cloud_cover\\\"}, 40]},\\n\",\n    \"    ],\\n\",\n    \"}\\n\",\n    \"\\n\",\n    \"search_and_plot(filter)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"617c7416\",\n   \"metadata\": {},\n   \"source\": [\n    \"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.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"7b0dc965\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"filter = {\\n\",\n    \"    \\\"op\\\": \\\"and\\\",\\n\",\n    \"    \\\"args\\\": [\\n\",\n    \"        {\\\"op\\\": \\\"s_intersects\\\", \\\"args\\\": [{\\\"property\\\": \\\"geometry\\\"}, geom]},\\n\",\n    \"        {\\\"op\\\": \\\">=\\\", \\\"args\\\": [{\\\"property\\\": \\\"datetime\\\"}, \\\"2018-01-01\\\"]},\\n\",\n    \"        {\\\"op\\\": \\\"<=\\\", \\\"args\\\": [{\\\"property\\\": \\\"datetime\\\"}, \\\"2020-12-31\\\"]},\\n\",\n    \"        {\\\"op\\\": \\\"<=\\\", \\\"args\\\": [{\\\"property\\\": \\\"eo:cloud_cover\\\"}, 60]},\\n\",\n    \"        {\\\"op\\\": \\\">=\\\", \\\"args\\\": [{\\\"property\\\": \\\"eo:cloud_cover\\\"}, 40]},\\n\",\n    \"    ],\\n\",\n    \"}\\n\",\n    \"search = catalog.search(max_items=100, collections=\\\"landsat-8-c2-l2\\\", filter=filter)\\n\",\n    \"\\n\",\n    \"print(f\\\"Found {len(search.item_collection())} items\\\")\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"56503c7b\",\n   \"metadata\": {},\n   \"source\": [\n    \"### CQL2 Text\\n\",\n    \"\\n\",\n    \"The examples above all use CQL2-json but pystac-client also supports passing `filter` as CQL2 text.\\n\",\n    \"\\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.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"5e8f62f5\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"search = catalog.search(**params, method=\\\"GET\\\", filter=\\\"eo:cloud_cover<=10\\\")\\n\",\n    \"\\n\",\n    \"print(f\\\"Found {len(search.item_collection())} items\\\")\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"9b865c1f\",\n   \"metadata\": {},\n   \"source\": [\n    \"Just like CQL2 json, CQL2 text statements can be combined to express more complex logic:\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"c06f40cf\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"search = catalog.search(\\n\",\n    \"    **params, method=\\\"GET\\\", filter=\\\"eo:cloud_cover<=60 and eo:cloud_cover>=40\\\"\\n\",\n    \")\\n\",\n    \"\\n\",\n    \"print(f\\\"Found {len(search.item_collection())} items\\\")\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"35cbf612\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Queryables\\n\",\n    \"\\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    \"\\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.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"90f1cc6d\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"collection = catalog.get_collection(\\\"landsat-c2-l2\\\")\\n\",\n    \"queryables = collection.get_queryables()\\n\",\n    \"\\n\",\n    \"list(queryables[\\\"properties\\\"].keys())\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"c407ffec\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Read More\\n\",\n    \"\\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    \"\\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/).\"\n   ]\n  }\n ],\n \"metadata\": {\n  \"kernelspec\": {\n   \"display_name\": \"Python 3 (ipykernel)\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.12.11\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 5\n}\n"
  },
  {
    "path": "docs/tutorials/item-search-intersects.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"e06a27bf\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Item Search with Intersects\\n\",\n    \"\\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).\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"1e16077c\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Client\\n\",\n    \"\\n\",\n    \"We first connect to an API by retrieving the root catalog, or landing page, of the API with the `Client.open` function.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"98942e75\",\n   \"metadata\": {\n    \"tags\": []\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"import json\\n\",\n    \"from typing import Any, Dict\\n\",\n    \"\\n\",\n    \"from pystac_client import Client\\n\",\n    \"\\n\",\n    \"# STAC API root URL\\n\",\n    \"URL = \\\"https://planetarycomputer.microsoft.com/api/stac/v1\\\"\\n\",\n    \"\\n\",\n    \"client = Client.open(URL)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"62e26114\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Item Search\\n\",\n    \"\\n\",\n    \"When the Catalog is a STAC API, we have the ability to search for items based on spatio-temporal properties.\\n\",\n    \"\\n\",\n    \"The STAC API endpoint `/search` accepts a parameter `intersects` that is a GeoJSON Geometry representing the AOI of the search.\\n\",\n    \"\\n\",\n    \"The `search` method of the pystac_client `Client` class accepts several different types of objects:\\n\",\n    \"\\n\",\n    \"1. a string representing a GeoJSON geometry\\n\",\n    \"2. a dictionary representing a GeoJSON geometry\\n\",\n    \"3. any object that implements a ``__geo_interface__`` property, [an informal specification](https://gist.github.com/sgillies/2217756)    \\n\",\n    \"   supported by several libraries for generating a GeoJSON representation from an object. Several prominent libraries support this\\n\",\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)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"0d27fabf\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Item Search with AOI as a Dictionary\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"d8af6334\",\n   \"metadata\": {\n    \"tags\": []\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# AOI around Delfzijl, in northern Netherlands\\n\",\n    \"aoi_as_dict: Dict[str, Any] = {\\n\",\n    \"    \\\"type\\\": \\\"Polygon\\\",\\n\",\n    \"    \\\"coordinates\\\": [[[6, 53], [7, 53], [7, 54], [6, 54], [6, 53]]],\\n\",\n    \"}\\n\",\n    \"\\n\",\n    \"search = client.search(\\n\",\n    \"    max_items=25,\\n\",\n    \"    collections=\\\"aster-l1t\\\",\\n\",\n    \"    intersects=aoi_as_dict,\\n\",\n    \")\\n\",\n    \"\\n\",\n    \"print(f\\\"AOI as dictionary, found {len(list(search.items()))} items\\\")\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"9da4956b\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Item Search with AOI as a String\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"9a7c9336\",\n   \"metadata\": {\n    \"tags\": []\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"aoi_as_str: str = json.dumps(aoi_as_dict)\\n\",\n    \"\\n\",\n    \"search = client.search(\\n\",\n    \"    max_items=25,\\n\",\n    \"    collections=\\\"aster-l1t\\\",\\n\",\n    \"    intersects=aoi_as_str,\\n\",\n    \")\\n\",\n    \"\\n\",\n    \"print(f\\\"AOI as string, found {len(list(search.items()))} items\\\")\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"f22ffb5a\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Item Search with AOI as a Shapely Geometry Object\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"a44598ef\",\n   \"metadata\": {\n    \"tags\": []\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"import shapely.geometry\\n\",\n    \"\\n\",\n    \"aoi_as_shapely_shape = shapely.geometry.shape(aoi_as_dict)\\n\",\n    \"\\n\",\n    \"search = client.search(\\n\",\n    \"    max_items=25,\\n\",\n    \"    collections=\\\"aster-l1t\\\",\\n\",\n    \"    intersects=aoi_as_shapely_shape,\\n\",\n    \")\\n\",\n    \"\\n\",\n    \"print(\\n\",\n    \"    \\\"AOI as Shapely Geometry object from shape(), \\\"\\n\",\n    \"    f\\\"found {len(list(search.items()))} items\\\"\\n\",\n    \")\\n\",\n    \"\\n\",\n    \"aoi_as_shapely_polygon = shapely.geometry.Polygon(aoi_as_dict[\\\"coordinates\\\"][0])\\n\",\n    \"\\n\",\n    \"search = client.search(\\n\",\n    \"    max_items=25,\\n\",\n    \"    collections=\\\"aster-l1t\\\",\\n\",\n    \"    intersects=aoi_as_shapely_polygon,\\n\",\n    \")\\n\",\n    \"\\n\",\n    \"print(\\n\",\n    \"    \\\"AOI as Shapely Geometry object with Polygon, \\\"\\n\",\n    \"    f\\\"found {len(list(search.items()))} items\\\"\\n\",\n    \")\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"8f236254\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Item Search with AOI as a \\\"geojson\\\" library object\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"84ce4395\",\n   \"metadata\": {\n    \"tags\": []\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"import geojson\\n\",\n    \"\\n\",\n    \"aoi_as_geojson_polygon = geojson.Polygon(aoi_as_dict[\\\"coordinates\\\"])\\n\",\n    \"\\n\",\n    \"search = client.search(\\n\",\n    \"    max_items=25,\\n\",\n    \"    collections=\\\"aster-l1t\\\",\\n\",\n    \"    intersects=aoi_as_geojson_polygon,\\n\",\n    \")\\n\",\n    \"\\n\",\n    \"print(f\\\"AOI as geojson Polygon, found {len(list(search.items()))} items\\\")\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"3fe9c255\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Item Search with AOI as a pygeoif Object\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"a27dcb72\",\n   \"metadata\": {\n    \"tags\": []\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"import pygeoif\\n\",\n    \"\\n\",\n    \"aoi_as_pygeoif_polygon = pygeoif.geometry.Polygon(aoi_as_dict[\\\"coordinates\\\"][0])\\n\",\n    \"\\n\",\n    \"search = client.search(\\n\",\n    \"    max_items=25,\\n\",\n    \"    collections=\\\"aster-l1t\\\",\\n\",\n    \"    intersects=aoi_as_pygeoif_polygon,\\n\",\n    \")\\n\",\n    \"\\n\",\n    \"print(f\\\"AOI as pygeoif Polygon, found {len(list(search.items()))} items\\\")\"\n   ]\n  }\n ],\n \"metadata\": {\n  \"interpreter\": {\n   \"hash\": \"6b6313dbab648ff537330b996f33bf845c0da10ea77ae70864d6ca8e2699c7ea\"\n  },\n  \"kernelspec\": {\n   \"display_name\": \"Python 3 (ipykernel)\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.11.3\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 5\n}\n"
  },
  {
    "path": "docs/tutorials/pystac-client-introduction.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"e06a27bf\",\n   \"metadata\": {},\n   \"source\": [\n    \"# PySTAC-Client Introduction\\n\",\n    \"\\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.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"b65de617\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# set pystac_client logger to DEBUG to see API calls\\n\",\n    \"import logging\\n\",\n    \"\\n\",\n    \"from pystac_client import Client\\n\",\n    \"\\n\",\n    \"logging.basicConfig()\\n\",\n    \"logger = logging.getLogger(\\\"pystac_client\\\")\\n\",\n    \"logger.setLevel(logging.DEBUG)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"1e16077c\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Client\\n\",\n    \"\\n\",\n    \"We first connect to an API by retrieving the root catalog, or landing page, of the API with the `Client.open` function.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"98942e75\",\n   \"metadata\": {\n    \"scrolled\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# STAC API root URL\\n\",\n    \"URL = \\\"https://planetarycomputer.microsoft.com/api/stac/v1\\\"\\n\",\n    \"\\n\",\n    \"# custom headers\\n\",\n    \"headers = []\\n\",\n    \"\\n\",\n    \"cat = Client.open(URL, headers=headers)\\n\",\n    \"cat\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"f6efbb86\",\n   \"metadata\": {},\n   \"source\": [\n    \"# CollectionClient\\n\",\n    \"\\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.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"bb7693fb\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"for collection in cat.get_collections():\\n\",\n    \"    print(collection)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"ebab2724-cab3-4fba-b25b-fdfb4e537014\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Collection Search\\n\",\n    \"\\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.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"a23a53ec-5b5f-421d-9f0e-01dbde8c3697\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"collection_search = cat.collection_search(\\n\",\n    \"    q=\\\"ASTER\\\",\\n\",\n    \")\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"90b3d014-9c8f-4c5b-a94e-bfb7f17380ad\",\n   \"metadata\": {},\n   \"source\": [\n    \"The `collections` method lets you iterate through the results of the search so you can inspect the details of matching collections.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"006f13fd-5e58-4f3f-bd5a-707cd830caa1\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"for result in collection_search.collections():\\n\",\n    \"    print(result.id, f\\\"{collection.description}\\\", sep=\\\"\\\\n\\\")\\n\",\n    \"    print(\\\"\\\\n\\\")\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"fef20a46\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"collection = cat.get_collection(\\\"aster-l1t\\\")\\n\",\n    \"collection\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"47a540fe\",\n   \"metadata\": {},\n   \"source\": [\n    \"# Items\\n\",\n    \"\\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.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"17d6de4b\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"items = collection.get_items()\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"# flush stdout so we can see the exact order that things happen\\n\",\n    \"def get_ten_items(items):\\n\",\n    \"    for i, item in enumerate(items):\\n\",\n    \"        print(f\\\"{i}: {item}\\\", flush=True)\\n\",\n    \"        if i == 9:\\n\",\n    \"            return\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"print(\\\"First page\\\", flush=True)\\n\",\n    \"get_ten_items(items)\\n\",\n    \"\\n\",\n    \"print(\\\"Second page\\\", flush=True)\\n\",\n    \"get_ten_items(items)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"62e26114\",\n   \"metadata\": {},\n   \"source\": [\n    \"# API Search\\n\",\n    \"\\n\",\n    \"If the Catalog is an API, we have the ability to search for items based on spatio-temporal properties.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"d8af6334\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# AOI around Delfzijl, in northern Netherlands\\n\",\n    \"geom = {\\n\",\n    \"    \\\"type\\\": \\\"Polygon\\\",\\n\",\n    \"    \\\"coordinates\\\": [\\n\",\n    \"        [\\n\",\n    \"            [6.42425537109375, 53.174765470134616],\\n\",\n    \"            [7.344360351562499, 53.174765470134616],\\n\",\n    \"            [7.344360351562499, 53.67393435835391],\\n\",\n    \"            [6.42425537109375, 53.67393435835391],\\n\",\n    \"            [6.42425537109375, 53.174765470134616],\\n\",\n    \"        ]\\n\",\n    \"    ],\\n\",\n    \"}\\n\",\n    \"\\n\",\n    \"# limit sets the # of items per page so we can see multiple pages getting fetched\\n\",\n    \"search = cat.search(\\n\",\n    \"    max_items=15,\\n\",\n    \"    limit=5,\\n\",\n    \"    collections=\\\"aster-l1t\\\",\\n\",\n    \"    intersects=geom,\\n\",\n    \"    datetime=\\\"2000-01-01/2010-12-31\\\",\\n\",\n    \")\\n\",\n    \"\\n\",\n    \"items = list(search.items())\\n\",\n    \"\\n\",\n    \"len(items)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"275f316f\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# note that this will work in JupyterLab, but not in a Jupyter Notebook\\n\",\n    \"\\n\",\n    \"import IPython.display\\n\",\n    \"\\n\",\n    \"IPython.display.JSON([i.to_dict() for i in items])\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"68bf65f2\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# this cell can be used in Jupyter Notebook. Use above if using JupyterLab\\n\",\n    \"\\n\",\n    \"import json\\n\",\n    \"import uuid\\n\",\n    \"\\n\",\n    \"from IPython.display import display_html, display_javascript\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"class RenderJSON(object):\\n\",\n    \"    def __init__(self, json_data):\\n\",\n    \"        if isinstance(json_data, dict) or isinstance(json_data, list):\\n\",\n    \"            self.json_str = json.dumps(json_data)\\n\",\n    \"        else:\\n\",\n    \"            self.json_str = json_data\\n\",\n    \"        self.uuid = str(uuid.uuid4())\\n\",\n    \"\\n\",\n    \"    def _ipython_display_(self):\\n\",\n    \"        display_html(\\n\",\n    \"            '<div id=\\\"{}\\\" style=\\\"height: 600px; width:100%;font: 12px/18px monospace '\\n\",\n    \"            '!important;\\\"></div>'.format(self.uuid),\\n\",\n    \"            raw=True,\\n\",\n    \"        )\\n\",\n    \"        display_javascript(\\n\",\n    \"            \\\"\\\"\\\"\\n\",\n    \"        require([\\\"https://rawgit.com/caldwell/renderjson/master/renderjson.js\\\"],\\n\",\n    \"            function() {\\n\",\n    \"                renderjson.set_show_to_level(2);\\n\",\n    \"                document.getElementById('%s').appendChild(renderjson(%s))\\n\",\n    \"        });\\n\",\n    \"      \\\"\\\"\\\"\\n\",\n    \"            % (self.uuid, self.json_str),\\n\",\n    \"            raw=True,\\n\",\n    \"        )\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"RenderJSON([i.to_dict() for i in items])\"\n   ]\n  }\n ],\n \"metadata\": {\n  \"interpreter\": {\n   \"hash\": \"6b6313dbab648ff537330b996f33bf845c0da10ea77ae70864d6ca8e2699c7ea\"\n  },\n  \"kernelspec\": {\n   \"display_name\": \"Python 3 (ipykernel)\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.12.3\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 5\n}\n"
  },
  {
    "path": "docs/tutorials/stac-metadata-viz.ipynb",
    "content": "{\n \"cells\": [\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"ab31574b\",\n   \"metadata\": {},\n   \"source\": [\n    \"# STAC Metadata Visualizations\\n\",\n    \"\\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    \"\\n\",\n    \"The libraries GeoPandas and hvplot are used for visualizations.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"3188b5a0\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# set pystac_client logger to DEBUG to see API calls\\n\",\n    \"import logging\\n\",\n    \"\\n\",\n    \"from pystac_client import Client\\n\",\n    \"\\n\",\n    \"logging.basicConfig()\\n\",\n    \"logger = logging.getLogger(\\\"pystac_client\\\")\\n\",\n    \"logger.setLevel(logging.DEBUG)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"1d404982\",\n   \"metadata\": {},\n   \"source\": [\n    \"Define the STAC API to use, along with any custom headers (such as for authentication)\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"d40ed5c1\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# STAC API root URL\\n\",\n    \"URL = \\\"https://planetarycomputer.microsoft.com/api/stac/v1\\\"\\n\",\n    \"\\n\",\n    \"# custom headers\\n\",\n    \"headers = []\\n\",\n    \"\\n\",\n    \"cat = Client.open(URL, headers=headers)\\n\",\n    \"cat\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"e513e548\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Search\\n\",\n    \"\\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.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"ae7a3eca\",\n   \"metadata\": {\n    \"scrolled\": true\n   },\n   \"outputs\": [],\n   \"source\": [\n    \"# AOI around Delfzijl, in northern Netherlands\\n\",\n    \"geom = {\\n\",\n    \"    \\\"type\\\": \\\"Polygon\\\",\\n\",\n    \"    \\\"coordinates\\\": [\\n\",\n    \"        [\\n\",\n    \"            [6.42425537109375, 53.174765470134616],\\n\",\n    \"            [7.344360351562499, 53.174765470134616],\\n\",\n    \"            [7.344360351562499, 53.67393435835391],\\n\",\n    \"            [6.42425537109375, 53.67393435835391],\\n\",\n    \"            [6.42425537109375, 53.174765470134616],\\n\",\n    \"        ]\\n\",\n    \"    ],\\n\",\n    \"}\\n\",\n    \"\\n\",\n    \"# limit sets the # of items per page so we can see multiple pages getting fetched\\n\",\n    \"search = cat.search(\\n\",\n    \"    max_items=50,\\n\",\n    \"    collections=\\\"aster-l1t\\\",\\n\",\n    \"    intersects=geom,\\n\",\n    \"    datetime=\\\"2000-01-01/2010-12-31\\\",\\n\",\n    \")\\n\",\n    \"\\n\",\n    \"# retrieve the items as dictionaries, rather than Item objects\\n\",\n    \"items = list(search.items_as_dicts())\\n\",\n    \"len(items)\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"2a23660f\",\n   \"metadata\": {},\n   \"source\": [\n    \"## GeoPandas\\n\",\n    \"\\n\",\n    \"A GeoDataFrame is constructed from the AOI geometry, in order to make visualizations easy.\\n\",\n    \"\\n\",\n    \"The STAC Items, which are a GeoJSON FeatureCollection can be converted to a GeoDataFrame.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"ed0da77b\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"from copy import deepcopy\\n\",\n    \"\\n\",\n    \"import geopandas as gpd\\n\",\n    \"import pandas as pd\\n\",\n    \"from shapely.geometry import shape\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"# convert a list of STAC Items into a GeoDataFrame\\n\",\n    \"def items_to_geodataframe(items):\\n\",\n    \"    _items = []\\n\",\n    \"    for i in items:\\n\",\n    \"        _i = deepcopy(i)\\n\",\n    \"        _i[\\\"geometry\\\"] = shape(_i[\\\"geometry\\\"])\\n\",\n    \"        _items.append(_i)\\n\",\n    \"    gdf = gpd.GeoDataFrame(pd.json_normalize(_items))\\n\",\n    \"    for field in [\\\"properties.datetime\\\", \\\"properties.created\\\", \\\"properties.updated\\\"]:\\n\",\n    \"        if field in gdf:\\n\",\n    \"            gdf[field] = pd.to_datetime(gdf[field])\\n\",\n    \"    gdf.set_index(\\\"properties.datetime\\\", inplace=True)\\n\",\n    \"    return gdf\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"c4bed793\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# convert geometry to a GeoDataFrame\\n\",\n    \"aoi_gdf = gpd.GeoDataFrame([{\\\"geometry\\\": shape(geom)}])\\n\",\n    \"aoi_gdf\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"d1fc8732\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"# convert found items to a GeoDataFrame\\n\",\n    \"items_gdf = items_to_geodataframe(items)\\n\",\n    \"items_gdf.head()\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"4d570626\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Plot Geometries on a Map\\n\",\n    \"\\n\",\n    \"Holoviews is used to display geometries on a map by using `hvplot`. The The `*` Holoviews operator to overlay two plots\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"e8fbfad6\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"import hvplot.pandas  # noqa: F401\\n\",\n    \"\\n\",\n    \"\\n\",\n    \"# plot polygons on a map with background tiles.\\n\",\n    \"def plot_polygons(data, *args, **kwargs):\\n\",\n    \"    return data.hvplot.polygons(\\n\",\n    \"        *args,\\n\",\n    \"        geo=True,\\n\",\n    \"        projection=\\\"GOOGLE_MERCATOR\\\",\\n\",\n    \"        xaxis=None,\\n\",\n    \"        yaxis=None,\\n\",\n    \"        frame_width=600,\\n\",\n    \"        frame_height=600,\\n\",\n    \"        fill_alpha=0,\\n\",\n    \"        line_width=4,\\n\",\n    \"        **kwargs,\\n\",\n    \"    )\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"72094092\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"plot_polygons(aoi_gdf, tiles=\\\"OSM\\\", line_color=\\\"red\\\")\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"d7d6cfc6\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"plot_polygons(items_gdf, tiles=\\\"OSM\\\")\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"0a07e87b\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"plot_polygons(items_gdf, tiles=\\\"OSM\\\") * plot_polygons(aoi_gdf, line_color=\\\"red\\\")\"\n   ]\n  },\n  {\n   \"cell_type\": \"markdown\",\n   \"id\": \"b0604c84\",\n   \"metadata\": {},\n   \"source\": [\n    \"## Line Plots\\n\",\n    \"\\n\",\n    \"Numeric STAC metadata can also be plotted, most often this will be plotted vs the Item `datetime`.\"\n   ]\n  },\n  {\n   \"cell_type\": \"code\",\n   \"execution_count\": null,\n   \"id\": \"c198e261\",\n   \"metadata\": {},\n   \"outputs\": [],\n   \"source\": [\n    \"items_df = pd.DataFrame(items_gdf)\\n\",\n    \"\\n\",\n    \"plot_fields = [\\n\",\n    \"    \\\"properties.eo:cloud_cover\\\",\\n\",\n    \"    \\\"properties.view:sun_azimuth\\\",\\n\",\n    \"    \\\"properties.view:sun_elevation\\\",\\n\",\n    \"]\\n\",\n    \"\\n\",\n    \"items_df[plot_fields].hvplot(height=500, width=800).opts(legend_position=\\\"top_right\\\")\"\n   ]\n  }\n ],\n \"metadata\": {\n  \"interpreter\": {\n   \"hash\": \"6b6313dbab648ff537330b996f33bf845c0da10ea77ae70864d6ca8e2699c7ea\"\n  },\n  \"kernelspec\": {\n   \"display_name\": \"Python 3 (ipykernel)\",\n   \"language\": \"python\",\n   \"name\": \"python3\"\n  },\n  \"language_info\": {\n   \"codemirror_mode\": {\n    \"name\": \"ipython\",\n    \"version\": 3\n   },\n   \"file_extension\": \".py\",\n   \"mimetype\": \"text/x-python\",\n   \"name\": \"python\",\n   \"nbconvert_exporter\": \"python\",\n   \"pygments_lexer\": \"ipython3\",\n   \"version\": \"3.9.16\"\n  }\n },\n \"nbformat\": 4,\n \"nbformat_minor\": 5\n}\n"
  },
  {
    "path": "docs/tutorials.rst",
    "content": ".. _tutorials:\n\nTutorials\n#########\n\nPySTAC-Client Introduction\n--------------------------\n\n- :tutorial:`GitHub version <pystac-client-introduction.ipynb>`\n- :ref:`Docs version </tutorials/pystac-client-introduction.ipynb>`\n\nThis tutorial gives an introduction to using pystac-client with a STAC API\n\nSTAC Metadata Visualization\n---------------------------\n\n- :tutorial:`GitHub version <stac-metadata-viz.ipynb>`\n- :ref:`Docs version </tutorials/stac-metadata-viz.ipynb>`\n\nThis tutorial gives an introduction to using hvplot to visualize\nSTAC metadata and Item geometries on a map.\n\nCQL2 Filtering\n---------------------------\n\n- :tutorial:`GitHub version <cql2-filter.ipynb>`\n- :ref:`Docs version </tutorials/cql2-filter.ipynb>`\n\nThis tutorial gives an introduction to using CQL2-JSON filtering in searches to\nsearch by arbitrary STAC Item properties.\n\nItem Search with Intersects\n-----------------------------------------------------\n\n- :tutorial:`GitHub version <item-search-intersects.ipynb>`\n- :ref:`Docs version </tutorials/item-search-intersects.ipynb>`\n\nThis tutorial demonstrates the use of different Python library\nobject types that can be used for the `intersects`\nsearch parameter.\n\nCalculating Coverage Percentage of the AOI by an Item\n-----------------------------------------------------\n\n- :tutorial:`GitHub version <aoi-coverage.ipynb>`\n- :ref:`Docs version </tutorials/aoi-coverage.ipynb>`\n\nThis tutorial demonstrates the use of pystac-client to calculate the\npercentage an Item's geometry that intesects with the area of interest\n(AOI) specified in the search by the `intersects` parameter.\n\nAuthentication\n--------------\n\n- :tutorial:`GitHub version <authentication.md>`\n- :ref:`Docs version </tutorials/authentication.md>`\n\nThis tutorial demontrates different ways the pystac-client can be\nused to access a private stac api, when protected with various\nauthentication mechanisms.\n"
  },
  {
    "path": "docs/usage.rst",
    "content": "Usage\n#####\n\nPySTAC-Client (pystac-client) builds upon\n`PySTAC <https://github.com/stac-utils/pystac>`_ library to add support\nfor STAC APIs in addition to static STAC catalogs. PySTAC-Client can be used with static\nor dynamic (i.e., API) catalogs. Currently, pystac-client does not offer much in the way\nof additional functionality if using with static catalogs, as the additional features\nare for support STAC API endpoints such as `search`. However, in the future it is\nexpected that pystac-client will offer additional convenience functions that may be\nuseful for static and dynamic catalogs alike.\n\nThe most basic implementation of a STAC API is an endpoint that returns a valid STAC\nCatalog, but also contains a ``\"conformsTo\"`` attribute that is a list of conformance\nURIs for the standards that the API supports.\n\nThis section is organized by the classes that are used, which mirror parent classes\nfrom PySTAC:\n\n+------------------+------------+\n| pystac-client    | pystac     |\n+==================+============+\n| Client           | Catalog    |\n+------------------+------------+\n| CollectionClient | Collection |\n+------------------+------------+\n\nThe classes offer all of the same functions for accessing and traversing Catalogs as\nin PySTAC. The documentation for pystac-client only includes new functions, it does\nnot duplicate documentation for inherited functions.\n\nClient\n++++++\n\nThe :class:`pystac_client.Client` class is the main interface for working with services\nthat conform to the STAC API spec. This class inherits from the :class:`pystac.Catalog`\nclass and in addition to the methods and attributes implemented by a Catalog, it also\nincludes convenience methods and attributes for:\n\n* Checking conformance to various specs\n* Querying a search endpoint (if the API conforms to the STAC API - Item Search spec)\n* Getting jsonschema of queryables from `/queryables` endpoint (if the API conforms\n  to the STAC API - Filter spec)\n\nThe preferred way to interact with any STAC Catalog or API is to create an\n:class:`pystac_client.Client` instance with the ``pystac_client.Client.open`` method\non a root Catalog. This calls the :meth:`pystac.STACObject.from_file` except it\nproperly configures conformance and IO for reading from remote servers.\n\nThe following code creates an instance by making a call to the Microsoft Planetary\nComputer root catalog.\n\n.. code-block:: python\n\n    >>> from pystac_client import Client\n    >>> catalog = Client.open('https://planetarycomputer.microsoft.com/api/stac/v1')\n    >>> catalog.title\n    'Microsoft Planetary Computer STAC API'\n\nSome functions, such as ``Client.search`` will throw an error if the provided\nCatalog/API does not support the required Conformance Class. In other cases,\nsuch as ``Client.get_collections``, API endpoints will be used if the API\nconforms, otherwise it will fall back to default behavior provided by\n:class:`pystac.Catalog`.\n\nWhen a ``Client`` does not conform to a particular Conformance Class, an informative\nwarning is raised. Similarly when falling back to the :class:`pystac.Catalog`\nimplementation a warning is raised. You can control the behavior of these warnings\nusing the standard :py:mod:`warnings` or special context managers :func:`pystac_client.warnings.strict` and\nfrom :func:`pystac_client.warnings.ignore`.\n\nAPI Conformance\n---------------\n\nThis library is intended to work with any STAC static catalog or STAC API. A static\ncatalog will be usable more or less the same as with PySTAC, except that pystac-client\nsupports providing custom headers to API endpoints. (e.g., authenticating\nto an API with a token).\n\nA STAC API is a STAC Catalog that is required to advertise its capabilities in a\n`conformsTo` field and implements the `STAC API - Core` spec along with other\noptional specifications:\n\n* `CORE <https://github.com/radiantearth/stac-api-spec/tree/master/core>`__\n* `ITEM_SEARCH <https://github.com/radiantearth/stac-api-spec/tree/master/item-search>`__\n   * `FIELDS <https://github.com/radiantearth/stac-api-spec/tree/master/fragments/fields>`__\n   * `QUERY <https://github.com/radiantearth/stac-api-spec/tree/master/fragments/query>`__\n   * `SORT <https://github.com/radiantearth/stac-api-spec/tree/master/fragments/sort>`__\n   * `CONTEXT <https://github.com/radiantearth/stac-api-spec/tree/master/fragments/context>`__\n   * `FILTER <https://github.com/radiantearth/stac-api-spec/tree/master/fragments/filter>`__\n* `COLLECTIONS <https://github.com/radiantearth/stac-api-spec/tree/master/collections>`__ (based on\n  the `Features Collection section of OGC APO -  Features <http://docs.opengeospatial.org/is/17-069r3/17-069r3.html#_collections_>__`)\n* `FEATURES <https://github.com/radiantearth/stac-api-spec/tree/master/ogcapi-features>`__ (based on\n  `OGC API - Features <https://www.ogc.org/standards/ogcapi-features>`__)\n\nThe :meth:`pystac_client.Client.conforms_to` method is used to check conformance\nagainst conformance classes (specs). To check an API for support for a given spec,\npass the `conforms_to` function the name of a :class:`ConformanceClasses`.\n\n.. code-block:: python\n\n    >>> catalog.conforms_to(\"ITEM_SEARCH\")\n    True\n\nIf the API does not advertise conformance with a particular spec, but it does support\nit you can update `conforms_to` on the client object. For instance in `v0` of earth-search\nthere are no ``\"conformsTo\"`` uris set at all. But they can be explicitly set:\n\n.. code-block:: python\n\n    >>> catalog = Client.open(\"https://earth-search.aws.element84.com/v0\")\n    <stdin>:1: NoConformsTo: Server does not advertise any conformance classes.\n    >>> catalog.conforms_to(\"ITEM_SEARCH\")\n    False\n    >>> catalog.add_conforms_to(\"ITEM_SEARCH\")\n\nNote, updating ``\"conformsTo\"`` does not change what the server supports, it just\nchanges PySTAC client's understanding of what the server supports.\n\nConfiguring retry behavior\n--------------------------\n\nBy default, **pystac-client** will retry requests that fail DNS lookup or have timeouts.\nIf you'd like to configure this behavior, e.g. to retry on some ``50x`` responses, you can configure the StacApiIO's session:\n\n.. code-block:: python\n\n    from requests.adapters import HTTPAdapter\n    from urllib3 import Retry\n\n    from pystac_client import Client\n    from pystac_client.stac_api_io import StacApiIO\n\n    retry = Retry(\n        total=5, backoff_factor=1, status_forcelist=[502, 503, 504], allowed_methods=None\n    )\n    stac_api_io = StacApiIO(max_retries=retry)\n    client = Client.open(\n        \"https://planetarycomputer.microsoft.com/api/stac/v1\", stac_io=stac_api_io\n    )\n\nAutomatically modifying results\n-------------------------------\n\nSome systems, like the `Microsoft Planetary Computer <http://planetarycomputer.microsoft.com/>`__,\nhave public STAC metadata but require some `authentication <https://planetarycomputer.microsoft.com/docs/concepts/sas/>`__\nto access the actual assets.\n\n``pystac-client`` provides a ``modifier`` keyword that can automatically\nmodify the STAC objects returned by the STAC API.\n\n.. code-block:: python\n\n   >>> from pystac_client import Client\n   >>> import planetary_computer, requests\n   >>> catalog = Client.open(\n   ...    'https://planetarycomputer.microsoft.com/api/stac/v1',\n   ...    modifier=planetary_computer.sign_inplace,\n   ... )\n   >>> item = next(catalog.get_collection(\"sentinel-2-l2a\").get_all_items())\n   >>> requests.head(item.assets[\"B02\"].href).status_code\n   200\n\nWithout the modifier, we would have received a 404 error because the asset\nis in a private storage container.\n\n``pystac-client`` expects that the ``modifier`` callable modifies the result\nobject in-place and returns no result. A warning is emitted if your\n``modifier`` returns a non-None result that is not the same object as the\ninput.\n\nHere's an example of creating your own modifier.\nBecause :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).\nSimplifying this interface is a space for future improvement.\n\n.. code-block:: python\n\n    import urllib.parse\n\n    import pystac\n\n    from pystac_client import Client, Modifiable\n\n\n    def modifier(modifiable: Modifiable) -> None:\n        if isinstance(modifiable, dict):\n            if modifiable[\"type\"] == \"FeatureCollection\":\n                new_features = list()\n                for item_dict in modifiable[\"features\"]:\n                    modifier(item_dict)\n                    new_features.append(item_dict)\n                modifiable[\"features\"] = new_features\n            else:\n                stac_object = pystac.read_dict(modifiable)\n                modifier(stac_object)\n                modifiable.update(stac_object.to_dict())\n        else:\n            for key, asset in modifiable.assets.items():\n                url = urllib.parse.urlparse(asset.href)\n                if not url.query:\n                    asset.href = urllib.parse.urlunparse(url._replace(query=\"foo=bar\"))\n                    modifiable.assets[key] = asset\n\n\n    client = Client.open(\n        \"https://planetarycomputer.microsoft.com/api/stac/v1\", modifier=modifier\n    )\n    item_search = client.search(collections=[\"landsat-c2-l2\"], max_items=1)\n    item = next(item_search.items())\n    asset = item.assets[\"red\"]\n    assert urllib.parse.urlparse(asset.href).query == \"foo=bar\"\n\n\nUsing custom certificates\n-------------------------\n\nIf you need to use custom certificates in your ``pystac-client`` requests, you can\ncustomize the :class:`StacApiIO<pystac_client.stac_api_io.StacApiIO>` instance before\ncreating your :class:`Client<pystac_client.Client>`.\n\n.. code-block:: python\n\n    >>> from pystac_client.stac_api_io import StacApiIO\n    >>> from pystac_client.client import Client\n    >>> stac_api_io = StacApiIO()\n    >>> stac_api_io.session.verify = \"/path/to/certfile\"\n    >>> client = Client.open(\"https://planetarycomputer.microsoft.com/api/stac/v1\", stac_io=stac_api_io)\n\nCollectionClient\n++++++++++++++++\n\nSTAC APIs may optionally implement a ``/collections`` endpoint as described in the\n`STAC API - Collections spec\n<https://github.com/radiantearth/stac-api-spec/tree/release/v1.0.0/ogcapi-features#stac-api---collections>`__. \nThis endpoint allows clients to search or inspect items within a particular collection.\n\n.. code-block:: python\n\n    >>> catalog = Client.open('https://planetarycomputer.microsoft.com/api/stac/v1')\n    >>> collection = catalog.get_collection(\"sentinel-2-l2a\")\n    >>> collection.title\n    'Sentinel-2 Level-2A'\n\n:class:`pystac_client.CollectionClient` overrides :meth:`pystac.Collection.get_items`.\nPySTAC will get items by iterating through all children until it gets to an ``item`` link.\nPySTAC client will use the API endpoint instead: `/collections/<collection_id>/items`\n(as long as `STAC API - Item Search spec\n<https://github.com/radiantearth/stac-api-spec/tree/release/v1.0.0/item-search>`__ is supported).\n\n.. code-block:: python\n\n    >>> item = next(collection.get_items(), None)\n\nNote that calling list on this iterator will take a really long time since it will be retrieving\nevery itme for the whole ``\"sentinel-2-l2a\"`` collection.\n\nCollectionSearch\n++++++++++++++++\n\nSTAC API services may optionally implement a ``/collections`` endpoint as described in the\n`STAC API - Collections spec\n<https://github.com/radiantearth/stac-api-spec/tree/release/v1.0.0/ogcapi-features#stac-api---collections>`__.\nThe ``/collections`` endpoint can be extended with the \n`STAC API - Collection Search Extension <https://github.com/stac-api-extensions/collection-search>`__ \nwhich adds the capability to apply filter parameters to the collection-level metadata. \nSee the `Query Parameters and Fields\n<https://github.com/stac-api-extensions/collection-search?tab=readme-ov-file#query-parameters-and-fields>`__\nfrom that spec for details on the meaning of each parameter.\n\nThe :meth:`pystac_client.Client.collection_search` method provides an interface for making\nrequests to a service's \"collections\" endpoint. This method returns a\n:class:`pystac_client.CollectionSearch` instance.\n\n.. code-block:: python\n\n    >>> from pystac_client import Client\n    >>> catalog = Client.open('https://planetarycomputer.microsoft.com/api/stac/v1')\n    >>> results = catalog.collection_search(\n    ...     q=\"biomass\",\n    ...     datetime=\"2022/..\"\n    ... )\n\nInstances of :class:`~pystac_client.CollectionSearch` have a handful of methods for\ngetting matching collections as Python objects. The right method to use depends on\nhow many of the matches you want to consume (a single collection at a time, a\npage at a time, or everything) and whether you want plain Python dictionaries\nrepresenting the collections, or :class:`pystac.Collection` objects.\n\nThe following table shows the :class:`~pystac_client.CollectionSearch` methods for fetching\nmatches, according to which set of matches to return and whether to return them as\n``pystac`` objects or plain dictionaries.\n\n====================== ======================================================= ===============================================================\nMatches to return      PySTAC objects                                          Plain dictionaries\n====================== ======================================================= ===============================================================\n**Single collections** :meth:`~pystac_client.CollectionSearch.collections`     :meth:`~pystac_client.CollectionSearch.collections_as_dicts`\n**Pages**              :meth:`~pystac_client.CollectionSearch.pages`           :meth:`~pystac_client.CollectionSearch.pages_as_dicts`\n**Everything**         :meth:`~pystac_client.CollectionSearch.collection_list` :meth:`~pystac_client.CollectionSearch.collection_list_as_dict`\n====================== ======================================================= ===============================================================\n\nAdditionally, the ``matched`` method can be used to access result metadata about\nhow many total items matched the query:\n\n* :meth:`CollectionSearch.matched <pystac_client.CollectionSearch.matched>`: returns the number\n  of hits (collections) for this search. If the API supports the STAC API Context Extension this\n  value will be returned directly from a search result with ``limit=1``. Otherwise ``pystac-client``\n  will count the results and return a value with an associated warning.\n\n.. code-block:: python\n\n    >>> for collection in results.collections():\n    ...     print(item.id)\n    fia\n    modis-13Q1-061\n    modis-13A1-061\n    sentinel-3-olci-lfr-l2-netcdf\n\nThe :meth:`~pystac_client.CollectionSearch.collections` and related methods handle retrieval of\nsuccessive pages of results\nby finding links with a ``\"rel\"`` type of ``\"next\"`` and parsing them to construct the\nnext request. The default\nimplementation of this ``\"next\"`` link parsing assumes that the link follows the spec for\nan extended STAC link as\ndescribed in the\n`STAC API - Collections: Collection Paging <https://github.com/radiantearth/stac-api-spec/blob/main/ogcapi-features/README.md#collection-pagination>`__\nsection.\n\nAlternatively, the Collections can be returned as a list, where each\nlist is one page of results retrieved from search:\n\n.. code-block:: python\n\n    >>> for page in results.pages():\n    ...     for collection in page.collections():\n    ...         print(collection.id)\n    fia\n    modis-13Q1-061\n    modis-13A1-061\n    sentinel-3-olci-lfr-l2-netcdf\n\nIf you do not need the :class:`pystac.Collection` instances, you can instead use\n:meth:`CollectionSearch.collections_as_dicts <pystac_client.CollectionSearch.collections_as_dicts>`\nto retrieve dictionary representation of the collections, without incurring the cost of\ncreating the Collection objects.\n\n.. code-block:: python\n\n    >>> for collection_dict in results.collections_as_dicts():\n    ...     print(collection_dict[\"id\"])\n    fia\n    modis-13Q1-061\n    modis-13A1-061\n    sentinel-3-olci-lfr-l2-netcdf\n\nItemSearch\n++++++++++\n\nSTAC API services may optionally implement a ``/search`` endpoint as describe in the\n`STAC API - Item Search spec\n<https://github.com/radiantearth/stac-api-spec/tree/main/item-search>`__. This\nendpoint allows clients to query STAC Items across the entire service using a variety\nof filter parameters. See the `Query Parameter Table\n<https://github.com/radiantearth/stac-api-spec/tree/main/item-search#query-parameter-table>`__\nfrom that spec for details on the meaning of each parameter.\n\nThe :meth:`pystac_client.Client.search` method provides an interface for making\nrequests to a service's \"search\" endpoint. This method returns a\n:class:`pystac_client.ItemSearch` instance.\n\n.. code-block:: python\n\n    >>> from pystac_client import Client\n    >>> catalog = Client.open('https://planetarycomputer.microsoft.com/api/stac/v1')\n    >>> results = catalog.search(\n    ...     max_items=5,\n    ...     bbox=[-73.21, 43.99, -73.12, 44.05],\n    ...     datetime=['2019-01-01T00:00:00Z', '2019-01-02T00:00:00Z'],\n    ... )\n\nInstances of :class:`~pystac_client.ItemSearch` have a handful of methods for\ngetting matching items as Python objects. The right method to use depends on\nhow many of the matches you want to consume (a single item at a time, a\npage at a time, or everything) and whether you want plain Python dictionaries\nrepresenting the items, or :class:`pystac.Item` objects.\n\nThe following table shows the :class:`~pystac_client.ItemSearch` methods for fetching\nmatches, according to which set of matches to return and whether to return them as\n``pystac`` objects or plain dictionaries.\n\n================= ================================================= =========================================================\nMatches to return PySTAC objects                                    Plain dictionaries\n================= ================================================= =========================================================\n**Single items**  :meth:`~pystac_client.ItemSearch.items`           :meth:`~pystac_client.ItemSearch.items_as_dicts`\n**Pages**         :meth:`~pystac_client.ItemSearch.pages`           :meth:`~pystac_client.ItemSearch.pages_as_dicts`\n**Everything**    :meth:`~pystac_client.ItemSearch.item_collection` :meth:`~pystac_client.ItemSearch.item_collection_as_dict`\n================= ================================================= =========================================================\n\nAdditionally, the ``matched`` method can be used to access result metadata about\nhow many total items matched the query:\n\n* :meth:`ItemSearch.matched <pystac_client.ItemSearch.matched>`: returns the number\n  of hits (items) for this search if the API supports the STAC API Context Extension.\n  Not all APIs support returning a total count, in which case a warning will be issued.\n\n.. code-block:: python\n\n    >>> for item in results.items():\n    ...     print(item.id)\n    S2B_OPER_MSI_L2A_TL_SGS__20190101T200120_A009518_T18TXP_N02.11\n    MCD43A4.A2019010.h12v04.006.2019022234410\n    MCD43A4.A2019009.h12v04.006.2019022222645\n    MYD11A1.A2019002.h12v04.006.2019003174703\n    MYD11A1.A2019001.h12v04.006.2019002165238\n\nThe :meth:`~pystac_client.ItemSearch.items` and related methods handle retrieval of\nsuccessive pages of results\nby finding links with a ``\"rel\"`` type of ``\"next\"`` and parsing them to construct the\nnext request. The default\nimplementation of this ``\"next\"`` link parsing assumes that the link follows the spec for\nan extended STAC link as\ndescribed in the\n`STAC API - Item Search: Paging <https://github.com/radiantearth/stac-api-spec/tree/master/item-search#paging>`__\nsection. See the :mod:`Paging <pystac_client.paging>` docs for details on how to\ncustomize this behavior.\n\nAlternatively, the Items can be returned within ItemCollections, where each\nItemCollection is one page of results retrieved from search:\n\n.. code-block:: python\n\n    >>> for ic in results.pages():\n    ...     for item in ic.items:\n    ...         print(item.id)\n    S2B_OPER_MSI_L2A_TL_SGS__20190101T200120_A009518_T18TXP_N02.11\n    MCD43A4.A2019010.h12v04.006.2019022234410\n    MCD43A4.A2019009.h12v04.006.2019022222645\n    MYD11A1.A2019002.h12v04.006.2019003174703\n    MYD11A1.A2019001.h12v04.006.2019002165238\n\nIf you do not need the :class:`pystac.Item` instances, you can instead use\n:meth:`ItemSearch.items_as_dicts <pystac_client.ItemSearch.items_as_dicts>`\nto retrieve dictionary representation of the items, without incurring the cost of\ncreating the Item objects.\n\n.. code-block:: python\n\n    >>> for item_dict in results.items_as_dicts():\n    ...     print(item_dict[\"id\"])\n    S2B_OPER_MSI_L2A_TL_SGS__20190101T200120_A009518_T18TXP_N02.11\n    MCD43A4.A2019010.h12v04.006.2019022234410\n    MCD43A4.A2019009.h12v04.006.2019022222645\n    MYD11A1.A2019002.h12v04.006.2019003174703\n    MYD11A1.A2019001.h12v04.006.2019002165238\n\nQuery Extension\n---------------\n\nIf the Catalog supports the `Query\nextension <https://github.com/radiantearth/stac-api-spec/tree/master/fragments/query>`__,\nany Item property can also be included in the search. Rather than\nrequiring the JSON syntax the Query extension uses, pystac-client can use a\nsimpler syntax that it will translate to the JSON equivalent. Note\nhowever that when the simple syntax is used it sends all property values\nto the server as strings, except for ``gsd`` which it casts to\n``float``. This means that if there are extensions in use with numeric\nproperties these will be sent as strings. Some servers may automatically\ncast this to the appropriate data type, others may not.\n\nThe query filter will also accept complete JSON as per the specification.\n\n::\n\n  <property><operator><value>\n\n  where operator is one of `>=`, `<=`, `>`, `<`, `=`\n\n  Examples:\n  eo:cloud_cover<10\n  view:off_nadir<50\n  platform=landsat-8\n\nAny number of properties can be included, and each can be included more\nthan once to use additional operators.\n\nSort Extension\n---------------\n\nIf the Catalog supports the `Sort\nextension <https://github.com/radiantearth/stac-api-spec/tree/master/fragments/sort>`__,\nthe search request can specify the order in which the results should be sorted with\nthe ``sortby`` parameter.  The ``sortby`` parameter can either be a string\n(e.g., ``\"-properties.datetime,+id,collection\"``), a list of strings\n(e.g., ``[\"-properties.datetime\", \"+id\", \"+collection\"]``), or a dictionary representing\nthe POST JSON format of sortby. In the string and list formats, a ``-`` prefix means a\ndescending sort and a ``+`` prefix or no prefix means an ascending sort.\n\n.. code-block:: python\n\n    >>> from pystac_client import Client\n    >>> results = Client.open('https://planetarycomputer.microsoft.com/api/stac/v1').search(\n    ...     sortby=\"properties.datetime\"\n    ... )\n    >>> results = Client.open('https://planetarycomputer.microsoft.com/api/stac/v1').search(\n    ...     sortby=\"-properties.datetime,+id,+collection\"\n    ... )\n    >>> results = Client.open('https://planetarycomputer.microsoft.com/api/stac/v1').search(\n    ...     sortby=[\"-properties.datetime\", \"+id\" , \"+collection\" ]\n    ... )\n    >>> results = Client.open('https://planetarycomputer.microsoft.com/api/stac/v1').search(\n    ...     sortby=[\n                {\"direction\": \"desc\", \"field\": \"properties.datetime\"},\n                {\"direction\": \"asc\", \"field\": \"id\"},\n                {\"direction\": \"asc\", \"field\": \"collection\"},\n            ]\n    ... )\n\nLoading data\n++++++++++++\n\nOnce you've fetched your STAC :class:`Items<pystac.Item>` with ``pystac-client``, you\nnow can work with the data referenced by your :class:`Assets<pystac.Asset>`.  This is\nout of scope for ``pystac-client``, but there's a wide variety of tools and options\navailable, and the correct choices depend on your type of data, your environment, and\nthe type of analysis you're doing.\n\nFor simple workflows, it can be easiest to load data directly using `rasterio\n<https://rasterio.readthedocs.io>`_, `fiona <https://fiona.readthedocs.io/>`_, and\nsimilar tools. Here is a simple example using **rasterio** to display data from a raster\nfile.\n\n.. code-block:: python\n\n    >>> import rasterio.plot.show\n    >>> with rasterio.open(item.assets[\"data\"].href) as dataset:\n    ...     rasterio.plot.show(dataset)\n\nFor larger sets of data and more complex workflows, a common tool for working with a\nlarge number of raster files is `xarray <https://docs.xarray.dev>`_, which provides data\nstructures for labelled multi-dimensional arrays. `stackstac\n<https://stackstac.readthedocs.io>`_ and `odc-stac <https://odc-stac.readthedocs.io>`_\nare two similar tools that can load asset data from :class:`Items<pystac.Item>` or an\n:class:`ItemCollection<pystac.ItemCollection>` into an **xarray**. Here's a simple\nexample from **odc-stac**'s documentation:\n\n.. code-block:: python\n\n    >>> catalog = pystac_client.Client.open(...)\n    >>> query = catalog.search(...)\n    >>> xx = odc.stac.load(\n    ...     query.get_items(),\n    ...     bands=[\"red\", \"green\", \"blue\"],\n    ...     resolution=100,\n    ... )\n    >>> xx.red.plot.imshow(col=\"time\")\n\n\nSee each packages's respective documentation for more examples and tutorials.\n\n.. _how_to:\n\nHow To\n++++++++++++\n\nGet the latest dataset across multiple collections\n-----------------------------------------\n\nWhen searching for multiple datasets across different collections, each dataset may be derived from a different time period. You may want to get the latest dataset for each collection instead of all available datasets.\n\n.. code-block:: python\n\n    from pystac_client import Client\n\n    client = Client.open(\"https://planetarycomputer.microsoft.com/api/stac/v1\")\n    items = []\n    for collection in [\"nasadem\", \"esa-worldcover\", \"jrc-gsw\"]:\n        items.append(\n            next(\n                client.search(\n                    collections=[collection], max_items=1, sortby=\"-properties.datetime\"\n                ).items()\n            )\n        )\n\nThe result will be a list containing the most recent item from each collection:\n\n    >>> items\n    [<Item id=NASADEM_HGT_s56w072>, <Item id=ESA_WorldCover_10m_2021_v200_S60W030>, <Item id=90W_80Nv1_3_2020>]"
  },
  {
    "path": "pyproject.toml",
    "content": "[project]\nname = \"pystac-client\"\ndescription = \"Python library for searching SpatioTemporal Asset Catalog (STAC) APIs.\"\nreadme = \"README.md\"\nauthors = [\n    { name = \"Jon Duckworth\", email = \"duckontheweb@gmail.com\" },\n    { name = \"Matthew Hanson\", email = \"matt.a.hanson@gmail.com\" },\n]\nmaintainers = [{ name = \"Pete Gadomski\", email = \"pete.gadomski@gmail.com\" }]\nkeywords = [\"pystac\", \"imagery\", \"raster\", \"catalog\", \"STAC\"]\nlicense = { text = \"Apache-2.0\" }\nclassifiers = [\n    \"Programming Language :: Python\",\n    \"Programming Language :: Python :: 3\",\n    \"Programming Language :: Python :: 3.10\",\n    \"Programming Language :: Python :: 3.11\",\n    \"Programming Language :: Python :: 3.12\",\n    \"Operating System :: OS Independent\",\n    \"Natural Language :: English\",\n    \"Development Status :: 4 - Beta\",\n    \"Intended Audience :: Developers\",\n    \"License :: OSI Approved :: Apache Software License\",\n    \"Topic :: Scientific/Engineering :: GIS\",\n    \"Topic :: Software Development :: Libraries\",\n    \"Topic :: Software Development :: Libraries :: Python Modules\",\n]\nrequires-python = \">=3.10\"\ndependencies = [\n    \"requests>=2.28.2\",\n    \"pystac[validation]>=1.10.0\",\n    \"python-dateutil>=2.8.2\",\n]\ndynamic = [\"version\"]\n\n[project.scripts]\nstac-client = \"pystac_client.cli:cli\"\n\n[dependency-groups]\ndev = [\n    \"codespell~=2.4.0\",\n    \"coverage~=7.2\",\n    \"cql2>=0.3.7\",\n    \"doc8~=2.0.0\",\n    \"importlib-metadata~=9.0\",\n    \"mypy~=1.2\",\n    \"orjson~=3.8\",\n    \"pre-commit~=4.0\",\n    \"pytest-benchmark~=5.2.0\",\n    \"pytest-console-scripts~=1.4.0\",\n    \"pytest-cov~=7.0\",\n    \"pytest-recording~=0.13\",\n    \"pytest~=9.0\",\n    \"recommonmark~=0.7.1\",\n    \"requests-mock~=1.12\",\n    \"ruff==0.15.12\",\n    \"tomli~=2.0; python_version<'3.11'\",\n    \"types-python-dateutil>=2.8.19,<2.10.0\",\n    \"types-requests~=2.33.0\",\n    \"urllib3>=2.4\",\n]\ndocs = [\n    \"Sphinx~=8.0\",\n    \"boto3~=1.26\",\n    \"cartopy~=0.21\",\n    \"geojson~=3.2.0\",\n    \"geopandas~=1.1.1\",\n    \"geoviews~=1.9\",\n    \"hvplot~=0.12.0\",\n    \"ipykernel~=7.0\",\n    \"ipython~=8.12\",\n    \"jinja2>=3.0,<4.0\",\n    \"matplotlib~=3.8\",\n    \"myst-parser~=4.0\",\n    \"nbsphinx~=0.9\",\n    \"pydata-sphinx-theme~=0.13\",\n    \"pygeoif~=1.0\",\n    \"scipy~=1.10\",\n    \"sphinxcontrib-fulltoc~=1.2\",\n]\n\n[project.urls]\nhomepage = \"https://github.com/stac-utils/pystac-client\"\ndocumentation = \"https://pystac-client.readthedocs.io\"\nrepository = \"https://github.com/stac-utils/pystac-client.git\"\nchangelog = \"https://github.com/stac-utils/pystac-client/blob/main/CHANGELOG.md\"\ndiscussions = \"https://github.com/radiantearth/stac-spec/discussions/categories/stac-software\"\n\n[tool.setuptools.packages.find]\ninclude = [\"pystac_client*\"]\nexclude = [\"tests*\"]\n\n[tool.setuptools.dynamic]\nversion = { attr = \"pystac_client.version.__version__\" }\n\n[tool.doc8]\nignore-path = \"docs/_build,docs/tutorials\"\nmax-line-length = 130\n\n[tool.ruff]\nline-length = 88\n\n[tool.ruff.lint]\nignore = [\"E722\", \"E731\"]\nselect = [\"E\", \"F\", \"W\", \"I\"]\n\n[tool.ruff.lint.per-file-ignores]\n\"__init__.py\" = [\"F401\"]\n\"test_item_search.py\" = [\"E501\"]\n\n[tool.pytest.ini_options]\nmarkers = \"vcr: records network activity\"\naddopts = \"--benchmark-skip --block-network -Werror\"\nfilterwarnings = [\n    \"ignore::ResourceWarning\",\n    \"ignore::pytest.PytestUnraisableExceptionWarning\",\n]\n\n[tool.mypy]\nshow_error_codes = true\nstrict = true\n\n[[tool.mypy.overrides]]\nmodule = [\"jinja2\"]\nignore_missing_imports = true\n\n[build-system]\nrequires = [\"setuptools>=61.0\"]\nbuild-backend = \"setuptools.build_meta\"\n"
  },
  {
    "path": "pystac_client/__init__.py",
    "content": "__all__ = [\n    \"Client\",\n    \"CollectionClient\",\n    \"CollectionSearch\",\n    \"ConformanceClasses\",\n    \"ItemSearch\",\n    \"Modifiable\",\n    \"__version__\",\n]\n\nfrom pystac_client._utils import Modifiable\nfrom pystac_client.client import Client\nfrom pystac_client.collection_client import CollectionClient\nfrom pystac_client.collection_search import CollectionSearch\nfrom pystac_client.conformance import ConformanceClasses\nfrom pystac_client.item_search import ItemSearch\nfrom pystac_client.version import __version__\n"
  },
  {
    "path": "pystac_client/_utils.py",
    "content": "import urllib\nimport warnings\nfrom collections.abc import Callable\nfrom typing import Any, Union\n\nimport pystac\n\nfrom pystac_client.errors import IgnoredResultWarning\n\nModifiable = Union[\n    pystac.Collection, pystac.Item, pystac.ItemCollection, dict[Any, Any]\n]\n\n\ndef call_modifier(\n    modifier: Callable[[Modifiable], None] | None, obj: Modifiable\n) -> None:\n    \"\"\"Calls the user's modifier and validates that the result is None.\"\"\"\n    if modifier is None:\n        return None\n\n    result = modifier(obj)\n    if result is not None and result is not obj:\n        warnings.warn(\n            f\"modifier '{modifier}' returned a result that's being ignored. \"\n            \"You should ensure that 'modifier' is operating in-place and use \"\n            \"a function that returns 'None' or silence this warning.\",\n            IgnoredResultWarning,\n        )\n\n\ndef urljoin(href: str, name: str) -> str:\n    \"\"\"Joins a path onto an existing href, respecting query strings, etc.\"\"\"\n    url = urllib.parse.urlparse(href)\n    path = url.path\n    if not path.endswith(\"/\"):\n        path += \"/\"\n    return urllib.parse.urlunparse(url._replace(path=path + name))\n"
  },
  {
    "path": "pystac_client/cli.py",
    "content": "import argparse\nimport json\nimport logging\nimport os\nimport re\nimport sys\nimport warnings\nfrom typing import Any\n\nfrom pystac import STACError, STACTypeError\n\nfrom .client import Client\nfrom .conformance import ConformanceClasses\nfrom .item_search import (\n    OPS,\n    BBoxLike,\n    CollectionsLike,\n    DatetimeLike,\n    FieldsLike,\n    FilterLangLike,\n    FilterLike,\n    IDsLike,\n    IntersectsLike,\n    QueryLike,\n    SortbyLike,\n)\nfrom .version import __version__\nfrom .warnings import (\n    DoesNotConformTo,\n    FallbackToPystac,\n    MissingLink,\n    NoConformsTo,\n    PystacClientWarning,\n)\n\nlogger = logging.getLogger(__name__)\n\n\ndef search(\n    client: Client,\n    matched: bool = False,\n    save: str | None = None,\n    *,\n    method: str = \"GET\",\n    max_items: int | None = None,\n    limit: int | None = None,\n    ids: IDsLike | None = None,\n    collections: CollectionsLike | None = None,\n    bbox: BBoxLike | None = None,\n    intersects: IntersectsLike | None = None,\n    datetime: DatetimeLike | None = None,\n    query: QueryLike | None = None,\n    filter: FilterLike | None = None,\n    filter_lang: FilterLangLike | None = None,\n    sortby: SortbyLike | None = None,\n    fields: FieldsLike | None = None,\n) -> int:\n    \"\"\"Main function for performing a search\"\"\"\n\n    result = client.search(\n        method=method,\n        max_items=max_items,\n        limit=limit,\n        ids=ids,\n        collections=collections,\n        bbox=bbox,\n        intersects=intersects,\n        datetime=datetime,\n        query=query,\n        filter=filter,\n        filter_lang=filter_lang,\n        sortby=sortby,\n        fields=fields,\n    )\n\n    if matched:\n        if (nmatched := result.matched()) is not None:\n            print(f\"{nmatched} items matched\")\n        else:\n            raise KeyError(\"'matched' is not supported for this catalog\")\n    else:\n        feature_collection = result.item_collection_as_dict()\n        if save:\n            with open(save, \"w\") as f:\n                f.write(json.dumps(feature_collection))\n        else:\n            print(json.dumps(feature_collection))\n    return 0\n\n\ndef collections(\n    client: Client,\n    save: str | None = None,\n    matched: bool = False,\n    *,\n    max_collections: int | None = None,\n    limit: int | None = None,\n    bbox: BBoxLike | None = None,\n    datetime: DatetimeLike | None = None,\n    q: str | None = None,\n    query: QueryLike | None = None,\n    filter: FilterLike | None = None,\n    filter_lang: FilterLangLike | None = None,\n    sortby: SortbyLike | None = None,\n    fields: FieldsLike | None = None,\n) -> int:\n    \"\"\"Fetch collections from collections endpoint\"\"\"\n    try:\n        result = client.collection_search(\n            max_collections=max_collections,\n            limit=limit,\n            bbox=bbox,\n            datetime=datetime,\n            q=q,\n            query=query,\n            filter=filter,\n            filter_lang=filter_lang,\n            sortby=sortby,\n            fields=fields,\n        )\n        if matched:\n            if (nmatched := result.matched()) is not None:\n                print(f\"{nmatched} collections matched\")\n            else:\n                raise KeyError(\"'matched' is not supported for this catalog\")\n        else:\n            collections_dicts = list(result.collections_as_dicts())\n            if save:\n                with open(save, \"w\") as f:\n                    f.write(json.dumps(collections_dicts))\n            else:\n                print(json.dumps(collections_dicts))\n    except STACTypeError as e:\n        raise STACError(\n            f\"The client at {client.self_href} is OK, but one or more of the \"\n            \"collections is invalid.\"\n        ) from e\n    return 0\n\n\ndef add_warnings_behavior(parser: argparse.ArgumentParser) -> None:\n    warnings_group = parser.add_argument_group(\"warnings behavior\")\n    warnings_group.add_argument(\n        \"--error\",\n        nargs=\"*\",\n        choices=[\n            \"no-conforms-to\",\n            \"does-not-conform-to\",\n            \"missing-link\",\n            \"fallback-to-pystac\",\n        ],\n        help=\"Error on all stac-client warnings or specific warnings.\",\n    )\n    warnings_group.add_argument(\n        \"--ignore\",\n        nargs=\"*\",\n        choices=[\n            \"no-conforms-to\",\n            \"does-not-conform-to\",\n            \"missing-link\",\n            \"fallback-to-pystac\",\n        ],\n        help=\"Ignore all stac-client warnings or specific warnings.\",\n    )\n\n\ndef set_warnings(error: list[str] | None, ignore: list[str] | None) -> None:\n    # First set filters on the base class\n    if ignore is not None and len(ignore) == 0:\n        warnings.filterwarnings(\"ignore\", category=PystacClientWarning)\n    if error is not None and len(error) == 0:\n        warnings.filterwarnings(\"error\", category=PystacClientWarning)\n\n    # Then set filters on any specific classes\n    category_options = {\n        \"no-conforms-to\": NoConformsTo,\n        \"does-not-conform-to\": DoesNotConformTo,\n        \"missing-link\": MissingLink,\n        \"fallback-to-pystac\": FallbackToPystac,\n    }\n    if ignore is not None:\n        for w in ignore:\n            warnings.filterwarnings(\"ignore\", category=category_options[w])\n    if error is not None:\n        for w in error:\n            warnings.filterwarnings(\"error\", category=category_options[w])\n\n\ndef set_conforms_to(\n    client: Client, clear: bool, remove: list[str] | None, add: list[str] | None\n) -> None:\n    \"\"\"Alters conforms_to settings on client in-place\"\"\"\n    if clear:\n        client.clear_conforms_to()\n    if remove is not None:\n        for conformance_class in remove:\n            client.remove_conforms_to(conformance_class)\n    if add is not None:\n        for conformance_class in add:\n            client.add_conforms_to(conformance_class)\n\n\ndef parse_args(args: list[str]) -> dict[str, Any]:\n    desc = \"STAC Client\"\n    dhf = argparse.ArgumentDefaultsHelpFormatter\n    parser0 = argparse.ArgumentParser(description=desc)\n    parser0.add_argument(\n        \"--version\",\n        help=\"Print version and exit\",\n        action=\"version\",\n        version=__version__,\n    )\n\n    parent = argparse.ArgumentParser(add_help=False)\n    parent.add_argument(\"url\", help=\"Root Catalog URL\")\n    parent.add_argument(\n        \"--logging\", default=\"INFO\", help=\"DEBUG, INFO, WARN, ERROR, CRITICAL\"\n    )\n    parent.add_argument(\n        \"--headers\",\n        nargs=\"*\",\n        help=\"Additional request headers (KEY=VALUE pairs)\",\n        default=None,\n    )\n    parent.add_argument(\n        \"--add-conforms-to\",\n        choices=[c.name for c in ConformanceClasses],\n        nargs=\"*\",\n        help=\"Specify conformance classes to add to client\",\n    )\n    parent.add_argument(\n        \"--remove-conforms-to\",\n        choices=[c.name for c in ConformanceClasses],\n        nargs=\"*\",\n        help=\"Specify conformance classes to remove from client\",\n    )\n    parent.add_argument(\n        \"--clear-conforms-to\",\n        default=False,\n        action=\"store_true\",\n    )\n\n    subparsers = parser0.add_subparsers(dest=\"command\")\n\n    # collections command\n    parser = subparsers.add_parser(\n        \"collections\",\n        help=\"Get all collections in this Catalog\",\n        parents=[parent],\n        formatter_class=dhf,\n    )\n    add_warnings_behavior(parser)\n\n    collections_group = parser.add_argument_group(\"collection search options\")\n    collections_group.add_argument(\n        \"--bbox\", help=\"Bounding box (min lon, min lat, max lon, max lat)\", nargs=4\n    )\n    collections_group.add_argument(\n        \"--datetime\",\n        help=\"Single datetime or begin and end datetime (e.g., 2017-01-01/2017-02-15)\",\n    )\n    collections_group.add_argument(\"--q\", help=\"Free-text search query\")\n    collections_group.add_argument(\n        \"--query\",\n        nargs=\"*\",\n        help=f\"Query properties of form KEY=VALUE ({','.join(OPS)} supported)\",\n    )\n    collections_group.add_argument(\n        \"--filter\",\n        help=\"Filter on queryables using language specified in filter-lang parameter\",\n    )\n    collections_group.add_argument(\n        \"--filter-lang\",\n        help=\"Filter language used within the filter parameter\",\n        default=\"cql2-json\",\n    )\n    collections_group.add_argument(\"--sortby\", help=\"Sort by fields\", nargs=\"*\")\n    collections_group.add_argument(\n        \"--fields\", help=\"Control what fields get returned\", nargs=\"*\"\n    )\n    collections_group.add_argument(\"--limit\", help=\"Page size limit\", type=int)\n    collections_group.add_argument(\n        \"--max-collections\",\n        dest=\"max_collections\",\n        help=\"Max collections to retrieve from search\",\n        type=int,\n    )\n\n    output_group = parser.add_argument_group(\"output options\")\n    output_group.add_argument(\n        \"--save\", help=\"Filename to save collections to\", default=None\n    )\n    output_group.add_argument(\n        \"--matched\", help=\"Print number matched\", default=False, action=\"store_true\"\n    )\n\n    # search command\n    parser = subparsers.add_parser(\n        \"search\",\n        help=\"Perform new search of items\",\n        parents=[parent],\n        formatter_class=dhf,\n    )\n\n    search_group = parser.add_argument_group(\"search options\")\n    search_group.add_argument(\n        \"-c\", \"--collections\", help=\"One or more collection IDs\", nargs=\"*\"\n    )\n    search_group.add_argument(\n        \"--ids\", help=\"One or more Item IDs (ignores other parameters)\", nargs=\"*\"\n    )\n    search_group.add_argument(\n        \"--bbox\", help=\"Bounding box (min lon, min lat, max lon, max lat)\", nargs=4\n    )\n    search_group.add_argument(\n        \"--intersects\", help=\"GeoJSON Feature or geometry (file or string)\"\n    )\n    search_group.add_argument(\n        \"--datetime\",\n        help=\"Single datetime or begin and end datetime (e.g., 2017-01-01/2017-02-15)\",\n    )\n    search_group.add_argument(\n        \"--query\",\n        nargs=\"*\",\n        help=f\"Query properties of form KEY=VALUE ({','.join(OPS)} supported)\",\n    )\n    search_group.add_argument(\n        \"--filter\",\n        help=\"Filter on queryables using language specified in filter-lang parameter\",\n    )\n    search_group.add_argument(\n        \"--filter-lang\",\n        help=\"Filter language used within the filter parameter\",\n        default=\"cql2-json\",\n    )\n    search_group.add_argument(\"--sortby\", help=\"Sort by fields\", nargs=\"*\")\n    search_group.add_argument(\n        \"--fields\", help=\"Control what fields get returned\", nargs=\"*\"\n    )\n    search_group.add_argument(\"--limit\", help=\"Page size limit\", type=int)\n    search_group.add_argument(\n        \"--max-items\",\n        dest=\"max_items\",\n        help=\"Max items to retrieve from search\",\n        type=int,\n    )\n    search_group.add_argument(\"--method\", help=\"GET or POST\", default=\"POST\")\n    add_warnings_behavior(parser)\n\n    output_group = parser.add_argument_group(\"output options\")\n    output_group.add_argument(\n        \"--matched\", help=\"Print number matched\", default=False, action=\"store_true\"\n    )\n    output_group.add_argument(\n        \"--save\", help=\"Filename to save Item collection to\", default=None\n    )\n\n    parsed_args = {\n        k: v for k, v in vars(parser0.parse_args(args)).items() if v is not None\n    }\n    if \"command\" not in parsed_args:\n        parser0.print_usage()\n        return {}\n\n    # if intersects is JSON file, read it in\n    if \"intersects\" in parsed_args:\n        if os.path.exists(parsed_args[\"intersects\"]):\n            with open(parsed_args[\"intersects\"]) as f:\n                data = json.loads(f.read())\n                if data[\"type\"] == \"Feature\":\n                    parsed_args[\"intersects\"] = data[\"geometry\"]\n                elif data[\"type\"] == \"FeatureCollection\":\n                    logger.warning(\n                        \"When the input to intersects is a FeatureCollection, \"\n                        \"only the first feature geometry is used.\"\n                    )\n                    parsed_args[\"intersects\"] = data[\"features\"][0][\"geometry\"]\n                else:\n                    parsed_args[\"intersects\"] = data\n\n    # if headers provided, parse it\n    if \"headers\" in parsed_args:\n        new_headers = {}\n        splitter = re.compile(\"^([^=]+)=(.+)$\")\n        for head in parsed_args[\"headers\"]:\n            match = splitter.match(head)\n            if match:\n                new_headers[match.group(1)] = match.group(2)\n            else:\n                logger.warning(f\"Unable to parse header {head}\")\n        parsed_args[\"headers\"] = new_headers\n\n    if \"filter\" in parsed_args:\n        if \"json\" in parsed_args[\"filter_lang\"]:\n            parsed_args[\"filter\"] = json.loads(parsed_args[\"filter\"])\n\n    return parsed_args\n\n\ndef cli() -> int:\n    args = parse_args(sys.argv[1:])\n    if not args:\n        return 1\n\n    loglevel = args.pop(\"logging\")\n    if args.get(\"save\", False) or args.get(\"matched\", False):\n        logging.basicConfig(level=loglevel)\n        # quiet loggers\n        logging.getLogger(\"urllib3\").propagate = False\n\n    cmd = args.pop(\"command\")\n\n    try:\n        url = args.pop(\"url\")\n        headers = args.pop(\"headers\", {})\n\n        set_warnings(args.pop(\"error\", None), args.pop(\"ignore\", None))\n\n        client = Client.open(url, headers=headers)\n        set_conforms_to(\n            client,\n            args.pop(\"clear_conforms_to\"),\n            args.pop(\"remove_conforms_to\", None),\n            args.pop(\"add_conforms_to\", None),\n        )\n\n        if cmd == \"search\":\n            return search(client, **args)\n        elif cmd == \"collections\":\n            return collections(client, **args)\n        else:\n            logger.error(\n                f\"Command '{cmd}' is not a valid command. \"\n                \"must be 'search' or 'collections'\",\n            )\n            return 1\n    except Exception as e:\n        logger.error(e, exc_info=True)\n        return 1\n\n\nif __name__ == \"__main__\":\n    return_code = cli()\n    if return_code and return_code != 0:\n        sys.exit(return_code)\n"
  },
  {
    "path": "pystac_client/client.py",
    "content": "import re\nimport warnings\nfrom collections.abc import Callable, Iterator\nfrom functools import lru_cache\nfrom typing import (\n    TYPE_CHECKING,\n    Any,\n    cast,\n)\n\nimport pystac\nimport pystac.utils\nimport pystac.validation\nfrom pystac import CatalogType, Collection\nfrom pystac.layout import APILayoutStrategy, HrefLayoutStrategy\nfrom requests import Request\n\nfrom pystac_client._utils import Modifiable, call_modifier, urljoin\nfrom pystac_client.collection_client import CollectionClient\nfrom pystac_client.collection_search import CollectionSearch\nfrom pystac_client.conformance import ConformanceClasses\nfrom pystac_client.errors import ClientTypeError\nfrom pystac_client.exceptions import APIError\nfrom pystac_client.item_search import (\n    BBoxLike,\n    CollectionsLike,\n    DatetimeLike,\n    FieldsLike,\n    FilterLangLike,\n    FilterLike,\n    IDsLike,\n    IntersectsLike,\n    ItemSearch,\n    QueryLike,\n    SortbyLike,\n)\nfrom pystac_client.mixins import QUERYABLES_ENDPOINT, QueryablesMixin\nfrom pystac_client.stac_api_io import StacApiIO, Timeout\nfrom pystac_client.warnings import (\n    DoesNotConformTo,\n    FallbackToPystac,\n    NoConformsTo,\n    PystacClientWarning,\n)\n\nif TYPE_CHECKING:\n    from pystac.item import Item as Item_Type\n\n\nclass Client(pystac.Catalog, QueryablesMixin):\n    \"\"\"A Client for interacting with the root of a STAC Catalog or API\n\n    Instances of the ``Client`` class inherit from :class:`pystac.Catalog`\n    and provide a convenient way of interacting\n    with STAC Catalogs OR STAC APIs that conform to the `STAC API spec\n    <https://github.com/radiantearth/stac-api-spec>`_.\n    In addition to being a valid\n    `STAC Catalog\n    <https://github.com/radiantearth/stac-spec/blob/master/catalog-spec/catalog-spec.md>`_\n    APIs that have a ``\"conformsTo\"`` indicate that it supports additional\n    functionality on top of a normal STAC Catalog,\n    such as searching items (e.g., /search endpoint).\n    \"\"\"\n\n    _stac_io: StacApiIO | None\n    _fallback_strategy: HrefLayoutStrategy = APILayoutStrategy()\n\n    def __init__(\n        self,\n        id: str,\n        description: str,\n        title: str | None = None,\n        stac_extensions: list[str] | None = None,\n        extra_fields: dict[str, Any] | None = None,\n        href: str | None = None,\n        catalog_type: CatalogType = CatalogType.ABSOLUTE_PUBLISHED,\n        strategy: HrefLayoutStrategy | None = None,\n        *,\n        modifier: Callable[[Modifiable], None] | None = None,\n        **kwargs: dict[str, Any],\n    ):\n        super().__init__(\n            id,\n            description,\n            title=title,\n            stac_extensions=stac_extensions,\n            extra_fields=extra_fields,\n            href=href,\n            catalog_type=catalog_type,\n            strategy=strategy,\n            **kwargs,\n        )\n        self.modifier = modifier\n\n    def __repr__(self) -> str:\n        return f\"<Client id={self.id}>\"\n\n    @classmethod\n    def open(\n        cls,\n        url: str,\n        headers: dict[str, str] | None = None,\n        parameters: dict[str, Any] | None = None,\n        ignore_conformance: bool | None = None,\n        modifier: Callable[[Modifiable], None] | None = None,\n        request_modifier: Callable[[Request], Request | None] | None = None,\n        stac_io: StacApiIO | None = None,\n        timeout: Timeout | None = None,\n    ) -> \"Client\":\n        \"\"\"Opens a STAC Catalog or API\n        This function will read the root catalog of a STAC Catalog or API\n\n        Args:\n            url : The URL of a STAC Catalog.\n            headers : A dictionary of additional headers to use in all requests\n                made to any part of this Catalog/API.\n            parameters: Optional dictionary of query string parameters to\n                include in all requests.\n            ignore_conformance (DEPRECATED) : Ignore any advertised Conformance Classes\n                in this Catalog/API. This means that\n                functions will skip checking conformance, and may throw an unknown\n                error if that feature is\n                not supported, rather than a :class:`NotImplementedError`.\n\n                .. deprecated:: 0.7.0\n                    Conformance can be altered rather than ignored using methods like\n                    :meth:`clear_conforms_to` and :meth:`add_conforms_to`\n\n            modifier : A callable that modifies the children collection and items\n                returned by this Client. This can be useful for injecting\n                authentication parameters into child assets to access data\n                from non-public sources.\n\n                The callable should expect a single argument, which will be one\n                of the following types:\n\n                * :class:`pystac.Collection`\n                * :class:`pystac.Item`\n                * :class:`pystac.ItemCollection`\n                * A STAC item-like :class:`dict`\n                * A STAC collection-like :class:`dict`\n\n                The callable should mutate the argument in place and return ``None``.\n\n                ``modifier`` propagates recursively to children of this Client.\n                After getting a child collection with, e.g.\n                :meth:`Client.get_collection`, the child items of that collection\n                will still be signed with ``modifier``.\n            request_modifier: A callable that either modifies a `Request` instance or\n                returns a new one. This can be useful for injecting Authentication\n                headers and/or signing fully-formed requests (e.g. signing requests\n                using AWS SigV4).\n\n                The callable should expect a single argument, which will be an instance\n                of :class:`requests.Request`.\n\n                If the callable returns a `requests.Request`, that will be used.\n                Alternately, the callable may simply modify the provided request object\n                and return `None`.\n            stac_io: A `StacApiIO` object to use for I/O requests. Generally, leave\n                this to the default. However in cases where customized I/O processing\n                is required, a custom instance can be provided here.\n            timeout: Optional float or (float, float) tuple following the semantics\n              defined by `Requests\n              <https://requests.readthedocs.io/en/latest/api/#main-interface>`__.\n\n        Return:\n            catalog : A :class:`Client` instance for this Catalog/API\n        \"\"\"\n        client: Client = cls.from_file(\n            url,\n            headers=headers,\n            parameters=parameters,\n            modifier=modifier,\n            request_modifier=request_modifier,\n            stac_io=stac_io,\n            timeout=timeout,\n        )\n\n        if ignore_conformance is not None:\n            warnings.warn(\n                (\n                    \"The `ignore_conformance` option is deprecated and will be \"\n                    \"removed in the next major release. Instead use `set_conforms_to` \"\n                    \"or `add_conforms_to` to control behavior.\"\n                ),\n                FutureWarning,\n            )\n\n        if not client.has_conforms_to():\n            warnings.warn(NoConformsTo())\n\n        return client\n\n    @classmethod\n    def from_file(  # type: ignore\n        cls,\n        href: str,\n        stac_io: StacApiIO | None = None,\n        headers: dict[str, str] | None = None,\n        parameters: dict[str, Any] | None = None,\n        modifier: Callable[[Modifiable], None] | None = None,\n        request_modifier: Callable[[Request], Request | None] | None = None,\n        timeout: Timeout | None = None,\n    ) -> \"Client\":\n        \"\"\"Open a STAC Catalog/API\n\n        Returns:\n            Client: A Client (PySTAC Catalog) of the root Catalog for this Catalog/API\n        \"\"\"\n        if stac_io is None:\n            stac_io = StacApiIO(\n                headers=headers,\n                parameters=parameters,\n                request_modifier=request_modifier,\n                timeout=timeout,\n            )\n        else:\n            stac_io.update(\n                headers=headers,\n                parameters=parameters,\n                request_modifier=request_modifier,\n                timeout=timeout,\n            )\n\n        client: Client = super().from_file(href, stac_io)\n        client.modifier = modifier\n\n        return client\n\n    def has_conforms_to(self) -> bool:\n        \"\"\"Whether server contains list of ``\"conformsTo\"`` URIs\"\"\"\n        return \"conformsTo\" in self.extra_fields\n\n    def get_conforms_to(self) -> list[str]:\n        \"\"\"List of ``\"conformsTo\"`` URIs\n\n        Return:\n            List[str]: List of  URIs that the server conforms to\n        \"\"\"\n        return cast(list[str], self.extra_fields.get(\"conformsTo\", []).copy())\n\n    def set_conforms_to(self, conformance_uris: list[str]) -> None:\n        \"\"\"Set list of ``\"conformsTo\"`` URIs\n\n        Args:\n            conformance_uris : URIs indicating what the server conforms to\n        \"\"\"\n        self.extra_fields[\"conformsTo\"] = conformance_uris\n\n    def clear_conforms_to(self) -> None:\n        \"\"\"Clear list of ``\"conformsTo\"`` urls\n\n        Removes the entire list, so :py:meth:`has_conforms_to` will\n        return False after using this method.\n        \"\"\"\n        self.extra_fields.pop(\"conformsTo\", None)\n\n    def add_conforms_to(self, name: str) -> None:\n        \"\"\"Add ``\"conformsTo\"`` by name.\n\n        Args:\n            name : name of :py:class:`ConformanceClasses` keys to add.\n        \"\"\"\n        conformance_class = ConformanceClasses.get_by_name(name)\n\n        if not self.conforms_to(conformance_class):\n            self.set_conforms_to([*self.get_conforms_to(), conformance_class.valid_uri])\n\n    def remove_conforms_to(self, name: str) -> None:\n        \"\"\"Remove ``\"conformsTo\"`` by name.\n\n        Args:\n            name : name of :py:class:`ConformanceClasses` keys to remove.\n        \"\"\"\n        conformance_class = ConformanceClasses.get_by_name(name)\n\n        self.set_conforms_to(\n            [\n                uri\n                for uri in self.get_conforms_to()\n                if not re.match(conformance_class.pattern, uri)\n            ]\n        )\n\n    def conforms_to(self, conformance_class: ConformanceClasses | str) -> bool:\n        \"\"\"Checks whether the API conforms to the given standard.\n\n        This method only checks\n        against the ``\"conformsTo\"`` property from the API landing page and does not\n        make any additional calls to a ``/conformance`` endpoint even if the API\n        provides such an endpoint.\n\n        Args:\n            name : name of :py:class:`ConformanceClasses` keys to check\n                conformance against.\n\n        Return:\n            bool: Indicates if the API conforms to the given spec or URI.\n        \"\"\"\n        if isinstance(conformance_class, str):\n            conformance_class = ConformanceClasses.get_by_name(conformance_class)\n\n        return any(\n            re.match(conformance_class.pattern, uri) for uri in self.get_conforms_to()\n        )\n\n    @classmethod\n    def from_dict(\n        cls,\n        d: dict[str, Any],\n        href: str | None = None,\n        root: pystac.Catalog | None = None,\n        migrate: bool = False,\n        preserve_dict: bool = True,\n        modifier: Callable[[Modifiable], None] | None = None,\n    ) -> \"Client\":\n        try:\n            # this will return a Client because we have used a StacApiIO instance\n            result = super().from_dict(\n                d=d, href=href, root=root, migrate=migrate, preserve_dict=preserve_dict\n            )\n        except pystac.STACTypeError:\n            raise ClientTypeError(\n                f\"Could not open Client (href={href}), \"\n                f\"expected type=Catalog, found type={d.get('type', None)}\"\n            )\n\n        result.modifier = modifier\n        return result\n\n    def _supports_collections(self) -> bool:\n        return self.conforms_to(ConformanceClasses.COLLECTIONS) or self.conforms_to(\n            ConformanceClasses.FEATURES\n        )\n\n    def _warn_about_fallback(self, *args: str) -> None:\n        if self.has_conforms_to():\n            warnings.warn(DoesNotConformTo(*args), stacklevel=2)\n        warnings.warn(FallbackToPystac(), stacklevel=2)\n\n    def get_merged_queryables(self, collections: list[str]) -> dict[str, Any]:\n        \"\"\"Return the set of queryables in common to the specified collections.\n\n        Queryables from multiple collections are unioned together, except in the case\n        when the same queryable key has a different definition, in which case that key\n        is dropped.\n\n        Output is a dictionary that can be used in ``jsonshema.validate``\n\n        Args:\n            collections List[str]: The IDs of the collections to inspect.\n\n        Return:\n            Dict[str, Any]: Dictionary containing queryable fields\n        \"\"\"\n        if not collections:\n            raise ValueError(\"cannot get_merged_queryables from empty Iterable\")\n\n        if not self.conforms_to(ConformanceClasses.FILTER):\n            raise DoesNotConformTo(ConformanceClasses.FILTER.name)\n        response = self.get_queryables_from(\n            self._get_collection_queryables_href(collections[0])\n        )\n        response.pop(\"$id\")\n        addl_props = response.get(\"additionalProperties\", False)\n        for collection in collections[1:]:\n            resp = self.get_queryables_from(\n                self._get_collection_queryables_href(collection)\n            )\n\n            # additionalProperties is false if any collection doesn't support additional\n            # properties\n            addl_props &= resp.get(\"additionalProperties\", False)\n\n            # drop queryables if their keys match, but the descriptions differ\n            for k in set(resp[\"properties\"]).intersection(response[\"properties\"]):\n                if resp[\"properties\"][k] != response[\"properties\"][k]:\n                    resp[\"properties\"].pop(k)\n                    response[\"properties\"].pop(k)\n            response[\"properties\"].update(resp[\"properties\"])\n        return response\n\n    @lru_cache\n    def get_collection(\n        self, collection_id: str\n    ) -> Collection | CollectionClient | None:\n        \"\"\"Get a single collection from this Catalog/API\n\n        Args:\n            collection_id: The Collection ID to get\n\n        Returns:\n            Collection | CollectionClient | None: A STAC Collection or None if it does\n            not exist.\n\n        \"\"\"\n        collection: Collection | CollectionClient | None = None\n\n        if not collection_id:\n            raise ValueError(\"A `collection_id` must be provided.\")\n\n        if self._supports_collections():\n            assert self._stac_io is not None\n\n            url = self._collections_href(collection_id)\n            try:\n                collection = CollectionClient.from_dict(\n                    self._stac_io.read_json(url),\n                    root=self,\n                    modifier=self.modifier,\n                )\n            except APIError as err:\n                if getattr(err, \"status_code\", None) and err.status_code == 404:\n                    return None\n                else:\n                    raise err\n        else:\n            self._warn_about_fallback(\"COLLECTIONS\", \"FEATURES\")\n            for collection in super().get_collections():\n                if collection.id == collection_id:\n                    break\n\n        if collection:\n            call_modifier(self.modifier, collection)\n\n        return collection\n\n    def get_collections(self) -> Iterator[Collection]:\n        \"\"\"Get Collections in this Catalog\n\n            Gets the collections from the /collections endpoint if supported,\n            otherwise fall back to Catalog behavior of following child links\n\n        Return:\n            Iterator[Union[Collection, CollectionClient]]: Collections in Catalog/API\n        \"\"\"\n        collection: Collection | CollectionClient\n\n        if self._supports_collections():\n            assert self._stac_io is not None\n\n            url = self._collections_href()\n            for page in self._stac_io.get_pages(url):\n                if \"collections\" not in page:\n                    raise APIError(\"Invalid response from /collections\")\n                for col in page[\"collections\"]:\n                    collection = CollectionClient.from_dict(\n                        col, root=self, modifier=self.modifier\n                    )\n                    call_modifier(self.modifier, collection)\n                    yield collection\n        else:\n            self._warn_about_fallback(\"COLLECTIONS\", \"FEATURES\")\n            for collection in super().get_collections():\n                call_modifier(self.modifier, collection)\n                yield collection\n\n    def get_items(\n        self, *ids: str, recursive: bool | None = None\n    ) -> Iterator[\"Item_Type\"]:\n        \"\"\"Return all items of this catalog.\n\n        Args:\n            ids: Zero or more item ids to find.\n            recursive: If this client conforms to the ITEM_SEARCH conformance class,\n                this is unused and this will always yield items recursively.\n                Otherwise, this will only return items recursively if True or None.\n        Return:\n            Iterator[Item]: Iterator of items whose parent is this\n                catalog.\n        \"\"\"\n        if self.conforms_to(ConformanceClasses.ITEM_SEARCH):\n            if recursive is False:\n                warnings.warn(\n                    \"Getting items recursively using the /search endpoint \"\n                    \"(the recursive argument is being ignored).\",\n                    PystacClientWarning,\n                )\n            search = self.search(ids=ids)\n            yield from search.items()\n        else:\n            self._warn_about_fallback(\"ITEM_SEARCH\")\n            for item in super().get_items(\n                *ids, recursive=recursive is None or recursive\n            ):\n                call_modifier(self.modifier, item)\n                yield item\n\n    def get_all_items(self) -> Iterator[\"Item_Type\"]:\n        \"\"\"Get all items from this catalog and all subcatalogs. Will traverse\n        any subcatalogs recursively, or use the /search endpoint if supported\n\n        Returns:\n            Iterator[Item]: All items that belong to this catalog, and all\n                catalogs or collections connected to this catalog through\n                child links.\n        \"\"\"\n        yield from self.get_items()\n\n    def search(\n        self,\n        *,\n        method: str | None = \"POST\",\n        max_items: int | None = None,\n        limit: int | None = None,\n        ids: IDsLike | None = None,\n        collections: CollectionsLike | None = None,\n        bbox: BBoxLike | None = None,\n        intersects: IntersectsLike | None = None,\n        datetime: DatetimeLike | None = None,\n        query: QueryLike | None = None,\n        filter: FilterLike | None = None,\n        filter_lang: FilterLangLike | None = None,\n        sortby: SortbyLike | None = None,\n        fields: FieldsLike | None = None,\n    ) -> ItemSearch:\n        \"\"\"Query the ``/search`` endpoint using the given parameters.\n\n        This method returns an :class:`~pystac_client.ItemSearch` instance. See that\n        class's documentation for details on how to get the number of matches and\n        iterate over results. The ``url``, ``stac_io``, and ``client`` keywords are\n        supplied by this Client instance.\n\n        .. warning::\n\n            This method is only implemented if the API conforms to the\n            `STAC API - Item Search\n            <https://github.com/radiantearth/stac-api-spec/tree/master/item-search>`__\n            spec *and* contains a link with a ``\"rel\"`` type of ``\"search\"`` in its\n            root catalog. If the API does not meet either of these criteria, this\n            method will raise a :exc:`NotImplementedError`.\n\n        Args:\n            method : The HTTP method to use when making a request to the service.\n                This must be either ``\"GET\"``, ``\"POST\"``, or\n                ``None``. If ``None``, this will default to ``\"POST\"``.\n                If a ``\"POST\"`` request receives a ``405`` status for\n                the response, it will automatically retry with\n                ``\"GET\"`` for all subsequent requests.\n            max_items : The maximum number of items to return from the search, even\n                if there are more matching results. This client to limit the\n                total number of Items returned from the :meth:`items`,\n                :meth:`item_collections`, and :meth:`items_as_dicts methods`. The client\n                will continue to request pages of items until the number of max items is\n                reached. Setting this to ``None`` will allow iteration over a possibly\n                very large number of results.\n            limit: A recommendation to the service as to the number of items to return\n                *per page* of results. Defaults to 100.\n            ids: List of one or more Item ids to filter on.\n            collections: List of one or more Collection IDs or\n                :class:`pystac.Collection` instances. Only Items in one\n                of the provided Collections will be searched\n            bbox: A list, tuple, or iterator representing a bounding box of 2D\n                or 3D coordinates. Results will be filtered\n                to only those intersecting the bounding box.\n            intersects: A string or dictionary representing a GeoJSON geometry, or\n                an object that implements a\n                ``__geo_interface__`` property, as supported by several libraries\n                including Shapely, ArcPy, PySAL, and\n                geojson. Results filtered to only those intersecting the geometry.\n            datetime: Either a single datetime or datetime range used to filter results.\n                You may express a single datetime using a :class:`datetime.datetime`\n                instance, a `RFC 3339-compliant <https://tools.ietf.org/html/rfc3339>`__\n                timestamp, or a simple date string (see below). Instances of\n                :class:`datetime.datetime` may be either\n                timezone aware or unaware. Timezone aware instances will be converted to\n                a UTC timestamp before being passed\n                to the endpoint. Timezone unaware instances are assumed to represent UTC\n                timestamps. You may represent a\n                datetime range using a ``\"/\"`` separated string as described in the\n                spec, or a list, tuple, or iterator\n                of 2 timestamps or datetime instances. For open-ended ranges, use either\n                ``\"..\"`` (``'2020-01-01:00:00:00Z/..'``,\n                ``['2020-01-01:00:00:00Z', '..']``) or a value of ``None``\n                (``['2020-01-01:00:00:00Z', None]``).\n\n                If using a simple date string, the datetime can be specified in\n                ``YYYY-mm-dd`` format, optionally truncating\n                to ``YYYY-mm`` or just ``YYYY``. Simple date strings will be expanded to\n                include the entire time period, for example:\n\n                - ``2017`` expands to ``2017-01-01T00:00:00Z/2017-12-31T23:59:59Z``\n                - ``2017-06`` expands to ``2017-06-01T00:00:00Z/2017-06-30T23:59:59Z``\n                - ``2017-06-10`` expands to\n                  ``2017-06-10T00:00:00Z/2017-06-10T23:59:59Z``\n\n                If used in a range, the end of the range expands to the end of that\n                day/month/year, for example:\n\n                - ``2017/2018`` expands to\n                  ``2017-01-01T00:00:00Z/2018-12-31T23:59:59Z``\n                - ``2017-06/2017-07`` expands to\n                  ``2017-06-01T00:00:00Z/2017-07-31T23:59:59Z``\n                - ``2017-06-10/2017-06-11`` expands to\n                  ``2017-06-10T00:00:00Z/2017-06-11T23:59:59Z``\n\n            query: List or JSON of query parameters as per the STAC API `query`\n                extension\n            filter: JSON of query parameters as per the STAC API `filter` extension\n            filter_lang: Language variant used in the filter body. If `filter` is a\n                dictionary or not provided, defaults\n                to 'cql2-json'. If `filter` is a string, defaults to `cql2-text`.\n            sortby: A single field or list of fields to sort the response by\n            fields: A list of fields to include in the response. Note this may\n                result in invalid STAC objects, as they may not have required fields.\n                Use `items_as_dicts` to avoid object unmarshalling errors.\n\n        Returns:\n            search : An ItemSearch instance that can be used to iterate through Items.\n\n        Raises:\n            NotImplementedError: If the API does not conform to the `Item Search spec\n                <https://github.com/radiantearth/stac-api-spec/tree/master/item-search>`__\n                or does not have a link with\n                a ``\"rel\"`` type of ``\"search\"``.\n        \"\"\"\n\n        if not self.conforms_to(ConformanceClasses.ITEM_SEARCH):\n            raise DoesNotConformTo(\n                \"ITEM_SEARCH\", \"There is no fallback option available for search.\"\n            )\n\n        return ItemSearch(\n            url=self._search_href(),\n            method=method,\n            max_items=max_items,\n            client=self,\n            limit=limit,\n            ids=ids,\n            collections=collections,\n            bbox=bbox,\n            intersects=intersects,\n            datetime=datetime,\n            query=query,\n            filter=filter,\n            filter_lang=filter_lang,\n            sortby=sortby,\n            fields=fields,\n            modifier=self.modifier,\n        )\n\n    def collection_search(\n        self,\n        *,\n        max_collections: int | None = None,\n        limit: int | None = None,\n        bbox: BBoxLike | None = None,\n        datetime: DatetimeLike | None = None,\n        q: str | None = None,\n        query: QueryLike | None = None,\n        filter: FilterLike | None = None,\n        filter_lang: FilterLangLike | None = None,\n        sortby: SortbyLike | None = None,\n        fields: FieldsLike | None = None,\n    ) -> CollectionSearch:\n        \"\"\"Query the ``/collections`` endpoint using the given parameters.\n\n        This method returns an :class:`~pystac_client.CollectionSearch` instance. See\n        that class's documentation for details on how to get the number of matches and\n        iterate over results. The ``url``, `stac_io``, and ``client`` keywords are\n        supplied by this Client instance.\n\n        .. warning::\n\n            This method is fully implemented if the API conforms to the\n            `STAC API - Collection Search Extension\n            <https://github.com/stac-api-extensions/collection-search>`__\n            spec.\n\n            If the API does not conform to the Collection Search Extension but\n            conforms to `STAC API - Collections <https://api.stacspec.org/v1.0.0/collections/>`__\n            (has a ``\"rel\"`` type of ``\"data\"`` in its root catalog), a limited\n            client-side collection filtering process will be used. If the API does not\n            meet either of these criteria, this method will raise a\n            :exc:`NotImplementedError`.\n\n            Client-side filtering will only use the ``bbox``, ``datetime``, and ``q``\n            (free-text search) parameters.\n\n        Args:\n            max_collections : The maximum number of collections to return from the\n                search, even if there are more matching results. This client to limit\n                the total number of Collections returned from the :meth:`collections`,\n                :meth:`collection_list`, and :meth:`collections_as_dicts methods`. The\n                client will continue to request pages of collections until the number of\n                max collections is reached. Setting this to ``None`` will allow\n                iteration over a possibly very large number of results.\n            limit: A recommendation to the service as to the number of items to return\n                *per page* of results. Defaults to 100.\n            bbox: A list, tuple, or iterator representing a bounding box of 2D\n                or 3D coordinates. Results will be filtered\n                to only those intersecting the bounding box.\n            datetime: Either a single datetime or datetime range used to filter results.\n                You may express a single datetime using a :class:`datetime.datetime`\n                instance, a `RFC 3339-compliant <https://tools.ietf.org/html/rfc3339>`__\n                timestamp, or a simple date string (see below). Instances of\n                :class:`datetime.datetime` may be either\n                timezone aware or unaware. Timezone aware instances will be converted to\n                a UTC timestamp before being passed\n                to the endpoint. Timezone unaware instances are assumed to represent UTC\n                timestamps. You may represent a\n                datetime range using a ``\"/\"`` separated string as described in the\n                spec, or a list, tuple, or iterator\n                of 2 timestamps or datetime instances. For open-ended ranges, use either\n                ``\"..\"`` (``'2020-01-01:00:00:00Z/..'``,\n                ``['2020-01-01:00:00:00Z', '..']``) or a value of ``None``\n                (``['2020-01-01:00:00:00Z', None]``).\n\n                If using a simple date string, the datetime can be specified in\n                ``YYYY-mm-dd`` format, optionally truncating\n                to ``YYYY-mm`` or just ``YYYY``. Simple date strings will be expanded to\n                include the entire time period, for example:\n\n                - ``2017`` expands to ``2017-01-01T00:00:00Z/2017-12-31T23:59:59Z``\n                - ``2017-06`` expands to ``2017-06-01T00:00:00Z/2017-06-30T23:59:59Z``\n                - ``2017-06-10`` expands to\n                  ``2017-06-10T00:00:00Z/2017-06-10T23:59:59Z``\n\n                If used in a range, the end of the range expands to the end of that\n                day/month/year, for example:\n\n                - ``2017/2018`` expands to\n                  ``2017-01-01T00:00:00Z/2018-12-31T23:59:59Z``\n                - ``2017-06/2017-07`` expands to\n                  ``2017-06-01T00:00:00Z/2017-07-31T23:59:59Z``\n                - ``2017-06-10/2017-06-11`` expands to\n                  ``2017-06-10T00:00:00Z/2017-06-11T23:59:59Z``\n\n            q: Free-text search query. See the `STAC API - Free Text Extension\n               Spec <https://github.com/stac-api-extensions/freetext-search>`__ for\n               details.\n            query: List or JSON of query parameters as per the STAC API `query`\n                extension\n            filter: JSON of query parameters as per the STAC API `filter` extension\n            filter_lang: Language variant used in the filter body. If `filter` is a\n                dictionary or not provided, defaults\n                to 'cql2-json'. If `filter` is a string, defaults to `cql2-text`.\n            sortby: A single field or list of fields to sort the response by\n            fields: A list of fields to include in the response. Note this may\n                result in invalid STAC objects, as they may not have required fields.\n                Use `items_as_dicts` to avoid object unmarshalling errors.\n\n        Returns:\n            collection_search : A CollectionSearch instance that can be used to iterate\n            through Collections.\n\n        Raises:\n            NotImplementedError: If the API does not conform to either the `STAC API -\n                Collection Search spec <https://github.com/stac-api-extensions/collection-search>`__\n                or the `STAC API - Collections spec <https://api.stacspec.org/v1.0.0/collections>`__.\n        \"\"\"\n\n        if not (\n            self.conforms_to(ConformanceClasses.COLLECTION_SEARCH)\n            or self.conforms_to(ConformanceClasses.COLLECTIONS)\n        ) and any([bbox, datetime, q, query, filter, sortby, fields]):\n            raise DoesNotConformTo(\n                \"COLLECTION_SEARCH or COLLECTIONS\",\n                \"there is no fallback option available for search.\",\n            )\n\n        return CollectionSearch(\n            url=self._collections_href(),\n            client=self,\n            max_collections=max_collections,\n            limit=limit,\n            bbox=bbox,\n            datetime=datetime,\n            q=q,\n            query=query,\n            filter=filter,\n            filter_lang=filter_lang,\n            sortby=sortby,\n            fields=fields,\n            modifier=self.modifier,\n        )\n\n    def get_search_link(self) -> pystac.Link | None:\n        \"\"\"Returns this client's search link.\n\n        Searches for a link with rel=\"search\" and either a GEOJSON or JSON media type.\n\n        Returns:\n            Optional[pystac.Link]: The search link, or None if there is not one found.\n        \"\"\"\n        return next(\n            (\n                link\n                for link in self.links\n                if link.rel == \"search\"\n                and (\n                    link.media_type == pystac.MediaType.GEOJSON\n                    or link.media_type == pystac.MediaType.JSON\n                )\n            ),\n            None,\n        )\n\n    def _search_href(self) -> str:\n        search_link = self.get_search_link()\n        href = self._get_href(\"search\", search_link, \"search\")\n        return href\n\n    def _collections_href(self, collection_id: str | None = None) -> str:\n        data_link = self.get_single_link(\"data\")\n        href = self._get_href(\"data\", data_link, \"collections\")\n        if collection_id is not None:\n            return urljoin(href, collection_id)\n        return href\n\n    def _get_collection_queryables_href(self, collection_id: str | None = None) -> str:\n        href = self._collections_href(collection_id)\n        return urljoin(href, QUERYABLES_ENDPOINT)\n"
  },
  {
    "path": "pystac_client/collection_client.py",
    "content": "from __future__ import annotations\n\nimport warnings\nfrom collections.abc import Callable, Iterator\nfrom typing import (\n    TYPE_CHECKING,\n    Any,\n    Optional,\n    cast,\n)\n\nimport pystac\nfrom pystac.layout import APILayoutStrategy, HrefLayoutStrategy\n\nfrom pystac_client._utils import Modifiable, call_modifier\nfrom pystac_client.conformance import ConformanceClasses\nfrom pystac_client.exceptions import APIError\nfrom pystac_client.item_search import ItemSearch\nfrom pystac_client.mixins import QueryablesMixin\nfrom pystac_client.stac_api_io import StacApiIO\nfrom pystac_client.warnings import FallbackToPystac\n\nif TYPE_CHECKING:\n    from pystac.item import Item as Item_Type\n\n    from pystac_client import Client\n\n\nclass CollectionClient(pystac.Collection, QueryablesMixin):\n    modifier: Callable[[Modifiable], None]\n    _stac_io: StacApiIO\n    _fallback_strategy: HrefLayoutStrategy = APILayoutStrategy()\n\n    def __init__(\n        self,\n        id: str,\n        description: str,\n        extent: pystac.Extent,\n        title: str | None = None,\n        stac_extensions: list[str] | None = None,\n        href: str | None = None,\n        extra_fields: dict[str, Any] | None = None,\n        catalog_type: pystac.CatalogType | None = None,\n        license: str = \"proprietary\",\n        keywords: list[str] | None = None,\n        providers: list[pystac.Provider] | None = None,\n        summaries: pystac.Summaries | None = None,\n        assets: dict[str, pystac.Asset] | None = None,\n        strategy: HrefLayoutStrategy | None = None,\n        *,\n        modifier: Callable[[Modifiable], None] | None = None,\n        **kwargs: dict[str, Any],\n    ):\n        super().__init__(\n            id,\n            description,\n            extent,\n            title,\n            stac_extensions,\n            href,\n            extra_fields,\n            catalog_type,\n            license,\n            keywords,\n            providers,\n            summaries,\n            assets,\n            strategy,\n            **kwargs,\n        )\n        # error: Cannot assign to a method  [assignment]\n        # https://github.com/python/mypy/issues/2427\n        setattr(self, \"modifier\", modifier)\n\n    @classmethod\n    def from_dict(\n        cls,\n        d: dict[str, Any],\n        href: str | None = None,\n        root: pystac.Catalog | Client | None = None,\n        migrate: bool = False,\n        preserve_dict: bool = True,\n        modifier: Callable[[Modifiable], None] | None = None,\n    ) -> CollectionClient:\n        result = super().from_dict(d, href, root, migrate, preserve_dict)\n        # error: Cannot assign to a method  [assignment]\n        # https://github.com/python/mypy/issues/2427\n        setattr(result, \"modifier\", modifier)\n        return result\n\n    def __repr__(self) -> str:\n        return f\"<CollectionClient id={self.id}>\"\n\n    def set_root(self, root: pystac.Catalog | Client | None) -> None:\n        # hook in to set_root and use it for setting _stac_io\n        super().set_root(root=root)\n        if root is None:\n            raise ValueError(\"`CollectionClient.root` must be set\")\n        elif root._stac_io is not None and isinstance(root._stac_io, StacApiIO):\n            self._stac_io = root._stac_io\n        else:\n            raise ValueError(\"`CollectionClient.root` must be a valid `Client` object\")\n\n    def get_root(self) -> Client:\n        from pystac_client.client import Client\n\n        root = super().get_root()\n        if root is None or not isinstance(root, Client):\n            raise ValueError(\n                \"`CollectionClient.root` is not have a valid `Client` object.\"\n            )\n        return root\n\n    def conforms_to(self, conformance_class: ConformanceClasses | str) -> bool:\n        root = self.get_root()\n        return root.conforms_to(conformance_class)\n\n    def get_items(self, *ids: str, recursive: bool = False) -> Iterator[Item_Type]:\n        \"\"\"Return all items in this Collection or specific items.\n\n        If the Collection contains a link of with a `rel` value of `items`,\n        that link will be used to iterate through items. Otherwise, the default\n        PySTAC behavior is assumed.\n\n        Args:\n            ids: Items ids to retrieve\n            recursive: If True, search every child collection as well as this one.\n\n        Return:\n            Iterator[Item]: Iterator of items whose parent is this catalog.\n        \"\"\"\n        if recursive is True:\n            yield from super().get_items(*ids, recursive=True)\n        else:\n            root = self.get_root()\n            if root.conforms_to(ConformanceClasses.ITEM_SEARCH):\n                url = root._search_href() if ids else self._items_href()\n\n                search = ItemSearch(\n                    url=url,\n                    method=\"GET\",\n                    client=root,\n                    ids=ids,\n                    collections=[self.id],\n                    modifier=self.modifier,\n                )\n                yield from search.items()\n            else:\n                root._warn_about_fallback(\"ITEM_SEARCH\")\n                for item in super().get_items(*ids):\n                    call_modifier(self.modifier, item)\n                    yield item\n\n    def get_item(self, id: str, recursive: bool = False) -> Item_Type | None:\n        \"\"\"Returns an item with a given ID.\n\n        If the collection conforms to\n        [ogcapi-features](https://github.com/radiantearth/stac-api-spec/blob/738f4837ac6bea041dc226219e6d13b2c577fb19/ogcapi-features/README.md),\n        this will use the `/collections/{collectionId}/items/{featureId}`.\n        If not, and the collection conforms to [item\n        search](https://github.com/radiantearth/stac-api-spec/blob/2d3c0cf644af9976eecbf32aec77b9a137268e12/item-search/README.md),\n        this will use `/search?ids={featureId}&collections={collectionId}`.\n        Otherwise, the default PySTAC behavior is used.\n\n        Args:\n            id : The ID of the item to find.\n            recursive : If True, search this catalog and all children for the\n                item; otherwise, only search the items of this catalog. Defaults\n                to False.\n\n        Return:\n            Item or None: The item with the given ID, or None if not found.\n        \"\"\"\n        if not recursive:\n            root = self.get_root()\n            if root.conforms_to(ConformanceClasses.FEATURES) and self._stac_io:\n                url = f\"{self._items_href().rstrip('/')}/{id}\"\n                try:\n                    obj = self._stac_io.read_stac_object(url, root=self)\n                    item = cast(Optional[pystac.Item], obj)\n                except APIError as err:\n                    if getattr(err, \"status_code\", None) and err.status_code == 404:\n                        return None\n                    else:\n                        raise err\n            elif root.conforms_to(ConformanceClasses.ITEM_SEARCH) and self._stac_io:\n                item_search = ItemSearch(\n                    url=root._search_href(),\n                    method=\"GET\",\n                    client=root,\n                    ids=[id],\n                    collections=[self.id],\n                    modifier=self.modifier,\n                )\n                item = next(item_search.items(), None)\n            else:\n                root._warn_about_fallback(\"FEATURES\", \"ITEM_SEARCH\")\n                item = super().get_item(id, recursive=False)\n        else:\n            warnings.warn(FallbackToPystac())\n            item = super().get_item(id, recursive=True)\n\n        if item:\n            call_modifier(self.modifier, item)\n\n        return item\n\n    def _items_href(self) -> str:\n        link = self.get_single_link(\"items\")\n        href = self._get_href(\"items\", link, \"items\")\n        return href\n"
  },
  {
    "path": "pystac_client/collection_search.py",
    "content": "import warnings\nfrom collections.abc import Callable, Iterator\nfrom datetime import datetime, timezone\nfrom functools import lru_cache\nfrom typing import (\n    TYPE_CHECKING,\n    Any,\n    Optional,\n)\n\nfrom pystac import Collection, Extent\n\nfrom pystac_client._utils import Modifiable, call_modifier\nfrom pystac_client.conformance import ConformanceClasses\nfrom pystac_client.free_text import sqlite_text_search\nfrom pystac_client.item_search import (\n    BaseSearch,\n    BBox,\n    BBoxLike,\n    Datetime,\n    DatetimeLike,\n    FieldsLike,\n    FilterLangLike,\n    FilterLike,\n    QueryLike,\n    SortbyLike,\n)\nfrom pystac_client.stac_api_io import StacApiIO\nfrom pystac_client.warnings import DoesNotConformTo, PystacClientWarning\n\nif TYPE_CHECKING:\n    from pystac_client import client as _client\n\n\nTemporalInterval = tuple[Optional[datetime], Optional[datetime]]\n\n\ndef temporal_intervals_overlap(\n    interval1: TemporalInterval,\n    interval2: TemporalInterval,\n) -> bool:\n    start1, end1 = interval1\n    start2, end2 = interval2\n    dtmin = datetime.min.replace(tzinfo=timezone.utc)\n    dtmax = datetime.max.replace(tzinfo=timezone.utc)\n\n    return (start2 or dtmin) <= (end1 or dtmax) and (start1 or dtmin) <= (end2 or dtmax)\n\n\ndef bboxes_overlap(bbox1: BBox, bbox2: BBox) -> bool:\n    xmin1, ymin1, xmax1, ymax1 = bbox1\n    xmin2, ymin2, xmax2, ymax2 = bbox2\n\n    return xmin1 <= xmax2 and xmin2 <= xmax1 and ymin1 <= ymax2 and ymin2 <= ymax1\n\n\ndef _extent_matches(\n    extent: Extent,\n    bbox: BBox | None = None,\n    temporal_interval_str: Datetime | None = None,\n) -> tuple[bool, bool]:\n    bbox_overlaps = not bbox or (\n        any(\n            bboxes_overlap(bbox, tuple(collection_bbox))\n            for collection_bbox in extent.spatial.bboxes\n        )\n    )\n\n    # check for overlap between the provided temporal interval and the collection's\n    # temporal extent\n    collection_temporal_extent = extent.temporal\n\n    # process the user-provided temporal interval\n    search_temporal_interval = (\n        temporal_interval_str.split(\"/\") if temporal_interval_str else []\n    )\n\n    # replace .. in open intervals with actual strings\n    if search_temporal_interval:\n        if search_temporal_interval[0] == \"..\":\n            search_temporal_interval[0] = datetime.min.replace(\n                tzinfo=timezone.utc\n            ).isoformat()\n        if search_temporal_interval[1] == \"..\":\n            search_temporal_interval[1] = datetime.max.replace(\n                tzinfo=timezone.utc\n            ).isoformat()\n\n    datetime_overlaps = not temporal_interval_str or (\n        any(\n            temporal_intervals_overlap(\n                (\n                    datetime.fromisoformat(\n                        search_temporal_interval[0].replace(\"Z\", \"+00:00\")\n                    ),\n                    datetime.fromisoformat(\n                        search_temporal_interval[1].replace(\"Z\", \"+00:00\")\n                    ),\n                ),\n                (\n                    collection_temporal_interval[0],\n                    collection_temporal_interval[1],\n                ),\n            )\n            for collection_temporal_interval in collection_temporal_extent.intervals\n        )\n    )\n    return bbox_overlaps, datetime_overlaps\n\n\ndef collection_matches(\n    collection_dict: dict[str, Any],\n    bbox: BBox | None = None,\n    temporal_interval_str: Datetime | None = None,\n    q: str | None = None,\n) -> bool:\n    # check for overlap between provided bbox and the collection's spatial extent\n    try:\n        extent = Extent.from_dict(collection_dict.get(\"extent\", {}))\n    except Exception:\n        warnings.warn(\n            f\"Unable to parse extent from collection={collection_dict.get('id', None)}\",\n            PystacClientWarning,\n        )\n        bbox_overlaps = True\n        datetime_overlaps = True\n    else:\n        bbox_overlaps, datetime_overlaps = _extent_matches(\n            extent, bbox, temporal_interval_str\n        )\n\n    # check for overlap between the provided free-text search query (q) and the\n    # collection's title, description, and keywords\n    text_fields: dict[str, str] = {\n        key: text\n        for key, text in collection_dict.items()\n        if text and key in [\"title\", \"description\", \"keywords\"]\n    }\n\n    if text_fields.get(\"keywords\"):\n        text_fields[\"keywords\"] = \", \".join(text_fields[\"keywords\"])\n\n    text_overlaps = not q or sqlite_text_search(q, text_fields)\n\n    return bbox_overlaps and datetime_overlaps and text_overlaps\n\n\nclass CollectionSearch(BaseSearch):\n    \"\"\"Represents a deferred query to a STAC collection search endpoint as described in\n    the `STAC API - Collection Search extension\n    <https://github.com/stac-api-extensions/collection-search>`__.\n\n    Due to potential conflicts between the collection-search and transactions extensions\n    pystac_client will only send GET requests to the /collections endpoint.\n\n    No request is sent to the API until a method is called to iterate\n    through the resulting STAC Collections, either :meth:`CollectionSearch.collections`,\n    or :meth:`CollectionSearch.collections_as_dicts`.\n\n    All parameters except `url``, ``method``, ``max_collections``, and ``client``\n    correspond to query parameters\n    described in the `STAC API - Collection Extension: Query Parameters Table\n    <https://github.com/stac-api-extensions/collection-search?tab=readme-ov-file#query-parameters-and-fields>`__\n    docs. Please refer to those docs for details on how these parameters filter search\n    results.\n\n    Args:\n        url: The URL to the search page of the STAC API.\n        max_collections : The maximum number of collections to return from the\n            search, even if there are more matching results. This client to limit\n            the total number of Collections returned from the :meth:`collections`,\n            :meth:`collection_list`, and :meth:`collections_as_dicts methods`. The\n            client will continue to request pages of collections until the number of\n            max collections is reached. Setting this to ``None`` will allow\n            iteration over a possibly very large number of results.\n        stac_io: An instance of StacIO for retrieving results. Normally comes\n            from the Client that returns this CollectionSearch client: An instance of a\n            root Client used to set the root on resulting Collections.\n        client: An instance of Client for retrieving results. This is normally populated\n            by the client that returns this CollectionSearch instance.\n        limit: A recommendation to the service as to the number of collections to return\n            *per page* of results. Defaults to 100.\n        bbox: A list, tuple, or iterator representing a bounding box of 2D\n            or 3D coordinates. Results will be filtered\n            to only those intersecting the bounding box.\n        datetime: Either a single datetime or datetime range used to filter results.\n            You may express a single datetime using a :class:`datetime.datetime`\n            instance, a `RFC 3339-compliant <https://tools.ietf.org/html/rfc3339>`__\n            timestamp, or a simple date string (see below). Instances of\n            :class:`datetime.datetime` may be either\n            timezone aware or unaware. Timezone aware instances will be converted to\n            a UTC timestamp before being passed\n            to the endpoint. Timezone unaware instances are assumed to represent UTC\n            timestamps. You may represent a\n            datetime range using a ``\"/\"`` separated string as described in the spec,\n            or a list, tuple, or iterator\n            of 2 timestamps or datetime instances. For open-ended ranges, use either\n            ``\"..\"`` (``'2020-01-01:00:00:00Z/..'``,\n            ``['2020-01-01:00:00:00Z', '..']``) or a value of ``None``\n            (``['2020-01-01:00:00:00Z', None]``).\n\n            If using a simple date string, the datetime can be specified in\n            ``YYYY-mm-dd`` format, optionally truncating\n            to ``YYYY-mm`` or just ``YYYY``. Simple date strings will be expanded to\n            include the entire time period, for example:\n\n            - ``2017`` expands to ``2017-01-01T00:00:00Z/2017-12-31T23:59:59Z``\n            - ``2017-06`` expands to ``2017-06-01T00:00:00Z/2017-06-30T23:59:59Z``\n            - ``2017-06-10`` expands to ``2017-06-10T00:00:00Z/2017-06-10T23:59:59Z``\n\n            If used in a range, the end of the range expands to the end of that\n            day/month/year, for example:\n\n            - ``2017/2018`` expands to\n              ``2017-01-01T00:00:00Z/2018-12-31T23:59:59Z``\n            - ``2017-06/2017-07`` expands to\n              ``2017-06-01T00:00:00Z/2017-07-31T23:59:59Z``\n            - ``2017-06-10/2017-06-11`` expands to\n              ``2017-06-10T00:00:00Z/2017-06-11T23:59:59Z``\n        q: Free-text search query. See the `STAC API - Free Text Extension\n            Spec <https://github.com/stac-api-extensions/freetext-search>`__ for\n            syntax.\n        query: List or JSON of query parameters as per the STAC API `query` extension\n        filter: JSON of query parameters as per the STAC API `filter` extension\n        filter_lang: Language variant used in the filter body. If `filter` is a\n            dictionary or not provided, defaults\n            to 'cql2-json'. If `filter` is a string, defaults to `cql2-text`.\n        sortby: A single field or list of fields to sort the response by\n        fields: A list of fields to include in the response. Note this may\n            result in invalid STAC objects, as they may not have required fields.\n            Use `collections_as_dicts` to avoid object unmarshalling errors.\n        modifier : A callable that modifies the children collection and items\n            returned by this Client. This can be useful for injecting\n            authentication parameters into child assets to access data\n            from non-public sources.\n\n            The callable should expect a single argument, which will be one\n            of the following types:\n\n            * :class:`pystac.Collection`\n            * :class:`pystac.Item`\n            * :class:`pystac.ItemCollection`\n            * A STAC item-like :class:`dict`\n            * A STAC collection-like :class:`dict`\n\n            The callable should mutate the argument in place and return ``None``.\n\n            ``modifier`` propagates recursively to children of this Client.\n            After getting a child collection with, e.g.\n            :meth:`Client.get_collection`, the child items of that collection\n            will still be signed with ``modifier``.\n    \"\"\"\n\n    _stac_io: StacApiIO\n    _collection_search_extension_enabled: bool\n    _collection_search_free_text_enabled: bool\n\n    def __init__(\n        self,\n        url: str,\n        *,\n        max_collections: int | None = None,\n        stac_io: StacApiIO | None = None,\n        client: Optional[\"_client.Client\"] = None,\n        limit: int | None = None,\n        bbox: BBoxLike | None = None,\n        datetime: DatetimeLike | None = None,\n        query: QueryLike | None = None,\n        filter: FilterLike | None = None,\n        filter_lang: FilterLangLike | None = None,\n        sortby: SortbyLike | None = None,\n        fields: FieldsLike | None = None,\n        q: str | None = None,\n        modifier: Callable[[Modifiable], None] | None = None,\n        collection_search_extension_enabled: bool = False,\n        collection_search_free_text_enabled: bool = False,\n    ):\n        super().__init__(\n            url=url,\n            method=\"GET\",\n            max_items=max_collections,\n            stac_io=stac_io,\n            client=client,\n            limit=limit,\n            bbox=bbox,\n            datetime=datetime,\n            query=query,\n            filter=filter,\n            filter_lang=filter_lang,\n            sortby=sortby,\n            fields=fields,\n            q=q,\n            modifier=modifier,\n        )\n\n        if client and client._stac_io is not None and stac_io is None:\n            self._stac_io = client._stac_io\n            self._collection_search_extension_enabled = client.conforms_to(\n                ConformanceClasses.COLLECTION_SEARCH\n            )\n            self._collection_search_free_text_enabled = client.conforms_to(\n                ConformanceClasses.COLLECTION_SEARCH_FREE_TEXT\n            )\n            if any([bbox, datetime, q, query, filter, sortby, fields]):\n                if not self._collection_search_extension_enabled:\n                    warnings.warn(\n                        DoesNotConformTo(\n                            \"COLLECTION_SEARCH\",\n                            \"Filtering will be performed client-side where only bbox, \"\n                            \"datetime, and q arguments are supported\",\n                        )\n                    )\n                    self._validate_client_side_args()\n                else:\n                    if not self._collection_search_free_text_enabled:\n                        warnings.warn(\n                            DoesNotConformTo(\n                                \"COLLECTION_SEARCH#FREE_TEXT\",\n                                \"Free-text search is not enabled for collection search\"\n                                \"Free-text filters will be applied client-side.\",\n                            )\n                        )\n\n        else:\n            self._stac_io = stac_io or StacApiIO()\n            self._collection_search_extension_enabled = (\n                collection_search_extension_enabled\n            )\n            self._collection_search_free_text_enabled = (\n                collection_search_free_text_enabled\n            )\n            self._validate_client_side_args()\n\n    def _validate_client_side_args(self) -> None:\n        \"\"\"Client-side filtering only supports the bbox, datetime, and q parameters.\"\"\"\n        args = {key for key, value in self._parameters.items() if value is not None}\n        extras = args - {\"bbox\", \"datetime\", \"q\", \"limit\", \"max_items\"}\n\n        if extras:\n            raise ValueError(\n                \"Only the limit, max_collections, bbox, datetime, and q arguments are \"\n                \"supported for client-side filtering but these extra arguments were \"\n                \"provided: \" + \",\".join(extras)\n            )\n\n    @lru_cache(1)\n    def matched(self) -> int | None:\n        \"\"\"Return number matched for search\n\n        Returns the value from the `numberMatched` or `context.matched` field.\n        Not all APIs will support counts in which case a warning will be issued\n\n        Returns:\n            int: Total count of matched collections. If counts are not supported `None`\n            is returned.\n        \"\"\"\n        found = None\n        iter = self.pages_as_dicts()\n        page = next(iter, None)\n\n        if not page:\n            return 0\n\n        # if collection search and free-text are fully supported, try reading a value\n        # from the search result context\n        if (\n            self._collection_search_extension_enabled\n            and self._collection_search_free_text_enabled\n        ):\n            if \"context\" in page:\n                found = page[\"context\"].get(\"matched\", None)\n            elif \"numberMatched\" in page:\n                found = page[\"numberMatched\"]\n\n        if not found:\n            count = len(page[\"collections\"])\n\n            for page in iter:\n                count += len(page[\"collections\"])\n\n            found = count\n\n        return found\n\n    # ------------------------------------------------------------------------\n    # Result sets\n    # ------------------------------------------------------------------------\n    # By collection\n    def collections(self) -> Iterator[Collection]:\n        \"\"\"Iterator that yields :class:`pystac.Collection` instances for each collection\n        matching the given search parameters.\n\n        Yields:\n            Collection : each Collection matching the search criteria\n        \"\"\"\n        for collection in self.collections_as_dicts():\n            # already signed in collections_as_dicts\n            yield Collection.from_dict(\n                collection, root=self.client, preserve_dict=False\n            )\n\n    @lru_cache(1)\n    def collections_as_dicts(self) -> Iterator[dict[str, Any]]:\n        \"\"\"Iterator that yields :class:`dict` instances for each collection matching\n        the given search parameters.\n\n        Yields:\n            Collection : each Collection matching the search criteria\n        \"\"\"\n        for page in self.pages_as_dicts():\n            yield from page.get(\"collections\", [])\n\n    # ------------------------------------------------------------------------\n    # By Page\n    def pages(self) -> Iterator[list[Collection]]:\n        \"\"\"Iterator that yields lists of Collection objects.  Each list is\n        a page of results from the search.\n\n        Yields:\n            List[Collection] : a group of Collections matching the search criteria\n        \"\"\"\n        if isinstance(self._stac_io, StacApiIO):\n            for page in self.pages_as_dicts():\n                # already signed in pages_as_dicts\n                yield [\n                    Collection.from_dict(\n                        collection, preserve_dict=False, root=self.client\n                    )\n                    for collection in page[\"collections\"]\n                ]\n\n    def pages_as_dicts(self) -> Iterator[dict[str, Any]]:\n        \"\"\"Iterator that yields :class:`dict` instances for each page\n        of results from the search.\n\n        Yields:\n            Dict : a group of collections matching the search\n            criteria as a feature-collection-like dictionary.\n        \"\"\"\n        if isinstance(self._stac_io, StacApiIO):\n            num_collections = 0\n            for page in self._stac_io.get_pages(\n                self.url, self.method, self.get_parameters()\n            ):\n                call_modifier(self.modifier, page)\n                collections = page.get(\"collections\", [])\n                page_has_collections = len(collections) > 0\n\n                # apply client-side filter if the collection search extension\n                # is not enabled in the API\n                if not self._collection_search_extension_enabled:\n                    args = {\n                        \"bbox\": self._parameters.get(\"bbox\"),\n                        \"temporal_interval_str\": self._parameters.get(\"datetime\"),\n                        \"q\": self._parameters.get(\"q\"),\n                    }\n                    collections = [\n                        collection\n                        for collection in filter(\n                            lambda x: collection_matches(x, **args),\n                            collections,\n                        )\n                    ]\n\n                # apply client-side free-text filter if free-text extension is not\n                # enabled in the API\n                elif not self._collection_search_free_text_enabled:\n                    if q := self._parameters.get(\"q\"):\n                        collections = [\n                            collection\n                            for collection in filter(\n                                lambda x: collection_matches(x, q=q),\n                                collections,\n                            )\n                        ]\n                if collections:\n                    num_collections += len(collections)\n                    if self._max_items and num_collections > self._max_items:\n                        # Slice the features down to make sure we hit max_collections\n                        page[\"collections\"] = collections[\n                            0 : -(num_collections - self._max_items)\n                        ]\n                    else:\n                        page[\"collections\"] = collections\n\n                    yield page\n                    if self._max_items and num_collections >= self._max_items:\n                        return\n                # if there were collections on this page but they got filtered out keep\n                # going\n                elif page_has_collections:\n                    continue\n                else:\n                    return\n\n    # ------------------------------------------------------------------------\n    # Everything\n\n    @lru_cache(1)\n    def collection_list(self) -> list[Collection]:\n        \"\"\"\n        Get the matching collections as a list of :py:class:`pystac.Collection` objects.\n\n        Return:\n            List[Collection]: The list of collections\n        \"\"\"\n        # Bypass the cache here, so that we can pass __preserve_dict__\n        # without mutating what's in the cache.\n        collection_list = self.collections_as_dicts.__wrapped__(self)\n        # already signed in collections_as_dicts\n        return [\n            Collection.from_dict(collection, preserve_dict=False, root=self.client)\n            for collection in collection_list\n        ]\n\n    @lru_cache(1)\n    def collection_list_as_dict(self) -> dict[str, Any]:\n        \"\"\"\n        Get the matching collections as a dict.\n\n        The dictionary will have a single key:\n\n        1. ``'collections'`` with the value being a list of dictionaries\n            for the matching collections.\n\n        Return:\n            Dict : A dictionary with the list of matching collections\n        \"\"\"\n        collections = []\n        for page in self.pages_as_dicts():\n            for collection in page[\"collections\"]:\n                collections.append(collection)\n\n        return {\"collections\": collections}\n"
  },
  {
    "path": "pystac_client/conformance.py",
    "content": "from __future__ import annotations\n\nimport re\nfrom enum import Enum\n\n\nclass ConformanceClasses(Enum):\n    \"\"\"Enumeration class for Conformance Classes\"\"\"\n\n    # defined conformance classes regexes\n    CORE = \"/core\"\n    COLLECTIONS = \"/collections\"\n\n    # this is ogcapi-features instead of just features for historical reasons,\n    # even thought this is a STAC API conformance class\n    FEATURES = \"/ogcapi-features\"\n    ITEM_SEARCH = \"/item-search\"\n\n    CONTEXT = \"/item-search#context\"\n    FIELDS = \"/item-search#fields\"\n    SORT = \"/item-search#sort\"\n    QUERY = \"/item-search#query\"\n    FILTER = \"/item-search#filter\"\n\n    # collection search\n    COLLECTION_SEARCH = \"/collection-search\"\n    COLLECTION_SEARCH_FREE_TEXT = \"/collection-search#free-text\"\n\n    @classmethod\n    def get_by_name(cls, name: str) -> ConformanceClasses:\n        for member in cls:\n            if member.name == name.upper():\n                return member\n        raise ValueError(\n            f\"Invalid conformance class '{name}'. Options are: {list(cls)}\"\n        )\n\n    def __str__(self) -> str:\n        return f\"{self.name}\"\n\n    def __repr__(self) -> str:\n        return str(self)\n\n    @property\n    def valid_uri(self) -> str:\n        return f\"https://api.stacspec.org/v1.0.*{self.value}\"\n\n    @property\n    def pattern(self) -> re.Pattern[str]:\n        return re.compile(\n            rf\"{re.escape('https://api.stacspec.org/v1.0.')}(.*){re.escape(self.value)}\"\n        )\n"
  },
  {
    "path": "pystac_client/errors.py",
    "content": "class ClientTypeError(Exception):\n    \"\"\"Raised when trying to open a Client on a non-catalog STAC Object.\"\"\"\n\n    pass\n\n\nclass IgnoredResultWarning(RuntimeWarning):\n    \"\"\"\n    Warning raised when a 'modifier' callable returns a result.\n    \"\"\"\n"
  },
  {
    "path": "pystac_client/exceptions.py",
    "content": "from requests import Response\n\n\nclass APIError(Exception):\n    \"\"\"Raised when unexpected server error.\"\"\"\n\n    status_code: int | None\n\n    @classmethod\n    def from_response(cls, response: Response) -> \"APIError\":\n        error = cls(response.text)\n        error.status_code = response.status_code\n        return error\n\n\nclass ParametersError(Exception):\n    \"\"\"Raised when invalid parameters are used in a query\"\"\"\n"
  },
  {
    "path": "pystac_client/free_text.py",
    "content": "\"\"\"Client-side free-text search filtering as described in `OGC API - Features - Part 9:\nText Search <https://docs.ogc.org/DRAFTS/24-031.html#q-parameter>`__\n\nUses the `SQLite FTS5 Extension <https://www.sqlite.org/fts5.html>`__ to implement\nfree-text search filtering.\n\"\"\"\n\nimport re\nimport sqlite3\n\n\ndef parse_query_for_sqlite(q: str) -> str:\n    \"\"\"Translate an OGC Features API free-text search query into the SQLite text search\n    syntax\n    \"\"\"\n    # separate out search terms, quoted exact phrases, commas, and exact phrases\n    tokens = [token.strip() for token in re.findall(r'\"[^\"]*\"|,|[\\(\\)]|[^,\\s\\(\\)]+', q)]\n\n    # special characters that need to be escaped or quoted for sqlite fts5\n    special_chars = set(\"-@&:^~<>=\")\n\n    for i, token in enumerate(tokens):\n        if token.startswith(\"+\"):\n            tokens[i] = token[1:].strip()\n        elif token.startswith(\"-\"):\n            tokens[i] = \"NOT \" + token[1:].strip()\n        elif token == \",\":\n            tokens[i] = \"OR\"\n        elif any(char in token for char in special_chars):\n            # Escape any existing double quotes in the token\n            escaped_token = token.replace('\"', '\"\"')\n            tokens[i] = f'\"{escaped_token}\"'\n\n    return \" \".join(tokens)\n\n\ndef sqlite_text_search(q: str, text_fields: dict[str, str]) -> bool:\n    \"\"\"Perform a free-text search against a set of text fields for a single\n    collection to determine if that collection matches the query.\n\n    Creates an in-memory SQLite database with a single table and a single row\n    then runs the MATCH query to determine if the row matches the search\n    criteria.\n    \"\"\"\n    column_clause = \", \".join(text_fields.keys())\n    value_clause = \", \".join([\"?\" for _ in text_fields.keys()])\n\n    with sqlite3.connect(\":memory:\") as conn:  # Use an in-memory database\n        cursor = conn.cursor()\n\n        cursor.execute(\n            f\"\"\"\n        CREATE VIRTUAL TABLE collections USING fts5({column_clause});\n        \"\"\"\n        )\n\n        cursor.execute(\n            f\"\"\"\n        INSERT INTO collections ({column_clause}) VALUES ({value_clause});\n        \"\"\",\n            tuple(text_fields.values()),\n        )\n\n        cursor.execute(\n            f\"\"\"\n        SELECT COUNT(*)\n        FROM collections WHERE collections MATCH '{parse_query_for_sqlite(q)}';\n        \"\"\"\n        )\n\n        return bool(cursor.fetchone()[0])\n"
  },
  {
    "path": "pystac_client/item_search.py",
    "content": "import json\nimport re\nimport warnings\nfrom abc import ABC\nfrom collections.abc import Callable, Iterable, Iterator, Mapping\nfrom copy import deepcopy\nfrom datetime import datetime as datetime_\nfrom datetime import timezone\nfrom functools import lru_cache\nfrom itertools import chain\nfrom typing import (\n    TYPE_CHECKING,\n    Any,\n    Optional,\n    Protocol,\n    Union,\n)\n\nfrom dateutil.relativedelta import relativedelta\nfrom dateutil.tz import tzutc\nfrom pystac import Collection, Item, ItemCollection\nfrom requests import Request\n\nfrom pystac_client._utils import Modifiable, call_modifier\nfrom pystac_client.conformance import ConformanceClasses\nfrom pystac_client.stac_api_io import StacApiIO\nfrom pystac_client.warnings import DoesNotConformTo\n\nif TYPE_CHECKING:\n    from pystac_client import client as _client\n\nDATETIME_REGEX = re.compile(\n    r\"^(?P<year>\\d{4})(-(?P<month>\\d{2})(-(?P<day>\\d{2})\"\n    r\"(?P<remainder>([Tt])\\d{2}:\\d{2}:\\d{2}(\\.\\d+)?\"\n    r\"(?P<tz_info>[Zz]|([-+])(\\d{2}):(\\d{2}))?)?)?)?$\"\n)\n\n\nclass GeoInterface(Protocol):\n    @property\n    def __geo_interface__(self) -> dict[str, Any]: ...\n\n\nDatetimeOrTimestamp = Optional[Union[datetime_, str]]\nDatetime = str\nDatetimeLike = Union[\n    DatetimeOrTimestamp,\n    tuple[DatetimeOrTimestamp, DatetimeOrTimestamp],\n    list[DatetimeOrTimestamp],\n    Iterator[DatetimeOrTimestamp],\n]\n\nBBox = tuple[float, ...]\nBBoxLike = Union[BBox, list[float], Iterator[float], str]\n\nCollections = tuple[str, ...]\nCollectionsLike = Union[list[str], Iterator[str], str]\n\nIDs = tuple[str, ...]\nIDsLike = Union[IDs, str, list[str], Iterator[str]]\n\nIntersects = dict[str, Any]\nIntersectsLike = Union[str, GeoInterface, Intersects]\n\nQuery = dict[str, Any]\nQueryLike = Union[Query, list[str]]\n\nFilterLangLike = str\nFilterLike = Union[dict[str, Any], str]\n\nSortby = list[dict[str, str]]\nSortbyLike = Union[Sortby, str, list[str]]\n\nFields = dict[str, list[str]]\nFieldsLike = Union[Fields, str, list[str]]\n\n# these cannot be reordered or parsing will fail!\nOP_MAP = {\n    \">=\": \"gte\",\n    \"<=\": \"lte\",\n    \"=\": \"eq\",\n    \"<>\": \"neq\",\n    \">\": \"gt\",\n    \"<\": \"lt\",\n}\n\nOPS = list(OP_MAP.keys())\n\n\n# from https://gist.github.com/angstwad/bf22d1822c38a92ec0a9#gistcomment-2622319\ndef dict_merge(\n    dct: dict[Any, Any], merge_dct: dict[Any, Any], add_keys: bool = True\n) -> dict[Any, Any]:\n    \"\"\"Recursive dict merge.\n\n    Inspired by :meth:``dict.update()``, instead of\n    updating only top-level keys, dict_merge recurses down into dicts nested\n    to an arbitrary depth, updating keys. The ``merge_dct`` is merged into\n    ``dct``. This version will return a copy of the dictionary and leave the original\n    arguments untouched.  The optional argument ``add_keys``, determines whether keys\n    which are present in ``merge_dict`` but not ``dct`` should be included in the new\n    dict.\n\n    Args:\n        dct (dict) onto which the merge is executed\n        merge_dct (dict): dct merged into dct\n        add_keys (bool): whether to add new keys\n\n    Return:\n        dict: updated dict\n    \"\"\"\n    dct = dct.copy()\n    if not add_keys:\n        merge_dct = {k: merge_dct[k] for k in set(dct).intersection(set(merge_dct))}\n\n    for k, v in merge_dct.items():\n        if k in dct and isinstance(dct[k], dict) and isinstance(merge_dct[k], Mapping):\n            dct[k] = dict_merge(dct[k], merge_dct[k], add_keys=add_keys)\n        else:\n            dct[k] = merge_dct[k]\n\n    return dct\n\n\nclass BaseSearch(ABC):\n    _stac_io: StacApiIO\n\n    def __init__(\n        self,\n        url: str,\n        *,\n        method: str | None = \"POST\",\n        max_items: int | None = None,\n        stac_io: StacApiIO | None = None,\n        client: Optional[\"_client.Client\"] = None,\n        limit: int | None = None,\n        ids: IDsLike | None = None,\n        collections: CollectionsLike | None = None,\n        bbox: BBoxLike | None = None,\n        intersects: IntersectsLike | None = None,\n        datetime: DatetimeLike | None = None,\n        query: QueryLike | None = None,\n        filter: FilterLike | None = None,\n        filter_lang: FilterLangLike | None = None,\n        sortby: SortbyLike | None = None,\n        fields: FieldsLike | None = None,\n        modifier: Callable[[Modifiable], None] | None = None,\n        q: str | None = None,\n    ):\n        self.url = url\n        self.client = client\n\n        self._max_items = max_items\n        if self._max_items is not None and limit is not None:\n            limit = min(limit, self._max_items)\n\n        if limit is not None and (limit < 1 or limit > 10000):\n            raise Exception(f\"Invalid limit of {limit}, must be between 1 and 10,000\")\n\n        self.method = method\n        self.modifier = modifier\n\n        params = {\n            \"limit\": limit,\n            \"bbox\": self._format_bbox(bbox),\n            \"datetime\": self._format_datetime(datetime),\n            \"ids\": self._format_ids(ids),\n            \"collections\": self._format_collections(collections),\n            \"intersects\": self._format_intersects(intersects),\n            \"query\": self._format_query(query),\n            \"filter\": self._format_filter(method, filter_lang, filter),\n            \"filter-lang\": self._format_filter_lang(method, filter, filter_lang),\n            \"sortby\": self._format_sortby(sortby),\n            \"fields\": self._format_fields(fields),\n            \"q\": q,\n        }\n\n        self._parameters: dict[str, Any] = {\n            k: v for k, v in params.items() if v is not None\n        }\n\n    def get_parameters(self) -> dict[str, Any]:\n        if self.method == \"POST\":\n            return self._parameters\n        elif self.method == \"GET\":\n            return self._clean_params_for_get_request()\n        else:\n            raise Exception(f\"Unsupported method {self.method}\")\n\n    def _clean_params_for_get_request(self) -> dict[str, Any]:\n        params = deepcopy(self._parameters)\n        if \"bbox\" in params:\n            params[\"bbox\"] = \",\".join(map(str, params[\"bbox\"]))\n        if \"ids\" in params:\n            params[\"ids\"] = \",\".join(params[\"ids\"])\n        if \"collections\" in params:\n            params[\"collections\"] = \",\".join(params[\"collections\"])\n        if \"intersects\" in params:\n            params[\"intersects\"] = json.dumps(\n                params[\"intersects\"], separators=(\",\", \":\")\n            )\n        if \"query\" in params:\n            params[\"query\"] = json.dumps(params[\"query\"], separators=(\",\", \":\"))\n        if \"sortby\" in params:\n            params[\"sortby\"] = self._sortby_dict_to_str(params[\"sortby\"])\n        if \"fields\" in params:\n            params[\"fields\"] = self._fields_dict_to_str(params[\"fields\"])\n        if \"filter\" in params and isinstance(params[\"filter\"], dict):\n            params[\"filter\"] = json.dumps(params[\"filter\"])\n        return params\n\n    def url_with_parameters(self) -> str:\n        \"\"\"Returns the search url with parameters, appropriate for a GET request.\n\n        Examples:\n\n        >>> search = ItemSearch(\n        ...    url=\"https://planetarycomputer.microsoft.com/api/stac/v1/search\",\n        ...    collections=[\"cop-dem-glo-30\"],\n        ...    bbox=[88.214, 27.927, 88.302, 28.034],\n        ... )\n        >>> assert (\n        ...    search.url_with_parameters()\n        ...    == \"https://planetarycomputer.microsoft.com/api/stac/v1/search?\"\n        ...    \"limit=100&bbox=88.214,27.927,88.302,28.034&collections=cop-dem-glo-30\"\n        ... )\n\n        Returns:\n            str: The search url with parameters.\n        \"\"\"\n        params = self._clean_params_for_get_request()\n        request = Request(\"GET\", self.url, params=params)\n        url = request.prepare().url\n        if url is None:\n            raise ValueError(\"Could not construct a full url\")\n        return url\n\n    def _format_query(self, value: QueryLike | None) -> dict[str, Any] | None:\n        if value is None:\n            return None\n\n        if self.client and not self.client.conforms_to(ConformanceClasses.QUERY):\n            warnings.warn(DoesNotConformTo(\"QUERY\"))\n\n        if isinstance(value, dict):\n            return value\n        elif isinstance(value, list):\n            query: dict[str, Any] = {}\n            for q in value:\n                if isinstance(q, str):\n                    try:\n                        query = dict_merge(query, json.loads(q))\n                    except json.decoder.JSONDecodeError:\n                        for op in OPS:\n                            parts = q.split(op)\n                            if len(parts) == 2:\n                                param = parts[0]\n                                val: str | float = parts[1]\n                                if param == \"gsd\":\n                                    val = float(val)\n                                query = dict_merge(query, {parts[0]: {OP_MAP[op]: val}})\n                                break\n                else:\n                    raise Exception(\"Unsupported query format, must be a List[str].\")\n        else:\n            raise Exception(\"Unsupported query format, must be a Dict or List[str].\")\n\n        return query\n\n    @staticmethod\n    def _format_filter_lang(\n        method: str | None,\n        _filter: FilterLike | None,\n        value: FilterLangLike | None,\n    ) -> str | None:\n        if _filter is None:\n            return None\n\n        if value is not None:\n            return value\n\n        if method == \"GET\":\n            return \"cql2-text\"\n\n        if method == \"POST\":\n            return \"cql2-json\"\n\n        return None\n\n    def _format_filter(\n        self,\n        method: str | None,\n        filter_lang: FilterLangLike | None,\n        value: FilterLike | None,\n    ) -> FilterLike | None:\n        if not value:\n            return None\n\n        if self.client and not self.client.conforms_to(ConformanceClasses.FILTER):\n            warnings.warn(DoesNotConformTo(\"FILTER\"))\n\n        if method == \"GET\" and isinstance(value, str):\n            return value\n\n        if method == \"POST\" and isinstance(value, dict):\n            return value\n\n        # if filter_lang is specified, do not coerce\n        if filter_lang is not None:\n            return value\n\n        try:\n            import cql2\n\n            if isinstance(value, dict):\n                expr = cql2.parse_json(json.dumps(value))\n            else:\n                # could be cql2-text or stringified cql2-json\n                expr = cql2.Expr(value)\n\n        except ImportError as e:\n            raise ValueError(\n                \"Unless you specify ``filter_lang`` pystac-client will try to convert \"\n                \"the filter to cql2-text or cql2-json based on the HTTP method \"\n                \"provided.\\n\"\n                \"Resolve this error by installing ``cql2``: ``pip install cql2``\"\n            ) from e\n\n        if method == \"GET\":\n            return str(expr.to_text())\n\n        if method == \"POST\":\n            return dict(expr.to_json())\n\n        return value\n\n    @staticmethod\n    def _format_bbox(value: BBoxLike | None) -> BBox | None:\n        if value is None:\n            return None\n\n        if isinstance(value, str):\n            bbox = tuple(map(float, value.split(\",\")))\n        else:\n            bbox = tuple(map(float, value))\n\n        return bbox\n\n    @staticmethod\n    def _to_utc_isoformat(dt: datetime_) -> str:\n        if dt.tzinfo is not None:\n            dt = dt.astimezone(timezone.utc)\n        dt = dt.replace(tzinfo=None)\n        return f\"{dt.isoformat('T')}Z\"\n\n    def _to_isoformat_range(\n        self,\n        component: DatetimeOrTimestamp,\n    ) -> tuple[str, str | None]:\n        \"\"\"Converts a single DatetimeOrTimestamp into one or two Datetimes.\n\n        This is required to expand a single value like \"2017\" out to the whole\n        year. This function returns two values. The first value is always a\n        valid Datetime. The second value can be None or a Datetime. If it is\n        None, this means that the first value was an exactly specified value\n        (e.g. a `datetime.datetime`). If the second value is a Datetime, then\n        it will be the end of the range at the resolution of the component,\n        e.g. if the component were \"2017\" the second value would be the last\n        second of the last day of 2017.\n        \"\"\"\n        if component is None:\n            return \"..\", None\n        elif isinstance(component, str):\n            if component == \"..\":\n                return component, None\n            elif component == \"\":\n                return \"..\", None\n\n            match = DATETIME_REGEX.match(component)\n            if not match:\n                raise Exception(f\"invalid datetime component: {component}\")\n            elif match.group(\"remainder\"):\n                if match.group(\"tz_info\"):\n                    return component, None\n                else:\n                    return f\"{component}Z\", None\n            else:\n                year = int(match.group(\"year\"))\n                optional_month = match.group(\"month\")\n                optional_day = match.group(\"day\")\n\n            if optional_day is not None:\n                start = datetime_(\n                    year,\n                    int(optional_month),\n                    int(optional_day),\n                    0,\n                    0,\n                    0,\n                    tzinfo=tzutc(),\n                )\n                end = start + relativedelta(days=1, seconds=-1)\n            elif optional_month is not None:\n                start = datetime_(year, int(optional_month), 1, 0, 0, 0, tzinfo=tzutc())\n                end = start + relativedelta(months=1, seconds=-1)\n            else:\n                start = datetime_(year, 1, 1, 0, 0, 0, tzinfo=tzutc())\n                end = start + relativedelta(years=1, seconds=-1)\n            return self._to_utc_isoformat(start), self._to_utc_isoformat(end)\n        else:\n            return self._to_utc_isoformat(component), None\n\n    def _format_datetime(self, value: DatetimeLike | None) -> Datetime | None:\n        if value is None:\n            return None\n        elif isinstance(value, datetime_):\n            return self._to_utc_isoformat(value)\n        elif isinstance(value, str):\n            components = value.split(\"/\")\n        else:\n            components = list(value)  # type: ignore\n\n        if not components:\n            return None\n        elif len(components) == 1:\n            if components[0] is None:\n                raise Exception(\"cannot create a datetime query with None\")\n            start, end = self._to_isoformat_range(components[0])\n            if end is not None:\n                return f\"{start}/{end}\"\n            else:\n                return start\n        elif len(components) == 2:\n            if all(c is None for c in components):\n                raise Exception(\"cannot create a double open-ended interval\")\n            start, _ = self._to_isoformat_range(components[0])\n            backup_end, end = self._to_isoformat_range(components[1])\n            return f\"{start}/{end or backup_end}\"\n        else:\n            raise Exception(\n                \"too many datetime components \"\n                f\"(max=2, actual={len(components)}): {value}\"\n            )\n\n    @staticmethod\n    def _format_collections(value: CollectionsLike | None) -> Collections | None:\n        def _format(c: Any) -> Collections:\n            if isinstance(c, str):\n                return (c,)\n            if isinstance(c, Iterable):\n                return tuple(map(lambda x: _format(x)[0], c))\n\n            return (c.id,)\n\n        if value is None:\n            return None\n        if isinstance(value, str):\n            return tuple(map(lambda x: _format(x)[0], value.split(\",\")))\n        if isinstance(value, Collection):\n            return _format(value)\n\n        return _format(value)\n\n    @staticmethod\n    def _format_ids(value: IDsLike | None) -> IDs | None:\n        if value is None or isinstance(value, (tuple, list)) and not value:\n            # We can't just check for truthiness here because of the Iterator[str] case\n            return None\n        elif isinstance(value, str):\n            # We could check for str in the first branch, but then we'd be checking\n            # for str twice #microoptimizations\n            if value:\n                return tuple(value.split(\",\"))\n            else:\n                return None\n        else:\n            return tuple(value)\n\n    def _format_sortby(self, value: SortbyLike | None) -> Sortby | None:\n        if value is None:\n            return None\n\n        if self.client and not self.client.conforms_to(ConformanceClasses.SORT):\n            warnings.warn(DoesNotConformTo(\"SORT\"))\n\n        if isinstance(value, str):\n            return [self._sortby_part_to_dict(part) for part in value.split(\",\")]\n\n        if isinstance(value, list):\n            if value and isinstance(value[0], str):\n                return [self._sortby_part_to_dict(str(v)) for v in value]\n            elif value and isinstance(value[0], dict):\n                return value  # type: ignore\n\n        raise Exception(\n            \"sortby must be of type None, str, List[str], or List[Dict[str, str]\"\n        )\n\n    @staticmethod\n    def _sortby_part_to_dict(part: str) -> dict[str, str]:\n        if part.startswith(\"-\"):\n            return {\"field\": part[1:], \"direction\": \"desc\"}\n        elif part.startswith(\"+\"):\n            return {\"field\": part[1:], \"direction\": \"asc\"}\n        else:\n            return {\"field\": part, \"direction\": \"asc\"}\n\n    @staticmethod\n    def _sortby_dict_to_str(sortby: Sortby) -> str:\n        return \",\".join(\n            [\n                f\"{'+' if sort['direction'] == 'asc' else '-'}{sort['field']}\"\n                for sort in sortby\n            ]\n        )\n\n    def _format_fields(self, value: FieldsLike | None) -> Fields | None:\n        if value is None:\n            return None\n\n        if self.client and not self.client.conforms_to(ConformanceClasses.FIELDS):\n            warnings.warn(DoesNotConformTo(\"FIELDS\"))\n\n        if isinstance(value, str):\n            return self._fields_to_dict(value.split(\",\"))\n        if isinstance(value, list):\n            if len(value) == 1:\n                return self._fields_to_dict(value[0].split(\",\"))\n            return self._fields_to_dict(value)\n        if isinstance(value, dict):\n            return value\n\n        raise Exception(\n            \"sortby must be of type None, str, List[str], or List[Dict[str, str]\"\n        )\n\n    @staticmethod\n    def _fields_to_dict(fields: list[str]) -> Fields:\n        includes: list[str] = []\n        excludes: list[str] = []\n        for field in fields:\n            if field.startswith(\"-\"):\n                excludes.append(field[1:])\n            elif field.startswith(\"+\"):\n                includes.append(field[1:])\n            else:\n                includes.append(field)\n        return {\"include\": includes, \"exclude\": excludes}\n\n    @staticmethod\n    def _fields_dict_to_str(fields: Fields) -> str:\n        includes = [f\"+{x}\" for x in fields.get(\"include\", [])]\n        excludes = [f\"-{x}\" for x in fields.get(\"exclude\", [])]\n        return \",\".join(chain(includes, excludes))\n\n    @staticmethod\n    def _format_intersects(value: IntersectsLike | None) -> Intersects | None:\n        if value is None:\n            return None\n        if isinstance(value, dict):\n            if value.get(\"type\") == \"Feature\":\n                return deepcopy(value.get(\"geometry\"))\n            else:\n                return deepcopy(value)\n        if isinstance(value, str):\n            return dict(json.loads(value))\n        if hasattr(value, \"__geo_interface__\"):\n            return dict(deepcopy(getattr(value, \"__geo_interface__\")))\n        raise Exception(\n            \"intersects must be of type None, str, dict, or an object that \"\n            \"implements __geo_interface__\"\n        )\n\n\nif TYPE_CHECKING:\n    from pystac_client import client as _client\n\n\ndef __getattr__(name: str) -> Any:\n    if name in (\"DEFAUL_LIMIT\", \"DEFAULT_LIMIT_AND_MAX_ITEMS\"):\n        warnings.warn(\n            f\"{name} is deprecated and will be removed in v0.8\", DeprecationWarning\n        )\n        return 100\n    raise AttributeError(f\"module {__name__} has no attribute {name}\")\n\n\nclass ItemSearch(BaseSearch):\n    \"\"\"Represents a deferred query to a STAC search endpoint as described in the\n    `STAC API - Item Search spec\n    <https://github.com/radiantearth/stac-api-spec/tree/master/item-search>`__.\n\n    No request is sent to the API until a method is called to iterate\n    through the resulting STAC Items, either :meth:`ItemSearch.item_collections`,\n    :meth:`ItemSearch.items`, or :meth:`ItemSearch.items_as_dicts`.\n\n    All parameters except ``url``, ``method``, ``max_items``, and ``client``\n    correspond to query parameters\n    described in the `STAC API - Item Search: Query Parameters Table\n    <https://github.com/radiantearth/stac-api-spec/tree/master/item-search#query-parameter-table>`__\n    docs. Please refer\n    to those docs for details on how these parameters filter search results.\n\n    Args:\n        url: The URL to the search page of the STAC API.\n        method : The HTTP method to use when making a request to the service.\n            This must be either ``\"GET\"``, ``\"POST\"``, or\n            ``None``. If ``None``, this will default to ``\"POST\"``.\n            If a ``\"POST\"`` request receives a ``405`` status for\n            the response, it will automatically retry with\n            ``\"GET\"`` for all subsequent requests.\n        max_items : The maximum number of items to return from the search, even\n            if there are more matching results. This allows the client to limit the\n            total number of Items returned from the :meth:`items`,\n            :meth:`item_collections`, and :meth:`items_as_dicts methods`. The client\n            will continue to request pages of items until the number of max items is\n            reached. By default (``max_items=None``) all items matching the query\n            will be returned.\n        stac_io: An instance of StacIO for retrieving results. Normally comes\n            from the Client that returns this ItemSearch client: An instance of a\n            root Client used to set the root on resulting Items.\n        client: An instance of Client for retrieving results. This is normally populated\n            by the client that returns this ItemSearch instance.\n        limit: A recommendation to the service as to the number of items to return\n            *per page* of results. Defaults to 100.\n        ids: List of one or more Item ids to filter on.\n        collections: List of one or more Collection IDs or :class:`pystac.Collection`\n            instances.\n        bbox: A list, tuple, or iterator representing a bounding box of 2D\n            or 3D coordinates. Results will be filtered\n            to only those intersecting the bounding box.\n        intersects: A string or dictionary representing a GeoJSON geometry or feature,\n            or an object that implements a ``__geo_interface__`` property, as supported\n            by several libraries including Shapely, ArcPy, PySAL, and geojson. Results\n            filtered to only those intersecting the geometry.\n        datetime: Either a single datetime or datetime range used to filter results.\n            You may express a single datetime using a :class:`datetime.datetime`\n            instance, a `RFC 3339-compliant <https://tools.ietf.org/html/rfc3339>`__\n            timestamp, or a simple date string (see below). Instances of\n            :class:`datetime.datetime` may be either\n            timezone aware or unaware. Timezone aware instances will be converted to\n            a UTC timestamp before being passed\n            to the endpoint. Timezone unaware instances are assumed to represent UTC\n            timestamps. You may represent a\n            datetime range using a ``\"/\"`` separated string as described in the spec,\n            or a list, tuple, or iterator\n            of 2 timestamps or datetime instances. For open-ended ranges, use either\n            ``\"..\"`` (``'2020-01-01:00:00:00Z/..'``,\n            ``['2020-01-01:00:00:00Z', '..']``) or a value of ``None``\n            (``['2020-01-01:00:00:00Z', None]``).\n\n            If using a simple date string, the datetime can be specified in\n            ``YYYY-mm-dd`` format, optionally truncating\n            to ``YYYY-mm`` or just ``YYYY``. Simple date strings will be expanded to\n            include the entire time period, for example:\n\n            - ``2017`` expands to ``2017-01-01T00:00:00Z/2017-12-31T23:59:59Z``\n            - ``2017-06`` expands to ``2017-06-01T00:00:00Z/2017-06-30T23:59:59Z``\n            - ``2017-06-10`` expands to ``2017-06-10T00:00:00Z/2017-06-10T23:59:59Z``\n\n            If used in a range, the end of the range expands to the end of that\n            day/month/year, for example:\n\n            - ``2017/2018`` expands to\n              ``2017-01-01T00:00:00Z/2018-12-31T23:59:59Z``\n            - ``2017-06/2017-07`` expands to\n              ``2017-06-01T00:00:00Z/2017-07-31T23:59:59Z``\n            - ``2017-06-10/2017-06-11`` expands to\n              ``2017-06-10T00:00:00Z/2017-06-11T23:59:59Z``\n\n        query: List or JSON of query parameters as per the STAC API `query` extension\n        filter: JSON of query parameters as per the STAC API `filter` extension\n        filter_lang: Language variant used in the filter body. If `filter` is a\n            dictionary or not provided, defaults\n            to 'cql2-json'. If `filter` is a string, defaults to `cql2-text`.\n        sortby: A single field or list of fields to sort the response by\n        fields: A list of fields to include in the response. Note this may\n            result in invalid STAC objects, as they may not have required fields.\n            Use `items_as_dicts` to avoid object unmarshalling errors.\n        modifier : A callable that modifies the children collection and items\n            returned by this Client. This can be useful for injecting\n            authentication parameters into child assets to access data\n            from non-public sources.\n\n            The callable should expect a single argument, which will be one\n            of the following types:\n\n            * :class:`pystac.Collection`\n            * :class:`pystac.Item`\n            * :class:`pystac.ItemCollection`\n            * A STAC item-like :class:`dict`\n            * A STAC collection-like :class:`dict`\n\n            The callable should mutate the argument in place and return ``None``.\n\n            ``modifier`` propagates recursively to children of this Client.\n            After getting a child collection with, e.g.\n            :meth:`Client.get_collection`, the child items of that collection\n            will still be signed with ``modifier``.\n    \"\"\"\n\n    _stac_io: StacApiIO\n\n    def __init__(\n        self,\n        url: str,\n        *,\n        method: str | None = \"POST\",\n        max_items: int | None = None,\n        stac_io: StacApiIO | None = None,\n        client: Optional[\"_client.Client\"] = None,\n        limit: int | None = None,\n        ids: IDsLike | None = None,\n        collections: CollectionsLike | None = None,\n        bbox: BBoxLike | None = None,\n        intersects: IntersectsLike | None = None,\n        datetime: DatetimeLike | None = None,\n        query: QueryLike | None = None,\n        filter: FilterLike | None = None,\n        filter_lang: FilterLangLike | None = None,\n        sortby: SortbyLike | None = None,\n        fields: FieldsLike | None = None,\n        modifier: Callable[[Modifiable], None] | None = None,\n    ):\n        super().__init__(\n            url=url,\n            method=method,\n            max_items=max_items,\n            stac_io=stac_io,\n            client=client,\n            limit=limit,\n            ids=ids,\n            collections=collections,\n            bbox=bbox,\n            intersects=intersects,\n            datetime=datetime,\n            query=query,\n            filter=filter,\n            filter_lang=filter_lang,\n            sortby=sortby,\n            fields=fields,\n            modifier=modifier,\n        )\n\n        if client and client._stac_io is not None and stac_io is None:\n            self._stac_io = client._stac_io\n            if not client.conforms_to(ConformanceClasses.ITEM_SEARCH):\n                warnings.warn(DoesNotConformTo(\"ITEM_SEARCH\"))\n        else:\n            self._stac_io = stac_io or StacApiIO()\n\n    @lru_cache(1)\n    def matched(self) -> int | None:\n        \"\"\"Return number matched for search\n\n        Returns the value from the `numberMatched` or `context.matched` field.\n        Not all APIs will support counts in which case a warning will be issued\n\n        Returns:\n            int: Total count of matched items. If counts are not supported `None`\n            is returned.\n        \"\"\"\n        params = {**self.get_parameters(), \"limit\": 1}\n        resp = self._stac_io.read_json(self.url, method=self.method, parameters=params)\n        found = None\n        if \"context\" in resp:\n            found = resp[\"context\"].get(\"matched\", None)\n        elif \"numberMatched\" in resp:\n            found = resp[\"numberMatched\"]\n        if found is None:\n            warnings.warn(\"numberMatched or context.matched not in response\")\n        return found\n\n    # ------------------------------------------------------------------------\n    # Result sets\n    # ------------------------------------------------------------------------\n    # By item\n    def items(self) -> Iterator[Item]:\n        \"\"\"Iterator that yields :class:`pystac.Item` instances for each item matching\n        the given search parameters.\n\n        Yields:\n            Item : each Item matching the search criteria\n        \"\"\"\n        for item in self.items_as_dicts():\n            # already signed in items_as_dicts\n            yield Item.from_dict(item, root=self.client, preserve_dict=False)\n\n    def items_as_dicts(self) -> Iterator[dict[str, Any]]:\n        \"\"\"Iterator that yields :class:`dict` instances for each item matching\n        the given search parameters.\n\n        Yields:\n            Item : each Item matching the search criteria\n        \"\"\"\n        for page in self.pages_as_dicts():\n            yield from page.get(\"features\", [])\n\n    # ------------------------------------------------------------------------\n    # By Page\n    def pages(self) -> Iterator[ItemCollection]:\n        \"\"\"Iterator that yields ItemCollection objects.  Each ItemCollection is\n        a page of results from the search.\n\n        Yields:\n            ItemCollection : a group of Items matching the search criteria within an\n            ItemCollection\n        \"\"\"\n        if isinstance(self._stac_io, StacApiIO):\n            for page in self.pages_as_dicts():\n                # already signed in pages_as_dicts\n                yield ItemCollection.from_dict(\n                    page, preserve_dict=False, root=self.client\n                )\n\n    def pages_as_dicts(self) -> Iterator[dict[str, Any]]:\n        \"\"\"Iterator that yields :class:`dict` instances for each page\n        of results from the search.\n\n        Yields:\n            Dict : a group of items matching the search\n            criteria as a feature-collection-like dictionary.\n        \"\"\"\n        if isinstance(self._stac_io, StacApiIO):\n            num_items = 0\n            for page in self._stac_io.get_pages(\n                self.url, self.method, self.get_parameters()\n            ):\n                call_modifier(self.modifier, page)\n                features = page.get(\"features\", [])\n                if features:\n                    num_items += len(features)\n                    if self._max_items and num_items > self._max_items:\n                        # Slice the features down to make sure we hit max_items\n                        page[\"features\"] = features[0 : -(num_items - self._max_items)]\n                    yield page\n                    if self._max_items and num_items >= self._max_items:\n                        return\n                else:\n                    return\n\n    # ------------------------------------------------------------------------\n    # Everything\n\n    @lru_cache(1)\n    def item_collection(self) -> ItemCollection:\n        \"\"\"\n        Get the matching items as a :py:class:`pystac.ItemCollection`.\n\n        Return:\n            ItemCollection: The item collection\n        \"\"\"\n        # Bypass the cache here, so that we can pass __preserve_dict__\n        # without mutating what's in the cache.\n        feature_collection = self.item_collection_as_dict.__wrapped__(self)\n        # already signed in item_collection_as_dict\n        return ItemCollection.from_dict(\n            feature_collection, preserve_dict=False, root=self.client\n        )\n\n    @lru_cache(1)\n    def item_collection_as_dict(self) -> dict[str, Any]:\n        \"\"\"\n        Get the matching items as an item-collection-like dict.\n\n        The dictionary will have two keys:\n\n        1. ``'type'`` with the value ``'FeatureCollection'``\n        2. ``'features'`` with the value being a list of dictionaries\n            for the matching items.\n\n        Return:\n            Dict : A GeoJSON FeatureCollection\n        \"\"\"\n        features = []\n        for page in self.pages_as_dicts():\n            for feature in page[\"features\"]:\n                features.append(feature)\n        feature_collection = {\"type\": \"FeatureCollection\", \"features\": features}\n        return feature_collection\n\n    # Deprecated methods\n    # not caching these, since they're cached in the implementation\n\n    def get_item_collections(self) -> Iterator[ItemCollection]:\n        \"\"\"DEPRECATED\n\n        .. deprecated:: 0.4.0\n            Use :meth:`ItemSearch.pages` instead.\n\n        Yields:\n            ItemCollection : a group of Items matching the search criteria.\n        \"\"\"\n        warnings.warn(\n            \"get_item_collections() is deprecated, use pages() instead\",\n            FutureWarning,\n        )\n        return self.pages()\n\n    def item_collections(self) -> Iterator[ItemCollection]:\n        \"\"\"DEPRECATED\n\n        .. deprecated:: 0.5.0\n            Use :meth:`ItemSearch.pages` instead.\n\n        Yields:\n            ItemCollection : a group of Items matching the search criteria within an\n            ItemCollection\n        \"\"\"\n        warnings.warn(\n            \"item_collections() is deprecated, use pages() instead\",\n            FutureWarning,\n        )\n        return self.pages()\n\n    def get_items(self) -> Iterator[Item]:\n        \"\"\"DEPRECATED.\n\n        .. deprecated:: 0.4.0\n            Use :meth:`ItemSearch.items` instead.\n\n        Yields:\n            Item : each Item matching the search criteria\n        \"\"\"\n        warnings.warn(\n            \"get_items() is deprecated, use items() instead\",\n            FutureWarning,\n        )\n        return self.items()\n\n    def get_all_items(self) -> ItemCollection:\n        \"\"\"DEPRECATED\n\n        .. deprecated:: 0.4.0\n           Use :meth:`ItemSearch.item_collection` instead.\n\n        Return:\n            item_collection : ItemCollection\n        \"\"\"\n        warnings.warn(\n            \"get_all_items() is deprecated, use item_collection() instead.\",\n            FutureWarning,\n        )\n        return self.item_collection()\n\n    def get_all_items_as_dict(self) -> dict[str, Any]:\n        \"\"\"DEPRECATED\n\n        .. deprecated:: 0.4.0\n           Use :meth:`ItemSearch.item_collection_as_dict` instead.\n\n        Return:\n            Dict : A GeoJSON FeatureCollection\n        \"\"\"\n        warnings.warn(\n            \"get_all_items_as_dict() is deprecated, use item_collection_as_dict() \"\n            \"instead.\",\n            FutureWarning,\n        )\n        return self.item_collection_as_dict()\n"
  },
  {
    "path": "pystac_client/mixins.py",
    "content": "import warnings\nfrom typing import Any\n\nimport pystac\n\nfrom pystac_client._utils import urljoin\nfrom pystac_client.conformance import ConformanceClasses\nfrom pystac_client.exceptions import APIError\nfrom pystac_client.stac_api_io import StacApiIO\nfrom pystac_client.warnings import DoesNotConformTo, MissingLink\n\nQUERYABLES_REL = \"http://www.opengis.net/def/rel/ogc/1.0/queryables\"\nQUERYABLES_ENDPOINT = \"queryables\"\n\n\nclass StacAPIObject(pystac.STACObject):\n    _stac_io: StacApiIO | None\n\n    def conforms_to(self, conformance_class: str | ConformanceClasses) -> bool:\n        raise NotImplementedError\n\n\nclass BaseMixin(StacAPIObject):\n    def _get_href(self, rel: str, link: pystac.Link | None, endpoint: str) -> str:\n        if link and isinstance(link.href, str):\n            href = link.absolute_href\n        else:\n            warnings.warn(MissingLink(rel, self.__class__.__name__), stacklevel=2)\n            href = urljoin(self.self_href, endpoint)\n        return href\n\n\nclass QueryablesMixin(BaseMixin):\n    \"\"\"Mixin for adding support for /queryables endpoint\"\"\"\n\n    def get_queryables_from(self, url: str) -> dict[str, Any]:\n        \"\"\"Return all queryables.\n\n        Output is a dictionary that can be used in ``jsonshema.validate``\n\n        Args:\n            url: a queryables url\n\n        Return:\n            Dict[str, Any]: Dictionary containing queryable fields\n        \"\"\"\n\n        if self._stac_io is None:\n            raise APIError(\"API access is not properly configured\")\n\n        result = self._stac_io.read_json(url)\n        if \"properties\" not in result:\n            raise APIError(\n                f\"Invalid response from {QUERYABLES_ENDPOINT}: \"\n                \"expected 'properties' attribute\"\n            )\n\n        return result\n\n    def get_queryables(self) -> dict[str, Any]:\n        url = self._get_queryables_href()\n        return self.get_queryables_from(url)\n\n    def _get_queryables_href(self) -> str:\n        if not self.conforms_to(ConformanceClasses.FILTER):\n            raise DoesNotConformTo(ConformanceClasses.FILTER.name)\n\n        link = self.get_single_link(QUERYABLES_REL)\n        href = self._get_href(QUERYABLES_REL, link, QUERYABLES_ENDPOINT)\n        return href\n"
  },
  {
    "path": "pystac_client/py.typed",
    "content": ""
  },
  {
    "path": "pystac_client/stac_api_io.py",
    "content": "import json\nimport logging\nimport warnings\nfrom collections.abc import Callable, Iterator\nfrom copy import deepcopy\nfrom typing import (\n    TYPE_CHECKING,\n    Any,\n    Optional,\n    Union,\n)\nfrom urllib.parse import urlparse\n\nimport pystac\nfrom pystac.link import Link\nfrom pystac.serialization import (\n    identify_stac_object,\n    identify_stac_object_type,\n    merge_common_properties,\n    migrate_to_latest,\n)\nfrom pystac.stac_io import DefaultStacIO\nfrom requests import Request, Session\nfrom requests.adapters import HTTPAdapter\nfrom urllib3 import Retry\n\nimport pystac_client\n\nfrom .exceptions import APIError\n\nif TYPE_CHECKING:\n    from pystac.catalog import Catalog as Catalog_Type\n    from pystac.stac_object import STACObject as STACObject_Type\n\nlogger = logging.getLogger(__name__)\n\n\nTimeout = Union[float, tuple[float, float], tuple[float, None]]\n\n\nclass StacApiIO(DefaultStacIO):\n    def __init__(\n        self,\n        headers: dict[str, str] | None = None,\n        conformance: list[str] | None = None,\n        parameters: dict[str, Any] | None = None,\n        request_modifier: Callable[[Request], Request | None] | None = None,\n        timeout: Timeout | None = None,\n        max_retries: int | Retry | None = 5,\n    ):\n        \"\"\"Initialize class for API IO\n\n        Args:\n            headers : Optional dictionary of headers to include in all requests\n            conformance (DEPRECATED) : Optional list of `Conformance Classes\n                <https://github.com/radiantearth/stac-api-spec/blob/master/overview.md#conformance-classes>`__.\n\n                .. deprecated:: 0.7.0\n                    Conformance can be altered on the client class directly\n\n            parameters: Optional dictionary of query string parameters to\n              include in all requests.\n            request_modifier: Optional callable that can be used to modify Request\n              objects before they are sent. If provided, the callable receives a\n              `request.Request` and must either modify the object directly or return\n              a new / modified request instance.\n            timeout: Optional float or (float, float) tuple following the semantics\n              defined by `Requests\n              <https://requests.readthedocs.io/en/latest/api/#main-interface>`__.\n            max_retries: The number of times to retry requests. Set to ``None`` to\n              disable retries.\n\n        Return:\n            StacApiIO : StacApiIO instance\n        \"\"\"\n        # TODO - this should super() to parent class\n\n        if conformance is not None:\n            warnings.warn(\n                (\n                    \"The `conformance` option is deprecated and will be \"\n                    \"removed in the next major release. Instead use \"\n                    \"`Client.set_conforms_to` or `Client.add_conforms_to` to control \"\n                    \"behavior.\"\n                ),\n                category=FutureWarning,\n            )\n\n        self.session = Session()\n        if max_retries:\n            self.session.mount(\"http://\", HTTPAdapter(max_retries=max_retries))\n            self.session.mount(\"https://\", HTTPAdapter(max_retries=max_retries))\n        self.timeout = timeout\n        self.update(\n            headers=headers,\n            parameters=parameters,\n            request_modifier=request_modifier,\n            timeout=timeout,\n        )\n\n    def update(\n        self,\n        headers: dict[str, str] | None = None,\n        parameters: dict[str, Any] | None = None,\n        request_modifier: Callable[[Request], Request | None] | None = None,\n        timeout: Timeout | None = None,\n    ) -> None:\n        \"\"\"Updates this StacApi's headers, parameters, and/or request_modifer.\n\n        Args:\n            headers : Optional dictionary of headers to include in all requests\n            parameters: Optional dictionary of query string parameters to\n              include in all requests.\n            request_modifier: Optional callable that can be used to modify Request\n              objects before they are sent. If provided, the callable receives a\n              `request.Request` and must either modify the object directly or return\n              a new / modified request instance.\n            timeout: Optional float or (float, float) tuple following the semantics\n              defined by `Requests\n              <https://requests.readthedocs.io/en/latest/api/#main-interface>`__.\n        \"\"\"\n        self.session.headers.update(headers or {})\n        self.session.params.update(parameters or {})  # type: ignore\n        self._req_modifier = request_modifier\n        self.timeout = timeout\n\n    def read_text(self, source: pystac.link.HREF, *args: Any, **kwargs: Any) -> str:\n        \"\"\"Read text from the given URI.\n\n        Overwrites the default method for reading text from a URL or file to allow\n        :class:`urllib.request.Request` instances as input. This method also raises\n        any :exc:`urllib.error.HTTPError` exceptions rather than catching\n        them to allow us to handle different response status codes as needed.\n        \"\"\"\n        if isinstance(source, Link):\n            link = source.to_dict()\n            href = link[\"href\"]\n            # get headers and body from Link and add to request from simple STAC\n            # resolver\n            merge = bool(link.get(\"merge\", False))\n\n            # If the link object includes a \"method\" property, use that. If not\n            # fall back to 'GET'.\n            method = link.get(\"method\", \"GET\")\n            # If the link object includes a \"headers\" property, use that and\n            # respect the \"merge\" property.\n            headers = link.get(\"headers\", None)\n\n            # If \"POST\" use the body object that and respect the \"merge\" property.\n            link_body = link.get(\"body\", {})\n            if method == \"POST\":\n                parameters = (\n                    {**(kwargs.get(\"parameters\", {})), **link_body}\n                    if merge\n                    else link_body\n                )\n            else:\n                # parameters are already in the link href\n                parameters = {}\n\n            return self.request(\n                href, method=method, headers=headers, parameters=parameters\n            )\n        else:  # str or something that can be str'ed\n            href = str(source)\n            if _is_url(href):\n                return self.request(href, *args, **kwargs)\n            else:\n                with open(href) as f:\n                    href_contents = f.read()\n                return href_contents\n\n    def request(\n        self,\n        href: str,\n        method: str | None = None,\n        headers: dict[str, str] | None = None,\n        parameters: dict[str, Any] | None = None,\n    ) -> str:\n        \"\"\"Makes a request to an http endpoint\n\n        Args:\n            href (str): The request URL\n            method (Optional[str], optional): The http method to use, 'GET' or 'POST'.\n              Defaults to None, which will result in 'GET' being used.\n            headers (Optional[Dict[str, str]], optional): Additional headers to include\n                in request. Defaults to None.\n            parameters (Optional[Dict[str, Any]], optional): parameters to send with\n                request. Defaults to None.\n\n        Raises:\n            APIError: raised if the server returns an error response\n\n        Return:\n            str: The decoded response from the endpoint\n        \"\"\"\n        if method == \"POST\":\n            request = Request(method=method, url=href, headers=headers, json=parameters)\n        else:\n            params = deepcopy(parameters) or {}\n            request = Request(method=\"GET\", url=href, headers=headers, params=params)\n        try:\n            modified = self._req_modifier(request) if self._req_modifier else None\n            prepped = self.session.prepare_request(modified or request)\n            msg = f\"{prepped.method} {prepped.url} Headers: {prepped.headers}\"\n            if method == \"POST\":\n                msg += f\" Payload: {json.dumps(request.json)}\"\n            if self.timeout is not None:\n                msg += f\" Timeout: {self.timeout}\"\n            logger.debug(msg)\n            send_kwargs = self.session.merge_environment_settings(\n                prepped.url, proxies={}, stream=None, verify=True, cert=None\n            )\n            resp = self.session.send(prepped, timeout=self.timeout, **send_kwargs)\n        except Exception as err:\n            logger.debug(err)\n            raise APIError(str(err))\n        if resp.status_code != 200:\n            raise APIError.from_response(resp)\n        try:\n            return resp.content.decode(\"utf-8\")\n        except Exception as err:\n            raise APIError(str(err))\n\n    def write_text_to_href(self, href: str, *args: Any, **kwargs: Any) -> None:\n        if _is_url(href):\n            raise APIError(\"Transactions not supported\")\n        else:\n            return super().write_text_to_href(href, *args, **kwargs)\n\n    def stac_object_from_dict(\n        self,\n        d: dict[str, Any],\n        href: pystac.link.HREF | None = None,\n        root: Optional[\"Catalog_Type\"] = None,\n        preserve_dict: bool = True,\n    ) -> \"STACObject_Type\":\n        \"\"\"Deserializes a :class:`~pystac.STACObject` sub-class instance from a\n        dictionary.\n\n        Args:\n            d : The dictionary to deserialize\n            href : Optional href to associate with the STAC object\n            root : Optional root :class:`~pystac.Catalog` to associate with the\n                STAC object.\n            preserve_dict: If ``False``, the dict parameter ``d`` may be modified\n                during this method call. Otherwise the dict is not mutated.\n                Defaults to ``True``, which results results in a deepcopy of the\n                parameter. Set to ``False`` when possible to avoid the performance\n                hit of a deepcopy.\n        \"\"\"\n        if identify_stac_object_type(d) == pystac.STACObjectType.ITEM:\n            collection_cache = None\n            if root is not None:\n                collection_cache = root._resolved_objects.as_collection_cache()\n\n            # Merge common properties in case this is an older STAC object.\n            merge_common_properties(\n                d, json_href=str(href), collection_cache=collection_cache\n            )\n\n        info = identify_stac_object(d)\n        d = migrate_to_latest(d, info)\n\n        if info.object_type == pystac.STACObjectType.CATALOG:\n            result = pystac_client.client.Client.from_dict(\n                d, href=str(href), root=root, migrate=False, preserve_dict=preserve_dict\n            )\n            result._stac_io = self\n            return result\n\n        if info.object_type == pystac.STACObjectType.COLLECTION:\n            collection_client = (\n                pystac_client.collection_client.CollectionClient.from_dict(\n                    d,\n                    href=str(href),\n                    root=root,\n                    migrate=False,\n                    preserve_dict=preserve_dict,\n                )\n            )\n            collection_client._stac_io = self\n            return collection_client\n\n        if info.object_type == pystac.STACObjectType.ITEM:\n            return pystac.Item.from_dict(\n                d, href=str(href), root=root, migrate=False, preserve_dict=preserve_dict\n            )\n\n        raise ValueError(f\"Unknown STAC object type {info.object_type}\")\n\n    def get_pages(\n        self,\n        url: str,\n        method: str | None = None,\n        parameters: dict[str, Any] | None = None,\n    ) -> Iterator[dict[str, Any]]:\n        \"\"\"Iterator that yields dictionaries for each page at a STAC paging\n        endpoint, e.g., /collections, /search\n\n        Return:\n            Dict[str, Any] : JSON content from a single page\n        \"\"\"\n        page = self.read_json(url, method=method, parameters=parameters)\n        if not (page.get(\"features\") or page.get(\"collections\")):\n            return None\n        yield page\n\n        next_link = next(\n            (link for link in page.get(\"links\", []) if link[\"rel\"] == \"next\"), None\n        )\n        while next_link:\n            link = Link.from_dict(next_link)\n            page = self.read_json(link, parameters=parameters)\n            if not (page.get(\"features\") or page.get(\"collections\")):\n                return None\n            yield page\n\n            # get the next link and make the next request\n            next_link = next(\n                (link for link in page.get(\"links\", []) if link[\"rel\"] == \"next\"), None\n            )\n\n\ndef _is_url(href: str) -> bool:\n    url = urlparse(href)\n    return bool(url.scheme) and bool(url.netloc)\n"
  },
  {
    "path": "pystac_client/version.py",
    "content": "__version__ = \"0.9.0\"\n"
  },
  {
    "path": "pystac_client/warnings.py",
    "content": "import warnings\nfrom collections.abc import Iterator\nfrom contextlib import contextmanager\n\n\nclass PystacClientWarning(UserWarning):\n    \"\"\"Base warning class\"\"\"\n\n    ...\n\n\nclass NoConformsTo(PystacClientWarning):\n    \"\"\"Inform user when client does not have \"conformsTo\" set\"\"\"\n\n    def __str__(self) -> str:\n        return \"Server does not advertise any conformance classes.\"\n\n\nclass DoesNotConformTo(PystacClientWarning):\n    \"\"\"Inform user when client does not conform to extension\"\"\"\n\n    def __str__(self) -> str:\n        return \"Server does not conform to {}\".format(\", \".join(self.args))\n\n\nclass MissingLink(PystacClientWarning):\n    \"\"\"Inform user when link is not found\"\"\"\n\n    def __str__(self) -> str:\n        return \"No link with rel='{}' could be found on this {}.\".format(*self.args)\n\n\nclass FallbackToPystac(PystacClientWarning):\n    \"\"\"Inform user when falling back to pystac implementation\"\"\"\n\n    def __str__(self) -> str:\n        return \"Falling back to pystac. This might be slow.\"\n\n\n@contextmanager\ndef strict() -> Iterator[None]:\n    \"\"\"Context manager for raising all pystac-client warnings as errors\n\n    For more fine-grained control or to filter warnings in the whole\n    python session, use the :py:mod:`warnings` module directly.\n\n    Examples:\n\n    >>> from pystac_client import Client\n    >>> from pystac_client.warnings import strict\n    >>> with strict():\n    ...     Client.open(\"https://perfect-api.test\")\n\n    For finer-grained control:\n\n    >>> import warnings\n    >>> from pystac_client import Client\n    >>> from pystac_client.warnings import MissingLink\n    >>> warnings.filterwarnings(\"error\", category=FallbackToPystac)\n    >>> Client.open(\"https://imperfect-api.test\")\n    \"\"\"\n\n    warnings.filterwarnings(\"error\", category=PystacClientWarning)\n    try:\n        yield\n    finally:\n        warnings.filterwarnings(\"default\", category=PystacClientWarning)\n\n\n@contextmanager\ndef ignore() -> Iterator[None]:\n    \"\"\"Context manager for ignoring all pystac-client warnings\n\n    For more fine-grained control or to set filter warnings in the whole\n    python session, use the ``warnings`` module directly.\n\n    Examples:\n\n    >>> from pystac_client import Client\n    >>> from pystac_client.warnings import ignore\n    >>> with ignore():\n    ...     Client.open(\"https://imperfect-api.test\")\n\n    For finer-grained control:\n\n    >>> import warnings\n    >>> from pystac_client import Client\n    >>> from pystac_client.warnings import MissingLink\n    >>> warnings.filterwarnings(\"ignore\", category=MissingLink)\n    >>> Client.open(\"https://imperfect-api.test\")\n    \"\"\"\n    warnings.filterwarnings(\"ignore\", category=PystacClientWarning)\n    try:\n        yield\n    finally:\n        warnings.filterwarnings(\"default\", category=PystacClientWarning)\n"
  },
  {
    "path": "scripts/build-docs",
    "content": "#!/bin/bash\n\nset -e\n\nif [[ -n \"${CI}\" ]]; then\n    set -x\nfi\n\nfunction usage() {\n    echo -n \\\n        \"Usage: $(basename \"$0\")\nBuild documentation\n\"\n}\n\nif [ \"${BASH_SOURCE[0]}\" = \"${0}\" ]; then\n    if [ \"${1:-}\" = \"--help\" ]; then\n        usage\n    else\n        uv run -- sphinx-build -M html docs docs/build\n    fi\nfi\n"
  },
  {
    "path": "scripts/format",
    "content": "#!/bin/bash\n\nset -e\n\nif [[ -n \"${CI}\" ]]; then\n    set -x\nfi\n\nfunction usage() {\n    echo -n \\\n        \"Usage: $(basename \"$0\")\nFormat code with ruff\n\"\n}\n\nif [ \"${BASH_SOURCE[0]}\" = \"${0}\" ]; then\n    if [ \"${1:-}\" = \"--help\" ]; then\n        usage\n    else\n        pre-commit run ruff-format --all-files\n    fi\nfi\n"
  },
  {
    "path": "scripts/lint",
    "content": "#!/bin/bash\n\nset -e\n\nif [[ -n \"${CI}\" ]]; then\n    set -x\nfi\n\nfunction usage() {\n    echo -n \\\n        \"Usage: $(basename \"$0\")\nExecute project linters.\n\"\n}\n\nif [ \"${BASH_SOURCE[0]}\" = \"${0}\" ]; then\n    if [ \"${1:-}\" = \"--help\" ]; then\n        usage\n    else\n        pre-commit run codespell --all-files\n        pre-commit run doc8 --all-files\n        pre-commit run ruff --all-files\n        pre-commit run mypy --all-files\n    fi\nfi\n"
  },
  {
    "path": "scripts/test",
    "content": "#!/bin/bash\n\nset -e\n\nif [[ -n \"${CI}\" ]]; then\n    set -x\nfi\n\nfunction usage() {\n    echo -n \\\n        \"Usage: $(basename \"$0\")\nExecute project linters and test suites.\n\"\n}\n\nif [ \"${BASH_SOURCE[0]}\" = \"${0}\" ]; then\n    if [ \"${1:-}\" = \"--help\" ]; then\n        usage\n    else\n        ./scripts/lint\n        ./scripts/format\n        # Test suite with coverage enabled\n        pytest --cov pystac_client --cov-report term-missing\n        coverage xml\n    fi\nfi\n"
  },
  {
    "path": "tests/__init__.py",
    "content": ""
  },
  {
    "path": "tests/cassettes/test_cli/TestCLICollections.test_collection_search[inprocess].yaml",
    "content": "interactions:\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://earth-search.aws.element84.com/v1\n  response:\n    body:\n      string: '{\"stac_version\":\"1.0.0\",\"type\":\"Catalog\",\"id\":\"earth-search-aws\",\"title\":\"Earth\n        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\"]}'\n    headers:\n      Connection:\n      - keep-alive\n      Content-Encoding:\n      - gzip\n      Content-Length:\n      - '612'\n      Content-Type:\n      - application/json; charset=utf-8\n      Date:\n      - Thu, 31 Jul 2025 15:07:08 GMT\n      Via:\n      - 1.1 e466a87164c3f9591e3c8ac45a4b2074.cloudfront.net (CloudFront)\n      X-Amz-Cf-Id:\n      - BfohYGnnu9Fx0ZZqR51CvEqCOxuIQKkjOFMZvMYaOi0KK2RABmvlAQ==\n      X-Amz-Cf-Pop:\n      - DEN52-C1\n      X-Amzn-Trace-Id:\n      - Root=1-688b869b-1fa6fba64ccf038d38007705;Parent=673235f71f8f12d4;Sampled=0;Lineage=1:9e2884e9:0\n      X-Cache:\n      - Miss from cloudfront\n      access-control-allow-origin:\n      - '*'\n      etag:\n      - W/\"d29-QPs+H0wJLUX32EZKNgzG3k6wfQ8\"\n      x-amz-apigw-id:\n      - OlH4bHzVPHcERag=\n      x-amzn-Remapped-content-length:\n      - '3369'\n      x-amzn-RequestId:\n      - ac628085-2bc3-4d7a-8afc-98327982c116\n      x-powered-by:\n      - Express\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://earth-search.aws.element84.com/v1/collections?q=sentinel\n  response:\n    body:\n      string: \"{\\\"collections\\\":[{\\\"type\\\":\\\"Collection\\\",\\\"id\\\":\\\"sentinel-2-pre-c1-l2a\\\",\\\"title\\\":\\\"Sentinel-2\n        Pre-Collection 1 Level-2A \\\",\\\"description\\\":\\\"Sentinel-2 Pre-Collection 1\n        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\n        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;\n        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;\n        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;\n        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;\n        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;\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"SWIR 2.2\\u03BCm\n        - 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;\n        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;\n        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;\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"SWIR 1.6\\u03BCm\n        - 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;\n        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;\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Scene classification\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Aerosol optical\n        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;\n        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;\n        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;\n        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;\n        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;\n        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\n        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\n        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\n        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\n        aerosol (band 1)\\\",\\\"center_wavelength\\\":0.443,\\\"full_width_half_max\\\":0.027},{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (band 2)\\\",\\\"center_wavelength\\\":0.49,\\\"full_width_half_max\\\":0.098},{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (band 3)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.045},{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (band 4)\\\",\\\"center_wavelength\\\":0.665,\\\"full_width_half_max\\\":0.038},{\\\"name\\\":\\\"rededge1\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 1 (band 5)\\\",\\\"center_wavelength\\\":0.704,\\\"full_width_half_max\\\":0.019},{\\\"name\\\":\\\"rededge2\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 2 (band 6)\\\",\\\"center_wavelength\\\":0.74,\\\"full_width_half_max\\\":0.018},{\\\"name\\\":\\\"rededge3\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 3 (band 7)\\\",\\\"center_wavelength\\\":0.783,\\\"full_width_half_max\\\":0.028},{\\\"name\\\":\\\"nir\\\",\\\"common_name\\\":\\\"nir\\\",\\\"description\\\":\\\"NIR\n        1 (band 8)\\\",\\\"center_wavelength\\\":0.842,\\\"full_width_half_max\\\":0.145},{\\\"name\\\":\\\"nir08\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"NIR\n        2 (band 8A)\\\",\\\"center_wavelength\\\":0.865,\\\"full_width_half_max\\\":0.033},{\\\"name\\\":\\\"nir09\\\",\\\"common_name\\\":\\\"nir09\\\",\\\"description\\\":\\\"NIR\n        3 (band 9)\\\",\\\"center_wavelength\\\":0.945,\\\"full_width_half_max\\\":0.026},{\\\"name\\\":\\\"cirrus\\\",\\\"common_name\\\":\\\"cirrus\\\",\\\"description\\\":\\\"Cirrus\n        (band 10)\\\",\\\"center_wavelength\\\":1.3735,\\\"full_width_half_max\\\":0.075},{\\\"name\\\":\\\"swir16\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"SWIR\n        1 (band 11)\\\",\\\"center_wavelength\\\":1.61,\\\"full_width_half_max\\\":0.143},{\\\"name\\\":\\\"swir22\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"SWIR\n        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\n        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\n        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\n        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\n        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\n        Copernicus DEM is a Digital Surface Model (DSM) which represents the surface\n        of the Earth including buildings, infrastructure and vegetation. GLO-30 Public\n        provides limited worldwide coverage at 30 meters because a small subset of\n        tiles covering specific countries are not yet released to the public by the\n        Copernicus Programme.\\\",\\\"item_assets\\\":{\\\"data\\\":{\\\"type\\\":\\\"image/tiff;\n        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\n        [National Agriculture Imagery Program](https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/)\n        (NAIP) provides U.S.-wide, high-resolution aerial imagery, with four spectral\n        bands (R, G, B, IR).  NAIP is administered by the [Aerial Field Photography\n        Office](https://www.fsa.usda.gov/programs-and-services/aerial-photography/)\n        (AFPO) within the [US Department of Agriculture](https://www.usda.gov/) (USDA).\n        \\ Data are captured at least once every three years for each state.  This\n        dataset represents NAIP data from 2010-present, in [cloud-optimized GeoTIFF](https://www.cogeo.org/)\n        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\n        Domain\\\",\\\"type\\\":\\\"text/html\\\"},{\\\"rel\\\":\\\"cite-as\\\",\\\"href\\\":\\\"https://doi.org/10.5066/F7QN651G\\\",\\\"title\\\":\\\"NAIP\n        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:\n        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\n        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\n        84\\\",\\\"roles\\\":[\\\"processor\\\"],\\\"url\\\":\\\"https://element84.com\\\"}],\\\"summaries\\\":{\\\"gsd\\\":[0.6,1],\\\"eo:bands\\\":[{\\\"name\\\":\\\"Red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"visible\n        red\\\"},{\\\"name\\\":\\\"Green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"visible\n        green\\\"},{\\\"name\\\":\\\"Blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"visible\n        blue\\\"},{\\\"name\\\":\\\"NIR\\\",\\\"common_name\\\":\\\"nir\\\",\\\"description\\\":\\\"near-infrared\\\"}]},\\\"item_assets\\\":{\\\"image\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"RGBIR\n        COG tile\\\",\\\"eo:bands\\\":[{\\\"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\n        Metdata\\\"}},\\\"sci:doi\\\":\\\"10.5066/F7QN651G\\\",\\\"sci:publications\\\":[{\\\"doi\\\":\\\"10.14358/PERS.83.10.737\\\",\\\"citation\\\":\\\"Maxwell,\n        A. E., Warner, T. A., Vanderbilt, B. C., &amp; Ramezan, C. A. (2017). Land\n        cover classification and feature extraction from National Agriculture Imagery\n        Program (NAIP) orthoimagery: A Review. Photogrammetric Engineering &amp; Remote\n        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\n        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\n        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\n        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\n        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\n        Copernicus DEM is a Digital Surface Model (DSM) which represents the surface\n        of the Earth including buildings, infrastructure and vegetation. GLO-90 provides\n        worldwide coverage at 90 meters.\\\",\\\"item_assets\\\":{\\\"data\\\":{\\\"type\\\":\\\"image/tiff;\n        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\n        corrected global Landsat Collection 2 Level-2 data from the Thematic Mapper\n        (TM) onboard Landsat 4 and 5, the Enhanced Thematic Mapper Plus (ETM+) onboard\n        Landsat 7, and the Operational Land Imager (OLI) and Thermal Infrared Sensor\n        (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\n        4-5 TM Collection 2 Level-2\\\"},{\\\"rel\\\":\\\"cite-as\\\",\\\"href\\\":\\\"https://doi.org/10.5066/P9C7I13B\\\",\\\"title\\\":\\\"Landsat\n        7 ETM+ Collection 2 Level-2\\\"},{\\\"rel\\\":\\\"cite-as\\\",\\\"href\\\":\\\"https://doi.org/10.5066/P9OGBGM6\\\",\\\"title\\\":\\\"Landsat\n        8-9 OLI/TIRS Collection 2 Level-2\\\"},{\\\"rel\\\":\\\"license\\\",\\\"href\\\":\\\"https://www.usgs.gov/core-science-systems/hdds/data-policy\\\",\\\"title\\\":\\\"Public\n        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\n        image\\\",\\\"roles\\\":[\\\"thumbnail\\\"]},\\\"reduced_resolution_browse\\\":{\\\"type\\\":\\\"image/jpeg\\\",\\\"title\\\":\\\"Reduced\n        resolution browse image\\\",\\\"roles\\\":[\\\"overview\\\"]},\\\"mtl.json\\\":{\\\"type\\\":\\\"application/json\\\",\\\"title\\\":\\\"Product\n        Metadata File (json)\\\",\\\"description\\\":\\\"Collection 2 Level-2 Product Metadata\n        File (json)\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"mtl.txt\\\":{\\\"type\\\":\\\"text/plain\\\",\\\"title\\\":\\\"Product\n        Metadata File (txt)\\\",\\\"description\\\":\\\"Collection 2 Level-2 Product Metadata\n        File (txt)\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"mtl.xml\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"title\\\":\\\"Product\n        Metadata File (xml)\\\",\\\"description\\\":\\\"Collection 2 Level-2 Product Metadata\n        File (xml)\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"ang\\\":{\\\"type\\\":\\\"text/plain\\\",\\\"title\\\":\\\"Angle\n        Coefficients File\\\",\\\"description\\\":\\\"Collection 2 Level-1 Angle Coefficients\n        File\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"qa_pixel\\\":{\\\"type\\\":\\\"image/tiff; application=geotiff;\n        profile=cloud-optimized\\\",\\\"title\\\":\\\"Pixel Quality Assessment Band\\\",\\\"description\\\":\\\"Collection\n        2 Level-1 Pixel Quality Assessment Band\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":1,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":30,\\\"unit\\\":\\\"bit\n        index\\\"}],\\\"roles\\\":[\\\"cloud\\\",\\\"cloud-shadow\\\",\\\"snow-ice\\\",\\\"water-mask\\\"]},\\\"qa_radsat\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Radiometric Saturation\n        Quality Assessment Band\\\",\\\"description\\\":\\\"Collection 2 Level-1 Radiometric\n        Saturation Quality Assessment Band\\\",\\\"raster:bands\\\":[{\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":30,\\\"unit\\\":\\\"bit\n        index\\\"}],\\\"roles\\\":[\\\"saturation\\\"]},\\\"coastal\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Coastal/Aerosol\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Coastal/Aerosol Band Surface\n        Reflectance\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":30,\\\"scale\\\":0.0000275,\\\"offset\\\":-0.2}],\\\"roles\\\":[\\\"reflectance\\\"]},\\\"blue\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Blue Band\\\",\\\"description\\\":\\\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Green Band\\\",\\\"description\\\":\\\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Red Band\\\",\\\"description\\\":\\\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Near Infrared Band\n        0.8\\\",\\\"description\\\":\\\"Collection 2 Level-2 Near Infrared Band 0.8 Surface\n        Reflectance\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":30,\\\"scale\\\":0.0000275,\\\"offset\\\":-0.2}],\\\"roles\\\":[\\\"reflectance\\\"]},\\\"swir16\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Short-wave Infrared\n        Band 1.6\\\",\\\"description\\\":\\\"Collection 2 Level-2 Short-wave Infrared Band\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Short-wave Infrared\n        Band 2.2\\\",\\\"description\\\":\\\"Collection 2 Level-2 Short-wave Infrared Band\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Atmospheric Opacity\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Atmospheric Opacity Band Surface\n        Reflectance Product\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":-9999,\\\"data_type\\\":\\\"int16\\\",\\\"spatial_resolution\\\":30,\\\"scale\\\":0.001}],\\\"roles\\\":[\\\"data\\\"]},\\\"cloud_qa\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Cloud Quality Assessment\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Cloud Quality Assessment Band\n        Surface Reflectance Product\\\",\\\"raster:bands\\\":[{\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":30,\\\"unit\\\":\\\"bit\n        index\\\"}],\\\"roles\\\":[\\\"cloud\\\",\\\"cloud-shadow\\\",\\\"snow-ice\\\",\\\"water-mask\\\"]},\\\"qa_aerosol\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Aerosol Quality\n        Assessment Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Aerosol Quality Assessment\n        Band Surface Reflectance Product\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":1,\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":30,\\\"unit\\\":\\\"bit\n        index\\\"}],\\\"roles\\\":[\\\"data-mask\\\",\\\"water-mask\\\"]},\\\"lwir11\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Surface Temperature\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Thermal Infrared Band Surface\n        Temperature\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":30,\\\"unit\\\":\\\"kelvin\\\",\\\"scale\\\":0.00341802,\\\"offset\\\":149}],\\\"roles\\\":[\\\"temperature\\\"]},\\\"lwir\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Surface Temperature\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Thermal Infrared Band Surface\n        Temperature\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":30,\\\"unit\\\":\\\"kelvin\\\",\\\"scale\\\":0.00341802,\\\"offset\\\":149}],\\\"roles\\\":[\\\"temperature\\\"]},\\\"atran\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Atmospheric Transmittance\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Atmospheric Transmittance Band\n        Surface Temperature Product\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":-9999,\\\"data_type\\\":\\\"int16\\\",\\\"spatial_resolution\\\":30,\\\"scale\\\":0.0001}],\\\"roles\\\":[\\\"data\\\"]},\\\"cdist\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Cloud Distance\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Cloud Distance Band Surface\n        Temperature Product\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":-9999,\\\"data_type\\\":\\\"int16\\\",\\\"spatial_resolution\\\":30,\\\"unit\\\":\\\"kilometer\\\",\\\"scale\\\":0.01}],\\\"roles\\\":[\\\"data\\\"]},\\\"drad\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Downwelled Radiance\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Downwelled Radiance Band Surface\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Upwelled Radiance\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Upwelled Radiance Band Surface\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Thermal Radiance\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Thermal Radiance Band Surface\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Emissivity Band\\\",\\\"description\\\":\\\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Emissivity Standard\n        Deviation Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Emissivity Standard\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Surface Temperature\n        Quality Assessment Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Quality Assessment\n        Band Surface Temperature Product\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":-9999,\\\"data_type\\\":\\\"int16\\\",\\\"spatial_resolution\\\":30,\\\"unit\\\":\\\"kelvin\\\",\\\"scale\\\":0.01}],\\\"roles\\\":[\\\"data\\\"]}},\\\"title\\\":\\\"Landsat\n        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\n        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\n        blue (Thematic Mapper)\\\",\\\"center_wavelength\\\":0.49,\\\"full_width_half_max\\\":0.07},{\\\"name\\\":\\\"TM_B2\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Visible\n        green (Thematic Mapper)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.08},{\\\"name\\\":\\\"TM_B3\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Visible\n        red (Thematic Mapper)\\\",\\\"center_wavelength\\\":0.66,\\\"full_width_half_max\\\":0.06},{\\\"name\\\":\\\"TM_B4\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"Near\n        infrared (Thematic Mapper)\\\",\\\"center_wavelength\\\":0.83,\\\"full_width_half_max\\\":0.14},{\\\"name\\\":\\\"TM_B5\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"Short-wave\n        infrared (Thematic Mapper)\\\",\\\"center_wavelength\\\":1.65,\\\"full_width_half_max\\\":0.2},{\\\"name\\\":\\\"TM_B6\\\",\\\"common_name\\\":\\\"lwir\\\",\\\"description\\\":\\\"Long-wave\n        infrared (Thematic Mapper)\\\",\\\"center_wavelength\\\":11.45,\\\"full_width_half_max\\\":2.1},{\\\"name\\\":\\\"TM_B7\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"Short-wave\n        infrared (Thematic Mapper)\\\",\\\"center_wavelength\\\":2.22,\\\"full_width_half_max\\\":0.27},{\\\"name\\\":\\\"ETM_B1\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Visible\n        blue (Enhanced Thematic Mapper Plus)\\\",\\\"center_wavelength\\\":0.48,\\\"full_width_half_max\\\":0.07},{\\\"name\\\":\\\"ETM_B2\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Visible\n        green (Enhanced Thematic Mapper Plus)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.08},{\\\"name\\\":\\\"ETM_B3\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Visible\n        red (Enhanced Thematic Mapper Plus)\\\",\\\"center_wavelength\\\":0.66,\\\"full_width_half_max\\\":0.06},{\\\"name\\\":\\\"ETM_B4\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"Near\n        infrared (Enhanced Thematic Mapper Plus)\\\",\\\"center_wavelength\\\":0.84,\\\"full_width_half_max\\\":0.13},{\\\"name\\\":\\\"ETM_B5\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"Short-wave\n        infrared (Enhanced Thematic Mapper Plus)\\\",\\\"center_wavelength\\\":1.65,\\\"full_width_half_max\\\":0.2},{\\\"name\\\":\\\"ETM_B6\\\",\\\"common_name\\\":\\\"lwir\\\",\\\"description\\\":\\\"Long-wave\n        infrared (Enhanced Thematic Mapper Plus)\\\",\\\"center_wavelength\\\":11.34,\\\"full_width_half_max\\\":2.05},{\\\"name\\\":\\\"ETM_B7\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"Short-wave\n        infrared (Enhanced Thematic Mapper Plus)\\\",\\\"center_wavelength\\\":2.2,\\\"full_width_half_max\\\":0.28},{\\\"name\\\":\\\"OLI_B1\\\",\\\"common_name\\\":\\\"coastal\\\",\\\"description\\\":\\\"Coastal/Aerosol\n        (Operational Land Imager)\\\",\\\"center_wavelength\\\":0.44,\\\"full_width_half_max\\\":0.02},{\\\"name\\\":\\\"OLI_B2\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Visible\n        blue (Operational Land Imager)\\\",\\\"center_wavelength\\\":0.48,\\\"full_width_half_max\\\":0.06},{\\\"name\\\":\\\"OLI_B3\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Visible\n        green (Operational Land Imager)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.06},{\\\"name\\\":\\\"OLI_B4\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Visible\n        red (Operational Land Imager)\\\",\\\"center_wavelength\\\":0.65,\\\"full_width_half_max\\\":0.04},{\\\"name\\\":\\\"OLI_B5\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"Near\n        infrared (Operational Land Imager)\\\",\\\"center_wavelength\\\":0.87,\\\"full_width_half_max\\\":0.03},{\\\"name\\\":\\\"OLI_B6\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"Short-wave\n        infrared (Operational Land Imager)\\\",\\\"center_wavelength\\\":1.61,\\\"full_width_half_max\\\":0.09},{\\\"name\\\":\\\"OLI_B7\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"Short-wave\n        infrared (Operational Land Imager)\\\",\\\"center_wavelength\\\":2.2,\\\"full_width_half_max\\\":0.19},{\\\"name\\\":\\\"TIRS_B10\\\",\\\"common_name\\\":\\\"lwir11\\\",\\\"description\\\":\\\"Long-wave\n        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\n        Level-2A\\\",\\\"description\\\":\\\"Global Sentinel-2 data from the Multispectral\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Aerosol optical\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Blue (band 2) -\n        10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Coastal aerosol\n        (band 1) - 60m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"coastal\\\",\\\"common_name\\\":\\\"coastal\\\",\\\"description\\\":\\\"Coastal\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Green (band 3)\n        - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"NIR 1 (band 8)\n        - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"nir\\\",\\\"common_name\\\":\\\"nir\\\",\\\"description\\\":\\\"NIR\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"NIR 2 (band 8A)\n        - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"nir08\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"NIR\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"NIR 3 (band 9)\n        - 60m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"nir09\\\",\\\"common_name\\\":\\\"nir09\\\",\\\"description\\\":\\\"NIR\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Red (band 4) -\n        10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Red edge 1 (band\n        5) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"rededge1\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Red edge 2 (band\n        6) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"rededge2\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Red edge 3 (band\n        7) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"rededge3\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Scene classification\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"SWIR 1 (band 11)\n        - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"swir16\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"SWIR\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"SWIR 2 (band 12)\n        - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"swir22\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"SWIR\n        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\n        image\\\",\\\"roles\\\":[\\\"thumbnail\\\"]},\\\"tileinfo_metadata\\\":{\\\"type\\\":\\\"application/json\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"visual\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"True color image\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (band 4)\\\",\\\"center_wavelength\\\":0.665,\\\"full_width_half_max\\\":0.038},{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (band 3)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.045},{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (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;\n        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\n        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\n        (band 2) - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (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\n        aerosol (band 1) - 60m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"coastal\\\",\\\"common_name\\\":\\\"coastal\\\",\\\"description\\\":\\\"Coastal\n        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\n        (band 3) - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (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\n        1 (band 8) - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"nir\\\",\\\"common_name\\\":\\\"nir\\\",\\\"description\\\":\\\"NIR\n        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\n        2 (band 8A) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"nir08\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"NIR\n        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\n        3 (band 9) - 60m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"nir09\\\",\\\"common_name\\\":\\\"nir09\\\",\\\"description\\\":\\\"NIR\n        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\n        (band 4) - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (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\n        edge 1 (band 5) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"rededge1\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        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\n        edge 2 (band 6) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"rededge2\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        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\n        edge 3 (band 7) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"rededge3\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        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\n        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\n        1 (band 11) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"swir16\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"SWIR\n        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\n        2 (band 12) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"swir22\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"SWIR\n        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\n        color image\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (band 4)\\\",\\\"center_wavelength\\\":0.665,\\\"full_width_half_max\\\":0.038},{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (band 3)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.045},{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (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\n        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\n        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\n        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\n        aerosol (band 1)\\\",\\\"center_wavelength\\\":0.443,\\\"full_width_half_max\\\":0.027},{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (band 2)\\\",\\\"center_wavelength\\\":0.49,\\\"full_width_half_max\\\":0.098},{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (band 3)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.045},{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (band 4)\\\",\\\"center_wavelength\\\":0.665,\\\"full_width_half_max\\\":0.038},{\\\"name\\\":\\\"rededge1\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 1 (band 5)\\\",\\\"center_wavelength\\\":0.704,\\\"full_width_half_max\\\":0.019},{\\\"name\\\":\\\"rededge2\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 2 (band 6)\\\",\\\"center_wavelength\\\":0.74,\\\"full_width_half_max\\\":0.018},{\\\"name\\\":\\\"rededge3\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 3 (band 7)\\\",\\\"center_wavelength\\\":0.783,\\\"full_width_half_max\\\":0.028},{\\\"name\\\":\\\"nir\\\",\\\"common_name\\\":\\\"nir\\\",\\\"description\\\":\\\"NIR\n        1 (band 8)\\\",\\\"center_wavelength\\\":0.842,\\\"full_width_half_max\\\":0.145},{\\\"name\\\":\\\"nir08\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"NIR\n        2 (band 8A)\\\",\\\"center_wavelength\\\":0.865,\\\"full_width_half_max\\\":0.033},{\\\"name\\\":\\\"nir09\\\",\\\"common_name\\\":\\\"nir09\\\",\\\"description\\\":\\\"NIR\n        3 (band 9)\\\",\\\"center_wavelength\\\":0.945,\\\"full_width_half_max\\\":0.026},{\\\"name\\\":\\\"cirrus\\\",\\\"common_name\\\":\\\"cirrus\\\",\\\"description\\\":\\\"Cirrus\n        (band 10)\\\",\\\"center_wavelength\\\":1.3735,\\\"full_width_half_max\\\":0.075},{\\\"name\\\":\\\"swir16\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"SWIR\n        1 (band 11)\\\",\\\"center_wavelength\\\":1.61,\\\"full_width_half_max\\\":0.143},{\\\"name\\\":\\\"swir22\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"SWIR\n        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\n        Level-1C\\\",\\\"description\\\":\\\"Global Sentinel-2 data from the Multispectral\n        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\n        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\n        (band 2) - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (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\n        (band 10) - 60m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"cirrus\\\",\\\"common_name\\\":\\\"cirrus\\\",\\\"description\\\":\\\"Cirrus\n        (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\n        aerosol (band 1) - 60m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"coastal\\\",\\\"common_name\\\":\\\"coastal\\\",\\\"description\\\":\\\"Coastal\n        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\n        (band 3) - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (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\n        1 (band 8) - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"nir\\\",\\\"common_name\\\":\\\"nir\\\",\\\"description\\\":\\\"NIR\n        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\n        2 (band 8A) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"nir08\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"NIR\n        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\n        3 (band 9) - 60m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"nir09\\\",\\\"common_name\\\":\\\"nir09\\\",\\\"description\\\":\\\"NIR\n        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\n        (band 4) - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (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\n        edge 1 (band 5) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"rededge1\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        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\n        edge 2 (band 6) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"rededge2\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        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\n        edge 3 (band 7) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"rededge3\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        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\n        1 (band 11) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"swir16\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"SWIR\n        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\n        2 (band 12) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"swir22\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"SWIR\n        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\n        image\\\",\\\"roles\\\":[\\\"thumbnail\\\"]},\\\"tileinfo_metadata\\\":{\\\"type\\\":\\\"application/json\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"visual\\\":{\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"True\n        color image\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (band 4)\\\",\\\"center_wavelength\\\":0.665,\\\"full_width_half_max\\\":0.038},{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (band 3)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.045},{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (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\n        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\n        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\n        aerosol (band 1)\\\",\\\"center_wavelength\\\":0.443,\\\"full_width_half_max\\\":0.027},{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (band 2)\\\",\\\"center_wavelength\\\":0.49,\\\"full_width_half_max\\\":0.098},{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (band 3)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.045},{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (band 4)\\\",\\\"center_wavelength\\\":0.665,\\\"full_width_half_max\\\":0.038},{\\\"name\\\":\\\"rededge1\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 1 (band 5)\\\",\\\"center_wavelength\\\":0.704,\\\"full_width_half_max\\\":0.019},{\\\"name\\\":\\\"rededge2\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 2 (band 6)\\\",\\\"center_wavelength\\\":0.74,\\\"full_width_half_max\\\":0.018},{\\\"name\\\":\\\"rededge3\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 3 (band 7)\\\",\\\"center_wavelength\\\":0.783,\\\"full_width_half_max\\\":0.028},{\\\"name\\\":\\\"nir\\\",\\\"common_name\\\":\\\"nir\\\",\\\"description\\\":\\\"NIR\n        1 (band 8)\\\",\\\"center_wavelength\\\":0.842,\\\"full_width_half_max\\\":0.145},{\\\"name\\\":\\\"nir08\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"NIR\n        2 (band 8A)\\\",\\\"center_wavelength\\\":0.865,\\\"full_width_half_max\\\":0.033},{\\\"name\\\":\\\"nir09\\\",\\\"common_name\\\":\\\"nir09\\\",\\\"description\\\":\\\"NIR\n        3 (band 9)\\\",\\\"center_wavelength\\\":0.945,\\\"full_width_half_max\\\":0.026},{\\\"name\\\":\\\"cirrus\\\",\\\"common_name\\\":\\\"cirrus\\\",\\\"description\\\":\\\"Cirrus\n        (band 10)\\\",\\\"center_wavelength\\\":1.3735,\\\"full_width_half_max\\\":0.075},{\\\"name\\\":\\\"swir16\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"SWIR\n        1 (band 11)\\\",\\\"center_wavelength\\\":1.61,\\\"full_width_half_max\\\":0.143},{\\\"name\\\":\\\"swir22\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"SWIR\n        2 (band 12)\\\",\\\"center_wavelength\\\":2.19,\\\"full_width_half_max\\\":0.242}]}},{\\\"type\\\":\\\"Collection\\\",\\\"id\\\":\\\"sentinel-2-c1-l2a\\\",\\\"title\\\":\\\"Sentinel-2\n        Collection 1 Level-2A\\\",\\\"description\\\":\\\"Sentinel-2 Collection 1 Level-2A,\n        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\n        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;\n        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;\n        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;\n        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;\n        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;\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"SWIR 2.2\\u03BCm\n        - 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;\n        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;\n        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;\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"SWIR 1.6\\u03BCm\n        - 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;\n        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;\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Scene classification\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Aerosol optical\n        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;\n        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;\n        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;\n        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;\n        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;\n        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\n        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\n        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\n        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\n        aerosol (band 1)\\\",\\\"center_wavelength\\\":0.443,\\\"full_width_half_max\\\":0.027},{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (band 2)\\\",\\\"center_wavelength\\\":0.49,\\\"full_width_half_max\\\":0.098},{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (band 3)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.045},{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (band 4)\\\",\\\"center_wavelength\\\":0.665,\\\"full_width_half_max\\\":0.038},{\\\"name\\\":\\\"rededge1\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 1 (band 5)\\\",\\\"center_wavelength\\\":0.704,\\\"full_width_half_max\\\":0.019},{\\\"name\\\":\\\"rededge2\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 2 (band 6)\\\",\\\"center_wavelength\\\":0.74,\\\"full_width_half_max\\\":0.018},{\\\"name\\\":\\\"rededge3\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 3 (band 7)\\\",\\\"center_wavelength\\\":0.783,\\\"full_width_half_max\\\":0.028},{\\\"name\\\":\\\"nir\\\",\\\"common_name\\\":\\\"nir\\\",\\\"description\\\":\\\"NIR\n        1 (band 8)\\\",\\\"center_wavelength\\\":0.842,\\\"full_width_half_max\\\":0.145},{\\\"name\\\":\\\"nir08\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"NIR\n        2 (band 8A)\\\",\\\"center_wavelength\\\":0.865,\\\"full_width_half_max\\\":0.033},{\\\"name\\\":\\\"nir09\\\",\\\"common_name\\\":\\\"nir09\\\",\\\"description\\\":\\\"NIR\n        3 (band 9)\\\",\\\"center_wavelength\\\":0.945,\\\"full_width_half_max\\\":0.026},{\\\"name\\\":\\\"cirrus\\\",\\\"common_name\\\":\\\"cirrus\\\",\\\"description\\\":\\\"Cirrus\n        (band 10)\\\",\\\"center_wavelength\\\":1.3735,\\\"full_width_half_max\\\":0.075},{\\\"name\\\":\\\"swir16\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"SWIR\n        1 (band 11)\\\",\\\"center_wavelength\\\":1.61,\\\"full_width_half_max\\\":0.143},{\\\"name\\\":\\\"swir22\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"SWIR\n        2 (band 12)\\\",\\\"center_wavelength\\\":2.19,\\\"full_width_half_max\\\":0.242}]}},{\\\"id\\\":\\\"sentinel-1-grd\\\",\\\"type\\\":\\\"Collection\\\",\\\"title\\\":\\\"Sentinel-1\n        Level-1C Ground Range Detected (GRD)\\\",\\\"description\\\":\\\"Sentinel-1 is a pair\n        of Synthetic Aperture Radar (SAR) imaging satellites launched in 2014 and\n        2016 by the European Space Agency (ESA). Their 6 day revisit cycle and ability\n        to observe through clouds makes this dataset perfect for sea and land monitoring,\n        emergency response due to environmental disasters, and economic applications.\n        This dataset represents the global Sentinel-1 GRD archive, from beginning\n        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\n        Ground Range Detected (GRD) Technical Guide\\\"},{\\\"rel\\\":\\\"license\\\",\\\"href\\\":\\\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\\\",\\\"title\\\":\\\"Copernicus\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"HH\n        Data\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\"}]},\\\"hv\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"HV\n        Data\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\"}]},\\\"vh\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"VH\n        Data\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\"}]},\\\"vv\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"VV\n        Data\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\"}]},\\\"thumbnail\\\":{\\\"type\\\":\\\"image/png\\\",\\\"roles\\\":[\\\"thumbnail\\\"],\\\"title\\\":\\\"Thumbnail\n        Image\\\"},\\\"safe-manifest\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"SAFE\n        Manifest File\\\"},\\\"schema-noise-hh\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"HH\n        Noise Schema\\\"},\\\"schema-noise-hv\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"HV\n        Noise Schema\\\"},\\\"schema-noise-vh\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"VH\n        Noise Schema\\\"},\\\"schema-noise-vv\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"VV\n        Noise Schema\\\"},\\\"schema-product-hh\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"HH\n        Product Schema\\\"},\\\"schema-product-hv\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"HV\n        Product Schema\\\"},\\\"schema-product-vh\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"VH\n        Product Schema\\\"},\\\"schema-product-vv\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"VV\n        Product Schema\\\"},\\\"schema-calibration-hh\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"HH\n        Calibration Schema\\\"},\\\"schema-calibration-hv\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"HV\n        Calibration Schema\\\"},\\\"schema-calibration-vh\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"VH\n        Calibration Schema\\\"},\\\"schema-calibration-vv\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"VV\n        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}}\"\n    headers:\n      Connection:\n      - keep-alive\n      Content-Encoding:\n      - gzip\n      Content-Length:\n      - '8117'\n      Content-Type:\n      - application/json; charset=utf-8\n      Date:\n      - Thu, 31 Jul 2025 15:07:08 GMT\n      Via:\n      - 1.1 402032e48d13c4b7217c7a59235bf8cc.cloudfront.net (CloudFront)\n      X-Amz-Cf-Id:\n      - k57380mU0jPe4R55lXrjb65ZHnMIuE4mcvbLYVa1GbrTSvcAO5dRmg==\n      X-Amz-Cf-Pop:\n      - DEN52-C1\n      X-Amzn-Trace-Id:\n      - Root=1-688b869c-43abb86847a443d100b1a581;Parent=0037bf1ce04bc95f;Sampled=0;Lineage=1:9e2884e9:0\n      X-Cache:\n      - Miss from cloudfront\n      access-control-allow-origin:\n      - '*'\n      etag:\n      - W/\"141dd-9fMv6YJnvxPn9adSQK466CnIbE0\"\n      x-amz-apigw-id:\n      - OlH4dHDGPHcEQ5Q=\n      x-amzn-Remapped-content-length:\n      - '82397'\n      x-amzn-RequestId:\n      - 8781cb5c-f05d-4573-8593-8df9e4b9dc60\n      x-powered-by:\n      - Express\n    status:\n      code: 200\n      message: OK\nversion: 1\n"
  },
  {
    "path": "tests/cassettes/test_cli/TestCLICollections.test_collections[inprocess].yaml",
    "content": "interactions:\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://earth-search.aws.element84.com/v1\n  response:\n    body:\n      string: '{\"stac_version\":\"1.0.0\",\"type\":\"Catalog\",\"id\":\"earth-search-aws\",\"title\":\"Earth\n        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\"]}'\n    headers:\n      Connection:\n      - keep-alive\n      Content-Encoding:\n      - gzip\n      Content-Length:\n      - '612'\n      Content-Type:\n      - application/json; charset=utf-8\n      Date:\n      - Thu, 31 Jul 2025 15:07:07 GMT\n      Via:\n      - 1.1 20ebec22e4be2753f048f31dfe94e426.cloudfront.net (CloudFront)\n      X-Amz-Cf-Id:\n      - CPxWoOcHRJCLkXvwrtPiL4uBP3ycHXrqZq_B5BYqIwxspgvvygP34Q==\n      X-Amz-Cf-Pop:\n      - DEN52-C1\n      X-Amzn-Trace-Id:\n      - Root=1-688b869b-284c5562532ca0890ce2f7cf;Parent=17eb24f2b6995e07;Sampled=0;Lineage=1:9e2884e9:0\n      X-Cache:\n      - Miss from cloudfront\n      access-control-allow-origin:\n      - '*'\n      etag:\n      - W/\"d29-QPs+H0wJLUX32EZKNgzG3k6wfQ8\"\n      x-amz-apigw-id:\n      - OlH4YGg_PHcEaWw=\n      x-amzn-Remapped-content-length:\n      - '3369'\n      x-amzn-RequestId:\n      - ce346f08-cac4-42f4-94f4-34d1d2d3d8ad\n      x-powered-by:\n      - Express\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://earth-search.aws.element84.com/v1/collections\n  response:\n    body:\n      string: \"{\\\"collections\\\":[{\\\"type\\\":\\\"Collection\\\",\\\"id\\\":\\\"sentinel-2-pre-c1-l2a\\\",\\\"title\\\":\\\"Sentinel-2\n        Pre-Collection 1 Level-2A \\\",\\\"description\\\":\\\"Sentinel-2 Pre-Collection 1\n        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\n        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;\n        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;\n        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;\n        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;\n        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;\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"SWIR 2.2\\u03BCm\n        - 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;\n        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;\n        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;\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"SWIR 1.6\\u03BCm\n        - 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;\n        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;\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Scene classification\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Aerosol optical\n        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;\n        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;\n        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;\n        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;\n        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;\n        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\n        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\n        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\n        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\n        aerosol (band 1)\\\",\\\"center_wavelength\\\":0.443,\\\"full_width_half_max\\\":0.027},{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (band 2)\\\",\\\"center_wavelength\\\":0.49,\\\"full_width_half_max\\\":0.098},{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (band 3)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.045},{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (band 4)\\\",\\\"center_wavelength\\\":0.665,\\\"full_width_half_max\\\":0.038},{\\\"name\\\":\\\"rededge1\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 1 (band 5)\\\",\\\"center_wavelength\\\":0.704,\\\"full_width_half_max\\\":0.019},{\\\"name\\\":\\\"rededge2\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 2 (band 6)\\\",\\\"center_wavelength\\\":0.74,\\\"full_width_half_max\\\":0.018},{\\\"name\\\":\\\"rededge3\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 3 (band 7)\\\",\\\"center_wavelength\\\":0.783,\\\"full_width_half_max\\\":0.028},{\\\"name\\\":\\\"nir\\\",\\\"common_name\\\":\\\"nir\\\",\\\"description\\\":\\\"NIR\n        1 (band 8)\\\",\\\"center_wavelength\\\":0.842,\\\"full_width_half_max\\\":0.145},{\\\"name\\\":\\\"nir08\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"NIR\n        2 (band 8A)\\\",\\\"center_wavelength\\\":0.865,\\\"full_width_half_max\\\":0.033},{\\\"name\\\":\\\"nir09\\\",\\\"common_name\\\":\\\"nir09\\\",\\\"description\\\":\\\"NIR\n        3 (band 9)\\\",\\\"center_wavelength\\\":0.945,\\\"full_width_half_max\\\":0.026},{\\\"name\\\":\\\"cirrus\\\",\\\"common_name\\\":\\\"cirrus\\\",\\\"description\\\":\\\"Cirrus\n        (band 10)\\\",\\\"center_wavelength\\\":1.3735,\\\"full_width_half_max\\\":0.075},{\\\"name\\\":\\\"swir16\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"SWIR\n        1 (band 11)\\\",\\\"center_wavelength\\\":1.61,\\\"full_width_half_max\\\":0.143},{\\\"name\\\":\\\"swir22\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"SWIR\n        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\n        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\n        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\n        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\n        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\n        Copernicus DEM is a Digital Surface Model (DSM) which represents the surface\n        of the Earth including buildings, infrastructure and vegetation. GLO-30 Public\n        provides limited worldwide coverage at 30 meters because a small subset of\n        tiles covering specific countries are not yet released to the public by the\n        Copernicus Programme.\\\",\\\"item_assets\\\":{\\\"data\\\":{\\\"type\\\":\\\"image/tiff;\n        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\n        [National Agriculture Imagery Program](https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/)\n        (NAIP) provides U.S.-wide, high-resolution aerial imagery, with four spectral\n        bands (R, G, B, IR).  NAIP is administered by the [Aerial Field Photography\n        Office](https://www.fsa.usda.gov/programs-and-services/aerial-photography/)\n        (AFPO) within the [US Department of Agriculture](https://www.usda.gov/) (USDA).\n        \\ Data are captured at least once every three years for each state.  This\n        dataset represents NAIP data from 2010-present, in [cloud-optimized GeoTIFF](https://www.cogeo.org/)\n        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\n        Domain\\\",\\\"type\\\":\\\"text/html\\\"},{\\\"rel\\\":\\\"cite-as\\\",\\\"href\\\":\\\"https://doi.org/10.5066/F7QN651G\\\",\\\"title\\\":\\\"NAIP\n        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:\n        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\n        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\n        84\\\",\\\"roles\\\":[\\\"processor\\\"],\\\"url\\\":\\\"https://element84.com\\\"}],\\\"summaries\\\":{\\\"gsd\\\":[0.6,1],\\\"eo:bands\\\":[{\\\"name\\\":\\\"Red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"visible\n        red\\\"},{\\\"name\\\":\\\"Green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"visible\n        green\\\"},{\\\"name\\\":\\\"Blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"visible\n        blue\\\"},{\\\"name\\\":\\\"NIR\\\",\\\"common_name\\\":\\\"nir\\\",\\\"description\\\":\\\"near-infrared\\\"}]},\\\"item_assets\\\":{\\\"image\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"RGBIR\n        COG tile\\\",\\\"eo:bands\\\":[{\\\"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\n        Metdata\\\"}},\\\"sci:doi\\\":\\\"10.5066/F7QN651G\\\",\\\"sci:publications\\\":[{\\\"doi\\\":\\\"10.14358/PERS.83.10.737\\\",\\\"citation\\\":\\\"Maxwell,\n        A. E., Warner, T. A., Vanderbilt, B. C., &amp; Ramezan, C. A. (2017). Land\n        cover classification and feature extraction from National Agriculture Imagery\n        Program (NAIP) orthoimagery: A Review. Photogrammetric Engineering &amp; Remote\n        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\n        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\n        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\n        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\n        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\n        Copernicus DEM is a Digital Surface Model (DSM) which represents the surface\n        of the Earth including buildings, infrastructure and vegetation. GLO-90 provides\n        worldwide coverage at 90 meters.\\\",\\\"item_assets\\\":{\\\"data\\\":{\\\"type\\\":\\\"image/tiff;\n        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\n        corrected global Landsat Collection 2 Level-2 data from the Thematic Mapper\n        (TM) onboard Landsat 4 and 5, the Enhanced Thematic Mapper Plus (ETM+) onboard\n        Landsat 7, and the Operational Land Imager (OLI) and Thermal Infrared Sensor\n        (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\n        4-5 TM Collection 2 Level-2\\\"},{\\\"rel\\\":\\\"cite-as\\\",\\\"href\\\":\\\"https://doi.org/10.5066/P9C7I13B\\\",\\\"title\\\":\\\"Landsat\n        7 ETM+ Collection 2 Level-2\\\"},{\\\"rel\\\":\\\"cite-as\\\",\\\"href\\\":\\\"https://doi.org/10.5066/P9OGBGM6\\\",\\\"title\\\":\\\"Landsat\n        8-9 OLI/TIRS Collection 2 Level-2\\\"},{\\\"rel\\\":\\\"license\\\",\\\"href\\\":\\\"https://www.usgs.gov/core-science-systems/hdds/data-policy\\\",\\\"title\\\":\\\"Public\n        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\n        image\\\",\\\"roles\\\":[\\\"thumbnail\\\"]},\\\"reduced_resolution_browse\\\":{\\\"type\\\":\\\"image/jpeg\\\",\\\"title\\\":\\\"Reduced\n        resolution browse image\\\",\\\"roles\\\":[\\\"overview\\\"]},\\\"mtl.json\\\":{\\\"type\\\":\\\"application/json\\\",\\\"title\\\":\\\"Product\n        Metadata File (json)\\\",\\\"description\\\":\\\"Collection 2 Level-2 Product Metadata\n        File (json)\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"mtl.txt\\\":{\\\"type\\\":\\\"text/plain\\\",\\\"title\\\":\\\"Product\n        Metadata File (txt)\\\",\\\"description\\\":\\\"Collection 2 Level-2 Product Metadata\n        File (txt)\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"mtl.xml\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"title\\\":\\\"Product\n        Metadata File (xml)\\\",\\\"description\\\":\\\"Collection 2 Level-2 Product Metadata\n        File (xml)\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"ang\\\":{\\\"type\\\":\\\"text/plain\\\",\\\"title\\\":\\\"Angle\n        Coefficients File\\\",\\\"description\\\":\\\"Collection 2 Level-1 Angle Coefficients\n        File\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"qa_pixel\\\":{\\\"type\\\":\\\"image/tiff; application=geotiff;\n        profile=cloud-optimized\\\",\\\"title\\\":\\\"Pixel Quality Assessment Band\\\",\\\"description\\\":\\\"Collection\n        2 Level-1 Pixel Quality Assessment Band\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":1,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":30,\\\"unit\\\":\\\"bit\n        index\\\"}],\\\"roles\\\":[\\\"cloud\\\",\\\"cloud-shadow\\\",\\\"snow-ice\\\",\\\"water-mask\\\"]},\\\"qa_radsat\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Radiometric Saturation\n        Quality Assessment Band\\\",\\\"description\\\":\\\"Collection 2 Level-1 Radiometric\n        Saturation Quality Assessment Band\\\",\\\"raster:bands\\\":[{\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":30,\\\"unit\\\":\\\"bit\n        index\\\"}],\\\"roles\\\":[\\\"saturation\\\"]},\\\"coastal\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Coastal/Aerosol\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Coastal/Aerosol Band Surface\n        Reflectance\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":30,\\\"scale\\\":0.0000275,\\\"offset\\\":-0.2}],\\\"roles\\\":[\\\"reflectance\\\"]},\\\"blue\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Blue Band\\\",\\\"description\\\":\\\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Green Band\\\",\\\"description\\\":\\\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Red Band\\\",\\\"description\\\":\\\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Near Infrared Band\n        0.8\\\",\\\"description\\\":\\\"Collection 2 Level-2 Near Infrared Band 0.8 Surface\n        Reflectance\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":30,\\\"scale\\\":0.0000275,\\\"offset\\\":-0.2}],\\\"roles\\\":[\\\"reflectance\\\"]},\\\"swir16\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Short-wave Infrared\n        Band 1.6\\\",\\\"description\\\":\\\"Collection 2 Level-2 Short-wave Infrared Band\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Short-wave Infrared\n        Band 2.2\\\",\\\"description\\\":\\\"Collection 2 Level-2 Short-wave Infrared Band\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Atmospheric Opacity\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Atmospheric Opacity Band Surface\n        Reflectance Product\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":-9999,\\\"data_type\\\":\\\"int16\\\",\\\"spatial_resolution\\\":30,\\\"scale\\\":0.001}],\\\"roles\\\":[\\\"data\\\"]},\\\"cloud_qa\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Cloud Quality Assessment\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Cloud Quality Assessment Band\n        Surface Reflectance Product\\\",\\\"raster:bands\\\":[{\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":30,\\\"unit\\\":\\\"bit\n        index\\\"}],\\\"roles\\\":[\\\"cloud\\\",\\\"cloud-shadow\\\",\\\"snow-ice\\\",\\\"water-mask\\\"]},\\\"qa_aerosol\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Aerosol Quality\n        Assessment Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Aerosol Quality Assessment\n        Band Surface Reflectance Product\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":1,\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":30,\\\"unit\\\":\\\"bit\n        index\\\"}],\\\"roles\\\":[\\\"data-mask\\\",\\\"water-mask\\\"]},\\\"lwir11\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Surface Temperature\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Thermal Infrared Band Surface\n        Temperature\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":30,\\\"unit\\\":\\\"kelvin\\\",\\\"scale\\\":0.00341802,\\\"offset\\\":149}],\\\"roles\\\":[\\\"temperature\\\"]},\\\"lwir\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Surface Temperature\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Thermal Infrared Band Surface\n        Temperature\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":30,\\\"unit\\\":\\\"kelvin\\\",\\\"scale\\\":0.00341802,\\\"offset\\\":149}],\\\"roles\\\":[\\\"temperature\\\"]},\\\"atran\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Atmospheric Transmittance\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Atmospheric Transmittance Band\n        Surface Temperature Product\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":-9999,\\\"data_type\\\":\\\"int16\\\",\\\"spatial_resolution\\\":30,\\\"scale\\\":0.0001}],\\\"roles\\\":[\\\"data\\\"]},\\\"cdist\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Cloud Distance\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Cloud Distance Band Surface\n        Temperature Product\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":-9999,\\\"data_type\\\":\\\"int16\\\",\\\"spatial_resolution\\\":30,\\\"unit\\\":\\\"kilometer\\\",\\\"scale\\\":0.01}],\\\"roles\\\":[\\\"data\\\"]},\\\"drad\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Downwelled Radiance\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Downwelled Radiance Band Surface\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Upwelled Radiance\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Upwelled Radiance Band Surface\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Thermal Radiance\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Thermal Radiance Band Surface\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Emissivity Band\\\",\\\"description\\\":\\\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Emissivity Standard\n        Deviation Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Emissivity Standard\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Surface Temperature\n        Quality Assessment Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Quality Assessment\n        Band Surface Temperature Product\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":-9999,\\\"data_type\\\":\\\"int16\\\",\\\"spatial_resolution\\\":30,\\\"unit\\\":\\\"kelvin\\\",\\\"scale\\\":0.01}],\\\"roles\\\":[\\\"data\\\"]}},\\\"title\\\":\\\"Landsat\n        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\n        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\n        blue (Thematic Mapper)\\\",\\\"center_wavelength\\\":0.49,\\\"full_width_half_max\\\":0.07},{\\\"name\\\":\\\"TM_B2\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Visible\n        green (Thematic Mapper)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.08},{\\\"name\\\":\\\"TM_B3\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Visible\n        red (Thematic Mapper)\\\",\\\"center_wavelength\\\":0.66,\\\"full_width_half_max\\\":0.06},{\\\"name\\\":\\\"TM_B4\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"Near\n        infrared (Thematic Mapper)\\\",\\\"center_wavelength\\\":0.83,\\\"full_width_half_max\\\":0.14},{\\\"name\\\":\\\"TM_B5\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"Short-wave\n        infrared (Thematic Mapper)\\\",\\\"center_wavelength\\\":1.65,\\\"full_width_half_max\\\":0.2},{\\\"name\\\":\\\"TM_B6\\\",\\\"common_name\\\":\\\"lwir\\\",\\\"description\\\":\\\"Long-wave\n        infrared (Thematic Mapper)\\\",\\\"center_wavelength\\\":11.45,\\\"full_width_half_max\\\":2.1},{\\\"name\\\":\\\"TM_B7\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"Short-wave\n        infrared (Thematic Mapper)\\\",\\\"center_wavelength\\\":2.22,\\\"full_width_half_max\\\":0.27},{\\\"name\\\":\\\"ETM_B1\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Visible\n        blue (Enhanced Thematic Mapper Plus)\\\",\\\"center_wavelength\\\":0.48,\\\"full_width_half_max\\\":0.07},{\\\"name\\\":\\\"ETM_B2\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Visible\n        green (Enhanced Thematic Mapper Plus)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.08},{\\\"name\\\":\\\"ETM_B3\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Visible\n        red (Enhanced Thematic Mapper Plus)\\\",\\\"center_wavelength\\\":0.66,\\\"full_width_half_max\\\":0.06},{\\\"name\\\":\\\"ETM_B4\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"Near\n        infrared (Enhanced Thematic Mapper Plus)\\\",\\\"center_wavelength\\\":0.84,\\\"full_width_half_max\\\":0.13},{\\\"name\\\":\\\"ETM_B5\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"Short-wave\n        infrared (Enhanced Thematic Mapper Plus)\\\",\\\"center_wavelength\\\":1.65,\\\"full_width_half_max\\\":0.2},{\\\"name\\\":\\\"ETM_B6\\\",\\\"common_name\\\":\\\"lwir\\\",\\\"description\\\":\\\"Long-wave\n        infrared (Enhanced Thematic Mapper Plus)\\\",\\\"center_wavelength\\\":11.34,\\\"full_width_half_max\\\":2.05},{\\\"name\\\":\\\"ETM_B7\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"Short-wave\n        infrared (Enhanced Thematic Mapper Plus)\\\",\\\"center_wavelength\\\":2.2,\\\"full_width_half_max\\\":0.28},{\\\"name\\\":\\\"OLI_B1\\\",\\\"common_name\\\":\\\"coastal\\\",\\\"description\\\":\\\"Coastal/Aerosol\n        (Operational Land Imager)\\\",\\\"center_wavelength\\\":0.44,\\\"full_width_half_max\\\":0.02},{\\\"name\\\":\\\"OLI_B2\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Visible\n        blue (Operational Land Imager)\\\",\\\"center_wavelength\\\":0.48,\\\"full_width_half_max\\\":0.06},{\\\"name\\\":\\\"OLI_B3\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Visible\n        green (Operational Land Imager)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.06},{\\\"name\\\":\\\"OLI_B4\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Visible\n        red (Operational Land Imager)\\\",\\\"center_wavelength\\\":0.65,\\\"full_width_half_max\\\":0.04},{\\\"name\\\":\\\"OLI_B5\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"Near\n        infrared (Operational Land Imager)\\\",\\\"center_wavelength\\\":0.87,\\\"full_width_half_max\\\":0.03},{\\\"name\\\":\\\"OLI_B6\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"Short-wave\n        infrared (Operational Land Imager)\\\",\\\"center_wavelength\\\":1.61,\\\"full_width_half_max\\\":0.09},{\\\"name\\\":\\\"OLI_B7\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"Short-wave\n        infrared (Operational Land Imager)\\\",\\\"center_wavelength\\\":2.2,\\\"full_width_half_max\\\":0.19},{\\\"name\\\":\\\"TIRS_B10\\\",\\\"common_name\\\":\\\"lwir11\\\",\\\"description\\\":\\\"Long-wave\n        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\n        Level-2A\\\",\\\"description\\\":\\\"Global Sentinel-2 data from the Multispectral\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Aerosol optical\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Blue (band 2) -\n        10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Coastal aerosol\n        (band 1) - 60m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"coastal\\\",\\\"common_name\\\":\\\"coastal\\\",\\\"description\\\":\\\"Coastal\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Green (band 3)\n        - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"NIR 1 (band 8)\n        - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"nir\\\",\\\"common_name\\\":\\\"nir\\\",\\\"description\\\":\\\"NIR\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"NIR 2 (band 8A)\n        - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"nir08\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"NIR\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"NIR 3 (band 9)\n        - 60m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"nir09\\\",\\\"common_name\\\":\\\"nir09\\\",\\\"description\\\":\\\"NIR\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Red (band 4) -\n        10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Red edge 1 (band\n        5) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"rededge1\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Red edge 2 (band\n        6) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"rededge2\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Red edge 3 (band\n        7) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"rededge3\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Scene classification\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"SWIR 1 (band 11)\n        - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"swir16\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"SWIR\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"SWIR 2 (band 12)\n        - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"swir22\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"SWIR\n        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\n        image\\\",\\\"roles\\\":[\\\"thumbnail\\\"]},\\\"tileinfo_metadata\\\":{\\\"type\\\":\\\"application/json\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"visual\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"True color image\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (band 4)\\\",\\\"center_wavelength\\\":0.665,\\\"full_width_half_max\\\":0.038},{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (band 3)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.045},{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (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;\n        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\n        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\n        (band 2) - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (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\n        aerosol (band 1) - 60m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"coastal\\\",\\\"common_name\\\":\\\"coastal\\\",\\\"description\\\":\\\"Coastal\n        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\n        (band 3) - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (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\n        1 (band 8) - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"nir\\\",\\\"common_name\\\":\\\"nir\\\",\\\"description\\\":\\\"NIR\n        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\n        2 (band 8A) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"nir08\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"NIR\n        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\n        3 (band 9) - 60m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"nir09\\\",\\\"common_name\\\":\\\"nir09\\\",\\\"description\\\":\\\"NIR\n        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\n        (band 4) - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (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\n        edge 1 (band 5) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"rededge1\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        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\n        edge 2 (band 6) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"rededge2\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        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\n        edge 3 (band 7) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"rededge3\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        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\n        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\n        1 (band 11) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"swir16\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"SWIR\n        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\n        2 (band 12) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"swir22\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"SWIR\n        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\n        color image\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (band 4)\\\",\\\"center_wavelength\\\":0.665,\\\"full_width_half_max\\\":0.038},{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (band 3)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.045},{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (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\n        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\n        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\n        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\n        aerosol (band 1)\\\",\\\"center_wavelength\\\":0.443,\\\"full_width_half_max\\\":0.027},{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (band 2)\\\",\\\"center_wavelength\\\":0.49,\\\"full_width_half_max\\\":0.098},{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (band 3)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.045},{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (band 4)\\\",\\\"center_wavelength\\\":0.665,\\\"full_width_half_max\\\":0.038},{\\\"name\\\":\\\"rededge1\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 1 (band 5)\\\",\\\"center_wavelength\\\":0.704,\\\"full_width_half_max\\\":0.019},{\\\"name\\\":\\\"rededge2\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 2 (band 6)\\\",\\\"center_wavelength\\\":0.74,\\\"full_width_half_max\\\":0.018},{\\\"name\\\":\\\"rededge3\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 3 (band 7)\\\",\\\"center_wavelength\\\":0.783,\\\"full_width_half_max\\\":0.028},{\\\"name\\\":\\\"nir\\\",\\\"common_name\\\":\\\"nir\\\",\\\"description\\\":\\\"NIR\n        1 (band 8)\\\",\\\"center_wavelength\\\":0.842,\\\"full_width_half_max\\\":0.145},{\\\"name\\\":\\\"nir08\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"NIR\n        2 (band 8A)\\\",\\\"center_wavelength\\\":0.865,\\\"full_width_half_max\\\":0.033},{\\\"name\\\":\\\"nir09\\\",\\\"common_name\\\":\\\"nir09\\\",\\\"description\\\":\\\"NIR\n        3 (band 9)\\\",\\\"center_wavelength\\\":0.945,\\\"full_width_half_max\\\":0.026},{\\\"name\\\":\\\"cirrus\\\",\\\"common_name\\\":\\\"cirrus\\\",\\\"description\\\":\\\"Cirrus\n        (band 10)\\\",\\\"center_wavelength\\\":1.3735,\\\"full_width_half_max\\\":0.075},{\\\"name\\\":\\\"swir16\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"SWIR\n        1 (band 11)\\\",\\\"center_wavelength\\\":1.61,\\\"full_width_half_max\\\":0.143},{\\\"name\\\":\\\"swir22\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"SWIR\n        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\n        Level-1C\\\",\\\"description\\\":\\\"Global Sentinel-2 data from the Multispectral\n        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\n        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\n        (band 2) - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (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\n        (band 10) - 60m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"cirrus\\\",\\\"common_name\\\":\\\"cirrus\\\",\\\"description\\\":\\\"Cirrus\n        (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\n        aerosol (band 1) - 60m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"coastal\\\",\\\"common_name\\\":\\\"coastal\\\",\\\"description\\\":\\\"Coastal\n        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\n        (band 3) - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (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\n        1 (band 8) - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"nir\\\",\\\"common_name\\\":\\\"nir\\\",\\\"description\\\":\\\"NIR\n        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\n        2 (band 8A) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"nir08\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"NIR\n        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\n        3 (band 9) - 60m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"nir09\\\",\\\"common_name\\\":\\\"nir09\\\",\\\"description\\\":\\\"NIR\n        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\n        (band 4) - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (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\n        edge 1 (band 5) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"rededge1\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        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\n        edge 2 (band 6) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"rededge2\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        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\n        edge 3 (band 7) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"rededge3\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        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\n        1 (band 11) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"swir16\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"SWIR\n        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\n        2 (band 12) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"swir22\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"SWIR\n        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\n        image\\\",\\\"roles\\\":[\\\"thumbnail\\\"]},\\\"tileinfo_metadata\\\":{\\\"type\\\":\\\"application/json\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"visual\\\":{\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"True\n        color image\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (band 4)\\\",\\\"center_wavelength\\\":0.665,\\\"full_width_half_max\\\":0.038},{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (band 3)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.045},{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (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\n        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\n        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\n        aerosol (band 1)\\\",\\\"center_wavelength\\\":0.443,\\\"full_width_half_max\\\":0.027},{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (band 2)\\\",\\\"center_wavelength\\\":0.49,\\\"full_width_half_max\\\":0.098},{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (band 3)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.045},{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (band 4)\\\",\\\"center_wavelength\\\":0.665,\\\"full_width_half_max\\\":0.038},{\\\"name\\\":\\\"rededge1\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 1 (band 5)\\\",\\\"center_wavelength\\\":0.704,\\\"full_width_half_max\\\":0.019},{\\\"name\\\":\\\"rededge2\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 2 (band 6)\\\",\\\"center_wavelength\\\":0.74,\\\"full_width_half_max\\\":0.018},{\\\"name\\\":\\\"rededge3\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 3 (band 7)\\\",\\\"center_wavelength\\\":0.783,\\\"full_width_half_max\\\":0.028},{\\\"name\\\":\\\"nir\\\",\\\"common_name\\\":\\\"nir\\\",\\\"description\\\":\\\"NIR\n        1 (band 8)\\\",\\\"center_wavelength\\\":0.842,\\\"full_width_half_max\\\":0.145},{\\\"name\\\":\\\"nir08\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"NIR\n        2 (band 8A)\\\",\\\"center_wavelength\\\":0.865,\\\"full_width_half_max\\\":0.033},{\\\"name\\\":\\\"nir09\\\",\\\"common_name\\\":\\\"nir09\\\",\\\"description\\\":\\\"NIR\n        3 (band 9)\\\",\\\"center_wavelength\\\":0.945,\\\"full_width_half_max\\\":0.026},{\\\"name\\\":\\\"cirrus\\\",\\\"common_name\\\":\\\"cirrus\\\",\\\"description\\\":\\\"Cirrus\n        (band 10)\\\",\\\"center_wavelength\\\":1.3735,\\\"full_width_half_max\\\":0.075},{\\\"name\\\":\\\"swir16\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"SWIR\n        1 (band 11)\\\",\\\"center_wavelength\\\":1.61,\\\"full_width_half_max\\\":0.143},{\\\"name\\\":\\\"swir22\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"SWIR\n        2 (band 12)\\\",\\\"center_wavelength\\\":2.19,\\\"full_width_half_max\\\":0.242}]}},{\\\"type\\\":\\\"Collection\\\",\\\"id\\\":\\\"sentinel-2-c1-l2a\\\",\\\"title\\\":\\\"Sentinel-2\n        Collection 1 Level-2A\\\",\\\"description\\\":\\\"Sentinel-2 Collection 1 Level-2A,\n        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\n        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;\n        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;\n        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;\n        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;\n        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;\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"SWIR 2.2\\u03BCm\n        - 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;\n        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;\n        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;\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"SWIR 1.6\\u03BCm\n        - 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;\n        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;\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Scene classification\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Aerosol optical\n        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;\n        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;\n        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;\n        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;\n        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;\n        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\n        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\n        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\n        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\n        aerosol (band 1)\\\",\\\"center_wavelength\\\":0.443,\\\"full_width_half_max\\\":0.027},{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (band 2)\\\",\\\"center_wavelength\\\":0.49,\\\"full_width_half_max\\\":0.098},{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (band 3)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.045},{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (band 4)\\\",\\\"center_wavelength\\\":0.665,\\\"full_width_half_max\\\":0.038},{\\\"name\\\":\\\"rededge1\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 1 (band 5)\\\",\\\"center_wavelength\\\":0.704,\\\"full_width_half_max\\\":0.019},{\\\"name\\\":\\\"rededge2\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 2 (band 6)\\\",\\\"center_wavelength\\\":0.74,\\\"full_width_half_max\\\":0.018},{\\\"name\\\":\\\"rededge3\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 3 (band 7)\\\",\\\"center_wavelength\\\":0.783,\\\"full_width_half_max\\\":0.028},{\\\"name\\\":\\\"nir\\\",\\\"common_name\\\":\\\"nir\\\",\\\"description\\\":\\\"NIR\n        1 (band 8)\\\",\\\"center_wavelength\\\":0.842,\\\"full_width_half_max\\\":0.145},{\\\"name\\\":\\\"nir08\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"NIR\n        2 (band 8A)\\\",\\\"center_wavelength\\\":0.865,\\\"full_width_half_max\\\":0.033},{\\\"name\\\":\\\"nir09\\\",\\\"common_name\\\":\\\"nir09\\\",\\\"description\\\":\\\"NIR\n        3 (band 9)\\\",\\\"center_wavelength\\\":0.945,\\\"full_width_half_max\\\":0.026},{\\\"name\\\":\\\"cirrus\\\",\\\"common_name\\\":\\\"cirrus\\\",\\\"description\\\":\\\"Cirrus\n        (band 10)\\\",\\\"center_wavelength\\\":1.3735,\\\"full_width_half_max\\\":0.075},{\\\"name\\\":\\\"swir16\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"SWIR\n        1 (band 11)\\\",\\\"center_wavelength\\\":1.61,\\\"full_width_half_max\\\":0.143},{\\\"name\\\":\\\"swir22\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"SWIR\n        2 (band 12)\\\",\\\"center_wavelength\\\":2.19,\\\"full_width_half_max\\\":0.242}]}},{\\\"id\\\":\\\"sentinel-1-grd\\\",\\\"type\\\":\\\"Collection\\\",\\\"title\\\":\\\"Sentinel-1\n        Level-1C Ground Range Detected (GRD)\\\",\\\"description\\\":\\\"Sentinel-1 is a pair\n        of Synthetic Aperture Radar (SAR) imaging satellites launched in 2014 and\n        2016 by the European Space Agency (ESA). Their 6 day revisit cycle and ability\n        to observe through clouds makes this dataset perfect for sea and land monitoring,\n        emergency response due to environmental disasters, and economic applications.\n        This dataset represents the global Sentinel-1 GRD archive, from beginning\n        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\n        Ground Range Detected (GRD) Technical Guide\\\"},{\\\"rel\\\":\\\"license\\\",\\\"href\\\":\\\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\\\",\\\"title\\\":\\\"Copernicus\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"HH\n        Data\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\"}]},\\\"hv\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"HV\n        Data\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\"}]},\\\"vh\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"VH\n        Data\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\"}]},\\\"vv\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"VV\n        Data\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\"}]},\\\"thumbnail\\\":{\\\"type\\\":\\\"image/png\\\",\\\"roles\\\":[\\\"thumbnail\\\"],\\\"title\\\":\\\"Thumbnail\n        Image\\\"},\\\"safe-manifest\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"SAFE\n        Manifest File\\\"},\\\"schema-noise-hh\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"HH\n        Noise Schema\\\"},\\\"schema-noise-hv\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"HV\n        Noise Schema\\\"},\\\"schema-noise-vh\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"VH\n        Noise Schema\\\"},\\\"schema-noise-vv\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"VV\n        Noise Schema\\\"},\\\"schema-product-hh\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"HH\n        Product Schema\\\"},\\\"schema-product-hv\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"HV\n        Product Schema\\\"},\\\"schema-product-vh\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"VH\n        Product Schema\\\"},\\\"schema-product-vv\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"VV\n        Product Schema\\\"},\\\"schema-calibration-hh\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"HH\n        Calibration Schema\\\"},\\\"schema-calibration-hv\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"HV\n        Calibration Schema\\\"},\\\"schema-calibration-vh\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"VH\n        Calibration Schema\\\"},\\\"schema-calibration-vv\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"VV\n        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}}\"\n    headers:\n      Connection:\n      - keep-alive\n      Content-Encoding:\n      - gzip\n      Content-Length:\n      - '8117'\n      Content-Type:\n      - application/json; charset=utf-8\n      Date:\n      - Thu, 31 Jul 2025 15:07:07 GMT\n      Via:\n      - 1.1 187855e01bff01816fb7f2e5860898b6.cloudfront.net (CloudFront)\n      X-Amz-Cf-Id:\n      - amMj9cg4gUuttVlNvD8JMXeH5uYQPgTimVcOjnxHVYl0e-ccgqiSKg==\n      X-Amz-Cf-Pop:\n      - DEN52-C1\n      X-Amzn-Trace-Id:\n      - Root=1-688b869b-62823a602f4cef3a37f560ff;Parent=605c89cbb48efbbb;Sampled=0;Lineage=1:9e2884e9:0\n      X-Cache:\n      - Miss from cloudfront\n      access-control-allow-origin:\n      - '*'\n      etag:\n      - W/\"141dd-9fMv6YJnvxPn9adSQK466CnIbE0\"\n      x-amz-apigw-id:\n      - OlH4ZH76PHcEk4g=\n      x-amzn-Remapped-content-length:\n      - '82397'\n      x-amzn-RequestId:\n      - 745933e4-f55f-4fd1-b5ae-2956a27e5f6f\n      x-powered-by:\n      - Express\n    status:\n      code: 200\n      message: OK\nversion: 1\n"
  },
  {
    "path": "tests/cassettes/test_cli/TestCLICollections.test_save[inprocess].yaml",
    "content": "interactions:\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://earth-search.aws.element84.com/v1\n  response:\n    body:\n      string: '{\"stac_version\":\"1.0.0\",\"type\":\"Catalog\",\"id\":\"earth-search-aws\",\"title\":\"Earth\n        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\"]}'\n    headers:\n      Connection:\n      - keep-alive\n      Content-Encoding:\n      - gzip\n      Content-Length:\n      - '612'\n      Content-Type:\n      - application/json; charset=utf-8\n      Date:\n      - Thu, 31 Jul 2025 15:07:08 GMT\n      Via:\n      - 1.1 bcab77f1ffe9d73bbe5ff7a973cd0160.cloudfront.net (CloudFront)\n      X-Amz-Cf-Id:\n      - CQfybdcOI6Cj1JfXNnKZWNoESCRvstRWL0MHoIlBkGgIHBbqmSzIdg==\n      X-Amz-Cf-Pop:\n      - DEN52-C1\n      X-Amzn-Trace-Id:\n      - Root=1-688b869c-3dda6b567927b7f82b8fc25f;Parent=54aeea364bfd315f;Sampled=0;Lineage=1:9e2884e9:0\n      X-Cache:\n      - Miss from cloudfront\n      access-control-allow-origin:\n      - '*'\n      etag:\n      - W/\"d29-QPs+H0wJLUX32EZKNgzG3k6wfQ8\"\n      x-amz-apigw-id:\n      - OlH4fGhhvHcEX2w=\n      x-amzn-Remapped-content-length:\n      - '3369'\n      x-amzn-RequestId:\n      - c7dada9f-8015-4ff6-b842-61fd42b4b879\n      x-powered-by:\n      - Express\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://earth-search.aws.element84.com/v1/collections\n  response:\n    body:\n      string: \"{\\\"collections\\\":[{\\\"type\\\":\\\"Collection\\\",\\\"id\\\":\\\"sentinel-2-pre-c1-l2a\\\",\\\"title\\\":\\\"Sentinel-2\n        Pre-Collection 1 Level-2A \\\",\\\"description\\\":\\\"Sentinel-2 Pre-Collection 1\n        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\n        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;\n        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;\n        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;\n        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;\n        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;\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"SWIR 2.2\\u03BCm\n        - 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;\n        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;\n        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;\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"SWIR 1.6\\u03BCm\n        - 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;\n        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;\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Scene classification\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Aerosol optical\n        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;\n        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;\n        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;\n        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;\n        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;\n        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\n        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\n        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\n        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\n        aerosol (band 1)\\\",\\\"center_wavelength\\\":0.443,\\\"full_width_half_max\\\":0.027},{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (band 2)\\\",\\\"center_wavelength\\\":0.49,\\\"full_width_half_max\\\":0.098},{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (band 3)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.045},{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (band 4)\\\",\\\"center_wavelength\\\":0.665,\\\"full_width_half_max\\\":0.038},{\\\"name\\\":\\\"rededge1\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 1 (band 5)\\\",\\\"center_wavelength\\\":0.704,\\\"full_width_half_max\\\":0.019},{\\\"name\\\":\\\"rededge2\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 2 (band 6)\\\",\\\"center_wavelength\\\":0.74,\\\"full_width_half_max\\\":0.018},{\\\"name\\\":\\\"rededge3\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 3 (band 7)\\\",\\\"center_wavelength\\\":0.783,\\\"full_width_half_max\\\":0.028},{\\\"name\\\":\\\"nir\\\",\\\"common_name\\\":\\\"nir\\\",\\\"description\\\":\\\"NIR\n        1 (band 8)\\\",\\\"center_wavelength\\\":0.842,\\\"full_width_half_max\\\":0.145},{\\\"name\\\":\\\"nir08\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"NIR\n        2 (band 8A)\\\",\\\"center_wavelength\\\":0.865,\\\"full_width_half_max\\\":0.033},{\\\"name\\\":\\\"nir09\\\",\\\"common_name\\\":\\\"nir09\\\",\\\"description\\\":\\\"NIR\n        3 (band 9)\\\",\\\"center_wavelength\\\":0.945,\\\"full_width_half_max\\\":0.026},{\\\"name\\\":\\\"cirrus\\\",\\\"common_name\\\":\\\"cirrus\\\",\\\"description\\\":\\\"Cirrus\n        (band 10)\\\",\\\"center_wavelength\\\":1.3735,\\\"full_width_half_max\\\":0.075},{\\\"name\\\":\\\"swir16\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"SWIR\n        1 (band 11)\\\",\\\"center_wavelength\\\":1.61,\\\"full_width_half_max\\\":0.143},{\\\"name\\\":\\\"swir22\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"SWIR\n        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\n        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\n        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\n        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\n        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\n        Copernicus DEM is a Digital Surface Model (DSM) which represents the surface\n        of the Earth including buildings, infrastructure and vegetation. GLO-30 Public\n        provides limited worldwide coverage at 30 meters because a small subset of\n        tiles covering specific countries are not yet released to the public by the\n        Copernicus Programme.\\\",\\\"item_assets\\\":{\\\"data\\\":{\\\"type\\\":\\\"image/tiff;\n        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\n        [National Agriculture Imagery Program](https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/)\n        (NAIP) provides U.S.-wide, high-resolution aerial imagery, with four spectral\n        bands (R, G, B, IR).  NAIP is administered by the [Aerial Field Photography\n        Office](https://www.fsa.usda.gov/programs-and-services/aerial-photography/)\n        (AFPO) within the [US Department of Agriculture](https://www.usda.gov/) (USDA).\n        \\ Data are captured at least once every three years for each state.  This\n        dataset represents NAIP data from 2010-present, in [cloud-optimized GeoTIFF](https://www.cogeo.org/)\n        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\n        Domain\\\",\\\"type\\\":\\\"text/html\\\"},{\\\"rel\\\":\\\"cite-as\\\",\\\"href\\\":\\\"https://doi.org/10.5066/F7QN651G\\\",\\\"title\\\":\\\"NAIP\n        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:\n        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\n        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\n        84\\\",\\\"roles\\\":[\\\"processor\\\"],\\\"url\\\":\\\"https://element84.com\\\"}],\\\"summaries\\\":{\\\"gsd\\\":[0.6,1],\\\"eo:bands\\\":[{\\\"name\\\":\\\"Red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"visible\n        red\\\"},{\\\"name\\\":\\\"Green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"visible\n        green\\\"},{\\\"name\\\":\\\"Blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"visible\n        blue\\\"},{\\\"name\\\":\\\"NIR\\\",\\\"common_name\\\":\\\"nir\\\",\\\"description\\\":\\\"near-infrared\\\"}]},\\\"item_assets\\\":{\\\"image\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"RGBIR\n        COG tile\\\",\\\"eo:bands\\\":[{\\\"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\n        Metdata\\\"}},\\\"sci:doi\\\":\\\"10.5066/F7QN651G\\\",\\\"sci:publications\\\":[{\\\"doi\\\":\\\"10.14358/PERS.83.10.737\\\",\\\"citation\\\":\\\"Maxwell,\n        A. E., Warner, T. A., Vanderbilt, B. C., &amp; Ramezan, C. A. (2017). Land\n        cover classification and feature extraction from National Agriculture Imagery\n        Program (NAIP) orthoimagery: A Review. Photogrammetric Engineering &amp; Remote\n        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\n        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\n        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\n        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\n        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\n        Copernicus DEM is a Digital Surface Model (DSM) which represents the surface\n        of the Earth including buildings, infrastructure and vegetation. GLO-90 provides\n        worldwide coverage at 90 meters.\\\",\\\"item_assets\\\":{\\\"data\\\":{\\\"type\\\":\\\"image/tiff;\n        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\n        corrected global Landsat Collection 2 Level-2 data from the Thematic Mapper\n        (TM) onboard Landsat 4 and 5, the Enhanced Thematic Mapper Plus (ETM+) onboard\n        Landsat 7, and the Operational Land Imager (OLI) and Thermal Infrared Sensor\n        (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\n        4-5 TM Collection 2 Level-2\\\"},{\\\"rel\\\":\\\"cite-as\\\",\\\"href\\\":\\\"https://doi.org/10.5066/P9C7I13B\\\",\\\"title\\\":\\\"Landsat\n        7 ETM+ Collection 2 Level-2\\\"},{\\\"rel\\\":\\\"cite-as\\\",\\\"href\\\":\\\"https://doi.org/10.5066/P9OGBGM6\\\",\\\"title\\\":\\\"Landsat\n        8-9 OLI/TIRS Collection 2 Level-2\\\"},{\\\"rel\\\":\\\"license\\\",\\\"href\\\":\\\"https://www.usgs.gov/core-science-systems/hdds/data-policy\\\",\\\"title\\\":\\\"Public\n        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\n        image\\\",\\\"roles\\\":[\\\"thumbnail\\\"]},\\\"reduced_resolution_browse\\\":{\\\"type\\\":\\\"image/jpeg\\\",\\\"title\\\":\\\"Reduced\n        resolution browse image\\\",\\\"roles\\\":[\\\"overview\\\"]},\\\"mtl.json\\\":{\\\"type\\\":\\\"application/json\\\",\\\"title\\\":\\\"Product\n        Metadata File (json)\\\",\\\"description\\\":\\\"Collection 2 Level-2 Product Metadata\n        File (json)\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"mtl.txt\\\":{\\\"type\\\":\\\"text/plain\\\",\\\"title\\\":\\\"Product\n        Metadata File (txt)\\\",\\\"description\\\":\\\"Collection 2 Level-2 Product Metadata\n        File (txt)\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"mtl.xml\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"title\\\":\\\"Product\n        Metadata File (xml)\\\",\\\"description\\\":\\\"Collection 2 Level-2 Product Metadata\n        File (xml)\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"ang\\\":{\\\"type\\\":\\\"text/plain\\\",\\\"title\\\":\\\"Angle\n        Coefficients File\\\",\\\"description\\\":\\\"Collection 2 Level-1 Angle Coefficients\n        File\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"qa_pixel\\\":{\\\"type\\\":\\\"image/tiff; application=geotiff;\n        profile=cloud-optimized\\\",\\\"title\\\":\\\"Pixel Quality Assessment Band\\\",\\\"description\\\":\\\"Collection\n        2 Level-1 Pixel Quality Assessment Band\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":1,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":30,\\\"unit\\\":\\\"bit\n        index\\\"}],\\\"roles\\\":[\\\"cloud\\\",\\\"cloud-shadow\\\",\\\"snow-ice\\\",\\\"water-mask\\\"]},\\\"qa_radsat\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Radiometric Saturation\n        Quality Assessment Band\\\",\\\"description\\\":\\\"Collection 2 Level-1 Radiometric\n        Saturation Quality Assessment Band\\\",\\\"raster:bands\\\":[{\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":30,\\\"unit\\\":\\\"bit\n        index\\\"}],\\\"roles\\\":[\\\"saturation\\\"]},\\\"coastal\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Coastal/Aerosol\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Coastal/Aerosol Band Surface\n        Reflectance\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":30,\\\"scale\\\":0.0000275,\\\"offset\\\":-0.2}],\\\"roles\\\":[\\\"reflectance\\\"]},\\\"blue\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Blue Band\\\",\\\"description\\\":\\\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Green Band\\\",\\\"description\\\":\\\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Red Band\\\",\\\"description\\\":\\\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Near Infrared Band\n        0.8\\\",\\\"description\\\":\\\"Collection 2 Level-2 Near Infrared Band 0.8 Surface\n        Reflectance\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":30,\\\"scale\\\":0.0000275,\\\"offset\\\":-0.2}],\\\"roles\\\":[\\\"reflectance\\\"]},\\\"swir16\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Short-wave Infrared\n        Band 1.6\\\",\\\"description\\\":\\\"Collection 2 Level-2 Short-wave Infrared Band\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Short-wave Infrared\n        Band 2.2\\\",\\\"description\\\":\\\"Collection 2 Level-2 Short-wave Infrared Band\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Atmospheric Opacity\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Atmospheric Opacity Band Surface\n        Reflectance Product\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":-9999,\\\"data_type\\\":\\\"int16\\\",\\\"spatial_resolution\\\":30,\\\"scale\\\":0.001}],\\\"roles\\\":[\\\"data\\\"]},\\\"cloud_qa\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Cloud Quality Assessment\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Cloud Quality Assessment Band\n        Surface Reflectance Product\\\",\\\"raster:bands\\\":[{\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":30,\\\"unit\\\":\\\"bit\n        index\\\"}],\\\"roles\\\":[\\\"cloud\\\",\\\"cloud-shadow\\\",\\\"snow-ice\\\",\\\"water-mask\\\"]},\\\"qa_aerosol\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Aerosol Quality\n        Assessment Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Aerosol Quality Assessment\n        Band Surface Reflectance Product\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":1,\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":30,\\\"unit\\\":\\\"bit\n        index\\\"}],\\\"roles\\\":[\\\"data-mask\\\",\\\"water-mask\\\"]},\\\"lwir11\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Surface Temperature\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Thermal Infrared Band Surface\n        Temperature\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":30,\\\"unit\\\":\\\"kelvin\\\",\\\"scale\\\":0.00341802,\\\"offset\\\":149}],\\\"roles\\\":[\\\"temperature\\\"]},\\\"lwir\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Surface Temperature\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Thermal Infrared Band Surface\n        Temperature\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":30,\\\"unit\\\":\\\"kelvin\\\",\\\"scale\\\":0.00341802,\\\"offset\\\":149}],\\\"roles\\\":[\\\"temperature\\\"]},\\\"atran\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Atmospheric Transmittance\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Atmospheric Transmittance Band\n        Surface Temperature Product\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":-9999,\\\"data_type\\\":\\\"int16\\\",\\\"spatial_resolution\\\":30,\\\"scale\\\":0.0001}],\\\"roles\\\":[\\\"data\\\"]},\\\"cdist\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Cloud Distance\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Cloud Distance Band Surface\n        Temperature Product\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":-9999,\\\"data_type\\\":\\\"int16\\\",\\\"spatial_resolution\\\":30,\\\"unit\\\":\\\"kilometer\\\",\\\"scale\\\":0.01}],\\\"roles\\\":[\\\"data\\\"]},\\\"drad\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Downwelled Radiance\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Downwelled Radiance Band Surface\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Upwelled Radiance\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Upwelled Radiance Band Surface\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Thermal Radiance\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Thermal Radiance Band Surface\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Emissivity Band\\\",\\\"description\\\":\\\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Emissivity Standard\n        Deviation Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Emissivity Standard\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Surface Temperature\n        Quality Assessment Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Quality Assessment\n        Band Surface Temperature Product\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":-9999,\\\"data_type\\\":\\\"int16\\\",\\\"spatial_resolution\\\":30,\\\"unit\\\":\\\"kelvin\\\",\\\"scale\\\":0.01}],\\\"roles\\\":[\\\"data\\\"]}},\\\"title\\\":\\\"Landsat\n        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\n        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\n        blue (Thematic Mapper)\\\",\\\"center_wavelength\\\":0.49,\\\"full_width_half_max\\\":0.07},{\\\"name\\\":\\\"TM_B2\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Visible\n        green (Thematic Mapper)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.08},{\\\"name\\\":\\\"TM_B3\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Visible\n        red (Thematic Mapper)\\\",\\\"center_wavelength\\\":0.66,\\\"full_width_half_max\\\":0.06},{\\\"name\\\":\\\"TM_B4\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"Near\n        infrared (Thematic Mapper)\\\",\\\"center_wavelength\\\":0.83,\\\"full_width_half_max\\\":0.14},{\\\"name\\\":\\\"TM_B5\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"Short-wave\n        infrared (Thematic Mapper)\\\",\\\"center_wavelength\\\":1.65,\\\"full_width_half_max\\\":0.2},{\\\"name\\\":\\\"TM_B6\\\",\\\"common_name\\\":\\\"lwir\\\",\\\"description\\\":\\\"Long-wave\n        infrared (Thematic Mapper)\\\",\\\"center_wavelength\\\":11.45,\\\"full_width_half_max\\\":2.1},{\\\"name\\\":\\\"TM_B7\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"Short-wave\n        infrared (Thematic Mapper)\\\",\\\"center_wavelength\\\":2.22,\\\"full_width_half_max\\\":0.27},{\\\"name\\\":\\\"ETM_B1\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Visible\n        blue (Enhanced Thematic Mapper Plus)\\\",\\\"center_wavelength\\\":0.48,\\\"full_width_half_max\\\":0.07},{\\\"name\\\":\\\"ETM_B2\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Visible\n        green (Enhanced Thematic Mapper Plus)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.08},{\\\"name\\\":\\\"ETM_B3\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Visible\n        red (Enhanced Thematic Mapper Plus)\\\",\\\"center_wavelength\\\":0.66,\\\"full_width_half_max\\\":0.06},{\\\"name\\\":\\\"ETM_B4\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"Near\n        infrared (Enhanced Thematic Mapper Plus)\\\",\\\"center_wavelength\\\":0.84,\\\"full_width_half_max\\\":0.13},{\\\"name\\\":\\\"ETM_B5\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"Short-wave\n        infrared (Enhanced Thematic Mapper Plus)\\\",\\\"center_wavelength\\\":1.65,\\\"full_width_half_max\\\":0.2},{\\\"name\\\":\\\"ETM_B6\\\",\\\"common_name\\\":\\\"lwir\\\",\\\"description\\\":\\\"Long-wave\n        infrared (Enhanced Thematic Mapper Plus)\\\",\\\"center_wavelength\\\":11.34,\\\"full_width_half_max\\\":2.05},{\\\"name\\\":\\\"ETM_B7\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"Short-wave\n        infrared (Enhanced Thematic Mapper Plus)\\\",\\\"center_wavelength\\\":2.2,\\\"full_width_half_max\\\":0.28},{\\\"name\\\":\\\"OLI_B1\\\",\\\"common_name\\\":\\\"coastal\\\",\\\"description\\\":\\\"Coastal/Aerosol\n        (Operational Land Imager)\\\",\\\"center_wavelength\\\":0.44,\\\"full_width_half_max\\\":0.02},{\\\"name\\\":\\\"OLI_B2\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Visible\n        blue (Operational Land Imager)\\\",\\\"center_wavelength\\\":0.48,\\\"full_width_half_max\\\":0.06},{\\\"name\\\":\\\"OLI_B3\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Visible\n        green (Operational Land Imager)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.06},{\\\"name\\\":\\\"OLI_B4\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Visible\n        red (Operational Land Imager)\\\",\\\"center_wavelength\\\":0.65,\\\"full_width_half_max\\\":0.04},{\\\"name\\\":\\\"OLI_B5\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"Near\n        infrared (Operational Land Imager)\\\",\\\"center_wavelength\\\":0.87,\\\"full_width_half_max\\\":0.03},{\\\"name\\\":\\\"OLI_B6\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"Short-wave\n        infrared (Operational Land Imager)\\\",\\\"center_wavelength\\\":1.61,\\\"full_width_half_max\\\":0.09},{\\\"name\\\":\\\"OLI_B7\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"Short-wave\n        infrared (Operational Land Imager)\\\",\\\"center_wavelength\\\":2.2,\\\"full_width_half_max\\\":0.19},{\\\"name\\\":\\\"TIRS_B10\\\",\\\"common_name\\\":\\\"lwir11\\\",\\\"description\\\":\\\"Long-wave\n        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\n        Level-2A\\\",\\\"description\\\":\\\"Global Sentinel-2 data from the Multispectral\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Aerosol optical\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Blue (band 2) -\n        10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Coastal aerosol\n        (band 1) - 60m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"coastal\\\",\\\"common_name\\\":\\\"coastal\\\",\\\"description\\\":\\\"Coastal\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Green (band 3)\n        - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"NIR 1 (band 8)\n        - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"nir\\\",\\\"common_name\\\":\\\"nir\\\",\\\"description\\\":\\\"NIR\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"NIR 2 (band 8A)\n        - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"nir08\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"NIR\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"NIR 3 (band 9)\n        - 60m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"nir09\\\",\\\"common_name\\\":\\\"nir09\\\",\\\"description\\\":\\\"NIR\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Red (band 4) -\n        10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Red edge 1 (band\n        5) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"rededge1\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Red edge 2 (band\n        6) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"rededge2\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Red edge 3 (band\n        7) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"rededge3\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Scene classification\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"SWIR 1 (band 11)\n        - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"swir16\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"SWIR\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"SWIR 2 (band 12)\n        - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"swir22\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"SWIR\n        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\n        image\\\",\\\"roles\\\":[\\\"thumbnail\\\"]},\\\"tileinfo_metadata\\\":{\\\"type\\\":\\\"application/json\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"visual\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"True color image\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (band 4)\\\",\\\"center_wavelength\\\":0.665,\\\"full_width_half_max\\\":0.038},{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (band 3)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.045},{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (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;\n        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\n        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\n        (band 2) - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (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\n        aerosol (band 1) - 60m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"coastal\\\",\\\"common_name\\\":\\\"coastal\\\",\\\"description\\\":\\\"Coastal\n        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\n        (band 3) - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (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\n        1 (band 8) - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"nir\\\",\\\"common_name\\\":\\\"nir\\\",\\\"description\\\":\\\"NIR\n        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\n        2 (band 8A) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"nir08\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"NIR\n        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\n        3 (band 9) - 60m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"nir09\\\",\\\"common_name\\\":\\\"nir09\\\",\\\"description\\\":\\\"NIR\n        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\n        (band 4) - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (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\n        edge 1 (band 5) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"rededge1\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        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\n        edge 2 (band 6) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"rededge2\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        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\n        edge 3 (band 7) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"rededge3\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        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\n        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\n        1 (band 11) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"swir16\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"SWIR\n        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\n        2 (band 12) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"swir22\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"SWIR\n        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\n        color image\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (band 4)\\\",\\\"center_wavelength\\\":0.665,\\\"full_width_half_max\\\":0.038},{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (band 3)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.045},{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (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\n        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\n        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\n        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\n        aerosol (band 1)\\\",\\\"center_wavelength\\\":0.443,\\\"full_width_half_max\\\":0.027},{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (band 2)\\\",\\\"center_wavelength\\\":0.49,\\\"full_width_half_max\\\":0.098},{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (band 3)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.045},{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (band 4)\\\",\\\"center_wavelength\\\":0.665,\\\"full_width_half_max\\\":0.038},{\\\"name\\\":\\\"rededge1\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 1 (band 5)\\\",\\\"center_wavelength\\\":0.704,\\\"full_width_half_max\\\":0.019},{\\\"name\\\":\\\"rededge2\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 2 (band 6)\\\",\\\"center_wavelength\\\":0.74,\\\"full_width_half_max\\\":0.018},{\\\"name\\\":\\\"rededge3\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 3 (band 7)\\\",\\\"center_wavelength\\\":0.783,\\\"full_width_half_max\\\":0.028},{\\\"name\\\":\\\"nir\\\",\\\"common_name\\\":\\\"nir\\\",\\\"description\\\":\\\"NIR\n        1 (band 8)\\\",\\\"center_wavelength\\\":0.842,\\\"full_width_half_max\\\":0.145},{\\\"name\\\":\\\"nir08\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"NIR\n        2 (band 8A)\\\",\\\"center_wavelength\\\":0.865,\\\"full_width_half_max\\\":0.033},{\\\"name\\\":\\\"nir09\\\",\\\"common_name\\\":\\\"nir09\\\",\\\"description\\\":\\\"NIR\n        3 (band 9)\\\",\\\"center_wavelength\\\":0.945,\\\"full_width_half_max\\\":0.026},{\\\"name\\\":\\\"cirrus\\\",\\\"common_name\\\":\\\"cirrus\\\",\\\"description\\\":\\\"Cirrus\n        (band 10)\\\",\\\"center_wavelength\\\":1.3735,\\\"full_width_half_max\\\":0.075},{\\\"name\\\":\\\"swir16\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"SWIR\n        1 (band 11)\\\",\\\"center_wavelength\\\":1.61,\\\"full_width_half_max\\\":0.143},{\\\"name\\\":\\\"swir22\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"SWIR\n        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\n        Level-1C\\\",\\\"description\\\":\\\"Global Sentinel-2 data from the Multispectral\n        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\n        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\n        (band 2) - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (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\n        (band 10) - 60m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"cirrus\\\",\\\"common_name\\\":\\\"cirrus\\\",\\\"description\\\":\\\"Cirrus\n        (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\n        aerosol (band 1) - 60m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"coastal\\\",\\\"common_name\\\":\\\"coastal\\\",\\\"description\\\":\\\"Coastal\n        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\n        (band 3) - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (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\n        1 (band 8) - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"nir\\\",\\\"common_name\\\":\\\"nir\\\",\\\"description\\\":\\\"NIR\n        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\n        2 (band 8A) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"nir08\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"NIR\n        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\n        3 (band 9) - 60m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"nir09\\\",\\\"common_name\\\":\\\"nir09\\\",\\\"description\\\":\\\"NIR\n        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\n        (band 4) - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (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\n        edge 1 (band 5) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"rededge1\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        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\n        edge 2 (band 6) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"rededge2\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        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\n        edge 3 (band 7) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"rededge3\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        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\n        1 (band 11) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"swir16\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"SWIR\n        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\n        2 (band 12) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"swir22\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"SWIR\n        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\n        image\\\",\\\"roles\\\":[\\\"thumbnail\\\"]},\\\"tileinfo_metadata\\\":{\\\"type\\\":\\\"application/json\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"visual\\\":{\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"True\n        color image\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (band 4)\\\",\\\"center_wavelength\\\":0.665,\\\"full_width_half_max\\\":0.038},{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (band 3)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.045},{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (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\n        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\n        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\n        aerosol (band 1)\\\",\\\"center_wavelength\\\":0.443,\\\"full_width_half_max\\\":0.027},{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (band 2)\\\",\\\"center_wavelength\\\":0.49,\\\"full_width_half_max\\\":0.098},{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (band 3)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.045},{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (band 4)\\\",\\\"center_wavelength\\\":0.665,\\\"full_width_half_max\\\":0.038},{\\\"name\\\":\\\"rededge1\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 1 (band 5)\\\",\\\"center_wavelength\\\":0.704,\\\"full_width_half_max\\\":0.019},{\\\"name\\\":\\\"rededge2\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 2 (band 6)\\\",\\\"center_wavelength\\\":0.74,\\\"full_width_half_max\\\":0.018},{\\\"name\\\":\\\"rededge3\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 3 (band 7)\\\",\\\"center_wavelength\\\":0.783,\\\"full_width_half_max\\\":0.028},{\\\"name\\\":\\\"nir\\\",\\\"common_name\\\":\\\"nir\\\",\\\"description\\\":\\\"NIR\n        1 (band 8)\\\",\\\"center_wavelength\\\":0.842,\\\"full_width_half_max\\\":0.145},{\\\"name\\\":\\\"nir08\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"NIR\n        2 (band 8A)\\\",\\\"center_wavelength\\\":0.865,\\\"full_width_half_max\\\":0.033},{\\\"name\\\":\\\"nir09\\\",\\\"common_name\\\":\\\"nir09\\\",\\\"description\\\":\\\"NIR\n        3 (band 9)\\\",\\\"center_wavelength\\\":0.945,\\\"full_width_half_max\\\":0.026},{\\\"name\\\":\\\"cirrus\\\",\\\"common_name\\\":\\\"cirrus\\\",\\\"description\\\":\\\"Cirrus\n        (band 10)\\\",\\\"center_wavelength\\\":1.3735,\\\"full_width_half_max\\\":0.075},{\\\"name\\\":\\\"swir16\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"SWIR\n        1 (band 11)\\\",\\\"center_wavelength\\\":1.61,\\\"full_width_half_max\\\":0.143},{\\\"name\\\":\\\"swir22\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"SWIR\n        2 (band 12)\\\",\\\"center_wavelength\\\":2.19,\\\"full_width_half_max\\\":0.242}]}},{\\\"type\\\":\\\"Collection\\\",\\\"id\\\":\\\"sentinel-2-c1-l2a\\\",\\\"title\\\":\\\"Sentinel-2\n        Collection 1 Level-2A\\\",\\\"description\\\":\\\"Sentinel-2 Collection 1 Level-2A,\n        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\n        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;\n        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;\n        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;\n        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;\n        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;\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"SWIR 2.2\\u03BCm\n        - 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;\n        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;\n        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;\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"SWIR 1.6\\u03BCm\n        - 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;\n        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;\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Scene classification\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Aerosol optical\n        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;\n        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;\n        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;\n        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;\n        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;\n        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\n        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\n        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\n        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\n        aerosol (band 1)\\\",\\\"center_wavelength\\\":0.443,\\\"full_width_half_max\\\":0.027},{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (band 2)\\\",\\\"center_wavelength\\\":0.49,\\\"full_width_half_max\\\":0.098},{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (band 3)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.045},{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (band 4)\\\",\\\"center_wavelength\\\":0.665,\\\"full_width_half_max\\\":0.038},{\\\"name\\\":\\\"rededge1\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 1 (band 5)\\\",\\\"center_wavelength\\\":0.704,\\\"full_width_half_max\\\":0.019},{\\\"name\\\":\\\"rededge2\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 2 (band 6)\\\",\\\"center_wavelength\\\":0.74,\\\"full_width_half_max\\\":0.018},{\\\"name\\\":\\\"rededge3\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 3 (band 7)\\\",\\\"center_wavelength\\\":0.783,\\\"full_width_half_max\\\":0.028},{\\\"name\\\":\\\"nir\\\",\\\"common_name\\\":\\\"nir\\\",\\\"description\\\":\\\"NIR\n        1 (band 8)\\\",\\\"center_wavelength\\\":0.842,\\\"full_width_half_max\\\":0.145},{\\\"name\\\":\\\"nir08\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"NIR\n        2 (band 8A)\\\",\\\"center_wavelength\\\":0.865,\\\"full_width_half_max\\\":0.033},{\\\"name\\\":\\\"nir09\\\",\\\"common_name\\\":\\\"nir09\\\",\\\"description\\\":\\\"NIR\n        3 (band 9)\\\",\\\"center_wavelength\\\":0.945,\\\"full_width_half_max\\\":0.026},{\\\"name\\\":\\\"cirrus\\\",\\\"common_name\\\":\\\"cirrus\\\",\\\"description\\\":\\\"Cirrus\n        (band 10)\\\",\\\"center_wavelength\\\":1.3735,\\\"full_width_half_max\\\":0.075},{\\\"name\\\":\\\"swir16\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"SWIR\n        1 (band 11)\\\",\\\"center_wavelength\\\":1.61,\\\"full_width_half_max\\\":0.143},{\\\"name\\\":\\\"swir22\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"SWIR\n        2 (band 12)\\\",\\\"center_wavelength\\\":2.19,\\\"full_width_half_max\\\":0.242}]}},{\\\"id\\\":\\\"sentinel-1-grd\\\",\\\"type\\\":\\\"Collection\\\",\\\"title\\\":\\\"Sentinel-1\n        Level-1C Ground Range Detected (GRD)\\\",\\\"description\\\":\\\"Sentinel-1 is a pair\n        of Synthetic Aperture Radar (SAR) imaging satellites launched in 2014 and\n        2016 by the European Space Agency (ESA). Their 6 day revisit cycle and ability\n        to observe through clouds makes this dataset perfect for sea and land monitoring,\n        emergency response due to environmental disasters, and economic applications.\n        This dataset represents the global Sentinel-1 GRD archive, from beginning\n        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\n        Ground Range Detected (GRD) Technical Guide\\\"},{\\\"rel\\\":\\\"license\\\",\\\"href\\\":\\\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\\\",\\\"title\\\":\\\"Copernicus\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"HH\n        Data\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\"}]},\\\"hv\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"HV\n        Data\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\"}]},\\\"vh\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"VH\n        Data\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\"}]},\\\"vv\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"VV\n        Data\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\"}]},\\\"thumbnail\\\":{\\\"type\\\":\\\"image/png\\\",\\\"roles\\\":[\\\"thumbnail\\\"],\\\"title\\\":\\\"Thumbnail\n        Image\\\"},\\\"safe-manifest\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"SAFE\n        Manifest File\\\"},\\\"schema-noise-hh\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"HH\n        Noise Schema\\\"},\\\"schema-noise-hv\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"HV\n        Noise Schema\\\"},\\\"schema-noise-vh\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"VH\n        Noise Schema\\\"},\\\"schema-noise-vv\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"VV\n        Noise Schema\\\"},\\\"schema-product-hh\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"HH\n        Product Schema\\\"},\\\"schema-product-hv\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"HV\n        Product Schema\\\"},\\\"schema-product-vh\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"VH\n        Product Schema\\\"},\\\"schema-product-vv\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"VV\n        Product Schema\\\"},\\\"schema-calibration-hh\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"HH\n        Calibration Schema\\\"},\\\"schema-calibration-hv\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"HV\n        Calibration Schema\\\"},\\\"schema-calibration-vh\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"VH\n        Calibration Schema\\\"},\\\"schema-calibration-vv\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"VV\n        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}}\"\n    headers:\n      Connection:\n      - keep-alive\n      Content-Encoding:\n      - gzip\n      Content-Length:\n      - '8117'\n      Content-Type:\n      - application/json; charset=utf-8\n      Date:\n      - Thu, 31 Jul 2025 15:07:08 GMT\n      Via:\n      - 1.1 0fdea8d3b1fc76e3ff9d36e8164171e8.cloudfront.net (CloudFront)\n      X-Amz-Cf-Id:\n      - bvZ4Fo2g6FWZ3JjAxGYGJIWYA7GWvzygA1bxHRw_L6ZDjpJ17olYGw==\n      X-Amz-Cf-Pop:\n      - DEN52-C1\n      X-Amzn-Trace-Id:\n      - Root=1-688b869c-79f62202312326785ee25ac3;Parent=275f8d78c309c3d8;Sampled=0;Lineage=1:9e2884e9:0\n      X-Cache:\n      - Miss from cloudfront\n      access-control-allow-origin:\n      - '*'\n      etag:\n      - W/\"141dd-9fMv6YJnvxPn9adSQK466CnIbE0\"\n      x-amz-apigw-id:\n      - OlH4gFXUvHcEMsg=\n      x-amzn-Remapped-content-length:\n      - '82397'\n      x-amzn-RequestId:\n      - 4cc3be6e-a87b-4e38-b50e-e84d51d60f7f\n      x-powered-by:\n      - Express\n    status:\n      code: 200\n      message: OK\nversion: 1\n"
  },
  {
    "path": "tests/cassettes/test_cli/TestCLISearch.test_altering_conforms_to[inprocess---clear-conforms-to].yaml",
    "content": "interactions:\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://earth-search.aws.element84.com/v1\n  response:\n    body:\n      string: '{\"stac_version\":\"1.0.0\",\"type\":\"Catalog\",\"id\":\"earth-search-aws\",\"title\":\"Earth\n        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\"]}'\n    headers:\n      Connection:\n      - keep-alive\n      Content-Encoding:\n      - gzip\n      Content-Length:\n      - '612'\n      Content-Type:\n      - application/json; charset=utf-8\n      Date:\n      - Thu, 31 Jul 2025 15:07:04 GMT\n      Via:\n      - 1.1 9bed99ac619d23b077acdc859dc1c43c.cloudfront.net (CloudFront)\n      X-Amz-Cf-Id:\n      - BYQi989FmvI6YNzZ916EtVn_4qoMiKjs9rcT_SlUWYIbntzfUpovyg==\n      X-Amz-Cf-Pop:\n      - DEN52-C1\n      X-Amzn-Trace-Id:\n      - Root=1-688b8698-66e85f65591a3d040b757d0c;Parent=37d7e568f82d6c93;Sampled=0;Lineage=1:9e2884e9:0\n      X-Cache:\n      - Miss from cloudfront\n      access-control-allow-origin:\n      - '*'\n      etag:\n      - W/\"d29-QPs+H0wJLUX32EZKNgzG3k6wfQ8\"\n      x-amz-apigw-id:\n      - OlH39F1WvHcEsVA=\n      x-amzn-Remapped-content-length:\n      - '3369'\n      x-amzn-RequestId:\n      - 53e571e9-f310-424a-bc34-2779d1606d43\n      x-powered-by:\n      - Express\n    status:\n      code: 200\n      message: OK\nversion: 1\n"
  },
  {
    "path": "tests/cassettes/test_cli/TestCLISearch.test_altering_conforms_to[inprocess---remove-conforms-to=ITEM_SEARCH].yaml",
    "content": "interactions:\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://earth-search.aws.element84.com/v1\n  response:\n    body:\n      string: '{\"stac_version\":\"1.0.0\",\"type\":\"Catalog\",\"id\":\"earth-search-aws\",\"title\":\"Earth\n        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\"]}'\n    headers:\n      Connection:\n      - keep-alive\n      Content-Encoding:\n      - gzip\n      Content-Length:\n      - '612'\n      Content-Type:\n      - application/json; charset=utf-8\n      Date:\n      - Thu, 31 Jul 2025 15:07:05 GMT\n      Via:\n      - 1.1 ea02982ea8ec84214c2e0d4d803fb0f4.cloudfront.net (CloudFront)\n      X-Amz-Cf-Id:\n      - 8htqfzwtNe8J_pSPuL7iggpiC2EULwLi6D9rnPWgBA_oTbfUJKTjFg==\n      X-Amz-Cf-Pop:\n      - DEN52-C1\n      X-Amzn-Trace-Id:\n      - Root=1-688b8699-1e6d1e7207c99ce977e53a99;Parent=73ee2a1c3fe4d868;Sampled=0;Lineage=1:9e2884e9:0\n      X-Cache:\n      - Miss from cloudfront\n      access-control-allow-origin:\n      - '*'\n      etag:\n      - W/\"d29-QPs+H0wJLUX32EZKNgzG3k6wfQ8\"\n      x-amz-apigw-id:\n      - OlH3_EEKPHcEAag=\n      x-amzn-Remapped-content-length:\n      - '3369'\n      x-amzn-RequestId:\n      - 6be180c7-3227-4481-9969-b4116ef2d023\n      x-powered-by:\n      - Express\n    status:\n      code: 200\n      message: OK\nversion: 1\n"
  },
  {
    "path": "tests/cassettes/test_cli/TestCLISearch.test_fields[inprocess].yaml",
    "content": "interactions:\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://earth-search.aws.element84.com/v1\n  response:\n    body:\n      string: '{\"stac_version\":\"1.0.0\",\"type\":\"Catalog\",\"id\":\"earth-search-aws\",\"title\":\"Earth\n        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\"]}'\n    headers:\n      Connection:\n      - keep-alive\n      Content-Encoding:\n      - gzip\n      Content-Length:\n      - '612'\n      Content-Type:\n      - application/json; charset=utf-8\n      Date:\n      - Thu, 31 Jul 2025 15:07:07 GMT\n      Via:\n      - 1.1 e466a87164c3f9591e3c8ac45a4b2074.cloudfront.net (CloudFront)\n      X-Amz-Cf-Id:\n      - qUnjqGyOrLVc0GzrdpJvq2JbjdTa6ojtcClax-Wnp5QUfO1Hz0Bpcw==\n      X-Amz-Cf-Pop:\n      - DEN52-C1\n      X-Amzn-Trace-Id:\n      - Root=1-688b869b-4651b9114c3631df68357feb;Parent=09adec1aad48ff54;Sampled=0;Lineage=1:9e2884e9:0\n      X-Cache:\n      - Miss from cloudfront\n      access-control-allow-origin:\n      - '*'\n      etag:\n      - W/\"d29-QPs+H0wJLUX32EZKNgzG3k6wfQ8\"\n      x-amz-apigw-id:\n      - OlH4TGDRPHcEOrQ=\n      x-amzn-Remapped-content-length:\n      - '3369'\n      x-amzn-RequestId:\n      - 8c9dfa63-5d4e-45e4-bbdc-6e97bdfa46ce\n      x-powered-by:\n      - Express\n    status:\n      code: 200\n      message: OK\n- request:\n    body: '{\"collections\": [\"cop-dem-glo-30\"], \"fields\": {\"include\": [], \"exclude\":\n      [\"geometry\", \"assets\"]}}'\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '97'\n      Content-Type:\n      - application/json\n      User-Agent:\n      - python-requests/2.32.4\n    method: POST\n    uri: https://earth-search.aws.element84.com/v1/search\n  response:\n    body:\n      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\n        includes data usage information\",\"href\":\"https://object.cloud.sdsc.edu/v1/AUTH_opentopography/www/metadata/Copernicus_metadata.pdf\",\"type\":\"application/pdf\",\"title\":\"Copernicus\n        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\n        includes data usage information\",\"href\":\"https://object.cloud.sdsc.edu/v1/AUTH_opentopography/www/metadata/Copernicus_metadata.pdf\",\"type\":\"application/pdf\",\"title\":\"Copernicus\n        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\n        includes data usage information\",\"href\":\"https://object.cloud.sdsc.edu/v1/AUTH_opentopography/www/metadata/Copernicus_metadata.pdf\",\"type\":\"application/pdf\",\"title\":\"Copernicus\n        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\n        includes data usage information\",\"href\":\"https://object.cloud.sdsc.edu/v1/AUTH_opentopography/www/metadata/Copernicus_metadata.pdf\",\"type\":\"application/pdf\",\"title\":\"Copernicus\n        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\n        includes data usage information\",\"href\":\"https://object.cloud.sdsc.edu/v1/AUTH_opentopography/www/metadata/Copernicus_metadata.pdf\",\"type\":\"application/pdf\",\"title\":\"Copernicus\n        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\n        includes data usage information\",\"href\":\"https://object.cloud.sdsc.edu/v1/AUTH_opentopography/www/metadata/Copernicus_metadata.pdf\",\"type\":\"application/pdf\",\"title\":\"Copernicus\n        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\n        includes data usage information\",\"href\":\"https://object.cloud.sdsc.edu/v1/AUTH_opentopography/www/metadata/Copernicus_metadata.pdf\",\"type\":\"application/pdf\",\"title\":\"Copernicus\n        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\n        includes data usage information\",\"href\":\"https://object.cloud.sdsc.edu/v1/AUTH_opentopography/www/metadata/Copernicus_metadata.pdf\",\"type\":\"application/pdf\",\"title\":\"Copernicus\n        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\n        includes data usage information\",\"href\":\"https://object.cloud.sdsc.edu/v1/AUTH_opentopography/www/metadata/Copernicus_metadata.pdf\",\"type\":\"application/pdf\",\"title\":\"Copernicus\n        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\n        includes data usage information\",\"href\":\"https://object.cloud.sdsc.edu/v1/AUTH_opentopography/www/metadata/Copernicus_metadata.pdf\",\"type\":\"application/pdf\",\"title\":\"Copernicus\n        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\n        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\"}]}'\n    headers:\n      Connection:\n      - keep-alive\n      Content-Encoding:\n      - gzip\n      Content-Length:\n      - '946'\n      Content-Type:\n      - application/geo+json; charset=utf-8\n      Date:\n      - Thu, 31 Jul 2025 15:07:07 GMT\n      Via:\n      - 1.1 584febef1233840787d98d1cd03f82c0.cloudfront.net (CloudFront)\n      X-Amz-Cf-Id:\n      - dkJGFAMTbKzQcdytKMch8DSVIt0hnVVN54LYY8S-9T_oM_snFwJAjg==\n      X-Amz-Cf-Pop:\n      - DEN52-C1\n      X-Amzn-Trace-Id:\n      - Root=1-688b869b-7615abba0688167d354d6cd6;Parent=2a309e1881cfbb7c;Sampled=0;Lineage=1:9e2884e9:0\n      X-Cache:\n      - Miss from cloudfront\n      access-control-allow-origin:\n      - '*'\n      etag:\n      - W/\"36d6-Yp3Ss1A+rOL1FLrKfyikyPdbank\"\n      x-amz-apigw-id:\n      - OlH4UFTQPHcEb9w=\n      x-amzn-Remapped-content-length:\n      - '14038'\n      x-amzn-RequestId:\n      - bfd8091c-728b-4437-980e-b794c4e6930e\n      x-powered-by:\n      - Express\n    status:\n      code: 200\n      message: OK\nversion: 1\n"
  },
  {
    "path": "tests/cassettes/test_cli/TestCLISearch.test_filter[inprocess].yaml",
    "content": "interactions:\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://earth-search.aws.element84.com/v1\n  response:\n    body:\n      string: '{\"stac_version\":\"1.0.0\",\"type\":\"Catalog\",\"id\":\"earth-search-aws\",\"title\":\"Earth\n        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\"]}'\n    headers:\n      Connection:\n      - keep-alive\n      Content-Encoding:\n      - gzip\n      Content-Length:\n      - '612'\n      Content-Type:\n      - application/json; charset=utf-8\n      Date:\n      - Thu, 31 Jul 2025 15:06:46 GMT\n      Via:\n      - 1.1 39c272e966ab7a6f8a68d2222276a954.cloudfront.net (CloudFront)\n      X-Amz-Cf-Id:\n      - e1vpanAsYM4s14114CohW42UtRCujeCVSP0HG7t6ZzoUAqYVHYcSlw==\n      X-Amz-Cf-Pop:\n      - DEN52-C1\n      X-Amzn-Trace-Id:\n      - Root=1-688b8686-545effdb1025ec4c73d6ec24;Parent=423e20c9ccdbb68a;Sampled=0;Lineage=1:9e2884e9:0\n      X-Cache:\n      - Miss from cloudfront\n      access-control-allow-origin:\n      - '*'\n      etag:\n      - W/\"d29-QPs+H0wJLUX32EZKNgzG3k6wfQ8\"\n      x-amz-apigw-id:\n      - OlH1JFakvHcEBWg=\n      x-amzn-Remapped-content-length:\n      - '3369'\n      x-amzn-RequestId:\n      - 8f4b2043-640e-4cb1-9ebb-b0347e6e61ff\n      x-powered-by:\n      - Express\n    status:\n      code: 200\n      message: OK\n- request:\n    body: '{\"filter\": {\"op\": \"lte\", \"args\": [{\"property\": \"eo:cloud_cover\"}, 40]},\n      \"filter-lang\": \"cql2-json\"}'\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '99'\n      Content-Type:\n      - application/json\n      User-Agent:\n      - python-requests/2.32.4\n    method: POST\n    uri: https://earth-search.aws.element84.com/v1/search\n  response:\n    body:\n      string: \"{\\\"type\\\":\\\"FeatureCollection\\\",\\\"stac_version\\\":\\\"1.0.0\\\",\\\"stac_extensions\\\":[],\\\"context\\\":{\\\"limit\\\":10,\\\"matched\\\":115912757,\\\"returned\\\":10},\\\"numberMatched\\\":115912757,\\\"numberReturned\\\":10,\\\"features\\\":[{\\\"type\\\":\\\"Feature\\\",\\\"stac_version\\\":\\\"1.0.0\\\",\\\"id\\\":\\\"S1A_IW_GRDH_1SSH_20250731T135702_20250731T135722_060328_077F7E\\\",\\\"properties\\\":{\\\"sar:frequency_band\\\":\\\"C\\\",\\\"sar:center_frequency\\\":5.405,\\\"sar:observation_direction\\\":\\\"right\\\",\\\"sar:instrument_mode\\\":\\\"IW\\\",\\\"sar:polarizations\\\":[\\\"HH\\\"],\\\"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\\\":\\\"ascending\\\",\\\"sat:absolute_orbit\\\":60328,\\\"sat:relative_orbit\\\":56,\\\"proj:epsg\\\":4326,\\\"proj:bbox\\\":[74.161316,-46.84568,77.810532,-44.941399],\\\"proj:shape\\\":[25348,13438],\\\"proj:transform\\\":[0.0002715594582527158,0,74.161316,0,-0.00007512549313555328,-44.941399],\\\"proj:centroid\\\":{\\\"lat\\\":-45.89185,\\\"lon\\\":75.97244},\\\"platform\\\":\\\"sentinel-1a\\\",\\\"constellation\\\":\\\"sentinel-1\\\",\\\"start_datetime\\\":\\\"2025-07-31T13:57:02.256207Z\\\",\\\"end_datetime\\\":\\\"2025-07-31T13:57:22.145414Z\\\",\\\"s1:instrument_configuration_ID\\\":\\\"7\\\",\\\"s1:datatake_id\\\":\\\"491390\\\",\\\"s1:product_timeliness\\\":\\\"NRT-3h\\\",\\\"s1:processing_level\\\":\\\"1\\\",\\\"s1:resolution\\\":\\\"high\\\",\\\"s1:orbit_source\\\":\\\"PREORB\\\",\\\"s1:slice_number\\\":\\\"3\\\",\\\"s1:total_slices\\\":\\\"3\\\",\\\"s1:shape\\\":[25348,13438],\\\"s1:product_identifier\\\":\\\"S1A_IW_GRDH_1SSH_20250731T135702_20250731T135722_060328_077F7E_0C44\\\",\\\"s1:processing_datetime\\\":\\\"2025-07-31T14:45:26.000000Z\\\",\\\"storage:platform\\\":\\\"AWS\\\",\\\"storage:region\\\":\\\"eu-central-1\\\",\\\"storage:requester_pays\\\":true,\\\"datetime\\\":\\\"2025-07-31T13:57:12.200811Z\\\",\\\"processing:software\\\":{\\\"sentinel1-to-stac\\\":\\\"2025.05.13\\\"},\\\"created\\\":\\\"2025-07-31T15:04:13.811Z\\\",\\\"updated\\\":\\\"2025-07-31T15:04:13.811Z\\\"},\\\"geometry\\\":{\\\"type\\\":\\\"Polygon\\\",\\\"coordinates\\\":[[[77.1871481,-44.9521926],[76.2429989,-45.1903246],[76.2716629,-45.2520625],[75.2119756,-45.5073929],[75.2384347,-45.563839],[74.2153491,-45.7988841],[74.5835717,-46.6076509],[74.5941554,-46.6080919],[74.7030787,-46.843137],[76.2416759,-46.485939],[77.786447,-46.100518],[77.1871481,-44.9521926]]]},\\\"links\\\":[{\\\"rel\\\":\\\"self\\\",\\\"type\\\":\\\"application/geo+json\\\",\\\"href\\\":\\\"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd/items/S1A_IW_GRDH_1SSH_20250731T135702_20250731T135722_060328_077F7E\\\"},{\\\"rel\\\":\\\"canonical\\\",\\\"href\\\":\\\"s3://earthsearch-data/sentinel-1-grd/2025/7/31/IW/S1A_IW_GRDH_1SSH_20250731T135702_20250731T135722_060328_077F7E/S1A_IW_GRDH_1SSH_20250731T135702_20250731T135722_060328_077F7E.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_1SSH_20250731T135702_20250731T135722_060328_077F7E/thumbnail\\\"}],\\\"assets\\\":{\\\"safe-manifest\\\":{\\\"href\\\":\\\"s3://sentinel-s1-l1c/GRD/2025/7/31/IW/SH/S1A_IW_GRDH_1SSH_20250731T135702_20250731T135722_060328_077F7E_0C44/manifest.safe\\\",\\\"type\\\":\\\"application/xml\\\",\\\"title\\\":\\\"Manifest\n        File\\\",\\\"description\\\":\\\"General product metadata in XML format. Contains\n        a high-level textual description of the product and references to all of product's\n        components, the product metadata, including the product identification and\n        the resource references, and references to the physical location of each component\n        file contained in the product.\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"schema-product-hh\\\":{\\\"href\\\":\\\"s3://sentinel-s1-l1c/GRD/2025/7/31/IW/SH/S1A_IW_GRDH_1SSH_20250731T135702_20250731T135722_060328_077F7E_0C44/annotation/rfi/rfi-iw-hh.xml\\\",\\\"type\\\":\\\"application/xml\\\",\\\"title\\\":\\\"HH\n        Product Schema\\\",\\\"description\\\":\\\"Describes the main characteristics corresponding\n        to the band: state of the platform during acquisition, image properties, Doppler\n        information, geographic location, etc.\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"schema-calibration-hh\\\":{\\\"href\\\":\\\"s3://sentinel-s1-l1c/GRD/2025/7/31/IW/SH/S1A_IW_GRDH_1SSH_20250731T135702_20250731T135722_060328_077F7E_0C44/annotation/calibration/calibration-iw-hh.xml\\\",\\\"type\\\":\\\"application/xml\\\",\\\"title\\\":\\\"HH\n        Calibration Schema\\\",\\\"description\\\":\\\"Calibration metadata including calibration\n        information and the beta nought, sigma nought, gamma and digital number look-up\n        tables that can be used for absolute product calibration.\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"schema-noise-hh\\\":{\\\"href\\\":\\\"s3://sentinel-s1-l1c/GRD/2025/7/31/IW/SH/S1A_IW_GRDH_1SSH_20250731T135702_20250731T135722_060328_077F7E_0C44/annotation/calibration/noise-iw-hh.xml\\\",\\\"type\\\":\\\"application/xml\\\",\\\"title\\\":\\\"HH\n        Noise Schema\\\",\\\"description\\\":\\\"Estimated thermal noise look-up tables\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"thumbnail\\\":{\\\"href\\\":\\\"s3://sentinel-s1-l1c/GRD/2025/7/31/IW/SH/S1A_IW_GRDH_1SSH_20250731T135702_20250731T135722_060328_077F7E_0C44/preview/quick-look.png\\\",\\\"type\\\":\\\"image/png\\\",\\\"title\\\":\\\"Preview\n        Image\\\",\\\"description\\\":\\\"An averaged, decimated preview image in PNG format.\n        Single polarization products are represented with a grey scale image. Dual\n        polarization products are represented by a single composite colour image in\n        RGB with the red channel (R) representing the  co-polarization VV or HH),\n        the green channel (G) represents the cross-polarization (VH or HV) and the\n        blue channel (B) represents the ratio of the cross an co-polarizations.\\\",\\\"roles\\\":[\\\"thumbnail\\\"]},\\\"hh\\\":{\\\"href\\\":\\\"s3://sentinel-s1-l1c/GRD/2025/7/31/IW/SH/S1A_IW_GRDH_1SSH_20250731T135702_20250731T135722_060328_077F7E_0C44/measurement/iw-hh.tiff\\\",\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"HH Data\\\",\\\"description\\\":\\\"Actual\n        SAR data that have been processed into an image\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\"}],\\\"roles\\\":[\\\"data\\\"]}},\\\"bbox\\\":[74.2153491,-46.843137,77.786447,-44.9521926],\\\"stac_extensions\\\":[\\\"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/sat/v1.0.0/schema.json\\\",\\\"https://stac-extensions.github.io/processing/v1.1.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\\\"],\\\"collection\\\":\\\"sentinel-1-grd\\\"},{\\\"type\\\":\\\"Feature\\\",\\\"stac_version\\\":\\\"1.0.0\\\",\\\"id\\\":\\\"S1A_IW_GRDH_1SSH_20250731T135637_20250731T135702_060328_077F7E\\\",\\\"properties\\\":{\\\"sar:frequency_band\\\":\\\"C\\\",\\\"sar:center_frequency\\\":5.405,\\\"sar:observation_direction\\\":\\\"right\\\",\\\"sar:instrument_mode\\\":\\\"IW\\\",\\\"sar:polarizations\\\":[\\\"HH\\\"],\\\"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\\\":\\\"ascending\\\",\\\"sat:absolute_orbit\\\":60328,\\\"sat:relative_orbit\\\":56,\\\"proj:epsg\\\":4326,\\\"proj:bbox\\\":[74.694458,-48.308609,78.590752,-46.093655],\\\"proj:shape\\\":[25367,16890],\\\"proj:transform\\\":[0.00023068644168146817,0,74.694458,0,-0.00008731635589545467,-46.093655],\\\"proj:centroid\\\":{\\\"lat\\\":-47.19939,\\\"lon\\\":76.62495},\\\"platform\\\":\\\"sentinel-1a\\\",\\\"constellation\\\":\\\"sentinel-1\\\",\\\"start_datetime\\\":\\\"2025-07-31T13:56:37.255932Z\\\",\\\"end_datetime\\\":\\\"2025-07-31T13:57:02.254727Z\\\",\\\"s1:instrument_configuration_ID\\\":\\\"7\\\",\\\"s1:datatake_id\\\":\\\"491390\\\",\\\"s1:product_timeliness\\\":\\\"NRT-3h\\\",\\\"s1:processing_level\\\":\\\"1\\\",\\\"s1:resolution\\\":\\\"high\\\",\\\"s1:orbit_source\\\":\\\"PREORB\\\",\\\"s1:slice_number\\\":\\\"2\\\",\\\"s1:total_slices\\\":\\\"3\\\",\\\"s1:shape\\\":[25367,16890],\\\"s1:product_identifier\\\":\\\"S1A_IW_GRDH_1SSH_20250731T135637_20250731T135702_060328_077F7E_35B5\\\",\\\"s1:processing_datetime\\\":\\\"2025-07-31T14:46:37.000000Z\\\",\\\"storage:platform\\\":\\\"AWS\\\",\\\"storage:region\\\":\\\"eu-central-1\\\",\\\"storage:requester_pays\\\":true,\\\"datetime\\\":\\\"2025-07-31T13:56:49.755330Z\\\",\\\"processing:software\\\":{\\\"sentinel1-to-stac\\\":\\\"2025.05.13\\\"},\\\"created\\\":\\\"2025-07-31T15:04:50.095Z\\\",\\\"updated\\\":\\\"2025-07-31T15:04:50.095Z\\\"},\\\"geometry\\\":{\\\"type\\\":\\\"Polygon\\\",\\\"coordinates\\\":[[[77.7855391,-46.1002868],[76.2336425,-46.4879383],[74.7041187,-46.8433213],[75.2363328,-47.9623906],[75.2845203,-48.0609169],[75.2952765,-48.0587657],[75.415315,-48.3040058],[76.973235,-47.9421691],[78.5746099,-47.5420405],[78.3194741,-47.0915731],[77.7855391,-46.1002868]]]},\\\"links\\\":[{\\\"rel\\\":\\\"self\\\",\\\"type\\\":\\\"application/geo+json\\\",\\\"href\\\":\\\"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd/items/S1A_IW_GRDH_1SSH_20250731T135637_20250731T135702_060328_077F7E\\\"},{\\\"rel\\\":\\\"canonical\\\",\\\"href\\\":\\\"s3://earthsearch-data/sentinel-1-grd/2025/7/31/IW/S1A_IW_GRDH_1SSH_20250731T135637_20250731T135702_060328_077F7E/S1A_IW_GRDH_1SSH_20250731T135637_20250731T135702_060328_077F7E.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_1SSH_20250731T135637_20250731T135702_060328_077F7E/thumbnail\\\"}],\\\"assets\\\":{\\\"safe-manifest\\\":{\\\"href\\\":\\\"s3://sentinel-s1-l1c/GRD/2025/7/31/IW/SH/S1A_IW_GRDH_1SSH_20250731T135637_20250731T135702_060328_077F7E_35B5/manifest.safe\\\",\\\"type\\\":\\\"application/xml\\\",\\\"title\\\":\\\"Manifest\n        File\\\",\\\"description\\\":\\\"General product metadata in XML format. Contains\n        a high-level textual description of the product and references to all of product's\n        components, the product metadata, including the product identification and\n        the resource references, and references to the physical location of each component\n        file contained in the product.\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"schema-product-hh\\\":{\\\"href\\\":\\\"s3://sentinel-s1-l1c/GRD/2025/7/31/IW/SH/S1A_IW_GRDH_1SSH_20250731T135637_20250731T135702_060328_077F7E_35B5/annotation/rfi/rfi-iw-hh.xml\\\",\\\"type\\\":\\\"application/xml\\\",\\\"title\\\":\\\"HH\n        Product Schema\\\",\\\"description\\\":\\\"Describes the main characteristics corresponding\n        to the band: state of the platform during acquisition, image properties, Doppler\n        information, geographic location, etc.\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"schema-calibration-hh\\\":{\\\"href\\\":\\\"s3://sentinel-s1-l1c/GRD/2025/7/31/IW/SH/S1A_IW_GRDH_1SSH_20250731T135637_20250731T135702_060328_077F7E_35B5/annotation/calibration/calibration-iw-hh.xml\\\",\\\"type\\\":\\\"application/xml\\\",\\\"title\\\":\\\"HH\n        Calibration Schema\\\",\\\"description\\\":\\\"Calibration metadata including calibration\n        information and the beta nought, sigma nought, gamma and digital number look-up\n        tables that can be used for absolute product calibration.\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"schema-noise-hh\\\":{\\\"href\\\":\\\"s3://sentinel-s1-l1c/GRD/2025/7/31/IW/SH/S1A_IW_GRDH_1SSH_20250731T135637_20250731T135702_060328_077F7E_35B5/annotation/calibration/noise-iw-hh.xml\\\",\\\"type\\\":\\\"application/xml\\\",\\\"title\\\":\\\"HH\n        Noise Schema\\\",\\\"description\\\":\\\"Estimated thermal noise look-up tables\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"thumbnail\\\":{\\\"href\\\":\\\"s3://sentinel-s1-l1c/GRD/2025/7/31/IW/SH/S1A_IW_GRDH_1SSH_20250731T135637_20250731T135702_060328_077F7E_35B5/preview/quick-look.png\\\",\\\"type\\\":\\\"image/png\\\",\\\"title\\\":\\\"Preview\n        Image\\\",\\\"description\\\":\\\"An averaged, decimated preview image in PNG format.\n        Single polarization products are represented with a grey scale image. Dual\n        polarization products are represented by a single composite colour image in\n        RGB with the red channel (R) representing the  co-polarization VV or HH),\n        the green channel (G) represents the cross-polarization (VH or HV) and the\n        blue channel (B) represents the ratio of the cross an co-polarizations.\\\",\\\"roles\\\":[\\\"thumbnail\\\"]},\\\"hh\\\":{\\\"href\\\":\\\"s3://sentinel-s1-l1c/GRD/2025/7/31/IW/SH/S1A_IW_GRDH_1SSH_20250731T135637_20250731T135702_060328_077F7E_35B5/measurement/iw-hh.tiff\\\",\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"HH Data\\\",\\\"description\\\":\\\"Actual\n        SAR data that have been processed into an image\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\"}],\\\"roles\\\":[\\\"data\\\"]}},\\\"bbox\\\":[74.7041187,-48.3040058,78.5746099,-46.1002868],\\\"stac_extensions\\\":[\\\"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/sat/v1.0.0/schema.json\\\",\\\"https://stac-extensions.github.io/processing/v1.1.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\\\"],\\\"collection\\\":\\\"sentinel-1-grd\\\"},{\\\"type\\\":\\\"Feature\\\",\\\"stac_version\\\":\\\"1.0.0\\\",\\\"id\\\":\\\"S1A_IW_GRDH_1SSH_20250731T135608_20250731T135637_060328_077F7E\\\",\\\"properties\\\":{\\\"sar:frequency_band\\\":\\\"C\\\",\\\"sar:center_frequency\\\":5.405,\\\"sar:observation_direction\\\":\\\"right\\\",\\\"sar:instrument_mode\\\":\\\"IW\\\",\\\"sar:polarizations\\\":[\\\"HH\\\"],\\\"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\\\":\\\"ascending\\\",\\\"sat:absolute_orbit\\\":60328,\\\"sat:relative_orbit\\\":56,\\\"proj:epsg\\\":4326,\\\"proj:bbox\\\":[75.395981,-50.002678,79.552071,-47.53722],\\\"proj:shape\\\":[25386,19623],\\\"proj:transform\\\":[0.00021179687101870214,0,75.395981,0,-0.00009711880564090464,-47.53722],\\\"proj:centroid\\\":{\\\"lat\\\":-48.7682,\\\"lon\\\":77.45236},\\\"platform\\\":\\\"sentinel-1a\\\",\\\"constellation\\\":\\\"sentinel-1\\\",\\\"start_datetime\\\":\\\"2025-07-31T13:56:08.210318Z\\\",\\\"end_datetime\\\":\\\"2025-07-31T13:56:37.254452Z\\\",\\\"s1:instrument_configuration_ID\\\":\\\"7\\\",\\\"s1:datatake_id\\\":\\\"491390\\\",\\\"s1:product_timeliness\\\":\\\"NRT-3h\\\",\\\"s1:processing_level\\\":\\\"1\\\",\\\"s1:resolution\\\":\\\"high\\\",\\\"s1:orbit_source\\\":\\\"PREORB\\\",\\\"s1:slice_number\\\":\\\"1\\\",\\\"s1:total_slices\\\":\\\"3\\\",\\\"s1:shape\\\":[25386,19623],\\\"s1:product_identifier\\\":\\\"S1A_IW_GRDH_1SSH_20250731T135608_20250731T135637_060328_077F7E_E763\\\",\\\"s1:processing_datetime\\\":\\\"2025-07-31T14:46:33.000000Z\\\",\\\"storage:platform\\\":\\\"AWS\\\",\\\"storage:region\\\":\\\"eu-central-1\\\",\\\"storage:requester_pays\\\":true,\\\"datetime\\\":\\\"2025-07-31T13:56:22.732385Z\\\",\\\"processing:software\\\":{\\\"sentinel1-to-stac\\\":\\\"2025.05.13\\\"},\\\"created\\\":\\\"2025-07-31T15:06:23.354Z\\\",\\\"updated\\\":\\\"2025-07-31T15:06:23.354Z\\\"},\\\"geometry\\\":{\\\"type\\\":\\\"Polygon\\\",\\\"coordinates\\\":[[[78.574284,-47.5416089],[77.032398,-47.9279267],[75.4156179,-48.3040893],[75.9347985,-49.3361036],[75.9402992,-49.3466818],[75.9517237,-49.3441431],[76.2902278,-49.9940709],[77.4221008,-49.7338459],[77.3895198,-49.6720689],[78.5239315,-49.3974574],[78.4934662,-49.3416043],[79.4742817,-49.0923807],[79.0951571,-48.4564161],[78.574284,-47.5416089]]]},\\\"links\\\":[{\\\"rel\\\":\\\"self\\\",\\\"type\\\":\\\"application/geo+json\\\",\\\"href\\\":\\\"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd/items/S1A_IW_GRDH_1SSH_20250731T135608_20250731T135637_060328_077F7E\\\"},{\\\"rel\\\":\\\"canonical\\\",\\\"href\\\":\\\"s3://earthsearch-data/sentinel-1-grd/2025/7/31/IW/S1A_IW_GRDH_1SSH_20250731T135608_20250731T135637_060328_077F7E/S1A_IW_GRDH_1SSH_20250731T135608_20250731T135637_060328_077F7E.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_1SSH_20250731T135608_20250731T135637_060328_077F7E/thumbnail\\\"}],\\\"assets\\\":{\\\"safe-manifest\\\":{\\\"href\\\":\\\"s3://sentinel-s1-l1c/GRD/2025/7/31/IW/SH/S1A_IW_GRDH_1SSH_20250731T135608_20250731T135637_060328_077F7E_E763/manifest.safe\\\",\\\"type\\\":\\\"application/xml\\\",\\\"title\\\":\\\"Manifest\n        File\\\",\\\"description\\\":\\\"General product metadata in XML format. Contains\n        a high-level textual description of the product and references to all of product's\n        components, the product metadata, including the product identification and\n        the resource references, and references to the physical location of each component\n        file contained in the product.\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"schema-product-hh\\\":{\\\"href\\\":\\\"s3://sentinel-s1-l1c/GRD/2025/7/31/IW/SH/S1A_IW_GRDH_1SSH_20250731T135608_20250731T135637_060328_077F7E_E763/annotation/rfi/rfi-iw-hh.xml\\\",\\\"type\\\":\\\"application/xml\\\",\\\"title\\\":\\\"HH\n        Product Schema\\\",\\\"description\\\":\\\"Describes the main characteristics corresponding\n        to the band: state of the platform during acquisition, image properties, Doppler\n        information, geographic location, etc.\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"schema-calibration-hh\\\":{\\\"href\\\":\\\"s3://sentinel-s1-l1c/GRD/2025/7/31/IW/SH/S1A_IW_GRDH_1SSH_20250731T135608_20250731T135637_060328_077F7E_E763/annotation/calibration/calibration-iw-hh.xml\\\",\\\"type\\\":\\\"application/xml\\\",\\\"title\\\":\\\"HH\n        Calibration Schema\\\",\\\"description\\\":\\\"Calibration metadata including calibration\n        information and the beta nought, sigma nought, gamma and digital number look-up\n        tables that can be used for absolute product calibration.\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"schema-noise-hh\\\":{\\\"href\\\":\\\"s3://sentinel-s1-l1c/GRD/2025/7/31/IW/SH/S1A_IW_GRDH_1SSH_20250731T135608_20250731T135637_060328_077F7E_E763/annotation/calibration/noise-iw-hh.xml\\\",\\\"type\\\":\\\"application/xml\\\",\\\"title\\\":\\\"HH\n        Noise Schema\\\",\\\"description\\\":\\\"Estimated thermal noise look-up tables\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"thumbnail\\\":{\\\"href\\\":\\\"s3://sentinel-s1-l1c/GRD/2025/7/31/IW/SH/S1A_IW_GRDH_1SSH_20250731T135608_20250731T135637_060328_077F7E_E763/preview/quick-look.png\\\",\\\"type\\\":\\\"image/png\\\",\\\"title\\\":\\\"Preview\n        Image\\\",\\\"description\\\":\\\"An averaged, decimated preview image in PNG format.\n        Single polarization products are represented with a grey scale image. Dual\n        polarization products are represented by a single composite colour image in\n        RGB with the red channel (R) representing the  co-polarization VV or HH),\n        the green channel (G) represents the cross-polarization (VH or HV) and the\n        blue channel (B) represents the ratio of the cross an co-polarizations.\\\",\\\"roles\\\":[\\\"thumbnail\\\"]},\\\"hh\\\":{\\\"href\\\":\\\"s3://sentinel-s1-l1c/GRD/2025/7/31/IW/SH/S1A_IW_GRDH_1SSH_20250731T135608_20250731T135637_060328_077F7E_E763/measurement/iw-hh.tiff\\\",\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"HH Data\\\",\\\"description\\\":\\\"Actual\n        SAR data that have been processed into an image\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\"}],\\\"roles\\\":[\\\"data\\\"]}},\\\"bbox\\\":[75.4156179,-49.9940709,79.4742817,-47.5416089],\\\"stac_extensions\\\":[\\\"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/sat/v1.0.0/schema.json\\\",\\\"https://stac-extensions.github.io/processing/v1.1.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\\\"],\\\"collection\\\":\\\"sentinel-1-grd\\\"},{\\\"type\\\":\\\"Feature\\\",\\\"stac_version\\\":\\\"1.0.0\\\",\\\"id\\\":\\\"S2B_T20EPT_20250731T131905_L2A\\\",\\\"properties\\\":{\\\"created\\\":\\\"2025-07-31T15:00:24.817Z\\\",\\\"platform\\\":\\\"sentinel-2b\\\",\\\"constellation\\\":\\\"sentinel-2\\\",\\\"instruments\\\":[\\\"msi\\\"],\\\"eo:cloud_cover\\\":26.02542,\\\"proj:epsg\\\":32720,\\\"proj:centroid\\\":{\\\"lat\\\":-60.42638,\\\"lon\\\":-59.39732},\\\"mgrs:utm_zone\\\":20,\\\"mgrs:latitude_band\\\":\\\"E\\\",\\\"mgrs:grid_square\\\":\\\"PT\\\",\\\"grid:code\\\":\\\"MGRS-20EPT\\\",\\\"view:azimuth\\\":112.72910443851454,\\\"view:incidence_angle\\\":7.584009791738812,\\\"view:sun_azimuth\\\":39.4913942153701,\\\"view:sun_elevation\\\":4.164002081708503,\\\"s2:tile_id\\\":\\\"S2B_OPER_MSI_L2A_TL_2BPS_20250731T143919_A043879_T20EPT_N05.11\\\",\\\"s2:degraded_msi_data_percentage\\\":0,\\\"s2:nodata_pixel_percentage\\\":98.002911,\\\"s2:saturated_defective_pixel_percentage\\\":0,\\\"s2:cloud_shadow_percentage\\\":0,\\\"s2:vegetation_percentage\\\":0,\\\"s2:not_vegetated_percentage\\\":0.001495,\\\"s2:water_percentage\\\":73.973083,\\\"s2:unclassified_percentage\\\":0,\\\"s2:medium_proba_clouds_percentage\\\":22.796437,\\\"s2:high_proba_clouds_percentage\\\":2.364588,\\\"s2:thin_cirrus_percentage\\\":0.864396,\\\"s2:snow_ice_percentage\\\":0,\\\"s2:product_type\\\":\\\"S2MSI2A\\\",\\\"s2:processing_baseline\\\":\\\"05.11\\\",\\\"s2:product_uri\\\":\\\"S2B_MSIL2A_20250731T131909_N0511_R095_T20EPT_20250731T143919.SAFE\\\",\\\"s2:generation_time\\\":\\\"2025-07-31T14:39:19.000000Z\\\",\\\"s2:datatake_id\\\":\\\"GS2B_20250731T131909_043879_N05.11\\\",\\\"s2:datatake_type\\\":\\\"INS-NOBS\\\",\\\"s2:datastrip_id\\\":\\\"S2B_OPER_MSI_L2A_DS_2BPS_20250731T143919_S20250731T131905_N05.11\\\",\\\"s2:reflectance_conversion_factor\\\":0.969781337556996,\\\"datetime\\\":\\\"2025-07-31T13:19:22.930000Z\\\",\\\"earthsearch:payload_id\\\":\\\"roda-sentinel-2-c1-l2a/workflow-sentinel-2-c1-l2a-to-stac/0b37720aa55f53e19d61f7a1f2279539\\\",\\\"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-31T15:00:24.817Z\\\"},\\\"geometry\\\":{\\\"type\\\":\\\"Polygon\\\",\\\"coordinates\\\":[[[-59.83157801622286,-60.3982344095088],[-59.49837744993431,-60.446705795728874],[-59.17918863038601,-60.50198608027001],[-59.19332814481683,-60.381497373885004],[-59.83157801622286,-60.3982344095088]]]},\\\"links\\\":[{\\\"rel\\\":\\\"self\\\",\\\"type\\\":\\\"application/geo+json\\\",\\\"href\\\":\\\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-c1-l2a/items/S2B_T20EPT_20250731T131905_L2A\\\"},{\\\"rel\\\":\\\"canonical\\\",\\\"href\\\":\\\"s3://e84-earth-search-sentinel-data/sentinel-2-c1-l2a/20/E/PT/2025/7/S2B_T20EPT_20250731T131905_L2A/S2B_T20EPT_20250731T131905_L2A.json\\\",\\\"type\\\":\\\"application/json\\\"},{\\\"rel\\\":\\\"via\\\",\\\"href\\\":\\\"s3://sentinel-s2-l2a/tiles/20/E/PT/2025/7/31/0/metadata.xml\\\",\\\"type\\\":\\\"application/xml\\\",\\\"title\\\":\\\"Granule\n        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_T20EPT_20250731T131905_L2A/thumbnail\\\"}],\\\"assets\\\":{\\\"red\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/20/E/PT/2025/7/S2B_T20EPT_20250731T131905_L2A/B04.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,3300040],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":10,\\\"scale\\\":0.0001,\\\"offset\\\":-0.1}],\\\"file:checksum\\\":\\\"1220788b8545c5fd72b4ee34271d43182b74aa423a4e3880bbe9ed7a4ec141e9a5ec\\\",\\\"file:size\\\":4702862,\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"]},\\\"green\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/20/E/PT/2025/7/S2B_T20EPT_20250731T131905_L2A/B03.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,3300040],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":10,\\\"scale\\\":0.0001,\\\"offset\\\":-0.1}],\\\"file:checksum\\\":\\\"122089b3f4ce56464c64c3773c29828e6b18b949ee54d72d1a8aad87f239a96939ba\\\",\\\"file:size\\\":4510992,\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"]},\\\"blue\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/20/E/PT/2025/7/S2B_T20EPT_20250731T131905_L2A/B02.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,3300040],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":10,\\\"scale\\\":0.0001,\\\"offset\\\":-0.1}],\\\"file:checksum\\\":\\\"1220a85a80e8ba32bc8565530f9097c2ede4e82c5217e0966525c2434c8c721d043c\\\",\\\"file:size\\\":4492338,\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"]},\\\"visual\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/20/E/PT/2025/7/S2B_T20EPT_20250731T131905_L2A/TCI.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,3300040],\\\"file:checksum\\\":\\\"122033b9a7c8ba0eb470b4d3ead00d2160404283cf262fbf18837ae43a28b4b3ee49\\\",\\\"file:size\\\":6990465,\\\"roles\\\":[\\\"visual\\\"]},\\\"nir\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/20/E/PT/2025/7/S2B_T20EPT_20250731T131905_L2A/B08.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,3300040],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":10,\\\"scale\\\":0.0001,\\\"offset\\\":-0.1}],\\\"file:checksum\\\":\\\"12200614d053345308ade3d2fda92c90bc0bfd4fbb5c70d5ec0a5c1e562c5f045c83\\\",\\\"file:size\\\":4850213,\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"]},\\\"swir22\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/20/E/PT/2025/7/S2B_T20EPT_20250731T131905_L2A/B12.tif\\\",\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"SWIR 2.2\\u03BCm\n        - 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,3300040],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":20,\\\"scale\\\":0.0001,\\\"offset\\\":-0.1}],\\\"file:checksum\\\":\\\"12205802be20cd5322a5521fe33b6b441616d8a19decd7e0d839b7d01495fbad31b4\\\",\\\"file:size\\\":1283205,\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"]},\\\"rededge2\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/20/E/PT/2025/7/S2B_T20EPT_20250731T131905_L2A/B06.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,3300040],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":20,\\\"scale\\\":0.0001,\\\"offset\\\":-0.1}],\\\"file:checksum\\\":\\\"1220dbb81cd1e1dad9a7ae4299e801563ec0747cbcf2523da730cd66d518c9b0dbb3\\\",\\\"file:size\\\":1278330,\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"]},\\\"rededge3\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/20/E/PT/2025/7/S2B_T20EPT_20250731T131905_L2A/B07.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,3300040],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":20,\\\"scale\\\":0.0001,\\\"offset\\\":-0.1}],\\\"file:checksum\\\":\\\"1220fae88d61fc1048cde99f07671f50c227e6b68c358750af1c1afdc80bd56d1d73\\\",\\\"file:size\\\":1282086,\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"]},\\\"rededge1\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/20/E/PT/2025/7/S2B_T20EPT_20250731T131905_L2A/B05.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,3300040],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":20,\\\"scale\\\":0.0001,\\\"offset\\\":-0.1}],\\\"file:checksum\\\":\\\"1220cf83bdb99f0aa2b7f13eff2b44f2dc448754a3482bbcdc8bea0badbb992322f1\\\",\\\"file:size\\\":1274421,\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"]},\\\"swir16\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/20/E/PT/2025/7/S2B_T20EPT_20250731T131905_L2A/B11.tif\\\",\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"SWIR 1.6\\u03BCm\n        - 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,3300040],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":20,\\\"scale\\\":0.0001,\\\"offset\\\":-0.1}],\\\"file:checksum\\\":\\\"1220ded605940fa667166b446b5df9b263335c4aece83d35e1adf7f345d01ce1f2d4\\\",\\\"file:size\\\":1284606,\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"]},\\\"wvp\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/20/E/PT/2025/7/S2B_T20EPT_20250731T131905_L2A/WVP.tif\\\",\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Water Vapour (WVP)\\\",\\\"gsd\\\":20,\\\"proj:shape\\\":[5490,5490],\\\"proj:transform\\\":[20,0,600000,0,-20,3300040],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":20,\\\"unit\\\":\\\"cm\\\",\\\"scale\\\":0.001,\\\"offset\\\":0}],\\\"file:checksum\\\":\\\"122063bfbd66be19400d31645d913e8498ea3c7150b1c2ec6702840a6f6c4bb793cb\\\",\\\"file:size\\\":101256,\\\"roles\\\":[\\\"data\\\"]},\\\"nir08\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/20/E/PT/2025/7/S2B_T20EPT_20250731T131905_L2A/B8A.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,3300040],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":20,\\\"scale\\\":0.0001,\\\"offset\\\":-0.1}],\\\"file:checksum\\\":\\\"12202a226b347a0eff214063420946fcb5cc4c1280d78fa9d14d0a71d6446b7a27c9\\\",\\\"file:size\\\":1285838,\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"]},\\\"scl\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/20/E/PT/2025/7/S2B_T20EPT_20250731T131905_L2A/SCL.tif\\\",\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Scene classification\n        map (SCL)\\\",\\\"gsd\\\":20,\\\"proj:shape\\\":[5490,5490],\\\"proj:transform\\\":[20,0,600000,0,-20,3300040],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":20}],\\\"file:checksum\\\":\\\"1220424f377750a01bc90cf47c4849f90afa31d42cf5a15f97627319362b6175e541\\\",\\\"file:size\\\":123198,\\\"roles\\\":[\\\"data\\\"]},\\\"aot\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/20/E/PT/2025/7/S2B_T20EPT_20250731T131905_L2A/AOT.tif\\\",\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Aerosol optical\n        thickness (AOT)\\\",\\\"gsd\\\":20,\\\"proj:shape\\\":[5490,5490],\\\"proj:transform\\\":[20,0,600000,0,-20,3300040],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":20,\\\"scale\\\":0.001,\\\"offset\\\":0}],\\\"file:checksum\\\":\\\"1220794626613689dfab86f2fa14fcb77f6f05d816ae7c2054d5347dbaefa9a809af\\\",\\\"file:size\\\":101026,\\\"roles\\\":[\\\"data\\\"]},\\\"coastal\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/20/E/PT/2025/7/S2B_T20EPT_20250731T131905_L2A/B01.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,3300040],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":60,\\\"scale\\\":0.0001,\\\"offset\\\":-0.1}],\\\"file:checksum\\\":\\\"122006df5d0e3d97036ed9b02232a416fe293f3569d153fd4758bb971d436dccbf6b\\\",\\\"file:size\\\":147839,\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"]},\\\"nir09\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/20/E/PT/2025/7/S2B_T20EPT_20250731T131905_L2A/B09.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,3300040],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":60,\\\"scale\\\":0.0001,\\\"offset\\\":-0.1}],\\\"file:checksum\\\":\\\"122069aa6716b21f7af157bf19d24815ffa72cd1e6aca0191021ace1c4f9096b5a35\\\",\\\"file:size\\\":156382,\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"]},\\\"cloud\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/20/E/PT/2025/7/S2B_T20EPT_20250731T131905_L2A/CLD_20m.tif\\\",\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Cloud Probabilities\\\",\\\"gsd\\\":20,\\\"proj:shape\\\":[5490,5490],\\\"proj:transform\\\":[20,0,600000,0,-20,3300040],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":20}],\\\"file:checksum\\\":\\\"122093c8079668f5d86d4fa24a748f20e8bcee47cf88a6173404aef484300c12fcb9\\\",\\\"file:size\\\":261717,\\\"roles\\\":[\\\"data\\\",\\\"cloud\\\"]},\\\"snow\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/20/E/PT/2025/7/S2B_T20EPT_20250731T131905_L2A/SNW_20m.tif\\\",\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Snow Probabilities\\\",\\\"proj:shape\\\":[5490,5490],\\\"proj:transform\\\":[20,0,600000,0,-20,3300040],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":20}],\\\"file:checksum\\\":\\\"1220c4a9cdc93727fc89d7c55eefd8a3f31f77a7e8ae5c9af37e97cb4dd2519784a4\\\",\\\"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/20/E/PT/2025/7/S2B_T20EPT_20250731T131905_L2A/L2A_PVI.tif\\\",\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"True color preview\\\",\\\"gsd\\\":320,\\\"proj:shape\\\":[343,343],\\\"proj:transform\\\":[320,0,600000,0,-320,3300040],\\\"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\\\":\\\"1220d8948174a43853c16abbc39fc293761bfe096f46d793d5841ba7b0b80c90e224\\\",\\\"file:size\\\":12140,\\\"roles\\\":[\\\"overview\\\"]},\\\"granule_metadata\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/20/E/PT/2025/7/S2B_T20EPT_20250731T131905_L2A/metadata.xml\\\",\\\"type\\\":\\\"application/xml\\\",\\\"file:checksum\\\":\\\"1220138dbbf63740f19bd7ccf76acb0c5b22905ef307f96f61a096570ddb9ca3099c\\\",\\\"file:size\\\":179694,\\\"roles\\\":[\\\"metadata\\\"]},\\\"tileinfo_metadata\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/20/E/PT/2025/7/S2B_T20EPT_20250731T131905_L2A/tileInfo.json\\\",\\\"type\\\":\\\"application/json\\\",\\\"file:checksum\\\":\\\"1220be8a180166d6b391bd7db0e4f2689a83d963e88e34a2f01274b82a088a974752\\\",\\\"file:size\\\":1618,\\\"roles\\\":[\\\"metadata\\\"]},\\\"product_metadata\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/20/E/PT/2025/7/S2B_T20EPT_20250731T131905_L2A/product_metadata.xml\\\",\\\"type\\\":\\\"application/xml\\\",\\\"file:checksum\\\":\\\"1220b6075b1385fa880fb6c5dc0f632339d154a054e7d641c3cd21f28131bc801df0\\\",\\\"file:size\\\":54535,\\\"roles\\\":[\\\"metadata\\\"]},\\\"thumbnail\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/20/E/PT/2025/7/S2B_T20EPT_20250731T131905_L2A/L2A_PVI.jpg\\\",\\\"type\\\":\\\"image/jpeg\\\",\\\"title\\\":\\\"Thumbnail\n        of preview image\\\",\\\"file:checksum\\\":\\\"1220cb08a50b2a8e892bc8be4a04d4d3fb10d71274ce24c47c2ff3382250f1bb2f47\\\",\\\"file:size\\\":3672,\\\"roles\\\":[\\\"thumbnail\\\"]}},\\\"bbox\\\":[-59.831578,-60.501986,-59.179189,-60.381497],\\\"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/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/sentinel-2/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/eo/v1.1.0/schema.json\\\"],\\\"id\\\":\\\"S2B_20EPT_20250731_0_L2A\\\",\\\"geometry\\\":{\\\"type\\\":\\\"Polygon\\\",\\\"coordinates\\\":[[[-59.83157801622286,-60.3982344095088],[-59.49837744993431,-60.446705795728874],[-59.17918863038601,-60.50198608027001],[-59.19332814481683,-60.381497373885004],[-59.83157801622286,-60.3982344095088]]]},\\\"bbox\\\":[-59.831578,-60.501986,-59.179189,-60.381497],\\\"properties\\\":{\\\"created\\\":\\\"2025-07-31T15:02:20.427Z\\\",\\\"platform\\\":\\\"sentinel-2b\\\",\\\"constellation\\\":\\\"sentinel-2\\\",\\\"instruments\\\":[\\\"msi\\\"],\\\"eo:cloud_cover\\\":26.02542,\\\"proj:epsg\\\":32720,\\\"proj:centroid\\\":{\\\"lat\\\":-60.42638,\\\"lon\\\":-59.39732},\\\"mgrs:utm_zone\\\":20,\\\"mgrs:latitude_band\\\":\\\"E\\\",\\\"mgrs:grid_square\\\":\\\"PT\\\",\\\"grid:code\\\":\\\"MGRS-20EPT\\\",\\\"view:azimuth\\\":112.72910443851454,\\\"view:incidence_angle\\\":7.584009791738812,\\\"view:sun_azimuth\\\":39.4913942153701,\\\"view:sun_elevation\\\":4.164002081708503,\\\"s2:tile_id\\\":\\\"S2B_OPER_MSI_L2A_TL_2BPS_20250731T143919_A043879_T20EPT_N05.11\\\",\\\"s2:degraded_msi_data_percentage\\\":0,\\\"s2:nodata_pixel_percentage\\\":98.002911,\\\"s2:saturated_defective_pixel_percentage\\\":0,\\\"s2:cloud_shadow_percentage\\\":0,\\\"s2:vegetation_percentage\\\":0,\\\"s2:not_vegetated_percentage\\\":0.001495,\\\"s2:water_percentage\\\":73.973083,\\\"s2:unclassified_percentage\\\":0,\\\"s2:medium_proba_clouds_percentage\\\":22.796437,\\\"s2:high_proba_clouds_percentage\\\":2.364588,\\\"s2:thin_cirrus_percentage\\\":0.864396,\\\"s2:snow_ice_percentage\\\":0,\\\"s2:product_type\\\":\\\"S2MSI2A\\\",\\\"s2:processing_baseline\\\":\\\"05.11\\\",\\\"s2:product_uri\\\":\\\"S2B_MSIL2A_20250731T131909_N0511_R095_T20EPT_20250731T143919.SAFE\\\",\\\"s2:generation_time\\\":\\\"2025-07-31T14:39:19.000000Z\\\",\\\"s2:datatake_id\\\":\\\"GS2B_20250731T131909_043879_N05.11\\\",\\\"s2:datatake_type\\\":\\\"INS-NOBS\\\",\\\"s2:datastrip_id\\\":\\\"S2B_OPER_MSI_L2A_DS_2BPS_20250731T143919_S20250731T131905_N05.11\\\",\\\"s2:reflectance_conversion_factor\\\":0.969781337556996,\\\"datetime\\\":\\\"2025-07-31T13:19:22.930000Z\\\",\\\"s2:sequence\\\":\\\"0\\\",\\\"earthsearch:s3_path\\\":\\\"s3://sentinel-cogs/sentinel-s2-l2a-cogs/20/E/PT/2025/7/S2B_20EPT_20250731_0_L2A\\\",\\\"earthsearch:payload_id\\\":\\\"roda-sentinel2/workflow-sentinel2-to-stac/00e30f6c647a010a5a95fecc187a30c8\\\",\\\"earthsearch:boa_offset_applied\\\":true,\\\"processing:software\\\":{\\\"sentinel2-to-stac\\\":\\\"2025.03.06\\\"},\\\"updated\\\":\\\"2025-07-31T15:02:20.427Z\\\"},\\\"links\\\":[{\\\"rel\\\":\\\"self\\\",\\\"type\\\":\\\"application/geo+json\\\",\\\"href\\\":\\\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l2a/items/S2B_20EPT_20250731_0_L2A\\\"},{\\\"rel\\\":\\\"canonical\\\",\\\"href\\\":\\\"s3://sentinel-cogs/sentinel-s2-l2a-cogs/20/E/PT/2025/7/S2B_20EPT_20250731_0_L2A/S2B_20EPT_20250731_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_20EPT_20250731_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_20EPT_20250731_0_L2A/thumbnail\\\"}],\\\"assets\\\":{\\\"aot\\\":{\\\"href\\\":\\\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/20/E/PT/2025/7/S2B_20EPT_20250731_0_L2A/AOT.tif\\\",\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Aerosol optical\n        thickness (AOT)\\\",\\\"gsd\\\":20,\\\"proj:shape\\\":[5490,5490],\\\"proj:transform\\\":[20,0,600000,0,-20,3300040],\\\"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/20/E/PT/2025/7/S2B_20EPT_20250731_0_L2A/B02.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,3300040],\\\"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/20/E/PT/2025/7/31/0/qi/CLD_20m.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Cloud\n        Probabilities\\\",\\\"gsd\\\":20,\\\"proj:shape\\\":[5490,5490],\\\"proj:transform\\\":[20,0,600000,0,-20,3300040],\\\"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/20/E/PT/2025/7/S2B_20EPT_20250731_0_L2A/B01.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,3300040],\\\"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/20/E/PT/2025/7/S2B_20EPT_20250731_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/20/E/PT/2025/7/S2B_20EPT_20250731_0_L2A/B03.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,3300040],\\\"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/20/E/PT/2025/7/S2B_20EPT_20250731_0_L2A/B08.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,3300040],\\\"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/20/E/PT/2025/7/S2B_20EPT_20250731_0_L2A/B8A.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,3300040],\\\"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/20/E/PT/2025/7/S2B_20EPT_20250731_0_L2A/B09.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,3300040],\\\"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/20/E/PT/2025/7/31/0/product_metadata.xml\\\",\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"red\\\":{\\\"href\\\":\\\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/20/E/PT/2025/7/S2B_20EPT_20250731_0_L2A/B04.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,3300040],\\\"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/20/E/PT/2025/7/S2B_20EPT_20250731_0_L2A/B05.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,3300040],\\\"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/20/E/PT/2025/7/S2B_20EPT_20250731_0_L2A/B06.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,3300040],\\\"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/20/E/PT/2025/7/S2B_20EPT_20250731_0_L2A/B07.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,3300040],\\\"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/20/E/PT/2025/7/S2B_20EPT_20250731_0_L2A/SCL.tif\\\",\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Scene classification\n        map (SCL)\\\",\\\"gsd\\\":20,\\\"proj:shape\\\":[5490,5490],\\\"proj:transform\\\":[20,0,600000,0,-20,3300040],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":20}],\\\"roles\\\":[\\\"data\\\"]},\\\"snow\\\":{\\\"href\\\":\\\"s3://sentinel-s2-l2a/tiles/20/E/PT/2025/7/31/0/qi/SNW_20m.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Snow\n        Probabilities\\\",\\\"proj:shape\\\":[5490,5490],\\\"proj:transform\\\":[20,0,600000,0,-20,3300040],\\\"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/20/E/PT/2025/7/S2B_20EPT_20250731_0_L2A/B11.tif\\\",\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"SWIR 1.6\\u03BCm\n        - 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,3300040],\\\"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/20/E/PT/2025/7/S2B_20EPT_20250731_0_L2A/B12.tif\\\",\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"SWIR 2.2\\u03BCm\n        - 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,3300040],\\\"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/20/E/PT/2025/7/S2B_20EPT_20250731_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/20/E/PT/2025/7/S2B_20EPT_20250731_0_L2A/TCI.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,3300040],\\\"roles\\\":[\\\"visual\\\"]},\\\"wvp\\\":{\\\"href\\\":\\\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/20/E/PT/2025/7/S2B_20EPT_20250731_0_L2A/WVP.tif\\\",\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Water Vapour (WVP)\\\",\\\"gsd\\\":20,\\\"proj:shape\\\":[5490,5490],\\\"proj:transform\\\":[20,0,600000,0,-20,3300040],\\\"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/20/E/PT/2025/7/S2B_20EPT_20250731_0_L2A/preview.jpg\\\",\\\"type\\\":\\\"image/jpeg\\\",\\\"title\\\":\\\"Thumbnail\n        of preview image\\\",\\\"roles\\\":[\\\"thumbnail\\\"]},\\\"aot-jp2\\\":{\\\"href\\\":\\\"s3://sentinel-s2-l2a/tiles/20/E/PT/2025/7/31/0/R20m/AOT.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Aerosol\n        optical thickness (AOT)\\\",\\\"gsd\\\":20,\\\"proj:shape\\\":[5490,5490],\\\"proj:transform\\\":[20,0,600000,0,-20,3300040],\\\"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/20/E/PT/2025/7/31/0/R10m/B02.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Blue\n        - 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,3300040],\\\"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/20/E/PT/2025/7/31/0/R60m/B01.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Coastal\n        - 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,3300040],\\\"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/20/E/PT/2025/7/31/0/R10m/B03.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Green\n        - 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,3300040],\\\"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/20/E/PT/2025/7/31/0/R10m/B08.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"NIR\n        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,3300040],\\\"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/20/E/PT/2025/7/31/0/R20m/B8A.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"NIR\n        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,3300040],\\\"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/20/E/PT/2025/7/31/0/R60m/B09.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"NIR\n        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,3300040],\\\"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/20/E/PT/2025/7/31/0/R10m/B04.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Red\n        - 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,3300040],\\\"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/20/E/PT/2025/7/31/0/R20m/B05.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Red\n        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,3300040],\\\"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/20/E/PT/2025/7/31/0/R20m/B06.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Red\n        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,3300040],\\\"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/20/E/PT/2025/7/31/0/R20m/B07.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Red\n        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,3300040],\\\"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/20/E/PT/2025/7/31/0/R20m/SCL.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Scene\n        classification map (SCL)\\\",\\\"gsd\\\":20,\\\"proj:shape\\\":[5490,5490],\\\"proj:transform\\\":[20,0,600000,0,-20,3300040],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":20}],\\\"roles\\\":[\\\"data\\\"]},\\\"swir16-jp2\\\":{\\\"href\\\":\\\"s3://sentinel-s2-l2a/tiles/20/E/PT/2025/7/31/0/R20m/B11.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"SWIR\n        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,3300040],\\\"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/20/E/PT/2025/7/31/0/R20m/B12.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"SWIR\n        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,3300040],\\\"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/20/E/PT/2025/7/31/0/R10m/TCI.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"True\n        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,3300040],\\\"roles\\\":[\\\"visual\\\"]},\\\"wvp-jp2\\\":{\\\"href\\\":\\\"s3://sentinel-s2-l2a/tiles/20/E/PT/2025/7/31/0/R20m/WVP.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Water\n        Vapour (WVP)\\\",\\\"gsd\\\":20,\\\"proj:shape\\\":[5490,5490],\\\"proj:transform\\\":[20,0,600000,0,-20,3300040],\\\"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/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/sentinel-2/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/eo/v1.1.0/schema.json\\\"],\\\"id\\\":\\\"S2B_20EPT_20250731_0_L1C\\\",\\\"geometry\\\":{\\\"type\\\":\\\"Polygon\\\",\\\"coordinates\\\":[[[-59.83157801622286,-60.3982344095088],[-59.49837744993431,-60.446705795728874],[-59.17918863038601,-60.50198608027001],[-59.19332814481683,-60.381497373885004],[-59.83157801622286,-60.3982344095088]]]},\\\"bbox\\\":[-59.831578,-60.501986,-59.179189,-60.381497],\\\"properties\\\":{\\\"created\\\":\\\"2025-07-31T15:02:20.344Z\\\",\\\"platform\\\":\\\"sentinel-2b\\\",\\\"constellation\\\":\\\"sentinel-2\\\",\\\"instruments\\\":[\\\"msi\\\"],\\\"eo:cloud_cover\\\":0,\\\"proj:epsg\\\":32720,\\\"proj:centroid\\\":{\\\"lat\\\":-60.42638,\\\"lon\\\":-59.39732},\\\"mgrs:utm_zone\\\":20,\\\"mgrs:latitude_band\\\":\\\"E\\\",\\\"mgrs:grid_square\\\":\\\"PT\\\",\\\"grid:code\\\":\\\"MGRS-20EPT\\\",\\\"view:azimuth\\\":112.72910443851454,\\\"view:incidence_angle\\\":7.584009791738812,\\\"view:sun_azimuth\\\":39.4913942153701,\\\"view:sun_elevation\\\":4.164002081708503,\\\"s2:tile_id\\\":\\\"S2B_OPER_MSI_L1C_TL_2BPS_20250731T143530_A043879_T20EPT_N05.11\\\",\\\"s2:degraded_msi_data_percentage\\\":0,\\\"s2:product_type\\\":\\\"S2MSI1C\\\",\\\"s2:processing_baseline\\\":\\\"05.11\\\",\\\"s2:product_uri\\\":\\\"S2B_MSIL1C_20250731T131909_N0511_R095_T20EPT_20250731T143530.SAFE\\\",\\\"s2:generation_time\\\":\\\"2025-07-31T14:35:30.000000Z\\\",\\\"s2:datatake_id\\\":\\\"GS2B_20250731T131909_043879_N05.11\\\",\\\"s2:datatake_type\\\":\\\"INS-NOBS\\\",\\\"s2:datastrip_id\\\":\\\"S2B_OPER_MSI_L1C_DS_2BPS_20250731T143530_S20250731T131905_N05.11\\\",\\\"s2:reflectance_conversion_factor\\\":0.969781337556996,\\\"datetime\\\":\\\"2025-07-31T13:19:22.930000Z\\\",\\\"s2:sequence\\\":\\\"0\\\",\\\"earthsearch:s3_path\\\":\\\"s3://earthsearch-data/sentinel-2-l1c/20/E/PT/2025/7/S2B_20EPT_20250731_0_L1C\\\",\\\"earthsearch:payload_id\\\":\\\"roda-sentinel2/workflow-sentinel2-to-stac/00e30f6c647a010a5a95fecc187a30c8\\\",\\\"processing:software\\\":{\\\"sentinel2-to-stac\\\":\\\"2025.03.06\\\"},\\\"updated\\\":\\\"2025-07-31T15:02:20.344Z\\\"},\\\"links\\\":[{\\\"rel\\\":\\\"self\\\",\\\"type\\\":\\\"application/geo+json\\\",\\\"href\\\":\\\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l1c/items/S2B_20EPT_20250731_0_L1C\\\"},{\\\"rel\\\":\\\"canonical\\\",\\\"href\\\":\\\"s3://earthsearch-data/sentinel-2-l1c/20/E/PT/2025/7/S2B_20EPT_20250731_0_L1C/S2B_20EPT_20250731_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_20EPT_20250731_0_L1C/thumbnail\\\"}],\\\"assets\\\":{\\\"blue\\\":{\\\"href\\\":\\\"s3://sentinel-s2-l1c/tiles/20/E/PT/2025/7/31/0/B02.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Blue\n        - 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,3300040],\\\"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/20/E/PT/2025/7/31/0/B10.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Cirrus\n        - 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,3300040],\\\"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/20/E/PT/2025/7/31/0/B01.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Coastal\n        - 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,3300040],\\\"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/20/E/PT/2025/7/31/0/metadata.xml\\\",\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"green\\\":{\\\"href\\\":\\\"s3://sentinel-s2-l1c/tiles/20/E/PT/2025/7/31/0/B03.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Green\n        - 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,3300040],\\\"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/20/E/PT/2025/7/31/0/B08.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"NIR\n        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,3300040],\\\"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/20/E/PT/2025/7/31/0/B8A.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"NIR\n        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,3300040],\\\"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/20/E/PT/2025/7/31/0/B09.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"NIR\n        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,3300040],\\\"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/20/E/PT/2025/7/31/0/product_metadata.xml\\\",\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"red\\\":{\\\"href\\\":\\\"s3://sentinel-s2-l1c/tiles/20/E/PT/2025/7/31/0/B04.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Red\n        - 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,3300040],\\\"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/20/E/PT/2025/7/31/0/B05.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Red\n        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,3300040],\\\"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/20/E/PT/2025/7/31/0/B06.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Red\n        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,3300040],\\\"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/20/E/PT/2025/7/31/0/B07.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Red\n        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,3300040],\\\"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/20/E/PT/2025/7/31/0/B11.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"SWIR\n        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,3300040],\\\"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/20/E/PT/2025/7/31/0/B12.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"SWIR\n        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,3300040],\\\"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/20/E/PT/2025/7/31/0/tileInfo.json\\\",\\\"type\\\":\\\"application/json\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"visual\\\":{\\\"href\\\":\\\"s3://sentinel-s2-l1c/tiles/20/E/PT/2025/7/31/0/TCI.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"True\n        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,3300040],\\\"roles\\\":[\\\"visual\\\"]}},\\\"collection\\\":\\\"sentinel-2-l1c\\\"},{\\\"type\\\":\\\"Feature\\\",\\\"stac_version\\\":\\\"1.0.0\\\",\\\"id\\\":\\\"S2B_T24MUV_20250731T130245_L2A\\\",\\\"properties\\\":{\\\"created\\\":\\\"2025-07-31T14:12:58.710Z\\\",\\\"platform\\\":\\\"sentinel-2b\\\",\\\"constellation\\\":\\\"sentinel-2\\\",\\\"instruments\\\":[\\\"msi\\\"],\\\"eo:cloud_cover\\\":56.813848,\\\"proj:epsg\\\":32724,\\\"proj:centroid\\\":{\\\"lat\\\":-4.61396,\\\"lon\\\":-40.05744},\\\"mgrs:utm_zone\\\":24,\\\"mgrs:latitude_band\\\":\\\"M\\\",\\\"mgrs:grid_square\\\":\\\"UV\\\",\\\"grid:code\\\":\\\"MGRS-24MUV\\\",\\\"view:azimuth\\\":102.87240638401747,\\\"view:incidence_angle\\\":9.193465603525837,\\\"view:sun_azimuth\\\":47.3212056194599,\\\"view:sun_elevation\\\":55.4488222963741,\\\"s2:tile_id\\\":\\\"S2B_OPER_MSI_L2A_TL_2BPS_20250731T132745_A043879_T24MUV_N05.11\\\",\\\"s2:degraded_msi_data_percentage\\\":0,\\\"s2:nodata_pixel_percentage\\\":90.352267,\\\"s2:saturated_defective_pixel_percentage\\\":0,\\\"s2:cloud_shadow_percentage\\\":12.813106,\\\"s2:vegetation_percentage\\\":2.923206,\\\"s2:not_vegetated_percentage\\\":25.361446,\\\"s2:water_percentage\\\":0.035387,\\\"s2:unclassified_percentage\\\":1.709313,\\\"s2:medium_proba_clouds_percentage\\\":17.623764,\\\"s2:high_proba_clouds_percentage\\\":39.190084,\\\"s2:thin_cirrus_percentage\\\":0,\\\"s2:snow_ice_percentage\\\":0,\\\"s2:product_type\\\":\\\"S2MSI2A\\\",\\\"s2:processing_baseline\\\":\\\"05.11\\\",\\\"s2:product_uri\\\":\\\"S2B_MSIL2A_20250731T130249_N0511_R095_T24MUV_20250731T132745.SAFE\\\",\\\"s2:generation_time\\\":\\\"2025-07-31T13:27:45.000000Z\\\",\\\"s2:datatake_id\\\":\\\"GS2B_20250731T130249_043879_N05.11\\\",\\\"s2:datatake_type\\\":\\\"INS-NOBS\\\",\\\"s2:datastrip_id\\\":\\\"S2B_OPER_MSI_L2A_DS_2BPS_20250731T132745_S20250731T130245_N05.11\\\",\\\"s2:reflectance_conversion_factor\\\":0.969778956128144,\\\"datetime\\\":\\\"2025-07-31T13:03:27.058000Z\\\",\\\"earthsearch:payload_id\\\":\\\"roda-sentinel-2-c1-l2a/workflow-sentinel-2-c1-l2a-to-stac/3b3691a7f058b729c2d9d35264cc2001\\\",\\\"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-31T14:12:58.710Z\\\"},\\\"geometry\\\":{\\\"type\\\":\\\"Polygon\\\",\\\"coordinates\\\":[[[-40.338341395659626,-4.522153617314925],[-40.36300244482362,-4.648744515454023],[-39.813360649512475,-4.749305203093783],[-39.81310181274978,-4.522934064726686],[-40.338341395659626,-4.522153617314925]]]},\\\"links\\\":[{\\\"rel\\\":\\\"self\\\",\\\"type\\\":\\\"application/geo+json\\\",\\\"href\\\":\\\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-c1-l2a/items/S2B_T24MUV_20250731T130245_L2A\\\"},{\\\"rel\\\":\\\"canonical\\\",\\\"href\\\":\\\"s3://e84-earth-search-sentinel-data/sentinel-2-c1-l2a/24/M/UV/2025/7/S2B_T24MUV_20250731T130245_L2A/S2B_T24MUV_20250731T130245_L2A.json\\\",\\\"type\\\":\\\"application/json\\\"},{\\\"rel\\\":\\\"via\\\",\\\"href\\\":\\\"s3://sentinel-s2-l2a/tiles/24/M/UV/2025/7/31/0/metadata.xml\\\",\\\"type\\\":\\\"application/xml\\\",\\\"title\\\":\\\"Granule\n        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_T24MUV_20250731T130245_L2A/thumbnail\\\"}],\\\"assets\\\":{\\\"red\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/UV/2025/7/S2B_T24MUV_20250731T130245_L2A/B04.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,300000,0,-10,9500020],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":10,\\\"scale\\\":0.0001,\\\"offset\\\":-0.1}],\\\"file:checksum\\\":\\\"12201120bd069119102b65c645ebd0a7b416103ea7abb314c279a8280246fc4d1052\\\",\\\"file:size\\\":22232203,\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"]},\\\"green\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/UV/2025/7/S2B_T24MUV_20250731T130245_L2A/B03.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,300000,0,-10,9500020],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":10,\\\"scale\\\":0.0001,\\\"offset\\\":-0.1}],\\\"file:checksum\\\":\\\"1220322034704c034dbadf409c38a9930086f6886f87740fcd76994445e379c6a847\\\",\\\"file:size\\\":22222643,\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"]},\\\"blue\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/UV/2025/7/S2B_T24MUV_20250731T130245_L2A/B02.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,300000,0,-10,9500020],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":10,\\\"scale\\\":0.0001,\\\"offset\\\":-0.1}],\\\"file:checksum\\\":\\\"1220040ac5a68bc9aa7dbce85a8a0fdeaf7fa94257aa8a5c6ec706d5fa0a7a12e854\\\",\\\"file:size\\\":22268507,\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"]},\\\"visual\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/UV/2025/7/S2B_T24MUV_20250731T130245_L2A/TCI.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,300000,0,-10,9500020],\\\"file:checksum\\\":\\\"1220d13792dbe026700c7f161864620fd82a957ee8a0dea1762228d43e564168a8e2\\\",\\\"file:size\\\":21277152,\\\"roles\\\":[\\\"visual\\\"]},\\\"nir\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/UV/2025/7/S2B_T24MUV_20250731T130245_L2A/B08.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,300000,0,-10,9500020],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":10,\\\"scale\\\":0.0001,\\\"offset\\\":-0.1}],\\\"file:checksum\\\":\\\"122036ff3d55b0bb960d141a078173f58ee0e954f1d7af0732442c7ce99493c9347a\\\",\\\"file:size\\\":21829385,\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"]},\\\"swir22\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/UV/2025/7/S2B_T24MUV_20250731T130245_L2A/B12.tif\\\",\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"SWIR 2.2\\u03BCm\n        - 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,300000,0,-20,9500020],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":20,\\\"scale\\\":0.0001,\\\"offset\\\":-0.1}],\\\"file:checksum\\\":\\\"1220b929f2854b072889914a0de0548880bd92fe3e0eca1be7b7eebc8445f6ae65b2\\\",\\\"file:size\\\":6084260,\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"]},\\\"rededge2\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/UV/2025/7/S2B_T24MUV_20250731T130245_L2A/B06.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,300000,0,-20,9500020],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":20,\\\"scale\\\":0.0001,\\\"offset\\\":-0.1}],\\\"file:checksum\\\":\\\"122067b8e0b831277475989b0d97e78c3c1b30e8adaf9e822a3d31785fcc23dabe05\\\",\\\"file:size\\\":6168190,\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"]},\\\"rededge3\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/UV/2025/7/S2B_T24MUV_20250731T130245_L2A/B07.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,300000,0,-20,9500020],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":20,\\\"scale\\\":0.0001,\\\"offset\\\":-0.1}],\\\"file:checksum\\\":\\\"12205a13e0009ad91e7458bdbae18413a330cd2d7c8fe41d654610ffd860356b750c\\\",\\\"file:size\\\":6164150,\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"]},\\\"rededge1\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/UV/2025/7/S2B_T24MUV_20250731T130245_L2A/B05.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,300000,0,-20,9500020],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":20,\\\"scale\\\":0.0001,\\\"offset\\\":-0.1}],\\\"file:checksum\\\":\\\"12201a1ff513d24a9c5bdca16bfd7f599fb1bf01ca955c036ef18ce2f738e7f35a80\\\",\\\"file:size\\\":6177096,\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"]},\\\"swir16\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/UV/2025/7/S2B_T24MUV_20250731T130245_L2A/B11.tif\\\",\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"SWIR 1.6\\u03BCm\n        - 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,300000,0,-20,9500020],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":20,\\\"scale\\\":0.0001,\\\"offset\\\":-0.1}],\\\"file:checksum\\\":\\\"1220c97a27cc1f4180287cda05367edba7dac86eac8c5154d03b9dca63abad4c3859\\\",\\\"file:size\\\":6110767,\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"]},\\\"wvp\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/UV/2025/7/S2B_T24MUV_20250731T130245_L2A/WVP.tif\\\",\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Water Vapour (WVP)\\\",\\\"gsd\\\":20,\\\"proj:shape\\\":[5490,5490],\\\"proj:transform\\\":[20,0,300000,0,-20,9500020],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":20,\\\"unit\\\":\\\"cm\\\",\\\"scale\\\":0.001,\\\"offset\\\":0}],\\\"file:checksum\\\":\\\"12200db5b3a1701e2e1ab47d647c48f51c4692a48b7f953f981b4eced143f44c1d6e\\\",\\\"file:size\\\":1824557,\\\"roles\\\":[\\\"data\\\"]},\\\"nir08\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/UV/2025/7/S2B_T24MUV_20250731T130245_L2A/B8A.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,300000,0,-20,9500020],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":20,\\\"scale\\\":0.0001,\\\"offset\\\":-0.1}],\\\"file:checksum\\\":\\\"1220705429c56ac6dfecd782044d252883d5aaf166f9d21310a2030d697683244bf8\\\",\\\"file:size\\\":6156829,\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"]},\\\"scl\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/UV/2025/7/S2B_T24MUV_20250731T130245_L2A/SCL.tif\\\",\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Scene classification\n        map (SCL)\\\",\\\"gsd\\\":20,\\\"proj:shape\\\":[5490,5490],\\\"proj:transform\\\":[20,0,300000,0,-20,9500020],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":20}],\\\"file:checksum\\\":\\\"1220e7822adb3abefc48bd042e5547652c823b59ae60f362136047e1dbaa2277b6c4\\\",\\\"file:size\\\":432071,\\\"roles\\\":[\\\"data\\\"]},\\\"aot\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/UV/2025/7/S2B_T24MUV_20250731T130245_L2A/AOT.tif\\\",\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Aerosol optical\n        thickness (AOT)\\\",\\\"gsd\\\":20,\\\"proj:shape\\\":[5490,5490],\\\"proj:transform\\\":[20,0,300000,0,-20,9500020],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":20,\\\"scale\\\":0.001,\\\"offset\\\":0}],\\\"file:checksum\\\":\\\"1220619698cf88958e9c40b3d513856de4402fef37b4f945e04181c90b847317fc0e\\\",\\\"file:size\\\":277535,\\\"roles\\\":[\\\"data\\\"]},\\\"coastal\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/UV/2025/7/S2B_T24MUV_20250731T130245_L2A/B01.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,300000,0,-60,9500020],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":60,\\\"scale\\\":0.0001,\\\"offset\\\":-0.1}],\\\"file:checksum\\\":\\\"12206d7a8f80badd896d5c50928dc09c5e55790d80be5ae391a69eb5a939bd479a51\\\",\\\"file:size\\\":729043,\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"]},\\\"nir09\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/UV/2025/7/S2B_T24MUV_20250731T130245_L2A/B09.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,300000,0,-60,9500020],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":60,\\\"scale\\\":0.0001,\\\"offset\\\":-0.1}],\\\"file:checksum\\\":\\\"12204dc40dc95d65874fcc0f86dfb8c1ff7bde863a641bf6d15f1d28cec4fa8b7c41\\\",\\\"file:size\\\":755600,\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"]},\\\"cloud\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/UV/2025/7/S2B_T24MUV_20250731T130245_L2A/CLD_20m.tif\\\",\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Cloud Probabilities\\\",\\\"gsd\\\":20,\\\"proj:shape\\\":[5490,5490],\\\"proj:transform\\\":[20,0,300000,0,-20,9500020],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":20}],\\\"file:checksum\\\":\\\"122092196813093ef9d5317a6406763e6384a57ecd22dbf699662a330613b7d1dc3e\\\",\\\"file:size\\\":903707,\\\"roles\\\":[\\\"data\\\",\\\"cloud\\\"]},\\\"snow\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/UV/2025/7/S2B_T24MUV_20250731T130245_L2A/SNW_20m.tif\\\",\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Snow Probabilities\\\",\\\"proj:shape\\\":[5490,5490],\\\"proj:transform\\\":[20,0,300000,0,-20,9500020],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":20}],\\\"file:checksum\\\":\\\"1220cc3ba722313e05d5081464d339f8b474466b33f2010c7d93bb75002b34639593\\\",\\\"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/24/M/UV/2025/7/S2B_T24MUV_20250731T130245_L2A/L2A_PVI.tif\\\",\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"True color preview\\\",\\\"gsd\\\":320,\\\"proj:shape\\\":[343,343],\\\"proj:transform\\\":[320,0,300000,0,-320,9500020],\\\"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\\\":\\\"12205d75884f21f837418c20e5e7b4476e677d366c7cf8b5ac89b7b9db77c51d8493\\\",\\\"file:size\\\":31227,\\\"roles\\\":[\\\"overview\\\"]},\\\"granule_metadata\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/UV/2025/7/S2B_T24MUV_20250731T130245_L2A/metadata.xml\\\",\\\"type\\\":\\\"application/xml\\\",\\\"file:checksum\\\":\\\"1220c75ed22537251c1e518c1ad7e01b924ad1f9bd99ee91e1198fc71ae8b9e245be\\\",\\\"file:size\\\":262462,\\\"roles\\\":[\\\"metadata\\\"]},\\\"tileinfo_metadata\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/UV/2025/7/S2B_T24MUV_20250731T130245_L2A/tileInfo.json\\\",\\\"type\\\":\\\"application/json\\\",\\\"file:checksum\\\":\\\"1220fc060e42048c9c2428a9050b0a925465f317afb78cd0c709b2d9d3b5ca66fc5c\\\",\\\"file:size\\\":1702,\\\"roles\\\":[\\\"metadata\\\"]},\\\"product_metadata\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/UV/2025/7/S2B_T24MUV_20250731T130245_L2A/product_metadata.xml\\\",\\\"type\\\":\\\"application/xml\\\",\\\"file:checksum\\\":\\\"1220f917cc2b3af83e3de770c43209ba646c1ec20efe35349e927a922132fe77ec10\\\",\\\"file:size\\\":54995,\\\"roles\\\":[\\\"metadata\\\"]},\\\"thumbnail\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/UV/2025/7/S2B_T24MUV_20250731T130245_L2A/L2A_PVI.jpg\\\",\\\"type\\\":\\\"image/jpeg\\\",\\\"title\\\":\\\"Thumbnail\n        of preview image\\\",\\\"file:checksum\\\":\\\"1220dc239d22f89f85a1bd2986668be966f7ddfb8e9e2c5b44a0418d8b765a29ad0e\\\",\\\"file:size\\\":9074,\\\"roles\\\":[\\\"thumbnail\\\"]}},\\\"bbox\\\":[-40.363002,-4.749305,-39.813102,-4.522154],\\\"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/view/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/sentinel-2/v1.0.0/schema.json\\\",\\\"https://stac-extensions.github.io/eo/v1.1.0/schema.json\\\",\\\"https://stac-extensions.github.io/processing/v1.1.0/schema.json\\\",\\\"https://stac-extensions.github.io/mgrs/v1.0.0/schema.json\\\",\\\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\\\"],\\\"id\\\":\\\"S2B_24MUV_20250731_0_L2A\\\",\\\"geometry\\\":{\\\"type\\\":\\\"Polygon\\\",\\\"coordinates\\\":[[[-40.338341395659626,-4.522153617314925],[-40.36300244482362,-4.648744515454023],[-39.813360649512475,-4.749305203093783],[-39.81310181274978,-4.522934064726686],[-40.338341395659626,-4.522153617314925]]]},\\\"bbox\\\":[-40.363002,-4.749305,-39.813102,-4.522154],\\\"properties\\\":{\\\"created\\\":\\\"2025-07-31T14:13:07.662Z\\\",\\\"platform\\\":\\\"sentinel-2b\\\",\\\"constellation\\\":\\\"sentinel-2\\\",\\\"instruments\\\":[\\\"msi\\\"],\\\"eo:cloud_cover\\\":56.813848,\\\"proj:epsg\\\":32724,\\\"proj:centroid\\\":{\\\"lat\\\":-4.61396,\\\"lon\\\":-40.05744},\\\"mgrs:utm_zone\\\":24,\\\"mgrs:latitude_band\\\":\\\"M\\\",\\\"mgrs:grid_square\\\":\\\"UV\\\",\\\"grid:code\\\":\\\"MGRS-24MUV\\\",\\\"view:azimuth\\\":102.87240638401747,\\\"view:incidence_angle\\\":9.193465603525837,\\\"view:sun_azimuth\\\":47.3212056194599,\\\"view:sun_elevation\\\":55.4488222963741,\\\"s2:tile_id\\\":\\\"S2B_OPER_MSI_L2A_TL_2BPS_20250731T132745_A043879_T24MUV_N05.11\\\",\\\"s2:degraded_msi_data_percentage\\\":0,\\\"s2:nodata_pixel_percentage\\\":90.352267,\\\"s2:saturated_defective_pixel_percentage\\\":0,\\\"s2:cloud_shadow_percentage\\\":12.813106,\\\"s2:vegetation_percentage\\\":2.923206,\\\"s2:not_vegetated_percentage\\\":25.361446,\\\"s2:water_percentage\\\":0.035387,\\\"s2:unclassified_percentage\\\":1.709313,\\\"s2:medium_proba_clouds_percentage\\\":17.623764,\\\"s2:high_proba_clouds_percentage\\\":39.190084,\\\"s2:thin_cirrus_percentage\\\":0,\\\"s2:snow_ice_percentage\\\":0,\\\"s2:product_type\\\":\\\"S2MSI2A\\\",\\\"s2:processing_baseline\\\":\\\"05.11\\\",\\\"s2:product_uri\\\":\\\"S2B_MSIL2A_20250731T130249_N0511_R095_T24MUV_20250731T132745.SAFE\\\",\\\"s2:generation_time\\\":\\\"2025-07-31T13:27:45.000000Z\\\",\\\"s2:datatake_id\\\":\\\"GS2B_20250731T130249_043879_N05.11\\\",\\\"s2:datatake_type\\\":\\\"INS-NOBS\\\",\\\"s2:datastrip_id\\\":\\\"S2B_OPER_MSI_L2A_DS_2BPS_20250731T132745_S20250731T130245_N05.11\\\",\\\"s2:reflectance_conversion_factor\\\":0.969778956128144,\\\"datetime\\\":\\\"2025-07-31T13:03:27.058000Z\\\",\\\"s2:sequence\\\":\\\"0\\\",\\\"earthsearch:s3_path\\\":\\\"s3://sentinel-cogs/sentinel-s2-l2a-cogs/24/M/UV/2025/7/S2B_24MUV_20250731_0_L2A\\\",\\\"earthsearch:payload_id\\\":\\\"roda-sentinel2/workflow-sentinel2-to-stac/1114e15e2f6a294911a86b6664c1949c\\\",\\\"earthsearch:boa_offset_applied\\\":true,\\\"processing:software\\\":{\\\"sentinel2-to-stac\\\":\\\"2025.03.06\\\"},\\\"updated\\\":\\\"2025-07-31T14:13:07.662Z\\\"},\\\"links\\\":[{\\\"rel\\\":\\\"self\\\",\\\"type\\\":\\\"application/geo+json\\\",\\\"href\\\":\\\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l2a/items/S2B_24MUV_20250731_0_L2A\\\"},{\\\"rel\\\":\\\"canonical\\\",\\\"href\\\":\\\"s3://sentinel-cogs/sentinel-s2-l2a-cogs/24/M/UV/2025/7/S2B_24MUV_20250731_0_L2A/S2B_24MUV_20250731_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_24MUV_20250731_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_24MUV_20250731_0_L2A/thumbnail\\\"}],\\\"assets\\\":{\\\"aot\\\":{\\\"href\\\":\\\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/24/M/UV/2025/7/S2B_24MUV_20250731_0_L2A/AOT.tif\\\",\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Aerosol optical\n        thickness (AOT)\\\",\\\"gsd\\\":20,\\\"proj:shape\\\":[5490,5490],\\\"proj:transform\\\":[20,0,300000,0,-20,9500020],\\\"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/24/M/UV/2025/7/S2B_24MUV_20250731_0_L2A/B02.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,300000,0,-10,9500020],\\\"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/24/M/UV/2025/7/31/0/qi/CLD_20m.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Cloud\n        Probabilities\\\",\\\"gsd\\\":20,\\\"proj:shape\\\":[5490,5490],\\\"proj:transform\\\":[20,0,300000,0,-20,9500020],\\\"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/24/M/UV/2025/7/S2B_24MUV_20250731_0_L2A/B01.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,300000,0,-60,9500020],\\\"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/24/M/UV/2025/7/S2B_24MUV_20250731_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/24/M/UV/2025/7/S2B_24MUV_20250731_0_L2A/B03.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,300000,0,-10,9500020],\\\"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/24/M/UV/2025/7/S2B_24MUV_20250731_0_L2A/B08.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,300000,0,-10,9500020],\\\"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/24/M/UV/2025/7/S2B_24MUV_20250731_0_L2A/B8A.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,300000,0,-20,9500020],\\\"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/24/M/UV/2025/7/S2B_24MUV_20250731_0_L2A/B09.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,300000,0,-60,9500020],\\\"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/24/M/UV/2025/7/31/0/product_metadata.xml\\\",\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"red\\\":{\\\"href\\\":\\\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/24/M/UV/2025/7/S2B_24MUV_20250731_0_L2A/B04.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,300000,0,-10,9500020],\\\"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/24/M/UV/2025/7/S2B_24MUV_20250731_0_L2A/B05.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,300000,0,-20,9500020],\\\"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/24/M/UV/2025/7/S2B_24MUV_20250731_0_L2A/B06.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,300000,0,-20,9500020],\\\"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/24/M/UV/2025/7/S2B_24MUV_20250731_0_L2A/B07.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,300000,0,-20,9500020],\\\"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/24/M/UV/2025/7/S2B_24MUV_20250731_0_L2A/SCL.tif\\\",\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Scene classification\n        map (SCL)\\\",\\\"gsd\\\":20,\\\"proj:shape\\\":[5490,5490],\\\"proj:transform\\\":[20,0,300000,0,-20,9500020],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":20}],\\\"roles\\\":[\\\"data\\\"]},\\\"snow\\\":{\\\"href\\\":\\\"s3://sentinel-s2-l2a/tiles/24/M/UV/2025/7/31/0/qi/SNW_20m.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Snow\n        Probabilities\\\",\\\"proj:shape\\\":[5490,5490],\\\"proj:transform\\\":[20,0,300000,0,-20,9500020],\\\"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/24/M/UV/2025/7/S2B_24MUV_20250731_0_L2A/B11.tif\\\",\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"SWIR 1.6\\u03BCm\n        - 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,300000,0,-20,9500020],\\\"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/24/M/UV/2025/7/S2B_24MUV_20250731_0_L2A/B12.tif\\\",\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"SWIR 2.2\\u03BCm\n        - 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,300000,0,-20,9500020],\\\"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/24/M/UV/2025/7/S2B_24MUV_20250731_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/24/M/UV/2025/7/S2B_24MUV_20250731_0_L2A/TCI.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,300000,0,-10,9500020],\\\"roles\\\":[\\\"visual\\\"]},\\\"wvp\\\":{\\\"href\\\":\\\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/24/M/UV/2025/7/S2B_24MUV_20250731_0_L2A/WVP.tif\\\",\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Water Vapour (WVP)\\\",\\\"gsd\\\":20,\\\"proj:shape\\\":[5490,5490],\\\"proj:transform\\\":[20,0,300000,0,-20,9500020],\\\"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/24/M/UV/2025/7/S2B_24MUV_20250731_0_L2A/preview.jpg\\\",\\\"type\\\":\\\"image/jpeg\\\",\\\"title\\\":\\\"Thumbnail\n        of preview image\\\",\\\"roles\\\":[\\\"thumbnail\\\"]},\\\"aot-jp2\\\":{\\\"href\\\":\\\"s3://sentinel-s2-l2a/tiles/24/M/UV/2025/7/31/0/R20m/AOT.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Aerosol\n        optical thickness (AOT)\\\",\\\"gsd\\\":20,\\\"proj:shape\\\":[5490,5490],\\\"proj:transform\\\":[20,0,300000,0,-20,9500020],\\\"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/24/M/UV/2025/7/31/0/R10m/B02.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Blue\n        - 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,300000,0,-10,9500020],\\\"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/24/M/UV/2025/7/31/0/R60m/B01.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Coastal\n        - 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,300000,0,-60,9500020],\\\"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/24/M/UV/2025/7/31/0/R10m/B03.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Green\n        - 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,300000,0,-10,9500020],\\\"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/24/M/UV/2025/7/31/0/R10m/B08.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"NIR\n        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,300000,0,-10,9500020],\\\"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/24/M/UV/2025/7/31/0/R20m/B8A.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"NIR\n        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,300000,0,-20,9500020],\\\"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/24/M/UV/2025/7/31/0/R60m/B09.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"NIR\n        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,300000,0,-60,9500020],\\\"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/24/M/UV/2025/7/31/0/R10m/B04.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Red\n        - 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,300000,0,-10,9500020],\\\"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/24/M/UV/2025/7/31/0/R20m/B05.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Red\n        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,300000,0,-20,9500020],\\\"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/24/M/UV/2025/7/31/0/R20m/B06.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Red\n        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,300000,0,-20,9500020],\\\"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/24/M/UV/2025/7/31/0/R20m/B07.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Red\n        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,300000,0,-20,9500020],\\\"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/24/M/UV/2025/7/31/0/R20m/SCL.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Scene\n        classification map (SCL)\\\",\\\"gsd\\\":20,\\\"proj:shape\\\":[5490,5490],\\\"proj:transform\\\":[20,0,300000,0,-20,9500020],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":20}],\\\"roles\\\":[\\\"data\\\"]},\\\"swir16-jp2\\\":{\\\"href\\\":\\\"s3://sentinel-s2-l2a/tiles/24/M/UV/2025/7/31/0/R20m/B11.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"SWIR\n        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,300000,0,-20,9500020],\\\"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/24/M/UV/2025/7/31/0/R20m/B12.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"SWIR\n        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,300000,0,-20,9500020],\\\"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/24/M/UV/2025/7/31/0/R10m/TCI.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"True\n        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,300000,0,-10,9500020],\\\"roles\\\":[\\\"visual\\\"]},\\\"wvp-jp2\\\":{\\\"href\\\":\\\"s3://sentinel-s2-l2a/tiles/24/M/UV/2025/7/31/0/R20m/WVP.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Water\n        Vapour (WVP)\\\",\\\"gsd\\\":20,\\\"proj:shape\\\":[5490,5490],\\\"proj:transform\\\":[20,0,300000,0,-20,9500020],\\\"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/view/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/sentinel-2/v1.0.0/schema.json\\\",\\\"https://stac-extensions.github.io/eo/v1.1.0/schema.json\\\",\\\"https://stac-extensions.github.io/processing/v1.1.0/schema.json\\\",\\\"https://stac-extensions.github.io/mgrs/v1.0.0/schema.json\\\",\\\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\\\"],\\\"id\\\":\\\"S2B_24MUV_20250731_0_L1C\\\",\\\"geometry\\\":{\\\"type\\\":\\\"Polygon\\\",\\\"coordinates\\\":[[[-40.338341395659626,-4.522153617314925],[-40.36300244482362,-4.648744515454023],[-39.813360649512475,-4.749305203093783],[-39.81310181274978,-4.522934064726686],[-40.338341395659626,-4.522153617314925]]]},\\\"bbox\\\":[-40.363002,-4.749305,-39.813102,-4.522154],\\\"properties\\\":{\\\"created\\\":\\\"2025-07-31T14:13:07.597Z\\\",\\\"platform\\\":\\\"sentinel-2b\\\",\\\"constellation\\\":\\\"sentinel-2\\\",\\\"instruments\\\":[\\\"msi\\\"],\\\"eo:cloud_cover\\\":45.6180746319331,\\\"proj:epsg\\\":32724,\\\"proj:centroid\\\":{\\\"lat\\\":-4.61396,\\\"lon\\\":-40.05744},\\\"mgrs:utm_zone\\\":24,\\\"mgrs:latitude_band\\\":\\\"M\\\",\\\"mgrs:grid_square\\\":\\\"UV\\\",\\\"grid:code\\\":\\\"MGRS-24MUV\\\",\\\"view:azimuth\\\":102.87240638401747,\\\"view:incidence_angle\\\":9.193465603525837,\\\"view:sun_azimuth\\\":47.3212056194599,\\\"view:sun_elevation\\\":55.4488222963741,\\\"s2:tile_id\\\":\\\"S2B_OPER_MSI_L1C_TL_2BPS_20250731T131834_A043879_T24MUV_N05.11\\\",\\\"s2:degraded_msi_data_percentage\\\":0,\\\"s2:product_type\\\":\\\"S2MSI1C\\\",\\\"s2:processing_baseline\\\":\\\"05.11\\\",\\\"s2:product_uri\\\":\\\"S2B_MSIL1C_20250731T130249_N0511_R095_T24MUV_20250731T131834.SAFE\\\",\\\"s2:generation_time\\\":\\\"2025-07-31T13:18:34.000000Z\\\",\\\"s2:datatake_id\\\":\\\"GS2B_20250731T130249_043879_N05.11\\\",\\\"s2:datatake_type\\\":\\\"INS-NOBS\\\",\\\"s2:datastrip_id\\\":\\\"S2B_OPER_MSI_L1C_DS_2BPS_20250731T131834_S20250731T130245_N05.11\\\",\\\"s2:reflectance_conversion_factor\\\":0.969778956128144,\\\"datetime\\\":\\\"2025-07-31T13:03:27.058000Z\\\",\\\"s2:sequence\\\":\\\"0\\\",\\\"earthsearch:s3_path\\\":\\\"s3://earthsearch-data/sentinel-2-l1c/24/M/UV/2025/7/S2B_24MUV_20250731_0_L1C\\\",\\\"earthsearch:payload_id\\\":\\\"roda-sentinel2/workflow-sentinel2-to-stac/1114e15e2f6a294911a86b6664c1949c\\\",\\\"processing:software\\\":{\\\"sentinel2-to-stac\\\":\\\"2025.03.06\\\"},\\\"updated\\\":\\\"2025-07-31T14:13:07.597Z\\\"},\\\"links\\\":[{\\\"rel\\\":\\\"self\\\",\\\"type\\\":\\\"application/geo+json\\\",\\\"href\\\":\\\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l1c/items/S2B_24MUV_20250731_0_L1C\\\"},{\\\"rel\\\":\\\"canonical\\\",\\\"href\\\":\\\"s3://earthsearch-data/sentinel-2-l1c/24/M/UV/2025/7/S2B_24MUV_20250731_0_L1C/S2B_24MUV_20250731_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_24MUV_20250731_0_L1C/thumbnail\\\"}],\\\"assets\\\":{\\\"blue\\\":{\\\"href\\\":\\\"s3://sentinel-s2-l1c/tiles/24/M/UV/2025/7/31/0/B02.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Blue\n        - 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,300000,0,-10,9500020],\\\"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/24/M/UV/2025/7/31/0/B10.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Cirrus\n        - 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,300000,0,-60,9500020],\\\"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/24/M/UV/2025/7/31/0/B01.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Coastal\n        - 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,300000,0,-60,9500020],\\\"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/24/M/UV/2025/7/31/0/metadata.xml\\\",\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"green\\\":{\\\"href\\\":\\\"s3://sentinel-s2-l1c/tiles/24/M/UV/2025/7/31/0/B03.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Green\n        - 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,300000,0,-10,9500020],\\\"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/24/M/UV/2025/7/31/0/B08.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"NIR\n        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,300000,0,-10,9500020],\\\"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/24/M/UV/2025/7/31/0/B8A.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"NIR\n        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,300000,0,-20,9500020],\\\"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/24/M/UV/2025/7/31/0/B09.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"NIR\n        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,300000,0,-60,9500020],\\\"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/24/M/UV/2025/7/31/0/product_metadata.xml\\\",\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"red\\\":{\\\"href\\\":\\\"s3://sentinel-s2-l1c/tiles/24/M/UV/2025/7/31/0/B04.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Red\n        - 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,300000,0,-10,9500020],\\\"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/24/M/UV/2025/7/31/0/B05.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Red\n        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,300000,0,-20,9500020],\\\"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/24/M/UV/2025/7/31/0/B06.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Red\n        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,300000,0,-20,9500020],\\\"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/24/M/UV/2025/7/31/0/B07.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Red\n        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,300000,0,-20,9500020],\\\"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/24/M/UV/2025/7/31/0/B11.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"SWIR\n        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,300000,0,-20,9500020],\\\"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/24/M/UV/2025/7/31/0/B12.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"SWIR\n        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,300000,0,-20,9500020],\\\"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/24/M/UV/2025/7/31/0/tileInfo.json\\\",\\\"type\\\":\\\"application/json\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"visual\\\":{\\\"href\\\":\\\"s3://sentinel-s2-l1c/tiles/24/M/UV/2025/7/31/0/TCI.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"True\n        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,300000,0,-10,9500020],\\\"roles\\\":[\\\"visual\\\"]}},\\\"collection\\\":\\\"sentinel-2-l1c\\\"},{\\\"type\\\":\\\"Feature\\\",\\\"stac_version\\\":\\\"1.0.0\\\",\\\"id\\\":\\\"S2B_T24MVV_20250731T130245_L2A\\\",\\\"properties\\\":{\\\"created\\\":\\\"2025-07-31T14:13:41.760Z\\\",\\\"platform\\\":\\\"sentinel-2b\\\",\\\"constellation\\\":\\\"sentinel-2\\\",\\\"instruments\\\":[\\\"msi\\\"],\\\"eo:cloud_cover\\\":34.760532,\\\"proj:epsg\\\":32724,\\\"proj:centroid\\\":{\\\"lat\\\":-4.68498,\\\"lon\\\":-39.35253},\\\"mgrs:utm_zone\\\":24,\\\"mgrs:latitude_band\\\":\\\"M\\\",\\\"mgrs:grid_square\\\":\\\"VV\\\",\\\"grid:code\\\":\\\"MGRS-24MVV\\\",\\\"view:azimuth\\\":112.77288584966978,\\\"view:incidence_angle\\\":3.576466433404597,\\\"view:sun_azimuth\\\":46.3495242049325,\\\"view:sun_elevation\\\":56.095293650102,\\\"s2:tile_id\\\":\\\"S2B_OPER_MSI_L2A_TL_2BPS_20250731T132745_A043879_T24MVV_N05.11\\\",\\\"s2:degraded_msi_data_percentage\\\":0.0181,\\\"s2:nodata_pixel_percentage\\\":68.916178,\\\"s2:saturated_defective_pixel_percentage\\\":0,\\\"s2:cloud_shadow_percentage\\\":18.666065,\\\"s2:vegetation_percentage\\\":26.275885,\\\"s2:not_vegetated_percentage\\\":19.076003,\\\"s2:water_percentage\\\":0.191873,\\\"s2:unclassified_percentage\\\":0.887349,\\\"s2:medium_proba_clouds_percentage\\\":13.832991,\\\"s2:high_proba_clouds_percentage\\\":20.927456,\\\"s2:thin_cirrus_percentage\\\":0.000085,\\\"s2:snow_ice_percentage\\\":0,\\\"s2:product_type\\\":\\\"S2MSI2A\\\",\\\"s2:processing_baseline\\\":\\\"05.11\\\",\\\"s2:product_uri\\\":\\\"S2B_MSIL2A_20250731T130249_N0511_R095_T24MVV_20250731T132745.SAFE\\\",\\\"s2:generation_time\\\":\\\"2025-07-31T13:27:45.000000Z\\\",\\\"s2:datatake_id\\\":\\\"GS2B_20250731T130249_043879_N05.11\\\",\\\"s2:datatake_type\\\":\\\"INS-NOBS\\\",\\\"s2:datastrip_id\\\":\\\"S2B_OPER_MSI_L2A_DS_2BPS_20250731T132745_S20250731T130245_N05.11\\\",\\\"s2:reflectance_conversion_factor\\\":0.969778956128144,\\\"datetime\\\":\\\"2025-07-31T13:03:25.899000Z\\\",\\\"earthsearch:payload_id\\\":\\\"roda-sentinel-2-c1-l2a/workflow-sentinel-2-c1-l2a-to-stac/2a50f2547216859b70ec677b7c77d33c\\\",\\\"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-31T14:13:41.760Z\\\"},\\\"geometry\\\":{\\\"type\\\":\\\"Polygon\\\",\\\"coordinates\\\":[[[-39.9017777643017,-4.522829036519048],[-39.90204266562989,-4.732113850681315],[-38.91197372397326,-4.938761763132557],[-38.912026172437265,-4.523385349572578],[-39.9017777643017,-4.522829036519048]]]},\\\"links\\\":[{\\\"rel\\\":\\\"self\\\",\\\"type\\\":\\\"application/geo+json\\\",\\\"href\\\":\\\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-c1-l2a/items/S2B_T24MVV_20250731T130245_L2A\\\"},{\\\"rel\\\":\\\"canonical\\\",\\\"href\\\":\\\"s3://e84-earth-search-sentinel-data/sentinel-2-c1-l2a/24/M/VV/2025/7/S2B_T24MVV_20250731T130245_L2A/S2B_T24MVV_20250731T130245_L2A.json\\\",\\\"type\\\":\\\"application/json\\\"},{\\\"rel\\\":\\\"via\\\",\\\"href\\\":\\\"s3://sentinel-s2-l2a/tiles/24/M/VV/2025/7/31/0/metadata.xml\\\",\\\"type\\\":\\\"application/xml\\\",\\\"title\\\":\\\"Granule\n        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_T24MVV_20250731T130245_L2A/thumbnail\\\"}],\\\"assets\\\":{\\\"red\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/VV/2025/7/S2B_T24MVV_20250731T130245_L2A/B04.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,9500020],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":10,\\\"scale\\\":0.0001,\\\"offset\\\":-0.1}],\\\"file:checksum\\\":\\\"122028f49e717b51c052161899c08fb3a58f7e833d77568753fd170f8839c4eeca84\\\",\\\"file:size\\\":70765784,\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"]},\\\"green\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/VV/2025/7/S2B_T24MVV_20250731T130245_L2A/B03.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,9500020],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":10,\\\"scale\\\":0.0001,\\\"offset\\\":-0.1}],\\\"file:checksum\\\":\\\"1220cdc511fda09d0268757210f76d10e83ae0d02b3262299feeb09222e41761353e\\\",\\\"file:size\\\":69849397,\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"]},\\\"blue\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/VV/2025/7/S2B_T24MVV_20250731T130245_L2A/B02.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,9500020],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":10,\\\"scale\\\":0.0001,\\\"offset\\\":-0.1}],\\\"file:checksum\\\":\\\"12205ed01c8e69b7f5e2f9529637d3af5ec0af2e200123d21c98ac013e05548b2402\\\",\\\"file:size\\\":69386773,\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"]},\\\"visual\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/VV/2025/7/S2B_T24MVV_20250731T130245_L2A/TCI.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,9500020],\\\"file:checksum\\\":\\\"122031d94f957ef4c681b1dc804056193ca667b6977f70e06891f98d390b5dc2d41b\\\",\\\"file:size\\\":82902679,\\\"roles\\\":[\\\"visual\\\"]},\\\"nir\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/VV/2025/7/S2B_T24MVV_20250731T130245_L2A/B08.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,9500020],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":10,\\\"scale\\\":0.0001,\\\"offset\\\":-0.1}],\\\"file:checksum\\\":\\\"12202732045ad5c34f86b2722732f60ccf04b835708988480329ff8cf11406b6db10\\\",\\\"file:size\\\":70289751,\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"]},\\\"swir22\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/VV/2025/7/S2B_T24MVV_20250731T130245_L2A/B12.tif\\\",\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"SWIR 2.2\\u03BCm\n        - 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,9500020],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":20,\\\"scale\\\":0.0001,\\\"offset\\\":-0.1}],\\\"file:checksum\\\":\\\"1220809593c630a1cfd5ef919ece8fce01e4f4bba43116c9704c05704dfe589d0673\\\",\\\"file:size\\\":19187912,\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"]},\\\"rededge2\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/VV/2025/7/S2B_T24MVV_20250731T130245_L2A/B06.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,9500020],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":20,\\\"scale\\\":0.0001,\\\"offset\\\":-0.1}],\\\"file:checksum\\\":\\\"1220028b45ed73d613de092170ea44abc9944eab2a46c4968063f80d6b9fa196a9ea\\\",\\\"file:size\\\":19377112,\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"]},\\\"rededge3\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/VV/2025/7/S2B_T24MVV_20250731T130245_L2A/B07.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,9500020],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":20,\\\"scale\\\":0.0001,\\\"offset\\\":-0.1}],\\\"file:checksum\\\":\\\"1220dc63eee675281e42ba11fa940c58ac7bf8639872c33ebac810d80847d6515215\\\",\\\"file:size\\\":19438302,\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"]},\\\"rededge1\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/VV/2025/7/S2B_T24MVV_20250731T130245_L2A/B05.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,9500020],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":20,\\\"scale\\\":0.0001,\\\"offset\\\":-0.1}],\\\"file:checksum\\\":\\\"12203d2c1d91a262bfaaf2250cfe1ff248e532c3e160198dbe821f1985ab3a529ccf\\\",\\\"file:size\\\":19196938,\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"]},\\\"swir16\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/VV/2025/7/S2B_T24MVV_20250731T130245_L2A/B11.tif\\\",\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"SWIR 1.6\\u03BCm\n        - 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,9500020],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":20,\\\"scale\\\":0.0001,\\\"offset\\\":-0.1}],\\\"file:checksum\\\":\\\"1220301314b7b13eb914adc214a9d898451efaf8c456169a5b4e8de5b08637008385\\\",\\\"file:size\\\":19318145,\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"]},\\\"wvp\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/VV/2025/7/S2B_T24MVV_20250731T130245_L2A/WVP.tif\\\",\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Water Vapour (WVP)\\\",\\\"gsd\\\":20,\\\"proj:shape\\\":[5490,5490],\\\"proj:transform\\\":[20,0,399960,0,-20,9500020],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":20,\\\"unit\\\":\\\"cm\\\",\\\"scale\\\":0.001,\\\"offset\\\":0}],\\\"file:checksum\\\":\\\"122063685c066099ccc2d7612b41b90219c1003032fcc2b28a37d24aa43263de5dad\\\",\\\"file:size\\\":8455203,\\\"roles\\\":[\\\"data\\\"]},\\\"nir08\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/VV/2025/7/S2B_T24MVV_20250731T130245_L2A/B8A.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,9500020],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":20,\\\"scale\\\":0.0001,\\\"offset\\\":-0.1}],\\\"file:checksum\\\":\\\"1220a8512f4fcff4dd948c20a87324070344d64bb67b0d042c04acd642ed3096fbe8\\\",\\\"file:size\\\":19435853,\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"]},\\\"scl\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/VV/2025/7/S2B_T24MVV_20250731T130245_L2A/SCL.tif\\\",\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Scene classification\n        map (SCL)\\\",\\\"gsd\\\":20,\\\"proj:shape\\\":[5490,5490],\\\"proj:transform\\\":[20,0,399960,0,-20,9500020],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":20}],\\\"file:checksum\\\":\\\"12202ccea0fe29848d3686f528a7be353b14e1883b59f75b55cfbfbd2c399188e377\\\",\\\"file:size\\\":1425643,\\\"roles\\\":[\\\"data\\\"]},\\\"aot\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/VV/2025/7/S2B_T24MVV_20250731T130245_L2A/AOT.tif\\\",\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Aerosol optical\n        thickness (AOT)\\\",\\\"gsd\\\":20,\\\"proj:shape\\\":[5490,5490],\\\"proj:transform\\\":[20,0,399960,0,-20,9500020],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":20,\\\"scale\\\":0.001,\\\"offset\\\":0}],\\\"file:checksum\\\":\\\"12204945658283ce90858d38d7603e01d72f6bc00dfc7cdd290a9a0f750865a4a790\\\",\\\"file:size\\\":439838,\\\"roles\\\":[\\\"data\\\"]},\\\"coastal\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/VV/2025/7/S2B_T24MVV_20250731T130245_L2A/B01.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,9500020],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":60,\\\"scale\\\":0.0001,\\\"offset\\\":-0.1}],\\\"file:checksum\\\":\\\"1220c4184d19fd27d027471a9bdb392a5bb7b9e96b2adfdcff7f4d8bf42b8e273e35\\\",\\\"file:size\\\":2180397,\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"]},\\\"nir09\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/VV/2025/7/S2B_T24MVV_20250731T130245_L2A/B09.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,9500020],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":60,\\\"scale\\\":0.0001,\\\"offset\\\":-0.1}],\\\"file:checksum\\\":\\\"12207c605b6600f3b2f1f4b954b8adae444c92e9342fb5ba01b618d792eb870a4851\\\",\\\"file:size\\\":2317270,\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"]},\\\"cloud\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/VV/2025/7/S2B_T24MVV_20250731T130245_L2A/CLD_20m.tif\\\",\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Cloud Probabilities\\\",\\\"gsd\\\":20,\\\"proj:shape\\\":[5490,5490],\\\"proj:transform\\\":[20,0,399960,0,-20,9500020],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":20}],\\\"file:checksum\\\":\\\"1220a88ea8dbe546b22c68635dbb9aa9c286de1bbc64df57f216a8e70fba9a60d68a\\\",\\\"file:size\\\":2066193,\\\"roles\\\":[\\\"data\\\",\\\"cloud\\\"]},\\\"snow\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/VV/2025/7/S2B_T24MVV_20250731T130245_L2A/SNW_20m.tif\\\",\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Snow Probabilities\\\",\\\"proj:shape\\\":[5490,5490],\\\"proj:transform\\\":[20,0,399960,0,-20,9500020],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":20}],\\\"file:checksum\\\":\\\"122071e499a44966289c36f710f9eef3ebaccf51ec4c119e04919e4542942f01839b\\\",\\\"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/24/M/VV/2025/7/S2B_T24MVV_20250731T130245_L2A/L2A_PVI.tif\\\",\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"True color preview\\\",\\\"gsd\\\":320,\\\"proj:shape\\\":[343,343],\\\"proj:transform\\\":[320,0,399960,0,-320,9500020],\\\"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\\\":\\\"12203a00b816c6ae8dce4a69c37c8f6e60bf2b60f2fd67139ff06f8d1a3839a196d8\\\",\\\"file:size\\\":106599,\\\"roles\\\":[\\\"overview\\\"]},\\\"granule_metadata\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/VV/2025/7/S2B_T24MVV_20250731T130245_L2A/metadata.xml\\\",\\\"type\\\":\\\"application/xml\\\",\\\"file:checksum\\\":\\\"1220b9faaa8a0dbe8259ce58d786c8835b73bc8d324fad6a8e2e979f61619f82f78c\\\",\\\"file:size\\\":509329,\\\"roles\\\":[\\\"metadata\\\"]},\\\"tileinfo_metadata\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/VV/2025/7/S2B_T24MVV_20250731T130245_L2A/tileInfo.json\\\",\\\"type\\\":\\\"application/json\\\",\\\"file:checksum\\\":\\\"1220d44f6df562080afbf5a075e7cac1ad5caba427d8eed375bab6fcaf6e56cd8161\\\",\\\"file:size\\\":1634,\\\"roles\\\":[\\\"metadata\\\"]},\\\"product_metadata\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/VV/2025/7/S2B_T24MVV_20250731T130245_L2A/product_metadata.xml\\\",\\\"type\\\":\\\"application/xml\\\",\\\"file:checksum\\\":\\\"1220237cfd26c2bc8bcd982a880131befa820905ee9d95619875d6fcb6b3d4e7209c\\\",\\\"file:size\\\":55342,\\\"roles\\\":[\\\"metadata\\\"]},\\\"thumbnail\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/VV/2025/7/S2B_T24MVV_20250731T130245_L2A/L2A_PVI.jpg\\\",\\\"type\\\":\\\"image/jpeg\\\",\\\"title\\\":\\\"Thumbnail\n        of preview image\\\",\\\"file:checksum\\\":\\\"122095d470f97b2e1abe2c24b60d2d9d00fcbb7918b10c6fd101c4ea1712a128ce06\\\",\\\"file:size\\\":22269,\\\"roles\\\":[\\\"thumbnail\\\"]}},\\\"bbox\\\":[-39.902043,-4.938762,-38.911974,-4.522829],\\\"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\\\"}],\\\"links\\\":[{\\\"rel\\\":\\\"next\\\",\\\"title\\\":\\\"Next\n        page of Items\\\",\\\"method\\\":\\\"POST\\\",\\\"type\\\":\\\"application/geo+json\\\",\\\"href\\\":\\\"https://earth-search.aws.element84.com/v1/search\\\",\\\"merge\\\":false,\\\"body\\\":{\\\"next\\\":\\\"2025-07-31T13:03:25.899000Z,S2B_T24MVV_20250731T130245_L2A,sentinel-2-c1-l2a\\\"}},{\\\"rel\\\":\\\"root\\\",\\\"type\\\":\\\"application/json\\\",\\\"href\\\":\\\"https://earth-search.aws.element84.com/v1\\\"}]}\"\n    headers:\n      Connection:\n      - keep-alive\n      Content-Encoding:\n      - gzip\n      Content-Length:\n      - '12963'\n      Content-Type:\n      - application/geo+json; charset=utf-8\n      Date:\n      - Thu, 31 Jul 2025 15:06:47 GMT\n      Via:\n      - 1.1 17a5b9b0c17eb15303e6341f5fc26610.cloudfront.net (CloudFront)\n      X-Amz-Cf-Id:\n      - mv7WY4DvTwVXH6Q6AHUXzBo5m7lj7HDlCaZYs7M67whq6jhbLUwWrw==\n      X-Amz-Cf-Pop:\n      - DEN52-C1\n      X-Amzn-Trace-Id:\n      - Root=1-688b8687-55019ae95fae77f7164efdc5;Parent=7c5c30379ecc0a0b;Sampled=0;Lineage=1:9e2884e9:0\n      X-Cache:\n      - Miss from cloudfront\n      access-control-allow-origin:\n      - '*'\n      etag:\n      - W/\"20b3e-cWyjcjlQRa8qjMFeTynG/90GP00\"\n      x-amz-apigw-id:\n      - OlH1KEhMPHcEjUA=\n      x-amzn-Remapped-content-length:\n      - '133950'\n      x-amzn-RequestId:\n      - ab282fca-807d-4054-873e-0a1c12607c11\n      x-powered-by:\n      - Express\n    status:\n      code: 200\n      message: OK\n- request:\n    body: '{\"next\": \"2025-07-31T13:03:25.899000Z,S2B_T24MVV_20250731T130245_L2A,sentinel-2-c1-l2a\"}'\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '88'\n      Content-Type:\n      - application/json\n      User-Agent:\n      - python-requests/2.32.4\n    method: POST\n    uri: https://earth-search.aws.element84.com/v1/search\n  response:\n    body:\n      string: \"{\\\"type\\\":\\\"FeatureCollection\\\",\\\"stac_version\\\":\\\"1.0.0\\\",\\\"stac_extensions\\\":[],\\\"context\\\":{\\\"limit\\\":10,\\\"matched\\\":115912758,\\\"returned\\\":10},\\\"numberMatched\\\":115912758,\\\"numberReturned\\\":10,\\\"features\\\":[{\\\"type\\\":\\\"Feature\\\",\\\"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/grid/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/processing/v1.1.0/schema.json\\\",\\\"https://stac-extensions.github.io/mgrs/v1.0.0/schema.json\\\",\\\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\\\"],\\\"id\\\":\\\"S2B_24MVV_20250731_0_L2A\\\",\\\"geometry\\\":{\\\"type\\\":\\\"Polygon\\\",\\\"coordinates\\\":[[[-39.9017777643017,-4.522829036519048],[-39.90204266562989,-4.732113850681315],[-38.91197372397326,-4.938761763132557],[-38.912026172437265,-4.523385349572578],[-39.9017777643017,-4.522829036519048]]]},\\\"bbox\\\":[-39.902043,-4.938762,-38.911974,-4.522829],\\\"properties\\\":{\\\"created\\\":\\\"2025-07-31T14:15:52.619Z\\\",\\\"platform\\\":\\\"sentinel-2b\\\",\\\"constellation\\\":\\\"sentinel-2\\\",\\\"instruments\\\":[\\\"msi\\\"],\\\"eo:cloud_cover\\\":34.760532,\\\"proj:epsg\\\":32724,\\\"proj:centroid\\\":{\\\"lat\\\":-4.68498,\\\"lon\\\":-39.35253},\\\"mgrs:utm_zone\\\":24,\\\"mgrs:latitude_band\\\":\\\"M\\\",\\\"mgrs:grid_square\\\":\\\"VV\\\",\\\"grid:code\\\":\\\"MGRS-24MVV\\\",\\\"view:azimuth\\\":112.77288584966978,\\\"view:incidence_angle\\\":3.576466433404597,\\\"view:sun_azimuth\\\":46.3495242049325,\\\"view:sun_elevation\\\":56.095293650102,\\\"s2:tile_id\\\":\\\"S2B_OPER_MSI_L2A_TL_2BPS_20250731T132745_A043879_T24MVV_N05.11\\\",\\\"s2:degraded_msi_data_percentage\\\":0.0181,\\\"s2:nodata_pixel_percentage\\\":68.916178,\\\"s2:saturated_defective_pixel_percentage\\\":0,\\\"s2:cloud_shadow_percentage\\\":18.666065,\\\"s2:vegetation_percentage\\\":26.275885,\\\"s2:not_vegetated_percentage\\\":19.076003,\\\"s2:water_percentage\\\":0.191873,\\\"s2:unclassified_percentage\\\":0.887349,\\\"s2:medium_proba_clouds_percentage\\\":13.832991,\\\"s2:high_proba_clouds_percentage\\\":20.927456,\\\"s2:thin_cirrus_percentage\\\":0.000085,\\\"s2:snow_ice_percentage\\\":0,\\\"s2:product_type\\\":\\\"S2MSI2A\\\",\\\"s2:processing_baseline\\\":\\\"05.11\\\",\\\"s2:product_uri\\\":\\\"S2B_MSIL2A_20250731T130249_N0511_R095_T24MVV_20250731T132745.SAFE\\\",\\\"s2:generation_time\\\":\\\"2025-07-31T13:27:45.000000Z\\\",\\\"s2:datatake_id\\\":\\\"GS2B_20250731T130249_043879_N05.11\\\",\\\"s2:datatake_type\\\":\\\"INS-NOBS\\\",\\\"s2:datastrip_id\\\":\\\"S2B_OPER_MSI_L2A_DS_2BPS_20250731T132745_S20250731T130245_N05.11\\\",\\\"s2:reflectance_conversion_factor\\\":0.969778956128144,\\\"datetime\\\":\\\"2025-07-31T13:03:25.899000Z\\\",\\\"s2:sequence\\\":\\\"0\\\",\\\"earthsearch:s3_path\\\":\\\"s3://sentinel-cogs/sentinel-s2-l2a-cogs/24/M/VV/2025/7/S2B_24MVV_20250731_0_L2A\\\",\\\"earthsearch:payload_id\\\":\\\"roda-sentinel2/workflow-sentinel2-to-stac/dc9d76a81a9517be1c85439677d72052\\\",\\\"earthsearch:boa_offset_applied\\\":true,\\\"processing:software\\\":{\\\"sentinel2-to-stac\\\":\\\"2025.03.06\\\"},\\\"updated\\\":\\\"2025-07-31T14:15:52.619Z\\\"},\\\"links\\\":[{\\\"rel\\\":\\\"self\\\",\\\"type\\\":\\\"application/geo+json\\\",\\\"href\\\":\\\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l2a/items/S2B_24MVV_20250731_0_L2A\\\"},{\\\"rel\\\":\\\"canonical\\\",\\\"href\\\":\\\"s3://sentinel-cogs/sentinel-s2-l2a-cogs/24/M/VV/2025/7/S2B_24MVV_20250731_0_L2A/S2B_24MVV_20250731_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_24MVV_20250731_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_24MVV_20250731_0_L2A/thumbnail\\\"}],\\\"assets\\\":{\\\"aot\\\":{\\\"href\\\":\\\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/24/M/VV/2025/7/S2B_24MVV_20250731_0_L2A/AOT.tif\\\",\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Aerosol optical\n        thickness (AOT)\\\",\\\"gsd\\\":20,\\\"proj:shape\\\":[5490,5490],\\\"proj:transform\\\":[20,0,399960,0,-20,9500020],\\\"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/24/M/VV/2025/7/S2B_24MVV_20250731_0_L2A/B02.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,9500020],\\\"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/24/M/VV/2025/7/31/0/qi/CLD_20m.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Cloud\n        Probabilities\\\",\\\"gsd\\\":20,\\\"proj:shape\\\":[5490,5490],\\\"proj:transform\\\":[20,0,399960,0,-20,9500020],\\\"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/24/M/VV/2025/7/S2B_24MVV_20250731_0_L2A/B01.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,9500020],\\\"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/24/M/VV/2025/7/S2B_24MVV_20250731_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/24/M/VV/2025/7/S2B_24MVV_20250731_0_L2A/B03.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,9500020],\\\"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/24/M/VV/2025/7/S2B_24MVV_20250731_0_L2A/B08.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,9500020],\\\"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/24/M/VV/2025/7/S2B_24MVV_20250731_0_L2A/B8A.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,9500020],\\\"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/24/M/VV/2025/7/S2B_24MVV_20250731_0_L2A/B09.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,9500020],\\\"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/24/M/VV/2025/7/31/0/product_metadata.xml\\\",\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"red\\\":{\\\"href\\\":\\\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/24/M/VV/2025/7/S2B_24MVV_20250731_0_L2A/B04.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,9500020],\\\"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/24/M/VV/2025/7/S2B_24MVV_20250731_0_L2A/B05.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,9500020],\\\"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/24/M/VV/2025/7/S2B_24MVV_20250731_0_L2A/B06.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,9500020],\\\"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/24/M/VV/2025/7/S2B_24MVV_20250731_0_L2A/B07.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,9500020],\\\"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/24/M/VV/2025/7/S2B_24MVV_20250731_0_L2A/SCL.tif\\\",\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Scene classification\n        map (SCL)\\\",\\\"gsd\\\":20,\\\"proj:shape\\\":[5490,5490],\\\"proj:transform\\\":[20,0,399960,0,-20,9500020],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":20}],\\\"roles\\\":[\\\"data\\\"]},\\\"snow\\\":{\\\"href\\\":\\\"s3://sentinel-s2-l2a/tiles/24/M/VV/2025/7/31/0/qi/SNW_20m.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Snow\n        Probabilities\\\",\\\"proj:shape\\\":[5490,5490],\\\"proj:transform\\\":[20,0,399960,0,-20,9500020],\\\"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/24/M/VV/2025/7/S2B_24MVV_20250731_0_L2A/B11.tif\\\",\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"SWIR 1.6\\u03BCm\n        - 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,9500020],\\\"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/24/M/VV/2025/7/S2B_24MVV_20250731_0_L2A/B12.tif\\\",\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"SWIR 2.2\\u03BCm\n        - 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,9500020],\\\"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/24/M/VV/2025/7/S2B_24MVV_20250731_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/24/M/VV/2025/7/S2B_24MVV_20250731_0_L2A/TCI.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,9500020],\\\"roles\\\":[\\\"visual\\\"]},\\\"wvp\\\":{\\\"href\\\":\\\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/24/M/VV/2025/7/S2B_24MVV_20250731_0_L2A/WVP.tif\\\",\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Water Vapour (WVP)\\\",\\\"gsd\\\":20,\\\"proj:shape\\\":[5490,5490],\\\"proj:transform\\\":[20,0,399960,0,-20,9500020],\\\"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/24/M/VV/2025/7/S2B_24MVV_20250731_0_L2A/preview.jpg\\\",\\\"type\\\":\\\"image/jpeg\\\",\\\"title\\\":\\\"Thumbnail\n        of preview image\\\",\\\"roles\\\":[\\\"thumbnail\\\"]},\\\"aot-jp2\\\":{\\\"href\\\":\\\"s3://sentinel-s2-l2a/tiles/24/M/VV/2025/7/31/0/R20m/AOT.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Aerosol\n        optical thickness (AOT)\\\",\\\"gsd\\\":20,\\\"proj:shape\\\":[5490,5490],\\\"proj:transform\\\":[20,0,399960,0,-20,9500020],\\\"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/24/M/VV/2025/7/31/0/R10m/B02.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Blue\n        - 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,9500020],\\\"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/24/M/VV/2025/7/31/0/R60m/B01.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Coastal\n        - 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,9500020],\\\"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/24/M/VV/2025/7/31/0/R10m/B03.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Green\n        - 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,9500020],\\\"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/24/M/VV/2025/7/31/0/R10m/B08.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"NIR\n        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,9500020],\\\"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/24/M/VV/2025/7/31/0/R20m/B8A.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"NIR\n        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,9500020],\\\"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/24/M/VV/2025/7/31/0/R60m/B09.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"NIR\n        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,9500020],\\\"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/24/M/VV/2025/7/31/0/R10m/B04.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Red\n        - 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,9500020],\\\"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/24/M/VV/2025/7/31/0/R20m/B05.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Red\n        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,9500020],\\\"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/24/M/VV/2025/7/31/0/R20m/B06.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Red\n        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,9500020],\\\"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/24/M/VV/2025/7/31/0/R20m/B07.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Red\n        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,9500020],\\\"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/24/M/VV/2025/7/31/0/R20m/SCL.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Scene\n        classification map (SCL)\\\",\\\"gsd\\\":20,\\\"proj:shape\\\":[5490,5490],\\\"proj:transform\\\":[20,0,399960,0,-20,9500020],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":20}],\\\"roles\\\":[\\\"data\\\"]},\\\"swir16-jp2\\\":{\\\"href\\\":\\\"s3://sentinel-s2-l2a/tiles/24/M/VV/2025/7/31/0/R20m/B11.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"SWIR\n        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,9500020],\\\"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/24/M/VV/2025/7/31/0/R20m/B12.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"SWIR\n        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,9500020],\\\"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/24/M/VV/2025/7/31/0/R10m/TCI.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"True\n        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,9500020],\\\"roles\\\":[\\\"visual\\\"]},\\\"wvp-jp2\\\":{\\\"href\\\":\\\"s3://sentinel-s2-l2a/tiles/24/M/VV/2025/7/31/0/R20m/WVP.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Water\n        Vapour (WVP)\\\",\\\"gsd\\\":20,\\\"proj:shape\\\":[5490,5490],\\\"proj:transform\\\":[20,0,399960,0,-20,9500020],\\\"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/view/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/sentinel-2/v1.0.0/schema.json\\\",\\\"https://stac-extensions.github.io/eo/v1.1.0/schema.json\\\",\\\"https://stac-extensions.github.io/processing/v1.1.0/schema.json\\\",\\\"https://stac-extensions.github.io/mgrs/v1.0.0/schema.json\\\",\\\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\\\"],\\\"id\\\":\\\"S2B_24MVV_20250731_0_L1C\\\",\\\"geometry\\\":{\\\"type\\\":\\\"Polygon\\\",\\\"coordinates\\\":[[[-39.9017777643017,-4.522829036519048],[-39.90204266562989,-4.732113850681315],[-38.91197372397326,-4.938761763132557],[-38.912026172437265,-4.523385349572578],[-39.9017777643017,-4.522829036519048]]]},\\\"bbox\\\":[-39.902043,-4.938762,-38.911974,-4.522829],\\\"properties\\\":{\\\"created\\\":\\\"2025-07-31T14:15:52.523Z\\\",\\\"platform\\\":\\\"sentinel-2b\\\",\\\"constellation\\\":\\\"sentinel-2\\\",\\\"instruments\\\":[\\\"msi\\\"],\\\"eo:cloud_cover\\\":24.2173961880496,\\\"proj:epsg\\\":32724,\\\"proj:centroid\\\":{\\\"lat\\\":-4.68498,\\\"lon\\\":-39.35253},\\\"mgrs:utm_zone\\\":24,\\\"mgrs:latitude_band\\\":\\\"M\\\",\\\"mgrs:grid_square\\\":\\\"VV\\\",\\\"grid:code\\\":\\\"MGRS-24MVV\\\",\\\"view:azimuth\\\":112.77288584966978,\\\"view:incidence_angle\\\":3.576466433404597,\\\"view:sun_azimuth\\\":46.3495242049325,\\\"view:sun_elevation\\\":56.095293650102,\\\"s2:tile_id\\\":\\\"S2B_OPER_MSI_L1C_TL_2BPS_20250731T131834_A043879_T24MVV_N05.11\\\",\\\"s2:degraded_msi_data_percentage\\\":0.0181,\\\"s2:product_type\\\":\\\"S2MSI1C\\\",\\\"s2:processing_baseline\\\":\\\"05.11\\\",\\\"s2:product_uri\\\":\\\"S2B_MSIL1C_20250731T130249_N0511_R095_T24MVV_20250731T131834.SAFE\\\",\\\"s2:generation_time\\\":\\\"2025-07-31T13:18:34.000000Z\\\",\\\"s2:datatake_id\\\":\\\"GS2B_20250731T130249_043879_N05.11\\\",\\\"s2:datatake_type\\\":\\\"INS-NOBS\\\",\\\"s2:datastrip_id\\\":\\\"S2B_OPER_MSI_L1C_DS_2BPS_20250731T131834_S20250731T130245_N05.11\\\",\\\"s2:reflectance_conversion_factor\\\":0.969778956128144,\\\"datetime\\\":\\\"2025-07-31T13:03:25.899000Z\\\",\\\"s2:sequence\\\":\\\"0\\\",\\\"earthsearch:s3_path\\\":\\\"s3://earthsearch-data/sentinel-2-l1c/24/M/VV/2025/7/S2B_24MVV_20250731_0_L1C\\\",\\\"earthsearch:payload_id\\\":\\\"roda-sentinel2/workflow-sentinel2-to-stac/dc9d76a81a9517be1c85439677d72052\\\",\\\"processing:software\\\":{\\\"sentinel2-to-stac\\\":\\\"2025.03.06\\\"},\\\"updated\\\":\\\"2025-07-31T14:15:52.523Z\\\"},\\\"links\\\":[{\\\"rel\\\":\\\"self\\\",\\\"type\\\":\\\"application/geo+json\\\",\\\"href\\\":\\\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l1c/items/S2B_24MVV_20250731_0_L1C\\\"},{\\\"rel\\\":\\\"canonical\\\",\\\"href\\\":\\\"s3://earthsearch-data/sentinel-2-l1c/24/M/VV/2025/7/S2B_24MVV_20250731_0_L1C/S2B_24MVV_20250731_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_24MVV_20250731_0_L1C/thumbnail\\\"}],\\\"assets\\\":{\\\"blue\\\":{\\\"href\\\":\\\"s3://sentinel-s2-l1c/tiles/24/M/VV/2025/7/31/0/B02.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Blue\n        - 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,9500020],\\\"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/24/M/VV/2025/7/31/0/B10.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Cirrus\n        - 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,399960,0,-60,9500020],\\\"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/24/M/VV/2025/7/31/0/B01.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Coastal\n        - 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,9500020],\\\"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/24/M/VV/2025/7/31/0/metadata.xml\\\",\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"green\\\":{\\\"href\\\":\\\"s3://sentinel-s2-l1c/tiles/24/M/VV/2025/7/31/0/B03.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Green\n        - 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,9500020],\\\"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/24/M/VV/2025/7/31/0/B08.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"NIR\n        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,9500020],\\\"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/24/M/VV/2025/7/31/0/B8A.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"NIR\n        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,9500020],\\\"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/24/M/VV/2025/7/31/0/B09.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"NIR\n        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,9500020],\\\"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/24/M/VV/2025/7/31/0/product_metadata.xml\\\",\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"red\\\":{\\\"href\\\":\\\"s3://sentinel-s2-l1c/tiles/24/M/VV/2025/7/31/0/B04.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Red\n        - 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,9500020],\\\"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/24/M/VV/2025/7/31/0/B05.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Red\n        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,9500020],\\\"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/24/M/VV/2025/7/31/0/B06.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Red\n        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,9500020],\\\"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/24/M/VV/2025/7/31/0/B07.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Red\n        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,9500020],\\\"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/24/M/VV/2025/7/31/0/B11.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"SWIR\n        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,9500020],\\\"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/24/M/VV/2025/7/31/0/B12.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"SWIR\n        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,9500020],\\\"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/24/M/VV/2025/7/31/0/tileInfo.json\\\",\\\"type\\\":\\\"application/json\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"visual\\\":{\\\"href\\\":\\\"s3://sentinel-s2-l1c/tiles/24/M/VV/2025/7/31/0/TCI.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"True\n        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,399960,0,-10,9500020],\\\"roles\\\":[\\\"visual\\\"]}},\\\"collection\\\":\\\"sentinel-2-l1c\\\"},{\\\"type\\\":\\\"Feature\\\",\\\"stac_version\\\":\\\"1.0.0\\\",\\\"id\\\":\\\"S2B_T24MWV_20250731T130245_L2A\\\",\\\"properties\\\":{\\\"created\\\":\\\"2025-07-31T14:24:07.470Z\\\",\\\"platform\\\":\\\"sentinel-2b\\\",\\\"constellation\\\":\\\"sentinel-2\\\",\\\"instruments\\\":[\\\"msi\\\"],\\\"eo:cloud_cover\\\":25.342679,\\\"proj:epsg\\\":32724,\\\"proj:centroid\\\":{\\\"lat\\\":-4.78608,\\\"lon\\\":-38.46634},\\\"mgrs:utm_zone\\\":24,\\\"mgrs:latitude_band\\\":\\\"M\\\",\\\"mgrs:grid_square\\\":\\\"WV\\\",\\\"grid:code\\\":\\\"MGRS-24MWV\\\",\\\"view:azimuth\\\":275.0490093446377,\\\"view:incidence_angle\\\":5.381695387512898,\\\"view:sun_azimuth\\\":45.3398553018398,\\\"view:sun_elevation\\\":56.7324923286184,\\\"s2:tile_id\\\":\\\"S2B_OPER_MSI_L2A_TL_2BPS_20250731T132745_A043879_T24MWV_N05.11\\\",\\\"s2:degraded_msi_data_percentage\\\":0.0184,\\\"s2:nodata_pixel_percentage\\\":48.274913,\\\"s2:saturated_defective_pixel_percentage\\\":0,\\\"s2:cloud_shadow_percentage\\\":18.226595,\\\"s2:vegetation_percentage\\\":15.750545,\\\"s2:not_vegetated_percentage\\\":39.585078,\\\"s2:water_percentage\\\":0.333381,\\\"s2:unclassified_percentage\\\":0.747486,\\\"s2:medium_proba_clouds_percentage\\\":12.587215,\\\"s2:high_proba_clouds_percentage\\\":12.75533,\\\"s2:thin_cirrus_percentage\\\":0.000135,\\\"s2:snow_ice_percentage\\\":0,\\\"s2:product_type\\\":\\\"S2MSI2A\\\",\\\"s2:processing_baseline\\\":\\\"05.11\\\",\\\"s2:product_uri\\\":\\\"S2B_MSIL2A_20250731T130249_N0511_R095_T24MWV_20250731T132745.SAFE\\\",\\\"s2:generation_time\\\":\\\"2025-07-31T13:27:45.000000Z\\\",\\\"s2:datatake_id\\\":\\\"GS2B_20250731T130249_043879_N05.11\\\",\\\"s2:datatake_type\\\":\\\"INS-NOBS\\\",\\\"s2:datastrip_id\\\":\\\"S2B_OPER_MSI_L2A_DS_2BPS_20250731T132745_S20250731T130245_N05.11\\\",\\\"s2:reflectance_conversion_factor\\\":0.969778956128144,\\\"datetime\\\":\\\"2025-07-31T13:03:24.321000Z\\\",\\\"earthsearch:payload_id\\\":\\\"roda-sentinel-2-c1-l2a/workflow-sentinel-2-c1-l2a-to-stac/30d0e133a6d766883e98f437c4b0e32d\\\",\\\"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-31T14:24:07.470Z\\\"},\\\"geometry\\\":{\\\"type\\\":\\\"Polygon\\\",\\\"coordinates\\\":[[[-39.00017127814209,-4.523390695056541],[-39.000171375112444,-4.918695896986524],[-38.00950433991483,-5.160536840071547],[-38.01043177319954,-4.522714358156175],[-39.00017127814209,-4.523390695056541]]]},\\\"links\\\":[{\\\"rel\\\":\\\"self\\\",\\\"type\\\":\\\"application/geo+json\\\",\\\"href\\\":\\\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-c1-l2a/items/S2B_T24MWV_20250731T130245_L2A\\\"},{\\\"rel\\\":\\\"canonical\\\",\\\"href\\\":\\\"s3://e84-earth-search-sentinel-data/sentinel-2-c1-l2a/24/M/WV/2025/7/S2B_T24MWV_20250731T130245_L2A/S2B_T24MWV_20250731T130245_L2A.json\\\",\\\"type\\\":\\\"application/json\\\"},{\\\"rel\\\":\\\"via\\\",\\\"href\\\":\\\"s3://sentinel-s2-l2a/tiles/24/M/WV/2025/7/31/0/metadata.xml\\\",\\\"type\\\":\\\"application/xml\\\",\\\"title\\\":\\\"Granule\n        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_T24MWV_20250731T130245_L2A/thumbnail\\\"}],\\\"assets\\\":{\\\"red\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/WV/2025/7/S2B_T24MWV_20250731T130245_L2A/B04.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,9500020],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":10,\\\"scale\\\":0.0001,\\\"offset\\\":-0.1}],\\\"file:checksum\\\":\\\"12209c28871d93799c8115fc40e243167ad05fd25f6432d1ae930ef7c3c1d941a46f\\\",\\\"file:size\\\":119151322,\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"]},\\\"green\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/WV/2025/7/S2B_T24MWV_20250731T130245_L2A/B03.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,9500020],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":10,\\\"scale\\\":0.0001,\\\"offset\\\":-0.1}],\\\"file:checksum\\\":\\\"1220ea7cacb552a30d06f42c6f4fd6b4f4dc51b22233b5d6d5f1f77f25e78c147d47\\\",\\\"file:size\\\":117252206,\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"]},\\\"blue\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/WV/2025/7/S2B_T24MWV_20250731T130245_L2A/B02.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,9500020],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":10,\\\"scale\\\":0.0001,\\\"offset\\\":-0.1}],\\\"file:checksum\\\":\\\"1220df29cae6f873578d8ff7dd82726712c91839f8c73b812c2bc2f8cbc137313615\\\",\\\"file:size\\\":116319823,\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"]},\\\"visual\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/WV/2025/7/S2B_T24MWV_20250731T130245_L2A/TCI.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,9500020],\\\"file:checksum\\\":\\\"1220d64e4276c84a2e4b9df68eaa313791e2708369b8ab739cfd6c88523eec4e69a4\\\",\\\"file:size\\\":154422558,\\\"roles\\\":[\\\"visual\\\"]},\\\"nir\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/WV/2025/7/S2B_T24MWV_20250731T130245_L2A/B08.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,9500020],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":10,\\\"scale\\\":0.0001,\\\"offset\\\":-0.1}],\\\"file:checksum\\\":\\\"122043de29d08e51c02facd7aa4185bd254cab75f27ab4cc885ecd0d6a1fc1a6a55a\\\",\\\"file:size\\\":117592948,\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"]},\\\"swir22\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/WV/2025/7/S2B_T24MWV_20250731T130245_L2A/B12.tif\\\",\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"SWIR 2.2\\u03BCm\n        - 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,9500020],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":20,\\\"scale\\\":0.0001,\\\"offset\\\":-0.1}],\\\"file:checksum\\\":\\\"12203d92bf3512224610f671d4179022434722ba48b92de716f2ad80dda1a939c7c2\\\",\\\"file:size\\\":32196813,\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"]},\\\"rededge2\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/WV/2025/7/S2B_T24MWV_20250731T130245_L2A/B06.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,9500020],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":20,\\\"scale\\\":0.0001,\\\"offset\\\":-0.1}],\\\"file:checksum\\\":\\\"1220e97d72c2972b2811d35b14ee7d1e38e5ff9c0f5f8ef6c276284eaf98c9ffa8fb\\\",\\\"file:size\\\":32104484,\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"]},\\\"rededge3\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/WV/2025/7/S2B_T24MWV_20250731T130245_L2A/B07.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,9500020],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":20,\\\"scale\\\":0.0001,\\\"offset\\\":-0.1}],\\\"file:checksum\\\":\\\"12203278c10473affda140cdc3d7bd9451c9378c320e4b1b20e4bdc7414fdd004439\\\",\\\"file:size\\\":32200558,\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"]},\\\"rededge1\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/WV/2025/7/S2B_T24MWV_20250731T130245_L2A/B05.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,9500020],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":20,\\\"scale\\\":0.0001,\\\"offset\\\":-0.1}],\\\"file:checksum\\\":\\\"12200149e887d50ec55e77bbac7320979698f65d99611f36dadf50bde35139da8f0f\\\",\\\"file:size\\\":31880634,\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"]},\\\"swir16\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/WV/2025/7/S2B_T24MWV_20250731T130245_L2A/B11.tif\\\",\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"SWIR 1.6\\u03BCm\n        - 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,9500020],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":20,\\\"scale\\\":0.0001,\\\"offset\\\":-0.1}],\\\"file:checksum\\\":\\\"1220de07f7a6413d384d83a28083df9176cf3fd1b98cdcf3434cca244829acd61dbb\\\",\\\"file:size\\\":32272595,\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"]},\\\"wvp\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/WV/2025/7/S2B_T24MWV_20250731T130245_L2A/WVP.tif\\\",\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Water Vapour (WVP)\\\",\\\"gsd\\\":20,\\\"proj:shape\\\":[5490,5490],\\\"proj:transform\\\":[20,0,499980,0,-20,9500020],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":20,\\\"unit\\\":\\\"cm\\\",\\\"scale\\\":0.001,\\\"offset\\\":0}],\\\"file:checksum\\\":\\\"1220b3d5141041cc580c554c387fc4f2a93411804134110c4ca0130b4759488d7eb6\\\",\\\"file:size\\\":16931965,\\\"roles\\\":[\\\"data\\\"]},\\\"nir08\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/WV/2025/7/S2B_T24MWV_20250731T130245_L2A/B8A.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,9500020],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":20,\\\"scale\\\":0.0001,\\\"offset\\\":-0.1}],\\\"file:checksum\\\":\\\"122064ca7fd1f563c33ccdcc1f10ad7a88b4870304c17997c0774768a9659640cb41\\\",\\\"file:size\\\":32209005,\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"]},\\\"scl\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/WV/2025/7/S2B_T24MWV_20250731T130245_L2A/SCL.tif\\\",\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Scene classification\n        map (SCL)\\\",\\\"gsd\\\":20,\\\"proj:shape\\\":[5490,5490],\\\"proj:transform\\\":[20,0,499980,0,-20,9500020],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":20}],\\\"file:checksum\\\":\\\"1220328150e7e2ffa9f77e1fd05eca2772c3af8ea2f651ad846ca6c354b6d750e218\\\",\\\"file:size\\\":2348598,\\\"roles\\\":[\\\"data\\\"]},\\\"aot\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/WV/2025/7/S2B_T24MWV_20250731T130245_L2A/AOT.tif\\\",\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Aerosol optical\n        thickness (AOT)\\\",\\\"gsd\\\":20,\\\"proj:shape\\\":[5490,5490],\\\"proj:transform\\\":[20,0,499980,0,-20,9500020],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":20,\\\"scale\\\":0.001,\\\"offset\\\":0}],\\\"file:checksum\\\":\\\"1220be6e98000783d4a632f5df94b5b39a5986aa6baa1eda4f8af3cae3919b20a154\\\",\\\"file:size\\\":401060,\\\"roles\\\":[\\\"data\\\"]},\\\"coastal\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/WV/2025/7/S2B_T24MWV_20250731T130245_L2A/B01.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,9500020],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":60,\\\"scale\\\":0.0001,\\\"offset\\\":-0.1}],\\\"file:checksum\\\":\\\"1220d9a8ffa508bac2cc4156ab780d460cc77799f5d58b2f57c4410a7e682a046ac0\\\",\\\"file:size\\\":3555701,\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"]},\\\"nir09\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/WV/2025/7/S2B_T24MWV_20250731T130245_L2A/B09.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,9500020],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":60,\\\"scale\\\":0.0001,\\\"offset\\\":-0.1}],\\\"file:checksum\\\":\\\"1220e3f14a1f6a5cf2968ea125543df7e79e065ee63885cab4f41441ca6f11998a29\\\",\\\"file:size\\\":3836445,\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"]},\\\"cloud\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/WV/2025/7/S2B_T24MWV_20250731T130245_L2A/CLD_20m.tif\\\",\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Cloud Probabilities\\\",\\\"gsd\\\":20,\\\"proj:shape\\\":[5490,5490],\\\"proj:transform\\\":[20,0,499980,0,-20,9500020],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":20}],\\\"file:checksum\\\":\\\"122028ae2f9993f8179c89aff4690fa11dec83942e11f632b54e119250a3aa35c758\\\",\\\"file:size\\\":2757226,\\\"roles\\\":[\\\"data\\\",\\\"cloud\\\"]},\\\"snow\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/WV/2025/7/S2B_T24MWV_20250731T130245_L2A/SNW_20m.tif\\\",\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Snow Probabilities\\\",\\\"proj:shape\\\":[5490,5490],\\\"proj:transform\\\":[20,0,499980,0,-20,9500020],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":20}],\\\"file:checksum\\\":\\\"1220f627f903e97688f323bd7da35fdea0487b94878d1b860a177e12d303751bca3b\\\",\\\"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/24/M/WV/2025/7/S2B_T24MWV_20250731T130245_L2A/L2A_PVI.tif\\\",\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"True color preview\\\",\\\"gsd\\\":320,\\\"proj:shape\\\":[343,343],\\\"proj:transform\\\":[320,0,499980,0,-320,9500020],\\\"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\\\":\\\"122033261cb1e7b3527e9e2b62ed7b897a1f0d72899d54596127d9a36e715a7451b8\\\",\\\"file:size\\\":168938,\\\"roles\\\":[\\\"overview\\\"]},\\\"granule_metadata\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/WV/2025/7/S2B_T24MWV_20250731T130245_L2A/metadata.xml\\\",\\\"type\\\":\\\"application/xml\\\",\\\"file:checksum\\\":\\\"12200161ce1f3ae71fee18b62054feaf6bd8046ed80ac54195cd94adedca5015f855\\\",\\\"file:size\\\":598790,\\\"roles\\\":[\\\"metadata\\\"]},\\\"tileinfo_metadata\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/WV/2025/7/S2B_T24MWV_20250731T130245_L2A/tileInfo.json\\\",\\\"type\\\":\\\"application/json\\\",\\\"file:checksum\\\":\\\"12202c24c592983cee02ca9c4ac0a482a81c55906dbe6062dfc64fe85936f4927f36\\\",\\\"file:size\\\":1632,\\\"roles\\\":[\\\"metadata\\\"]},\\\"product_metadata\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/WV/2025/7/S2B_T24MWV_20250731T130245_L2A/product_metadata.xml\\\",\\\"type\\\":\\\"application/xml\\\",\\\"file:checksum\\\":\\\"1220bcae7f28053ab57d9e38c94ca2010965d511351c6ee6d09dff532f39bc6f2b17\\\",\\\"file:size\\\":55456,\\\"roles\\\":[\\\"metadata\\\"]},\\\"thumbnail\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/WV/2025/7/S2B_T24MWV_20250731T130245_L2A/L2A_PVI.jpg\\\",\\\"type\\\":\\\"image/jpeg\\\",\\\"title\\\":\\\"Thumbnail\n        of preview image\\\",\\\"file:checksum\\\":\\\"1220e0b48caa25e9b523ea94c267e2bc80088ad14c5442b937d78b9fbce472dfbc3c\\\",\\\"file:size\\\":34652,\\\"roles\\\":[\\\"thumbnail\\\"]}},\\\"bbox\\\":[-39.000171,-5.160537,-38.009504,-4.522714],\\\"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/sentinel-2/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/grid/v1.1.0/schema.json\\\",\\\"https://stac-extensions.github.io/mgrs/v1.0.0/schema.json\\\",\\\"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\\\"],\\\"id\\\":\\\"S2B_24MWV_20250731_0_L2A\\\",\\\"geometry\\\":{\\\"type\\\":\\\"Polygon\\\",\\\"coordinates\\\":[[[-39.00017127814209,-4.523390695056541],[-39.000171375112444,-4.918695896986524],[-38.00950433991483,-5.160536840071547],[-38.01043177319954,-4.522714358156175],[-39.00017127814209,-4.523390695056541]]]},\\\"bbox\\\":[-39.000171,-5.160537,-38.009504,-4.522714],\\\"properties\\\":{\\\"created\\\":\\\"2025-07-31T14:26:39.954Z\\\",\\\"platform\\\":\\\"sentinel-2b\\\",\\\"constellation\\\":\\\"sentinel-2\\\",\\\"instruments\\\":[\\\"msi\\\"],\\\"eo:cloud_cover\\\":25.342679,\\\"proj:epsg\\\":32724,\\\"proj:centroid\\\":{\\\"lat\\\":-4.78608,\\\"lon\\\":-38.46634},\\\"mgrs:utm_zone\\\":24,\\\"mgrs:latitude_band\\\":\\\"M\\\",\\\"mgrs:grid_square\\\":\\\"WV\\\",\\\"grid:code\\\":\\\"MGRS-24MWV\\\",\\\"view:azimuth\\\":275.0490093446377,\\\"view:incidence_angle\\\":5.381695387512898,\\\"view:sun_azimuth\\\":45.3398553018398,\\\"view:sun_elevation\\\":56.7324923286184,\\\"s2:tile_id\\\":\\\"S2B_OPER_MSI_L2A_TL_2BPS_20250731T132745_A043879_T24MWV_N05.11\\\",\\\"s2:degraded_msi_data_percentage\\\":0.0184,\\\"s2:nodata_pixel_percentage\\\":48.274913,\\\"s2:saturated_defective_pixel_percentage\\\":0,\\\"s2:cloud_shadow_percentage\\\":18.226595,\\\"s2:vegetation_percentage\\\":15.750545,\\\"s2:not_vegetated_percentage\\\":39.585078,\\\"s2:water_percentage\\\":0.333381,\\\"s2:unclassified_percentage\\\":0.747486,\\\"s2:medium_proba_clouds_percentage\\\":12.587215,\\\"s2:high_proba_clouds_percentage\\\":12.75533,\\\"s2:thin_cirrus_percentage\\\":0.000135,\\\"s2:snow_ice_percentage\\\":0,\\\"s2:product_type\\\":\\\"S2MSI2A\\\",\\\"s2:processing_baseline\\\":\\\"05.11\\\",\\\"s2:product_uri\\\":\\\"S2B_MSIL2A_20250731T130249_N0511_R095_T24MWV_20250731T132745.SAFE\\\",\\\"s2:generation_time\\\":\\\"2025-07-31T13:27:45.000000Z\\\",\\\"s2:datatake_id\\\":\\\"GS2B_20250731T130249_043879_N05.11\\\",\\\"s2:datatake_type\\\":\\\"INS-NOBS\\\",\\\"s2:datastrip_id\\\":\\\"S2B_OPER_MSI_L2A_DS_2BPS_20250731T132745_S20250731T130245_N05.11\\\",\\\"s2:reflectance_conversion_factor\\\":0.969778956128144,\\\"datetime\\\":\\\"2025-07-31T13:03:24.321000Z\\\",\\\"s2:sequence\\\":\\\"0\\\",\\\"earthsearch:s3_path\\\":\\\"s3://sentinel-cogs/sentinel-s2-l2a-cogs/24/M/WV/2025/7/S2B_24MWV_20250731_0_L2A\\\",\\\"earthsearch:payload_id\\\":\\\"roda-sentinel2/workflow-sentinel2-to-stac/d87fc4098337aa3baa588f33fbe67126\\\",\\\"earthsearch:boa_offset_applied\\\":true,\\\"processing:software\\\":{\\\"sentinel2-to-stac\\\":\\\"2025.03.06\\\"},\\\"updated\\\":\\\"2025-07-31T14:26:39.954Z\\\"},\\\"links\\\":[{\\\"rel\\\":\\\"self\\\",\\\"type\\\":\\\"application/geo+json\\\",\\\"href\\\":\\\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l2a/items/S2B_24MWV_20250731_0_L2A\\\"},{\\\"rel\\\":\\\"canonical\\\",\\\"href\\\":\\\"s3://sentinel-cogs/sentinel-s2-l2a-cogs/24/M/WV/2025/7/S2B_24MWV_20250731_0_L2A/S2B_24MWV_20250731_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_24MWV_20250731_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_24MWV_20250731_0_L2A/thumbnail\\\"}],\\\"assets\\\":{\\\"aot\\\":{\\\"href\\\":\\\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/24/M/WV/2025/7/S2B_24MWV_20250731_0_L2A/AOT.tif\\\",\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Aerosol optical\n        thickness (AOT)\\\",\\\"gsd\\\":20,\\\"proj:shape\\\":[5490,5490],\\\"proj:transform\\\":[20,0,499980,0,-20,9500020],\\\"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/24/M/WV/2025/7/S2B_24MWV_20250731_0_L2A/B02.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,9500020],\\\"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/24/M/WV/2025/7/31/0/qi/CLD_20m.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Cloud\n        Probabilities\\\",\\\"gsd\\\":20,\\\"proj:shape\\\":[5490,5490],\\\"proj:transform\\\":[20,0,499980,0,-20,9500020],\\\"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/24/M/WV/2025/7/S2B_24MWV_20250731_0_L2A/B01.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,9500020],\\\"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/24/M/WV/2025/7/S2B_24MWV_20250731_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/24/M/WV/2025/7/S2B_24MWV_20250731_0_L2A/B03.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,9500020],\\\"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/24/M/WV/2025/7/S2B_24MWV_20250731_0_L2A/B08.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,9500020],\\\"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/24/M/WV/2025/7/S2B_24MWV_20250731_0_L2A/B8A.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,9500020],\\\"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/24/M/WV/2025/7/S2B_24MWV_20250731_0_L2A/B09.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,9500020],\\\"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/24/M/WV/2025/7/31/0/product_metadata.xml\\\",\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"red\\\":{\\\"href\\\":\\\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/24/M/WV/2025/7/S2B_24MWV_20250731_0_L2A/B04.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,9500020],\\\"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/24/M/WV/2025/7/S2B_24MWV_20250731_0_L2A/B05.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,9500020],\\\"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/24/M/WV/2025/7/S2B_24MWV_20250731_0_L2A/B06.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,9500020],\\\"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/24/M/WV/2025/7/S2B_24MWV_20250731_0_L2A/B07.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,9500020],\\\"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/24/M/WV/2025/7/S2B_24MWV_20250731_0_L2A/SCL.tif\\\",\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Scene classification\n        map (SCL)\\\",\\\"gsd\\\":20,\\\"proj:shape\\\":[5490,5490],\\\"proj:transform\\\":[20,0,499980,0,-20,9500020],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":20}],\\\"roles\\\":[\\\"data\\\"]},\\\"snow\\\":{\\\"href\\\":\\\"s3://sentinel-s2-l2a/tiles/24/M/WV/2025/7/31/0/qi/SNW_20m.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Snow\n        Probabilities\\\",\\\"proj:shape\\\":[5490,5490],\\\"proj:transform\\\":[20,0,499980,0,-20,9500020],\\\"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/24/M/WV/2025/7/S2B_24MWV_20250731_0_L2A/B11.tif\\\",\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"SWIR 1.6\\u03BCm\n        - 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,9500020],\\\"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/24/M/WV/2025/7/S2B_24MWV_20250731_0_L2A/B12.tif\\\",\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"SWIR 2.2\\u03BCm\n        - 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,9500020],\\\"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/24/M/WV/2025/7/S2B_24MWV_20250731_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/24/M/WV/2025/7/S2B_24MWV_20250731_0_L2A/TCI.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,9500020],\\\"roles\\\":[\\\"visual\\\"]},\\\"wvp\\\":{\\\"href\\\":\\\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/24/M/WV/2025/7/S2B_24MWV_20250731_0_L2A/WVP.tif\\\",\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Water Vapour (WVP)\\\",\\\"gsd\\\":20,\\\"proj:shape\\\":[5490,5490],\\\"proj:transform\\\":[20,0,499980,0,-20,9500020],\\\"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/24/M/WV/2025/7/S2B_24MWV_20250731_0_L2A/preview.jpg\\\",\\\"type\\\":\\\"image/jpeg\\\",\\\"title\\\":\\\"Thumbnail\n        of preview image\\\",\\\"roles\\\":[\\\"thumbnail\\\"]},\\\"aot-jp2\\\":{\\\"href\\\":\\\"s3://sentinel-s2-l2a/tiles/24/M/WV/2025/7/31/0/R20m/AOT.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Aerosol\n        optical thickness (AOT)\\\",\\\"gsd\\\":20,\\\"proj:shape\\\":[5490,5490],\\\"proj:transform\\\":[20,0,499980,0,-20,9500020],\\\"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/24/M/WV/2025/7/31/0/R10m/B02.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Blue\n        - 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,9500020],\\\"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/24/M/WV/2025/7/31/0/R60m/B01.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Coastal\n        - 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,9500020],\\\"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/24/M/WV/2025/7/31/0/R10m/B03.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Green\n        - 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,9500020],\\\"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/24/M/WV/2025/7/31/0/R10m/B08.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"NIR\n        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,9500020],\\\"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/24/M/WV/2025/7/31/0/R20m/B8A.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"NIR\n        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,9500020],\\\"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/24/M/WV/2025/7/31/0/R60m/B09.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"NIR\n        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,9500020],\\\"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/24/M/WV/2025/7/31/0/R10m/B04.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Red\n        - 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,9500020],\\\"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/24/M/WV/2025/7/31/0/R20m/B05.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Red\n        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,9500020],\\\"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/24/M/WV/2025/7/31/0/R20m/B06.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Red\n        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,9500020],\\\"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/24/M/WV/2025/7/31/0/R20m/B07.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Red\n        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,9500020],\\\"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/24/M/WV/2025/7/31/0/R20m/SCL.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Scene\n        classification map (SCL)\\\",\\\"gsd\\\":20,\\\"proj:shape\\\":[5490,5490],\\\"proj:transform\\\":[20,0,499980,0,-20,9500020],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":20}],\\\"roles\\\":[\\\"data\\\"]},\\\"swir16-jp2\\\":{\\\"href\\\":\\\"s3://sentinel-s2-l2a/tiles/24/M/WV/2025/7/31/0/R20m/B11.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"SWIR\n        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,9500020],\\\"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/24/M/WV/2025/7/31/0/R20m/B12.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"SWIR\n        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,9500020],\\\"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/24/M/WV/2025/7/31/0/R10m/TCI.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"True\n        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,9500020],\\\"roles\\\":[\\\"visual\\\"]},\\\"wvp-jp2\\\":{\\\"href\\\":\\\"s3://sentinel-s2-l2a/tiles/24/M/WV/2025/7/31/0/R20m/WVP.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Water\n        Vapour (WVP)\\\",\\\"gsd\\\":20,\\\"proj:shape\\\":[5490,5490],\\\"proj:transform\\\":[20,0,499980,0,-20,9500020],\\\"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/sentinel-2/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/grid/v1.1.0/schema.json\\\",\\\"https://stac-extensions.github.io/mgrs/v1.0.0/schema.json\\\",\\\"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\\\"],\\\"id\\\":\\\"S2B_24MWV_20250731_0_L1C\\\",\\\"geometry\\\":{\\\"type\\\":\\\"Polygon\\\",\\\"coordinates\\\":[[[-39.00017127814209,-4.523390695056541],[-39.000171375112444,-4.918695896986524],[-38.00950433991483,-5.160536840071547],[-38.01043177319954,-4.522714358156175],[-39.00017127814209,-4.523390695056541]]]},\\\"bbox\\\":[-39.000171,-5.160537,-38.009504,-4.522714],\\\"properties\\\":{\\\"created\\\":\\\"2025-07-31T14:26:39.833Z\\\",\\\"platform\\\":\\\"sentinel-2b\\\",\\\"constellation\\\":\\\"sentinel-2\\\",\\\"instruments\\\":[\\\"msi\\\"],\\\"eo:cloud_cover\\\":15.030755914599,\\\"proj:epsg\\\":32724,\\\"proj:centroid\\\":{\\\"lat\\\":-4.78608,\\\"lon\\\":-38.46634},\\\"mgrs:utm_zone\\\":24,\\\"mgrs:latitude_band\\\":\\\"M\\\",\\\"mgrs:grid_square\\\":\\\"WV\\\",\\\"grid:code\\\":\\\"MGRS-24MWV\\\",\\\"view:azimuth\\\":275.0490093446377,\\\"view:incidence_angle\\\":5.381695387512898,\\\"view:sun_azimuth\\\":45.3398553018398,\\\"view:sun_elevation\\\":56.7324923286184,\\\"s2:tile_id\\\":\\\"S2B_OPER_MSI_L1C_TL_2BPS_20250731T131834_A043879_T24MWV_N05.11\\\",\\\"s2:degraded_msi_data_percentage\\\":0.0184,\\\"s2:product_type\\\":\\\"S2MSI1C\\\",\\\"s2:processing_baseline\\\":\\\"05.11\\\",\\\"s2:product_uri\\\":\\\"S2B_MSIL1C_20250731T130249_N0511_R095_T24MWV_20250731T131834.SAFE\\\",\\\"s2:generation_time\\\":\\\"2025-07-31T13:18:34.000000Z\\\",\\\"s2:datatake_id\\\":\\\"GS2B_20250731T130249_043879_N05.11\\\",\\\"s2:datatake_type\\\":\\\"INS-NOBS\\\",\\\"s2:datastrip_id\\\":\\\"S2B_OPER_MSI_L1C_DS_2BPS_20250731T131834_S20250731T130245_N05.11\\\",\\\"s2:reflectance_conversion_factor\\\":0.969778956128144,\\\"datetime\\\":\\\"2025-07-31T13:03:24.321000Z\\\",\\\"s2:sequence\\\":\\\"0\\\",\\\"earthsearch:s3_path\\\":\\\"s3://earthsearch-data/sentinel-2-l1c/24/M/WV/2025/7/S2B_24MWV_20250731_0_L1C\\\",\\\"earthsearch:payload_id\\\":\\\"roda-sentinel2/workflow-sentinel2-to-stac/d87fc4098337aa3baa588f33fbe67126\\\",\\\"processing:software\\\":{\\\"sentinel2-to-stac\\\":\\\"2025.03.06\\\"},\\\"updated\\\":\\\"2025-07-31T14:26:39.833Z\\\"},\\\"links\\\":[{\\\"rel\\\":\\\"self\\\",\\\"type\\\":\\\"application/geo+json\\\",\\\"href\\\":\\\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l1c/items/S2B_24MWV_20250731_0_L1C\\\"},{\\\"rel\\\":\\\"canonical\\\",\\\"href\\\":\\\"s3://earthsearch-data/sentinel-2-l1c/24/M/WV/2025/7/S2B_24MWV_20250731_0_L1C/S2B_24MWV_20250731_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_24MWV_20250731_0_L1C/thumbnail\\\"}],\\\"assets\\\":{\\\"blue\\\":{\\\"href\\\":\\\"s3://sentinel-s2-l1c/tiles/24/M/WV/2025/7/31/0/B02.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Blue\n        - 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,9500020],\\\"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/24/M/WV/2025/7/31/0/B10.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Cirrus\n        - 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,9500020],\\\"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/24/M/WV/2025/7/31/0/B01.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Coastal\n        - 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,9500020],\\\"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/24/M/WV/2025/7/31/0/metadata.xml\\\",\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"green\\\":{\\\"href\\\":\\\"s3://sentinel-s2-l1c/tiles/24/M/WV/2025/7/31/0/B03.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Green\n        - 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,9500020],\\\"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/24/M/WV/2025/7/31/0/B08.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"NIR\n        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,9500020],\\\"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/24/M/WV/2025/7/31/0/B8A.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"NIR\n        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,9500020],\\\"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/24/M/WV/2025/7/31/0/B09.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"NIR\n        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,9500020],\\\"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/24/M/WV/2025/7/31/0/product_metadata.xml\\\",\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"red\\\":{\\\"href\\\":\\\"s3://sentinel-s2-l1c/tiles/24/M/WV/2025/7/31/0/B04.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Red\n        - 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,9500020],\\\"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/24/M/WV/2025/7/31/0/B05.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Red\n        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,9500020],\\\"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/24/M/WV/2025/7/31/0/B06.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Red\n        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,9500020],\\\"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/24/M/WV/2025/7/31/0/B07.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Red\n        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,9500020],\\\"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/24/M/WV/2025/7/31/0/B11.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"SWIR\n        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,9500020],\\\"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/24/M/WV/2025/7/31/0/B12.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"SWIR\n        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,9500020],\\\"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/24/M/WV/2025/7/31/0/tileInfo.json\\\",\\\"type\\\":\\\"application/json\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"visual\\\":{\\\"href\\\":\\\"s3://sentinel-s2-l1c/tiles/24/M/WV/2025/7/31/0/TCI.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"True\n        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,9500020],\\\"roles\\\":[\\\"visual\\\"]}},\\\"collection\\\":\\\"sentinel-2-l1c\\\"},{\\\"type\\\":\\\"Feature\\\",\\\"stac_version\\\":\\\"1.0.0\\\",\\\"id\\\":\\\"S2B_T24MXV_20250731T130245_L2A\\\",\\\"properties\\\":{\\\"created\\\":\\\"2025-07-31T14:13:51.609Z\\\",\\\"platform\\\":\\\"sentinel-2b\\\",\\\"constellation\\\":\\\"sentinel-2\\\",\\\"instruments\\\":[\\\"msi\\\"],\\\"eo:cloud_cover\\\":24.684544,\\\"proj:epsg\\\":32724,\\\"proj:centroid\\\":{\\\"lat\\\":-4.8316,\\\"lon\\\":-37.89646},\\\"mgrs:utm_zone\\\":24,\\\"mgrs:latitude_band\\\":\\\"M\\\",\\\"mgrs:grid_square\\\":\\\"XV\\\",\\\"grid:code\\\":\\\"MGRS-24MXV\\\",\\\"view:azimuth\\\":284.206922518204,\\\"view:incidence_angle\\\":10.138254210464146,\\\"view:sun_azimuth\\\":44.2915067269512,\\\"view:sun_elevation\\\":57.3592863266433,\\\"s2:tile_id\\\":\\\"S2B_OPER_MSI_L2A_TL_2BPS_20250731T132745_A043879_T24MXV_N05.11\\\",\\\"s2:degraded_msi_data_percentage\\\":0.0252,\\\"s2:nodata_pixel_percentage\\\":73.597109,\\\"s2:saturated_defective_pixel_percentage\\\":0,\\\"s2:cloud_shadow_percentage\\\":13.119787,\\\"s2:vegetation_percentage\\\":18.686712,\\\"s2:not_vegetated_percentage\\\":40.554669,\\\"s2:water_percentage\\\":1.461273,\\\"s2:unclassified_percentage\\\":1.482019,\\\"s2:medium_proba_clouds_percentage\\\":11.037832,\\\"s2:high_proba_clouds_percentage\\\":13.646699,\\\"s2:thin_cirrus_percentage\\\":0.000013,\\\"s2:snow_ice_percentage\\\":0,\\\"s2:product_type\\\":\\\"S2MSI2A\\\",\\\"s2:processing_baseline\\\":\\\"05.11\\\",\\\"s2:product_uri\\\":\\\"S2B_MSIL2A_20250731T130249_N0511_R095_T24MXV_20250731T132745.SAFE\\\",\\\"s2:generation_time\\\":\\\"2025-07-31T13:27:45.000000Z\\\",\\\"s2:datatake_id\\\":\\\"GS2B_20250731T130249_043879_N05.11\\\",\\\"s2:datatake_type\\\":\\\"INS-NOBS\\\",\\\"s2:datastrip_id\\\":\\\"S2B_OPER_MSI_L2A_DS_2BPS_20250731T132745_S20250731T130245_N05.11\\\",\\\"s2:reflectance_conversion_factor\\\":0.969778956128144,\\\"datetime\\\":\\\"2025-07-31T13:03:22.435000Z\\\",\\\"earthsearch:payload_id\\\":\\\"roda-sentinel-2-c1-l2a/workflow-sentinel-2-c1-l2a-to-stac/8729c9c708eda40619311dfa0c1ee3d6\\\",\\\"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-31T14:13:51.609Z\\\"},\\\"geometry\\\":{\\\"type\\\":\\\"Polygon\\\",\\\"coordinates\\\":[[[-38.09856474902517,-4.522829463088158],[-38.09775098553095,-5.1386100192416295],[-37.78519123103453,-5.220740867602101],[-37.632823904510474,-4.522099739553479],[-38.09856474902517,-4.522829463088158]]]},\\\"links\\\":[{\\\"rel\\\":\\\"self\\\",\\\"type\\\":\\\"application/geo+json\\\",\\\"href\\\":\\\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-c1-l2a/items/S2B_T24MXV_20250731T130245_L2A\\\"},{\\\"rel\\\":\\\"canonical\\\",\\\"href\\\":\\\"s3://e84-earth-search-sentinel-data/sentinel-2-c1-l2a/24/M/XV/2025/7/S2B_T24MXV_20250731T130245_L2A/S2B_T24MXV_20250731T130245_L2A.json\\\",\\\"type\\\":\\\"application/json\\\"},{\\\"rel\\\":\\\"via\\\",\\\"href\\\":\\\"s3://sentinel-s2-l2a/tiles/24/M/XV/2025/7/31/0/metadata.xml\\\",\\\"type\\\":\\\"application/xml\\\",\\\"title\\\":\\\"Granule\n        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_T24MXV_20250731T130245_L2A/thumbnail\\\"}],\\\"assets\\\":{\\\"red\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/XV/2025/7/S2B_T24MXV_20250731T130245_L2A/B04.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,9500020],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":10,\\\"scale\\\":0.0001,\\\"offset\\\":-0.1}],\\\"file:checksum\\\":\\\"1220b7280fb7cc59c40f9af62d8930893394bbf82285c3b9e32e2cf15d95e9f307d2\\\",\\\"file:size\\\":61874512,\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"]},\\\"green\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/XV/2025/7/S2B_T24MXV_20250731T130245_L2A/B03.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,9500020],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":10,\\\"scale\\\":0.0001,\\\"offset\\\":-0.1}],\\\"file:checksum\\\":\\\"12204c89c19d7fac0d8e14f83c113a0f4a733992a4729b3328132948442bd7567892\\\",\\\"file:size\\\":60896738,\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"]},\\\"blue\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/XV/2025/7/S2B_T24MXV_20250731T130245_L2A/B02.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,9500020],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":10,\\\"scale\\\":0.0001,\\\"offset\\\":-0.1}],\\\"file:checksum\\\":\\\"12203f9a07cfdf26bc8fcb2afa5cc71daf00e79406049468d823a29e9e79335997c2\\\",\\\"file:size\\\":60463746,\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"]},\\\"visual\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/XV/2025/7/S2B_T24MXV_20250731T130245_L2A/TCI.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,9500020],\\\"file:checksum\\\":\\\"122072d4fa0dcd79bfe3e7ee641797db83564d630bf31e150b8fc50cd0d0d7bb188c\\\",\\\"file:size\\\":80758728,\\\"roles\\\":[\\\"visual\\\"]},\\\"nir\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/XV/2025/7/S2B_T24MXV_20250731T130245_L2A/B08.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,9500020],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":10,\\\"scale\\\":0.0001,\\\"offset\\\":-0.1}],\\\"file:checksum\\\":\\\"12208b0f1b95fa1e390a15be7c4091bc061861013d4bee7248320e58a9d67d2906fc\\\",\\\"file:size\\\":60710318,\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"]},\\\"swir22\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/XV/2025/7/S2B_T24MXV_20250731T130245_L2A/B12.tif\\\",\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"SWIR 2.2\\u03BCm\n        - 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,9500020],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":20,\\\"scale\\\":0.0001,\\\"offset\\\":-0.1}],\\\"file:checksum\\\":\\\"122002c638924b33ef5fc3885edf575e847c6e133b4dca5e8eadb0bd740baaa26239\\\",\\\"file:size\\\":16584921,\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"]},\\\"rededge2\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/XV/2025/7/S2B_T24MXV_20250731T130245_L2A/B06.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,9500020],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":20,\\\"scale\\\":0.0001,\\\"offset\\\":-0.1}],\\\"file:checksum\\\":\\\"1220d648f4c5644f33b11c9a0fcbe08efddcc145e57057fc210ad9daa1b93d91cd2e\\\",\\\"file:size\\\":16523270,\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"]},\\\"rededge3\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/XV/2025/7/S2B_T24MXV_20250731T130245_L2A/B07.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,9500020],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":20,\\\"scale\\\":0.0001,\\\"offset\\\":-0.1}],\\\"file:checksum\\\":\\\"1220aa69fae18e215181de4424d7f361e46ff6a524f07dcb88f474bea041bad923a3\\\",\\\"file:size\\\":16570783,\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"]},\\\"rededge1\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/XV/2025/7/S2B_T24MXV_20250731T130245_L2A/B05.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,9500020],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":20,\\\"scale\\\":0.0001,\\\"offset\\\":-0.1}],\\\"file:checksum\\\":\\\"1220dc5f868597c3259a37ff1c494f4618f15566b2a5a8cfd2155d9048f8f770e270\\\",\\\"file:size\\\":16456451,\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"]},\\\"swir16\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/XV/2025/7/S2B_T24MXV_20250731T130245_L2A/B11.tif\\\",\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"SWIR 1.6\\u03BCm\n        - 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,9500020],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":20,\\\"scale\\\":0.0001,\\\"offset\\\":-0.1}],\\\"file:checksum\\\":\\\"1220b85769e5bbea08a69fc4fec330add873145f81b462da1bff7369dd012b8df01a\\\",\\\"file:size\\\":16647192,\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"]},\\\"wvp\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/XV/2025/7/S2B_T24MXV_20250731T130245_L2A/WVP.tif\\\",\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Water Vapour (WVP)\\\",\\\"gsd\\\":20,\\\"proj:shape\\\":[5490,5490],\\\"proj:transform\\\":[20,0,600000,0,-20,9500020],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":20,\\\"unit\\\":\\\"cm\\\",\\\"scale\\\":0.001,\\\"offset\\\":0}],\\\"file:checksum\\\":\\\"1220d8161e42a76193d73dfd1fc1cd352e16d29b5b5b8e9331e45c2193729d992b67\\\",\\\"file:size\\\":9249917,\\\"roles\\\":[\\\"data\\\"]},\\\"nir08\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/XV/2025/7/S2B_T24MXV_20250731T130245_L2A/B8A.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,9500020],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":20,\\\"scale\\\":0.0001,\\\"offset\\\":-0.1}],\\\"file:checksum\\\":\\\"12206fd7ceb06440e3ec4ff82445ef051e8a6d7663dc9d40b368d0ef683b5f78ac4c\\\",\\\"file:size\\\":16567894,\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"]},\\\"scl\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/XV/2025/7/S2B_T24MXV_20250731T130245_L2A/SCL.tif\\\",\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Scene classification\n        map (SCL)\\\",\\\"gsd\\\":20,\\\"proj:shape\\\":[5490,5490],\\\"proj:transform\\\":[20,0,600000,0,-20,9500020],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":20}],\\\"file:checksum\\\":\\\"12202fa8ef9ed0cf1c0219b07a3378c269b195d5689f02a9b0ff42ff4787b0dd36bb\\\",\\\"file:size\\\":1206714,\\\"roles\\\":[\\\"data\\\"]},\\\"aot\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/XV/2025/7/S2B_T24MXV_20250731T130245_L2A/AOT.tif\\\",\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Aerosol optical\n        thickness (AOT)\\\",\\\"gsd\\\":20,\\\"proj:shape\\\":[5490,5490],\\\"proj:transform\\\":[20,0,600000,0,-20,9500020],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":20,\\\"scale\\\":0.001,\\\"offset\\\":0}],\\\"file:checksum\\\":\\\"12202c30b49a7f651502b5ac901d223b5b6ceff1548f5548639365236d758603d4be\\\",\\\"file:size\\\":189105,\\\"roles\\\":[\\\"data\\\"]},\\\"coastal\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/XV/2025/7/S2B_T24MXV_20250731T130245_L2A/B01.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,9500020],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":60,\\\"scale\\\":0.0001,\\\"offset\\\":-0.1}],\\\"file:checksum\\\":\\\"122063cef23309a0fb75733b90ac9d5a7c67e02abf6b14f3f57faad77b071b283b3d\\\",\\\"file:size\\\":1828443,\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"]},\\\"nir09\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/XV/2025/7/S2B_T24MXV_20250731T130245_L2A/B09.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,9500020],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":60,\\\"scale\\\":0.0001,\\\"offset\\\":-0.1}],\\\"file:checksum\\\":\\\"122024002a354fb1019beb5992a19bc671d0118691ebb234fcca8cc2fe994137ec75\\\",\\\"file:size\\\":1958211,\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"]},\\\"cloud\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/XV/2025/7/S2B_T24MXV_20250731T130245_L2A/CLD_20m.tif\\\",\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Cloud Probabilities\\\",\\\"gsd\\\":20,\\\"proj:shape\\\":[5490,5490],\\\"proj:transform\\\":[20,0,600000,0,-20,9500020],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":20}],\\\"file:checksum\\\":\\\"1220d761420680165f95f100c0d7eb424c73b2e9c4021b642ef9c5746c04887cdd15\\\",\\\"file:size\\\":1355573,\\\"roles\\\":[\\\"data\\\",\\\"cloud\\\"]},\\\"snow\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/XV/2025/7/S2B_T24MXV_20250731T130245_L2A/SNW_20m.tif\\\",\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Snow Probabilities\\\",\\\"proj:shape\\\":[5490,5490],\\\"proj:transform\\\":[20,0,600000,0,-20,9500020],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":20}],\\\"file:checksum\\\":\\\"1220b0d100c24f51c87ae37296ce914a9a1615156d7827f9ff2e9983a562c2717320\\\",\\\"file:size\\\":62396,\\\"roles\\\":[\\\"data\\\",\\\"snow-ice\\\"]},\\\"preview\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/XV/2025/7/S2B_T24MXV_20250731T130245_L2A/L2A_PVI.tif\\\",\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"True color preview\\\",\\\"gsd\\\":320,\\\"proj:shape\\\":[343,343],\\\"proj:transform\\\":[320,0,600000,0,-320,9500020],\\\"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\\\":\\\"122091d34dafdfd8c77ed0ac53f3af6d68f8a48a5c14393dc439644f92048bd5f0d8\\\",\\\"file:size\\\":97529,\\\"roles\\\":[\\\"overview\\\"]},\\\"granule_metadata\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/XV/2025/7/S2B_T24MXV_20250731T130245_L2A/metadata.xml\\\",\\\"type\\\":\\\"application/xml\\\",\\\"file:checksum\\\":\\\"1220f483ca75c36c41b8f91890641ce2730cf3b76d811bc81abd177f2e0204d91b53\\\",\\\"file:size\\\":271245,\\\"roles\\\":[\\\"metadata\\\"]},\\\"tileinfo_metadata\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/XV/2025/7/S2B_T24MXV_20250731T130245_L2A/tileInfo.json\\\",\\\"type\\\":\\\"application/json\\\",\\\"file:checksum\\\":\\\"1220924242914a01d2bacb1d145b75e77aaa5833433895fea7d6ab73af2f8187604b\\\",\\\"file:size\\\":1567,\\\"roles\\\":[\\\"metadata\\\"]},\\\"product_metadata\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/XV/2025/7/S2B_T24MXV_20250731T130245_L2A/product_metadata.xml\\\",\\\"type\\\":\\\"application/xml\\\",\\\"file:checksum\\\":\\\"1220f3ffd638c229a1f2b165e8114709ddf2e9cf33fe6b7b64a1baa3f19c1cf08208\\\",\\\"file:size\\\":55081,\\\"roles\\\":[\\\"metadata\\\"]},\\\"thumbnail\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/XV/2025/7/S2B_T24MXV_20250731T130245_L2A/L2A_PVI.jpg\\\",\\\"type\\\":\\\"image/jpeg\\\",\\\"title\\\":\\\"Thumbnail\n        of preview image\\\",\\\"file:checksum\\\":\\\"122095aaec35072407fca8b5ae26063356fa076e340837ce89a1a93ca45ace5994f9\\\",\\\"file:size\\\":19247,\\\"roles\\\":[\\\"thumbnail\\\"]}},\\\"bbox\\\":[-38.098565,-5.220741,-37.632824,-4.5221],\\\"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/grid/v1.1.0/schema.json\\\",\\\"https://stac-extensions.github.io/view/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/mgrs/v1.0.0/schema.json\\\",\\\"https://stac-extensions.github.io/sentinel-2/v1.0.0/schema.json\\\",\\\"https://stac-extensions.github.io/projection/v1.1.0/schema.json\\\"],\\\"id\\\":\\\"S2B_24MXV_20250731_0_L2A\\\",\\\"geometry\\\":{\\\"type\\\":\\\"Polygon\\\",\\\"coordinates\\\":[[[-38.09856474902517,-4.522829463088158],[-38.09775098553095,-5.1386100192416295],[-37.78519123103453,-5.220740867602101],[-37.632823904510474,-4.522099739553479],[-38.09856474902517,-4.522829463088158]]]},\\\"bbox\\\":[-38.098565,-5.220741,-37.632824,-4.5221],\\\"properties\\\":{\\\"created\\\":\\\"2025-07-31T14:16:27.686Z\\\",\\\"platform\\\":\\\"sentinel-2b\\\",\\\"constellation\\\":\\\"sentinel-2\\\",\\\"instruments\\\":[\\\"msi\\\"],\\\"eo:cloud_cover\\\":24.684544,\\\"proj:epsg\\\":32724,\\\"proj:centroid\\\":{\\\"lat\\\":-4.8316,\\\"lon\\\":-37.89646},\\\"mgrs:utm_zone\\\":24,\\\"mgrs:latitude_band\\\":\\\"M\\\",\\\"mgrs:grid_square\\\":\\\"XV\\\",\\\"grid:code\\\":\\\"MGRS-24MXV\\\",\\\"view:azimuth\\\":284.206922518204,\\\"view:incidence_angle\\\":10.138254210464146,\\\"view:sun_azimuth\\\":44.2915067269512,\\\"view:sun_elevation\\\":57.3592863266433,\\\"s2:tile_id\\\":\\\"S2B_OPER_MSI_L2A_TL_2BPS_20250731T132745_A043879_T24MXV_N05.11\\\",\\\"s2:degraded_msi_data_percentage\\\":0.0252,\\\"s2:nodata_pixel_percentage\\\":73.597109,\\\"s2:saturated_defective_pixel_percentage\\\":0,\\\"s2:cloud_shadow_percentage\\\":13.119787,\\\"s2:vegetation_percentage\\\":18.686712,\\\"s2:not_vegetated_percentage\\\":40.554669,\\\"s2:water_percentage\\\":1.461273,\\\"s2:unclassified_percentage\\\":1.482019,\\\"s2:medium_proba_clouds_percentage\\\":11.037832,\\\"s2:high_proba_clouds_percentage\\\":13.646699,\\\"s2:thin_cirrus_percentage\\\":0.000013,\\\"s2:snow_ice_percentage\\\":0,\\\"s2:product_type\\\":\\\"S2MSI2A\\\",\\\"s2:processing_baseline\\\":\\\"05.11\\\",\\\"s2:product_uri\\\":\\\"S2B_MSIL2A_20250731T130249_N0511_R095_T24MXV_20250731T132745.SAFE\\\",\\\"s2:generation_time\\\":\\\"2025-07-31T13:27:45.000000Z\\\",\\\"s2:datatake_id\\\":\\\"GS2B_20250731T130249_043879_N05.11\\\",\\\"s2:datatake_type\\\":\\\"INS-NOBS\\\",\\\"s2:datastrip_id\\\":\\\"S2B_OPER_MSI_L2A_DS_2BPS_20250731T132745_S20250731T130245_N05.11\\\",\\\"s2:reflectance_conversion_factor\\\":0.969778956128144,\\\"datetime\\\":\\\"2025-07-31T13:03:22.435000Z\\\",\\\"s2:sequence\\\":\\\"0\\\",\\\"earthsearch:s3_path\\\":\\\"s3://sentinel-cogs/sentinel-s2-l2a-cogs/24/M/XV/2025/7/S2B_24MXV_20250731_0_L2A\\\",\\\"earthsearch:payload_id\\\":\\\"roda-sentinel2/workflow-sentinel2-to-stac/790a6845fca91672f770b1bdcb5b78b8\\\",\\\"earthsearch:boa_offset_applied\\\":true,\\\"processing:software\\\":{\\\"sentinel2-to-stac\\\":\\\"2025.03.06\\\"},\\\"updated\\\":\\\"2025-07-31T14:16:27.686Z\\\"},\\\"links\\\":[{\\\"rel\\\":\\\"self\\\",\\\"type\\\":\\\"application/geo+json\\\",\\\"href\\\":\\\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l2a/items/S2B_24MXV_20250731_0_L2A\\\"},{\\\"rel\\\":\\\"canonical\\\",\\\"href\\\":\\\"s3://sentinel-cogs/sentinel-s2-l2a-cogs/24/M/XV/2025/7/S2B_24MXV_20250731_0_L2A/S2B_24MXV_20250731_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_24MXV_20250731_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_24MXV_20250731_0_L2A/thumbnail\\\"}],\\\"assets\\\":{\\\"aot\\\":{\\\"href\\\":\\\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/24/M/XV/2025/7/S2B_24MXV_20250731_0_L2A/AOT.tif\\\",\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Aerosol optical\n        thickness (AOT)\\\",\\\"gsd\\\":20,\\\"proj:shape\\\":[5490,5490],\\\"proj:transform\\\":[20,0,600000,0,-20,9500020],\\\"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/24/M/XV/2025/7/S2B_24MXV_20250731_0_L2A/B02.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,9500020],\\\"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/24/M/XV/2025/7/31/0/qi/CLD_20m.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Cloud\n        Probabilities\\\",\\\"gsd\\\":20,\\\"proj:shape\\\":[5490,5490],\\\"proj:transform\\\":[20,0,600000,0,-20,9500020],\\\"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/24/M/XV/2025/7/S2B_24MXV_20250731_0_L2A/B01.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,9500020],\\\"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/24/M/XV/2025/7/S2B_24MXV_20250731_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/24/M/XV/2025/7/S2B_24MXV_20250731_0_L2A/B03.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,9500020],\\\"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/24/M/XV/2025/7/S2B_24MXV_20250731_0_L2A/B08.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,9500020],\\\"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/24/M/XV/2025/7/S2B_24MXV_20250731_0_L2A/B8A.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,9500020],\\\"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/24/M/XV/2025/7/S2B_24MXV_20250731_0_L2A/B09.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,9500020],\\\"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/24/M/XV/2025/7/31/0/product_metadata.xml\\\",\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"red\\\":{\\\"href\\\":\\\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/24/M/XV/2025/7/S2B_24MXV_20250731_0_L2A/B04.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,9500020],\\\"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/24/M/XV/2025/7/S2B_24MXV_20250731_0_L2A/B05.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,9500020],\\\"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/24/M/XV/2025/7/S2B_24MXV_20250731_0_L2A/B06.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,9500020],\\\"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/24/M/XV/2025/7/S2B_24MXV_20250731_0_L2A/B07.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,9500020],\\\"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/24/M/XV/2025/7/S2B_24MXV_20250731_0_L2A/SCL.tif\\\",\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Scene classification\n        map (SCL)\\\",\\\"gsd\\\":20,\\\"proj:shape\\\":[5490,5490],\\\"proj:transform\\\":[20,0,600000,0,-20,9500020],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":20}],\\\"roles\\\":[\\\"data\\\"]},\\\"snow\\\":{\\\"href\\\":\\\"s3://sentinel-s2-l2a/tiles/24/M/XV/2025/7/31/0/qi/SNW_20m.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Snow\n        Probabilities\\\",\\\"proj:shape\\\":[5490,5490],\\\"proj:transform\\\":[20,0,600000,0,-20,9500020],\\\"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/24/M/XV/2025/7/S2B_24MXV_20250731_0_L2A/B11.tif\\\",\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"SWIR 1.6\\u03BCm\n        - 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,9500020],\\\"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/24/M/XV/2025/7/S2B_24MXV_20250731_0_L2A/B12.tif\\\",\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"SWIR 2.2\\u03BCm\n        - 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,9500020],\\\"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/24/M/XV/2025/7/S2B_24MXV_20250731_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/24/M/XV/2025/7/S2B_24MXV_20250731_0_L2A/TCI.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,9500020],\\\"roles\\\":[\\\"visual\\\"]},\\\"wvp\\\":{\\\"href\\\":\\\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/24/M/XV/2025/7/S2B_24MXV_20250731_0_L2A/WVP.tif\\\",\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Water Vapour (WVP)\\\",\\\"gsd\\\":20,\\\"proj:shape\\\":[5490,5490],\\\"proj:transform\\\":[20,0,600000,0,-20,9500020],\\\"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/24/M/XV/2025/7/S2B_24MXV_20250731_0_L2A/preview.jpg\\\",\\\"type\\\":\\\"image/jpeg\\\",\\\"title\\\":\\\"Thumbnail\n        of preview image\\\",\\\"roles\\\":[\\\"thumbnail\\\"]},\\\"aot-jp2\\\":{\\\"href\\\":\\\"s3://sentinel-s2-l2a/tiles/24/M/XV/2025/7/31/0/R20m/AOT.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Aerosol\n        optical thickness (AOT)\\\",\\\"gsd\\\":20,\\\"proj:shape\\\":[5490,5490],\\\"proj:transform\\\":[20,0,600000,0,-20,9500020],\\\"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/24/M/XV/2025/7/31/0/R10m/B02.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Blue\n        - 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,9500020],\\\"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/24/M/XV/2025/7/31/0/R60m/B01.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Coastal\n        - 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,9500020],\\\"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/24/M/XV/2025/7/31/0/R10m/B03.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Green\n        - 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,9500020],\\\"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/24/M/XV/2025/7/31/0/R10m/B08.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"NIR\n        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,9500020],\\\"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/24/M/XV/2025/7/31/0/R20m/B8A.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"NIR\n        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,9500020],\\\"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/24/M/XV/2025/7/31/0/R60m/B09.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"NIR\n        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,9500020],\\\"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/24/M/XV/2025/7/31/0/R10m/B04.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Red\n        - 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,9500020],\\\"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/24/M/XV/2025/7/31/0/R20m/B05.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Red\n        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,9500020],\\\"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/24/M/XV/2025/7/31/0/R20m/B06.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Red\n        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,9500020],\\\"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/24/M/XV/2025/7/31/0/R20m/B07.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Red\n        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,9500020],\\\"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/24/M/XV/2025/7/31/0/R20m/SCL.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Scene\n        classification map (SCL)\\\",\\\"gsd\\\":20,\\\"proj:shape\\\":[5490,5490],\\\"proj:transform\\\":[20,0,600000,0,-20,9500020],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":20}],\\\"roles\\\":[\\\"data\\\"]},\\\"swir16-jp2\\\":{\\\"href\\\":\\\"s3://sentinel-s2-l2a/tiles/24/M/XV/2025/7/31/0/R20m/B11.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"SWIR\n        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,9500020],\\\"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/24/M/XV/2025/7/31/0/R20m/B12.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"SWIR\n        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,9500020],\\\"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/24/M/XV/2025/7/31/0/R10m/TCI.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"True\n        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,9500020],\\\"roles\\\":[\\\"visual\\\"]},\\\"wvp-jp2\\\":{\\\"href\\\":\\\"s3://sentinel-s2-l2a/tiles/24/M/XV/2025/7/31/0/R20m/WVP.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Water\n        Vapour (WVP)\\\",\\\"gsd\\\":20,\\\"proj:shape\\\":[5490,5490],\\\"proj:transform\\\":[20,0,600000,0,-20,9500020],\\\"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/eo/v1.1.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/raster/v1.1.0/schema.json\\\",\\\"https://stac-extensions.github.io/processing/v1.1.0/schema.json\\\",\\\"https://stac-extensions.github.io/mgrs/v1.0.0/schema.json\\\",\\\"https://stac-extensions.github.io/sentinel-2/v1.0.0/schema.json\\\",\\\"https://stac-extensions.github.io/projection/v1.1.0/schema.json\\\"],\\\"id\\\":\\\"S2B_24MXV_20250731_0_L1C\\\",\\\"geometry\\\":{\\\"type\\\":\\\"Polygon\\\",\\\"coordinates\\\":[[[-38.09856474902517,-4.522829463088158],[-38.09775098553095,-5.1386100192416295],[-37.78519123103453,-5.220740867602101],[-37.632823904510474,-4.522099739553479],[-38.09856474902517,-4.522829463088158]]]},\\\"bbox\\\":[-38.098565,-5.220741,-37.632824,-4.5221],\\\"properties\\\":{\\\"created\\\":\\\"2025-07-31T14:16:27.588Z\\\",\\\"platform\\\":\\\"sentinel-2b\\\",\\\"constellation\\\":\\\"sentinel-2\\\",\\\"instruments\\\":[\\\"msi\\\"],\\\"eo:cloud_cover\\\":15.8741144857911,\\\"proj:epsg\\\":32724,\\\"proj:centroid\\\":{\\\"lat\\\":-4.8316,\\\"lon\\\":-37.89646},\\\"mgrs:utm_zone\\\":24,\\\"mgrs:latitude_band\\\":\\\"M\\\",\\\"mgrs:grid_square\\\":\\\"XV\\\",\\\"grid:code\\\":\\\"MGRS-24MXV\\\",\\\"view:azimuth\\\":284.206922518204,\\\"view:incidence_angle\\\":10.138254210464146,\\\"view:sun_azimuth\\\":44.2915067269512,\\\"view:sun_elevation\\\":57.3592863266433,\\\"s2:tile_id\\\":\\\"S2B_OPER_MSI_L1C_TL_2BPS_20250731T131834_A043879_T24MXV_N05.11\\\",\\\"s2:degraded_msi_data_percentage\\\":0.0252,\\\"s2:product_type\\\":\\\"S2MSI1C\\\",\\\"s2:processing_baseline\\\":\\\"05.11\\\",\\\"s2:product_uri\\\":\\\"S2B_MSIL1C_20250731T130249_N0511_R095_T24MXV_20250731T131834.SAFE\\\",\\\"s2:generation_time\\\":\\\"2025-07-31T13:18:34.000000Z\\\",\\\"s2:datatake_id\\\":\\\"GS2B_20250731T130249_043879_N05.11\\\",\\\"s2:datatake_type\\\":\\\"INS-NOBS\\\",\\\"s2:datastrip_id\\\":\\\"S2B_OPER_MSI_L1C_DS_2BPS_20250731T131834_S20250731T130245_N05.11\\\",\\\"s2:reflectance_conversion_factor\\\":0.969778956128144,\\\"datetime\\\":\\\"2025-07-31T13:03:22.435000Z\\\",\\\"s2:sequence\\\":\\\"0\\\",\\\"earthsearch:s3_path\\\":\\\"s3://earthsearch-data/sentinel-2-l1c/24/M/XV/2025/7/S2B_24MXV_20250731_0_L1C\\\",\\\"earthsearch:payload_id\\\":\\\"roda-sentinel2/workflow-sentinel2-to-stac/790a6845fca91672f770b1bdcb5b78b8\\\",\\\"processing:software\\\":{\\\"sentinel2-to-stac\\\":\\\"2025.03.06\\\"},\\\"updated\\\":\\\"2025-07-31T14:16:27.588Z\\\"},\\\"links\\\":[{\\\"rel\\\":\\\"self\\\",\\\"type\\\":\\\"application/geo+json\\\",\\\"href\\\":\\\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l1c/items/S2B_24MXV_20250731_0_L1C\\\"},{\\\"rel\\\":\\\"canonical\\\",\\\"href\\\":\\\"s3://earthsearch-data/sentinel-2-l1c/24/M/XV/2025/7/S2B_24MXV_20250731_0_L1C/S2B_24MXV_20250731_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_24MXV_20250731_0_L1C/thumbnail\\\"}],\\\"assets\\\":{\\\"blue\\\":{\\\"href\\\":\\\"s3://sentinel-s2-l1c/tiles/24/M/XV/2025/7/31/0/B02.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Blue\n        - 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,9500020],\\\"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/24/M/XV/2025/7/31/0/B10.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Cirrus\n        - 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,9500020],\\\"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/24/M/XV/2025/7/31/0/B01.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Coastal\n        - 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,9500020],\\\"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/24/M/XV/2025/7/31/0/metadata.xml\\\",\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"green\\\":{\\\"href\\\":\\\"s3://sentinel-s2-l1c/tiles/24/M/XV/2025/7/31/0/B03.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Green\n        - 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,9500020],\\\"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/24/M/XV/2025/7/31/0/B08.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"NIR\n        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,9500020],\\\"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/24/M/XV/2025/7/31/0/B8A.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"NIR\n        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,9500020],\\\"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/24/M/XV/2025/7/31/0/B09.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"NIR\n        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,9500020],\\\"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/24/M/XV/2025/7/31/0/product_metadata.xml\\\",\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"red\\\":{\\\"href\\\":\\\"s3://sentinel-s2-l1c/tiles/24/M/XV/2025/7/31/0/B04.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Red\n        - 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,9500020],\\\"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/24/M/XV/2025/7/31/0/B05.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Red\n        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,9500020],\\\"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/24/M/XV/2025/7/31/0/B06.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Red\n        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,9500020],\\\"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/24/M/XV/2025/7/31/0/B07.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Red\n        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,9500020],\\\"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/24/M/XV/2025/7/31/0/B11.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"SWIR\n        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,9500020],\\\"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/24/M/XV/2025/7/31/0/B12.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"SWIR\n        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,9500020],\\\"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/24/M/XV/2025/7/31/0/tileInfo.json\\\",\\\"type\\\":\\\"application/json\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"visual\\\":{\\\"href\\\":\\\"s3://sentinel-s2-l1c/tiles/24/M/XV/2025/7/31/0/TCI.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"True\n        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,9500020],\\\"roles\\\":[\\\"visual\\\"]}},\\\"collection\\\":\\\"sentinel-2-l1c\\\"},{\\\"type\\\":\\\"Feature\\\",\\\"stac_version\\\":\\\"1.0.0\\\",\\\"id\\\":\\\"S2B_T24MUA_20250731T130245_L2A\\\",\\\"properties\\\":{\\\"created\\\":\\\"2025-07-31T14:13:59.775Z\\\",\\\"platform\\\":\\\"sentinel-2b\\\",\\\"constellation\\\":\\\"sentinel-2\\\",\\\"instruments\\\":[\\\"msi\\\"],\\\"eo:cloud_cover\\\":41.489562,\\\"proj:epsg\\\":32724,\\\"proj:centroid\\\":{\\\"lat\\\":-4.15628,\\\"lon\\\":-40.03482},\\\"mgrs:utm_zone\\\":24,\\\"mgrs:latitude_band\\\":\\\"M\\\",\\\"mgrs:grid_square\\\":\\\"UA\\\",\\\"grid:code\\\":\\\"MGRS-24MUA\\\",\\\"view:azimuth\\\":102.06242078525962,\\\"view:incidence_angle\\\":9.824161738501699,\\\"view:sun_azimuth\\\":48.3686577525347,\\\"view:sun_elevation\\\":56.011966704379,\\\"s2:tile_id\\\":\\\"S2B_OPER_MSI_L2A_TL_2BPS_20250731T132745_A043879_T24MUA_N05.11\\\",\\\"s2:degraded_msi_data_percentage\\\":0.0044,\\\"s2:nodata_pixel_percentage\\\":55.94207,\\\"s2:saturated_defective_pixel_percentage\\\":0,\\\"s2:cloud_shadow_percentage\\\":11.216991,\\\"s2:vegetation_percentage\\\":10.152176,\\\"s2:not_vegetated_percentage\\\":34.889048,\\\"s2:water_percentage\\\":0.439073,\\\"s2:unclassified_percentage\\\":1.653357,\\\"s2:medium_proba_clouds_percentage\\\":11.357544,\\\"s2:high_proba_clouds_percentage\\\":28.813595,\\\"s2:thin_cirrus_percentage\\\":1.318425,\\\"s2:snow_ice_percentage\\\":0,\\\"s2:product_type\\\":\\\"S2MSI2A\\\",\\\"s2:processing_baseline\\\":\\\"05.11\\\",\\\"s2:product_uri\\\":\\\"S2B_MSIL2A_20250731T130249_N0511_R095_T24MUA_20250731T132745.SAFE\\\",\\\"s2:generation_time\\\":\\\"2025-07-31T13:27:45.000000Z\\\",\\\"s2:datatake_id\\\":\\\"GS2B_20250731T130249_043879_N05.11\\\",\\\"s2:datatake_type\\\":\\\"INS-NOBS\\\",\\\"s2:datastrip_id\\\":\\\"S2B_OPER_MSI_L2A_DS_2BPS_20250731T132745_S20250731T130245_N05.11\\\",\\\"s2:reflectance_conversion_factor\\\":0.969778956128144,\\\"datetime\\\":\\\"2025-07-31T13:03:19.635000Z\\\",\\\"earthsearch:payload_id\\\":\\\"roda-sentinel-2-c1-l2a/workflow-sentinel-2-c1-l2a-to-stac/5b19b3f1bdad62347654d4cfaf76127f\\\",\\\"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-31T14:13:59.775Z\\\"},\\\"geometry\\\":{\\\"type\\\":\\\"Polygon\\\",\\\"coordinates\\\":[[[-40.13726388286307,-3.617808687592391],[-40.35796969288401,-4.610551374667193],[-39.813201427297145,-4.611384097732323],[-39.812194580445436,-3.6181593391005116],[-40.13726388286307,-3.617808687592391]]]},\\\"links\\\":[{\\\"rel\\\":\\\"self\\\",\\\"type\\\":\\\"application/geo+json\\\",\\\"href\\\":\\\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-c1-l2a/items/S2B_T24MUA_20250731T130245_L2A\\\"},{\\\"rel\\\":\\\"canonical\\\",\\\"href\\\":\\\"s3://e84-earth-search-sentinel-data/sentinel-2-c1-l2a/24/M/UA/2025/7/S2B_T24MUA_20250731T130245_L2A/S2B_T24MUA_20250731T130245_L2A.json\\\",\\\"type\\\":\\\"application/json\\\"},{\\\"rel\\\":\\\"via\\\",\\\"href\\\":\\\"s3://sentinel-s2-l2a/tiles/24/M/UA/2025/7/31/0/metadata.xml\\\",\\\"type\\\":\\\"application/xml\\\",\\\"title\\\":\\\"Granule\n        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_T24MUA_20250731T130245_L2A/thumbnail\\\"}],\\\"assets\\\":{\\\"red\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/UA/2025/7/S2B_T24MUA_20250731T130245_L2A/B04.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,300000,0,-10,9600040],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":10,\\\"scale\\\":0.0001,\\\"offset\\\":-0.1}],\\\"file:checksum\\\":\\\"12208f5d432b93c7fc21059512d9047ff8beddb13a9056e2816fd1db8c79093dfff8\\\",\\\"file:size\\\":98955958,\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"]},\\\"green\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/UA/2025/7/S2B_T24MUA_20250731T130245_L2A/B03.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,300000,0,-10,9600040],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":10,\\\"scale\\\":0.0001,\\\"offset\\\":-0.1}],\\\"file:checksum\\\":\\\"122073c3b8fd16399d908bfc28f09cfa50bcbd8946ba3dc3d36b1a5bec464be8a9ab\\\",\\\"file:size\\\":97960627,\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"]},\\\"blue\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/UA/2025/7/S2B_T24MUA_20250731T130245_L2A/B02.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,300000,0,-10,9600040],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":10,\\\"scale\\\":0.0001,\\\"offset\\\":-0.1}],\\\"file:checksum\\\":\\\"1220fd7fcef71c57026eebb5544c0b43f340fdf5295406ce23a0c3c609cdd5677583\\\",\\\"file:size\\\":97736143,\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"]},\\\"visual\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/UA/2025/7/S2B_T24MUA_20250731T130245_L2A/TCI.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,300000,0,-10,9600040],\\\"file:checksum\\\":\\\"122063cdc393cbd9570ff5089eca192d89cb64c6cdda1c93d912bd33037d0bacc1d6\\\",\\\"file:size\\\":106154808,\\\"roles\\\":[\\\"visual\\\"]},\\\"nir\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/UA/2025/7/S2B_T24MUA_20250731T130245_L2A/B08.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,300000,0,-10,9600040],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":10,\\\"scale\\\":0.0001,\\\"offset\\\":-0.1}],\\\"file:checksum\\\":\\\"12208bc8e93c7dcea1b40423809dbc937a3ba9e135a6347c5fd85cfcefa3c21e868e\\\",\\\"file:size\\\":97100444,\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"]},\\\"swir22\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/UA/2025/7/S2B_T24MUA_20250731T130245_L2A/B12.tif\\\",\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"SWIR 2.2\\u03BCm\n        - 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,300000,0,-20,9600040],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":20,\\\"scale\\\":0.0001,\\\"offset\\\":-0.1}],\\\"file:checksum\\\":\\\"12204f727489ccb7fe6e10f5b373e80114b2dcd877331a438e1ed9b790c34ffe0133\\\",\\\"file:size\\\":27140591,\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"]},\\\"rededge2\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/UA/2025/7/S2B_T24MUA_20250731T130245_L2A/B06.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,300000,0,-20,9600040],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":20,\\\"scale\\\":0.0001,\\\"offset\\\":-0.1}],\\\"file:checksum\\\":\\\"12203f41c620f23fc5d15cb17a604e8174aa68c9fa1e0d2fcaef742045ae2da2c197\\\",\\\"file:size\\\":27249902,\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"]},\\\"rededge3\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/UA/2025/7/S2B_T24MUA_20250731T130245_L2A/B07.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,300000,0,-20,9600040],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":20,\\\"scale\\\":0.0001,\\\"offset\\\":-0.1}],\\\"file:checksum\\\":\\\"1220cf62f951dc8a8b9c13ef7054d7a353cc5600889c280fa903f335bf6e260ad2d4\\\",\\\"file:size\\\":27286398,\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"]},\\\"rededge1\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/UA/2025/7/S2B_T24MUA_20250731T130245_L2A/B05.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,300000,0,-20,9600040],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":20,\\\"scale\\\":0.0001,\\\"offset\\\":-0.1}],\\\"file:checksum\\\":\\\"1220ddded399f5615a9d85c3676fefa434a90a11bc343b04a7ba7edacee960bec2fe\\\",\\\"file:size\\\":27138896,\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"]},\\\"swir16\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/UA/2025/7/S2B_T24MUA_20250731T130245_L2A/B11.tif\\\",\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"SWIR 1.6\\u03BCm\n        - 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,300000,0,-20,9600040],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":20,\\\"scale\\\":0.0001,\\\"offset\\\":-0.1}],\\\"file:checksum\\\":\\\"1220656261d09914be544837eb38099895a3796e5c326c370ba6ba1698070d2d877f\\\",\\\"file:size\\\":27277613,\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"]},\\\"wvp\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/UA/2025/7/S2B_T24MUA_20250731T130245_L2A/WVP.tif\\\",\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Water Vapour (WVP)\\\",\\\"gsd\\\":20,\\\"proj:shape\\\":[5490,5490],\\\"proj:transform\\\":[20,0,300000,0,-20,9600040],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":20,\\\"unit\\\":\\\"cm\\\",\\\"scale\\\":0.001,\\\"offset\\\":0}],\\\"file:checksum\\\":\\\"1220c7b6030a6481b4e61e0960fd285048be450ff8b4aa418f25035ef568eedabb28\\\",\\\"file:size\\\":11719933,\\\"roles\\\":[\\\"data\\\"]},\\\"nir08\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/UA/2025/7/S2B_T24MUA_20250731T130245_L2A/B8A.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,300000,0,-20,9600040],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":20,\\\"scale\\\":0.0001,\\\"offset\\\":-0.1}],\\\"file:checksum\\\":\\\"12208b1b8204934dfedee554f6c6fbc1077d719651287c7b79470b6acb13d4fb777d\\\",\\\"file:size\\\":27274818,\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"]},\\\"scl\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/UA/2025/7/S2B_T24MUA_20250731T130245_L2A/SCL.tif\\\",\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Scene classification\n        map (SCL)\\\",\\\"gsd\\\":20,\\\"proj:shape\\\":[5490,5490],\\\"proj:transform\\\":[20,0,300000,0,-20,9600040],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":20}],\\\"file:checksum\\\":\\\"1220c81cad4586506cf5b018603256baa1f562702a7122b363585b91d50c4e4f3f6b\\\",\\\"file:size\\\":1725794,\\\"roles\\\":[\\\"data\\\"]},\\\"aot\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/UA/2025/7/S2B_T24MUA_20250731T130245_L2A/AOT.tif\\\",\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Aerosol optical\n        thickness (AOT)\\\",\\\"gsd\\\":20,\\\"proj:shape\\\":[5490,5490],\\\"proj:transform\\\":[20,0,300000,0,-20,9600040],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":20,\\\"scale\\\":0.001,\\\"offset\\\":0}],\\\"file:checksum\\\":\\\"1220efab7dfee6c141dfbc373da7431e92f0fe33d8ee430c309ff1897e5935bfa1cd\\\",\\\"file:size\\\":521690,\\\"roles\\\":[\\\"data\\\"]},\\\"coastal\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/UA/2025/7/S2B_T24MUA_20250731T130245_L2A/B01.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,300000,0,-60,9600040],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":60,\\\"scale\\\":0.0001,\\\"offset\\\":-0.1}],\\\"file:checksum\\\":\\\"1220609e81aa389285d733fe23902e92b2737d2c1fd42f908e4ba326c8cbada2b165\\\",\\\"file:size\\\":3087585,\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"]},\\\"nir09\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/UA/2025/7/S2B_T24MUA_20250731T130245_L2A/B09.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,300000,0,-60,9600040],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":60,\\\"scale\\\":0.0001,\\\"offset\\\":-0.1}],\\\"file:checksum\\\":\\\"1220d04e07aff9be9e7108cc50f1b909a1f1ed53a4537a7ea4354a00e2381464c499\\\",\\\"file:size\\\":3137688,\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"]},\\\"cloud\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/UA/2025/7/S2B_T24MUA_20250731T130245_L2A/CLD_20m.tif\\\",\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Cloud Probabilities\\\",\\\"gsd\\\":20,\\\"proj:shape\\\":[5490,5490],\\\"proj:transform\\\":[20,0,300000,0,-20,9600040],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":20}],\\\"file:checksum\\\":\\\"1220985e96eacf72cb2dc80baea945875465d6138186743b948fed0d5aafea145314\\\",\\\"file:size\\\":2543161,\\\"roles\\\":[\\\"data\\\",\\\"cloud\\\"]},\\\"snow\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/UA/2025/7/S2B_T24MUA_20250731T130245_L2A/SNW_20m.tif\\\",\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Snow Probabilities\\\",\\\"proj:shape\\\":[5490,5490],\\\"proj:transform\\\":[20,0,300000,0,-20,9600040],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":20}],\\\"file:checksum\\\":\\\"12200e8127b76c8fca3aa126e3c1efea777f95a97d961045a1e8c05296bfd8a06acf\\\",\\\"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/24/M/UA/2025/7/S2B_T24MUA_20250731T130245_L2A/L2A_PVI.tif\\\",\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"True color preview\\\",\\\"gsd\\\":320,\\\"proj:shape\\\":[343,343],\\\"proj:transform\\\":[320,0,300000,0,-320,9600040],\\\"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\\\":\\\"1220fd6b9e842d691f3b41fe6bc0d4644b7281f9727d24e5a745a51b5ccf4f0f53c6\\\",\\\"file:size\\\":136802,\\\"roles\\\":[\\\"overview\\\"]},\\\"granule_metadata\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/UA/2025/7/S2B_T24MUA_20250731T130245_L2A/metadata.xml\\\",\\\"type\\\":\\\"application/xml\\\",\\\"file:checksum\\\":\\\"12209e4c80edd4c11d41c8066b5aad458160fc659fa85aed60f4a4e98b1306582ade\\\",\\\"file:size\\\":281726,\\\"roles\\\":[\\\"metadata\\\"]},\\\"tileinfo_metadata\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/UA/2025/7/S2B_T24MUA_20250731T130245_L2A/tileInfo.json\\\",\\\"type\\\":\\\"application/json\\\",\\\"file:checksum\\\":\\\"1220cec80ee5477d75786cc827016186ae6c43cf69674eaed46163501837bc9f1ff6\\\",\\\"file:size\\\":1520,\\\"roles\\\":[\\\"metadata\\\"]},\\\"product_metadata\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/UA/2025/7/S2B_T24MUA_20250731T130245_L2A/product_metadata.xml\\\",\\\"type\\\":\\\"application/xml\\\",\\\"file:checksum\\\":\\\"12203d810902424c2910a515a594abadc3fb347defb24b5de5b94632223e580ab627\\\",\\\"file:size\\\":54923,\\\"roles\\\":[\\\"metadata\\\"]},\\\"thumbnail\\\":{\\\"href\\\":\\\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/24/M/UA/2025/7/S2B_T24MUA_20250731T130245_L2A/L2A_PVI.jpg\\\",\\\"type\\\":\\\"image/jpeg\\\",\\\"title\\\":\\\"Thumbnail\n        of preview image\\\",\\\"file:checksum\\\":\\\"1220e3d992974ccc5bcfb9323372417e950bb83ed7d5de761ae364a0f4a869926fdd\\\",\\\"file:size\\\":27178,\\\"roles\\\":[\\\"thumbnail\\\"]}},\\\"bbox\\\":[-40.35797,-4.611384,-39.812195,-3.617809],\\\"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/projection/v1.1.0/schema.json\\\",\\\"https://stac-extensions.github.io/sentinel-2/v1.0.0/schema.json\\\",\\\"https://stac-extensions.github.io/view/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/mgrs/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\\\"],\\\"id\\\":\\\"S2B_24MUA_20250731_0_L2A\\\",\\\"geometry\\\":{\\\"type\\\":\\\"Polygon\\\",\\\"coordinates\\\":[[[-40.13726388286307,-3.617808687592391],[-40.35796969288401,-4.610551374667193],[-39.813201427297145,-4.611384097732323],[-39.812194580445436,-3.6181593391005116],[-40.13726388286307,-3.617808687592391]]]},\\\"bbox\\\":[-40.35797,-4.611384,-39.812195,-3.617809],\\\"properties\\\":{\\\"created\\\":\\\"2025-07-31T14:22:36.115Z\\\",\\\"platform\\\":\\\"sentinel-2b\\\",\\\"constellation\\\":\\\"sentinel-2\\\",\\\"instruments\\\":[\\\"msi\\\"],\\\"eo:cloud_cover\\\":41.489562,\\\"proj:epsg\\\":32724,\\\"proj:centroid\\\":{\\\"lat\\\":-4.15628,\\\"lon\\\":-40.03482},\\\"mgrs:utm_zone\\\":24,\\\"mgrs:latitude_band\\\":\\\"M\\\",\\\"mgrs:grid_square\\\":\\\"UA\\\",\\\"grid:code\\\":\\\"MGRS-24MUA\\\",\\\"view:azimuth\\\":102.06242078525962,\\\"view:incidence_angle\\\":9.824161738501699,\\\"view:sun_azimuth\\\":48.3686577525347,\\\"view:sun_elevation\\\":56.011966704379,\\\"s2:tile_id\\\":\\\"S2B_OPER_MSI_L2A_TL_2BPS_20250731T132745_A043879_T24MUA_N05.11\\\",\\\"s2:degraded_msi_data_percentage\\\":0.0044,\\\"s2:nodata_pixel_percentage\\\":55.94207,\\\"s2:saturated_defective_pixel_percentage\\\":0,\\\"s2:cloud_shadow_percentage\\\":11.216991,\\\"s2:vegetation_percentage\\\":10.152176,\\\"s2:not_vegetated_percentage\\\":34.889048,\\\"s2:water_percentage\\\":0.439073,\\\"s2:unclassified_percentage\\\":1.653357,\\\"s2:medium_proba_clouds_percentage\\\":11.357544,\\\"s2:high_proba_clouds_percentage\\\":28.813595,\\\"s2:thin_cirrus_percentage\\\":1.318425,\\\"s2:snow_ice_percentage\\\":0,\\\"s2:product_type\\\":\\\"S2MSI2A\\\",\\\"s2:processing_baseline\\\":\\\"05.11\\\",\\\"s2:product_uri\\\":\\\"S2B_MSIL2A_20250731T130249_N0511_R095_T24MUA_20250731T132745.SAFE\\\",\\\"s2:generation_time\\\":\\\"2025-07-31T13:27:45.000000Z\\\",\\\"s2:datatake_id\\\":\\\"GS2B_20250731T130249_043879_N05.11\\\",\\\"s2:datatake_type\\\":\\\"INS-NOBS\\\",\\\"s2:datastrip_id\\\":\\\"S2B_OPER_MSI_L2A_DS_2BPS_20250731T132745_S20250731T130245_N05.11\\\",\\\"s2:reflectance_conversion_factor\\\":0.969778956128144,\\\"datetime\\\":\\\"2025-07-31T13:03:19.635000Z\\\",\\\"s2:sequence\\\":\\\"0\\\",\\\"earthsearch:s3_path\\\":\\\"s3://sentinel-cogs/sentinel-s2-l2a-cogs/24/M/UA/2025/7/S2B_24MUA_20250731_0_L2A\\\",\\\"earthsearch:payload_id\\\":\\\"roda-sentinel2/workflow-sentinel2-to-stac/7c7578091aeb8c1a16e743a222d40de9\\\",\\\"earthsearch:boa_offset_applied\\\":true,\\\"processing:software\\\":{\\\"sentinel2-to-stac\\\":\\\"2025.03.06\\\"},\\\"updated\\\":\\\"2025-07-31T14:22:36.115Z\\\"},\\\"links\\\":[{\\\"rel\\\":\\\"self\\\",\\\"type\\\":\\\"application/geo+json\\\",\\\"href\\\":\\\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l2a/items/S2B_24MUA_20250731_0_L2A\\\"},{\\\"rel\\\":\\\"canonical\\\",\\\"href\\\":\\\"s3://sentinel-cogs/sentinel-s2-l2a-cogs/24/M/UA/2025/7/S2B_24MUA_20250731_0_L2A/S2B_24MUA_20250731_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_24MUA_20250731_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_24MUA_20250731_0_L2A/thumbnail\\\"}],\\\"assets\\\":{\\\"aot\\\":{\\\"href\\\":\\\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/24/M/UA/2025/7/S2B_24MUA_20250731_0_L2A/AOT.tif\\\",\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Aerosol optical\n        thickness (AOT)\\\",\\\"gsd\\\":20,\\\"proj:shape\\\":[5490,5490],\\\"proj:transform\\\":[20,0,300000,0,-20,9600040],\\\"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/24/M/UA/2025/7/S2B_24MUA_20250731_0_L2A/B02.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,300000,0,-10,9600040],\\\"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/24/M/UA/2025/7/31/0/qi/CLD_20m.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Cloud\n        Probabilities\\\",\\\"gsd\\\":20,\\\"proj:shape\\\":[5490,5490],\\\"proj:transform\\\":[20,0,300000,0,-20,9600040],\\\"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/24/M/UA/2025/7/S2B_24MUA_20250731_0_L2A/B01.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,300000,0,-60,9600040],\\\"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/24/M/UA/2025/7/S2B_24MUA_20250731_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/24/M/UA/2025/7/S2B_24MUA_20250731_0_L2A/B03.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,300000,0,-10,9600040],\\\"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/24/M/UA/2025/7/S2B_24MUA_20250731_0_L2A/B08.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,300000,0,-10,9600040],\\\"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/24/M/UA/2025/7/S2B_24MUA_20250731_0_L2A/B8A.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,300000,0,-20,9600040],\\\"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/24/M/UA/2025/7/S2B_24MUA_20250731_0_L2A/B09.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,300000,0,-60,9600040],\\\"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/24/M/UA/2025/7/31/0/product_metadata.xml\\\",\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"red\\\":{\\\"href\\\":\\\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/24/M/UA/2025/7/S2B_24MUA_20250731_0_L2A/B04.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,300000,0,-10,9600040],\\\"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/24/M/UA/2025/7/S2B_24MUA_20250731_0_L2A/B05.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,300000,0,-20,9600040],\\\"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/24/M/UA/2025/7/S2B_24MUA_20250731_0_L2A/B06.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,300000,0,-20,9600040],\\\"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/24/M/UA/2025/7/S2B_24MUA_20250731_0_L2A/B07.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,300000,0,-20,9600040],\\\"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/24/M/UA/2025/7/S2B_24MUA_20250731_0_L2A/SCL.tif\\\",\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Scene classification\n        map (SCL)\\\",\\\"gsd\\\":20,\\\"proj:shape\\\":[5490,5490],\\\"proj:transform\\\":[20,0,300000,0,-20,9600040],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":20}],\\\"roles\\\":[\\\"data\\\"]},\\\"snow\\\":{\\\"href\\\":\\\"s3://sentinel-s2-l2a/tiles/24/M/UA/2025/7/31/0/qi/SNW_20m.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Snow\n        Probabilities\\\",\\\"proj:shape\\\":[5490,5490],\\\"proj:transform\\\":[20,0,300000,0,-20,9600040],\\\"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/24/M/UA/2025/7/S2B_24MUA_20250731_0_L2A/B11.tif\\\",\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"SWIR 1.6\\u03BCm\n        - 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,300000,0,-20,9600040],\\\"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/24/M/UA/2025/7/S2B_24MUA_20250731_0_L2A/B12.tif\\\",\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"SWIR 2.2\\u03BCm\n        - 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,300000,0,-20,9600040],\\\"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/24/M/UA/2025/7/S2B_24MUA_20250731_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/24/M/UA/2025/7/S2B_24MUA_20250731_0_L2A/TCI.tif\\\",\\\"type\\\":\\\"image/tiff;\n        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,300000,0,-10,9600040],\\\"roles\\\":[\\\"visual\\\"]},\\\"wvp\\\":{\\\"href\\\":\\\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/24/M/UA/2025/7/S2B_24MUA_20250731_0_L2A/WVP.tif\\\",\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Water Vapour (WVP)\\\",\\\"gsd\\\":20,\\\"proj:shape\\\":[5490,5490],\\\"proj:transform\\\":[20,0,300000,0,-20,9600040],\\\"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/24/M/UA/2025/7/S2B_24MUA_20250731_0_L2A/preview.jpg\\\",\\\"type\\\":\\\"image/jpeg\\\",\\\"title\\\":\\\"Thumbnail\n        of preview image\\\",\\\"roles\\\":[\\\"thumbnail\\\"]},\\\"aot-jp2\\\":{\\\"href\\\":\\\"s3://sentinel-s2-l2a/tiles/24/M/UA/2025/7/31/0/R20m/AOT.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Aerosol\n        optical thickness (AOT)\\\",\\\"gsd\\\":20,\\\"proj:shape\\\":[5490,5490],\\\"proj:transform\\\":[20,0,300000,0,-20,9600040],\\\"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/24/M/UA/2025/7/31/0/R10m/B02.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Blue\n        - 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,300000,0,-10,9600040],\\\"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/24/M/UA/2025/7/31/0/R60m/B01.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Coastal\n        - 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,300000,0,-60,9600040],\\\"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/24/M/UA/2025/7/31/0/R10m/B03.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Green\n        - 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,300000,0,-10,9600040],\\\"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/24/M/UA/2025/7/31/0/R10m/B08.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"NIR\n        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,300000,0,-10,9600040],\\\"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/24/M/UA/2025/7/31/0/R20m/B8A.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"NIR\n        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,300000,0,-20,9600040],\\\"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/24/M/UA/2025/7/31/0/R60m/B09.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"NIR\n        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,300000,0,-60,9600040],\\\"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/24/M/UA/2025/7/31/0/R10m/B04.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Red\n        - 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,300000,0,-10,9600040],\\\"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/24/M/UA/2025/7/31/0/R20m/B05.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Red\n        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,300000,0,-20,9600040],\\\"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/24/M/UA/2025/7/31/0/R20m/B06.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Red\n        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,300000,0,-20,9600040],\\\"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/24/M/UA/2025/7/31/0/R20m/B07.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Red\n        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,300000,0,-20,9600040],\\\"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/24/M/UA/2025/7/31/0/R20m/SCL.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Scene\n        classification map (SCL)\\\",\\\"gsd\\\":20,\\\"proj:shape\\\":[5490,5490],\\\"proj:transform\\\":[20,0,300000,0,-20,9600040],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":20}],\\\"roles\\\":[\\\"data\\\"]},\\\"swir16-jp2\\\":{\\\"href\\\":\\\"s3://sentinel-s2-l2a/tiles/24/M/UA/2025/7/31/0/R20m/B11.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"SWIR\n        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,300000,0,-20,9600040],\\\"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/24/M/UA/2025/7/31/0/R20m/B12.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"SWIR\n        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,300000,0,-20,9600040],\\\"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/24/M/UA/2025/7/31/0/R10m/TCI.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"True\n        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,300000,0,-10,9600040],\\\"roles\\\":[\\\"visual\\\"]},\\\"wvp-jp2\\\":{\\\"href\\\":\\\"s3://sentinel-s2-l2a/tiles/24/M/UA/2025/7/31/0/R20m/WVP.jp2\\\",\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"Water\n        Vapour (WVP)\\\",\\\"gsd\\\":20,\\\"proj:shape\\\":[5490,5490],\\\"proj:transform\\\":[20,0,300000,0,-20,9600040],\\\"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\n        page of Items\\\",\\\"method\\\":\\\"POST\\\",\\\"type\\\":\\\"application/geo+json\\\",\\\"href\\\":\\\"https://earth-search.aws.element84.com/v1/search\\\",\\\"merge\\\":false,\\\"body\\\":{\\\"next\\\":\\\"2025-07-31T13:03:19.635000Z,S2B_24MUA_20250731_0_L2A,sentinel-2-l2a\\\"}},{\\\"rel\\\":\\\"root\\\",\\\"type\\\":\\\"application/json\\\",\\\"href\\\":\\\"https://earth-search.aws.element84.com/v1\\\"}]}\"\n    headers:\n      Connection:\n      - keep-alive\n      Content-Encoding:\n      - gzip\n      Content-Length:\n      - '12673'\n      Content-Type:\n      - application/geo+json; charset=utf-8\n      Date:\n      - Thu, 31 Jul 2025 15:06:48 GMT\n      Via:\n      - 1.1 e466a87164c3f9591e3c8ac45a4b2074.cloudfront.net (CloudFront)\n      X-Amz-Cf-Id:\n      - 4R3M5KDWXQTnOWEbhDwEaqM2k1sQXyyjXlcva4djXYN2aZp8Jfdaow==\n      X-Amz-Cf-Pop:\n      - DEN52-C1\n      X-Amzn-Trace-Id:\n      - Root=1-688b8687-7293c90472bd641162162d2c;Parent=4972a543ac6d96b1;Sampled=0;Lineage=1:9e2884e9:0\n      X-Cache:\n      - Miss from cloudfront\n      access-control-allow-origin:\n      - '*'\n      etag:\n      - W/\"28cd9-KbNsr+Uo+mnMHyzE2Nd/9NsAH1I\"\n      x-amz-apigw-id:\n      - OlH1SGs4vHcED2Q=\n      x-amzn-Remapped-content-length:\n      - '167129'\n      x-amzn-RequestId:\n      - 35e0e871-cf76-4380-a362-6f315b5c8391\n      x-powered-by:\n      - Express\n    status:\n      code: 200\n      message: OK\nversion: 1\n"
  },
  {
    "path": "tests/cassettes/test_cli/TestCLISearch.test_intersects[inprocess-netherlands_aoi.json].yaml",
    "content": "interactions:\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1\n  response:\n    body:\n      string: '{\"type\":\"Catalog\",\"id\":\"microsoft-pc\",\"title\":\"Microsoft Planetary\n        Computer STAC API\",\"description\":\"Searchable spatiotemporal metadata describing\n        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\",\"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/geojson\",\"https://api.stacspec.org/v1.0.0/item-search#query\",\"https://api.stacspec.org/v1.0.0/item-search\",\"https://api.stacspec.org/v1.0.0/item-search#sort\",\"https://api.stacspec.org/v1.0.0-rc.2/item-search#filter\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-json\",\"https://api.stacspec.org/v1.0.0/item-search#fields\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30\",\"https://api.stacspec.org/v1.0.0/collections\",\"https://api.stacspec.org/v1.0.0/ogcapi-features\",\"http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/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\n        conformance classes implemented by this server\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/conformance\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        search\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/search\",\"method\":\"GET\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        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\n        Annual Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Seamless DEMs\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Surface Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Forest\n        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\n        Annual North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Annual Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Tables\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HGB:\n        Harmonized Global Biomass for 2010\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        DEM GLO-30\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        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\n        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\n        IMERG\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Rasters\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Height above Ground\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        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\n        1 Radiometrically Terrain Corrected (RTC)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Intensity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Source\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MTBS:\n        Monitoring Trends in Burn Severity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"C-CAP\n        Regional Land Cover and Change\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Cloud\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Burned Area Monthly\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        Forest/Non-Forest Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Returns\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MoBI:\n        Map of Biodiversity Importance\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ERA5\n        - PDS\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chloris\n        Biomass\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HydroForecast\n        - Kwando & Upper Zambezi Rivers\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Planet-NICFI\n        Basemaps (Analytic)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Gross Primary Productivity 8-Day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Daily Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        3DEP Lidar Classification\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Terrain Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        Gap Land Cover\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Basemaps (Visual)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Global\n        Biodiversity Information Facility (GBIF)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        World 3D-30m\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        PALSAR Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Water Availability\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Net Evapotranspiration Yearly Gap-Filled\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Census\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"JRC\n        Global Surface Water\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Flood Maps\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Thermal Anomalies/Fire Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HREA:\n        High Resolution Electricity Access\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Vegetation Indices 16-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Level-2A\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Land Surface Temperature/Emissivity Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Vegetation Indices 16-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Land\n        Cover of Canada\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Snow Cover 8-day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ECMWF\n        Open Data (real-time)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        HGT v001\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Esri\n        10-Meter Land Cover (10-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-1\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Denver\n        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\n        Land Cover (7-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Cover (13-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Use\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        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\n        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\n        Cropland Data Layers (CDLs)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Urban\n        Innovation Eclipse Sensor Data\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ESA\n        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\n        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\n        National Wetlands Inventory\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        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\n        US Tabular Climate Normals\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        Lightning Detection\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel\n        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\n        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\n        L1T\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"CIL\n        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:\n        National Agriculture Imagery Program\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        Intactness\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sea\n        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\n        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\n        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\n        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\n        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\n        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\n        Snow Cover Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-5P\n        Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        Building Footprints\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        service description\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json\"},{\"rel\":\"service-doc\",\"type\":\"text/html\",\"title\":\"OpenAPI\n        service documentation\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/docs\"}],\"stac_extensions\":[]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '3359'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:06:49 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150648Z-r17d779659cxsjnnhC1DENgtwc0000000240000000003wqr\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/\n  response:\n    body:\n      string: '{\"type\":\"Catalog\",\"id\":\"microsoft-pc\",\"title\":\"Microsoft Planetary\n        Computer STAC API\",\"description\":\"Searchable spatiotemporal metadata describing\n        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\",\"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/geojson\",\"https://api.stacspec.org/v1.0.0/item-search#query\",\"https://api.stacspec.org/v1.0.0/item-search\",\"https://api.stacspec.org/v1.0.0/item-search#sort\",\"https://api.stacspec.org/v1.0.0-rc.2/item-search#filter\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-json\",\"https://api.stacspec.org/v1.0.0/item-search#fields\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30\",\"https://api.stacspec.org/v1.0.0/collections\",\"https://api.stacspec.org/v1.0.0/ogcapi-features\",\"http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/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\n        conformance classes implemented by this server\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/conformance\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        search\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/search\",\"method\":\"GET\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        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\n        Annual Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Seamless DEMs\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Surface Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Forest\n        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\n        Annual North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Annual Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Tables\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HGB:\n        Harmonized Global Biomass for 2010\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        DEM GLO-30\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        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\n        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\n        IMERG\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Rasters\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Height above Ground\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        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\n        1 Radiometrically Terrain Corrected (RTC)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Intensity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Source\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MTBS:\n        Monitoring Trends in Burn Severity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"C-CAP\n        Regional Land Cover and Change\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Cloud\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Burned Area Monthly\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        Forest/Non-Forest Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Returns\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MoBI:\n        Map of Biodiversity Importance\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ERA5\n        - PDS\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chloris\n        Biomass\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HydroForecast\n        - Kwando & Upper Zambezi Rivers\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Planet-NICFI\n        Basemaps (Analytic)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Gross Primary Productivity 8-Day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Daily Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        3DEP Lidar Classification\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Terrain Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        Gap Land Cover\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Basemaps (Visual)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Global\n        Biodiversity Information Facility (GBIF)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        World 3D-30m\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        PALSAR Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Water Availability\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Net Evapotranspiration Yearly Gap-Filled\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Census\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"JRC\n        Global Surface Water\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Flood Maps\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Thermal Anomalies/Fire Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HREA:\n        High Resolution Electricity Access\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Vegetation Indices 16-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Level-2A\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Land Surface Temperature/Emissivity Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Vegetation Indices 16-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Land\n        Cover of Canada\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Snow Cover 8-day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ECMWF\n        Open Data (real-time)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        HGT v001\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Esri\n        10-Meter Land Cover (10-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-1\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Denver\n        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\n        Land Cover (7-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Cover (13-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Use\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        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\n        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\n        Cropland Data Layers (CDLs)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Urban\n        Innovation Eclipse Sensor Data\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ESA\n        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\n        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\n        National Wetlands Inventory\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        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\n        US Tabular Climate Normals\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        Lightning Detection\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel\n        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\n        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\n        L1T\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"CIL\n        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:\n        National Agriculture Imagery Program\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        Intactness\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sea\n        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\n        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\n        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\n        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\n        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\n        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\n        Snow Cover Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-5P\n        Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        Building Footprints\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        service description\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json\"},{\"rel\":\"service-doc\",\"type\":\"text/html\",\"title\":\"OpenAPI\n        service documentation\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/docs\"}],\"stac_extensions\":[]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '3359'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:06:49 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150649Z-r17d779659cspvb8hC1DENa2x400000004q0000000000vw3\n    status:\n      code: 200\n      message: OK\n- request:\n    body: '{\"collections\": [\"landsat-8-c2-l2\"], \"intersects\": {\"type\": \"Polygon\",\n      \"coordinates\": [[[6.42425537109375, 53.174765470134616], [7.344360351562499,\n      53.174765470134616], [7.344360351562499, 53.67393435835391], [6.42425537109375,\n      53.67393435835391], [6.42425537109375, 53.174765470134616]]]}}'\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '290'\n      Content-Type:\n      - application/json\n      User-Agent:\n      - python-requests/2.32.4\n    method: POST\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/search\n  response:\n    body:\n      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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\"}]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '109300'\n      Content-Type:\n      - application/geo+json\n      Date:\n      - Thu, 31 Jul 2025 15:06:51 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150649Z-r17d779659c44ntghC1DEN26ng00000002500000000041f6\n    status:\n      code: 200\n      message: OK\nversion: 1\n"
  },
  {
    "path": "tests/cassettes/test_cli/TestCLISearch.test_intersects[inprocess-sample-item.json].yaml",
    "content": "interactions:\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1\n  response:\n    body:\n      string: '{\"type\":\"Catalog\",\"id\":\"microsoft-pc\",\"title\":\"Microsoft Planetary\n        Computer STAC API\",\"description\":\"Searchable spatiotemporal metadata describing\n        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\",\"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/geojson\",\"https://api.stacspec.org/v1.0.0/item-search#query\",\"https://api.stacspec.org/v1.0.0/item-search\",\"https://api.stacspec.org/v1.0.0/item-search#sort\",\"https://api.stacspec.org/v1.0.0-rc.2/item-search#filter\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-json\",\"https://api.stacspec.org/v1.0.0/item-search#fields\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30\",\"https://api.stacspec.org/v1.0.0/collections\",\"https://api.stacspec.org/v1.0.0/ogcapi-features\",\"http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/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\n        conformance classes implemented by this server\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/conformance\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        search\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/search\",\"method\":\"GET\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        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\n        Annual Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Seamless DEMs\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Surface Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Forest\n        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\n        Annual North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Annual Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Tables\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HGB:\n        Harmonized Global Biomass for 2010\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        DEM GLO-30\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        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\n        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\n        IMERG\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Rasters\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Height above Ground\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        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\n        1 Radiometrically Terrain Corrected (RTC)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Intensity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Source\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MTBS:\n        Monitoring Trends in Burn Severity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"C-CAP\n        Regional Land Cover and Change\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Cloud\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Burned Area Monthly\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        Forest/Non-Forest Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Returns\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MoBI:\n        Map of Biodiversity Importance\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ERA5\n        - PDS\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chloris\n        Biomass\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HydroForecast\n        - Kwando & Upper Zambezi Rivers\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Planet-NICFI\n        Basemaps (Analytic)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Gross Primary Productivity 8-Day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Daily Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        3DEP Lidar Classification\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Terrain Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        Gap Land Cover\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Basemaps (Visual)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Global\n        Biodiversity Information Facility (GBIF)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        World 3D-30m\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        PALSAR Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Water Availability\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Net Evapotranspiration Yearly Gap-Filled\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Census\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"JRC\n        Global Surface Water\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Flood Maps\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Thermal Anomalies/Fire Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HREA:\n        High Resolution Electricity Access\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Vegetation Indices 16-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Level-2A\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Land Surface Temperature/Emissivity Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Vegetation Indices 16-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Land\n        Cover of Canada\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Snow Cover 8-day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ECMWF\n        Open Data (real-time)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        HGT v001\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Esri\n        10-Meter Land Cover (10-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-1\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Denver\n        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\n        Land Cover (7-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Cover (13-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Use\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        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\n        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\n        Cropland Data Layers (CDLs)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Urban\n        Innovation Eclipse Sensor Data\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ESA\n        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\n        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\n        National Wetlands Inventory\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        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\n        US Tabular Climate Normals\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        Lightning Detection\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel\n        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\n        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\n        L1T\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"CIL\n        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:\n        National Agriculture Imagery Program\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        Intactness\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sea\n        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\n        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\n        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\n        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\n        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\n        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\n        Snow Cover Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-5P\n        Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        Building Footprints\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        service description\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json\"},{\"rel\":\"service-doc\",\"type\":\"text/html\",\"title\":\"OpenAPI\n        service documentation\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/docs\"}],\"stac_extensions\":[]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '3359'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:06:52 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150651Z-r17d779659cswp4rhC1DENr00400000003k0000000007h67\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/\n  response:\n    body:\n      string: '{\"type\":\"Catalog\",\"id\":\"microsoft-pc\",\"title\":\"Microsoft Planetary\n        Computer STAC API\",\"description\":\"Searchable spatiotemporal metadata describing\n        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\",\"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/geojson\",\"https://api.stacspec.org/v1.0.0/item-search#query\",\"https://api.stacspec.org/v1.0.0/item-search\",\"https://api.stacspec.org/v1.0.0/item-search#sort\",\"https://api.stacspec.org/v1.0.0-rc.2/item-search#filter\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-json\",\"https://api.stacspec.org/v1.0.0/item-search#fields\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30\",\"https://api.stacspec.org/v1.0.0/collections\",\"https://api.stacspec.org/v1.0.0/ogcapi-features\",\"http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/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\n        conformance classes implemented by this server\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/conformance\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        search\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/search\",\"method\":\"GET\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        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\n        Annual Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Seamless DEMs\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Surface Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Forest\n        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\n        Annual North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Annual Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Tables\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HGB:\n        Harmonized Global Biomass for 2010\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        DEM GLO-30\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        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\n        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\n        IMERG\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Rasters\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Height above Ground\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        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\n        1 Radiometrically Terrain Corrected (RTC)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Intensity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Source\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MTBS:\n        Monitoring Trends in Burn Severity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"C-CAP\n        Regional Land Cover and Change\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Cloud\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Burned Area Monthly\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        Forest/Non-Forest Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Returns\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MoBI:\n        Map of Biodiversity Importance\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ERA5\n        - PDS\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chloris\n        Biomass\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HydroForecast\n        - Kwando & Upper Zambezi Rivers\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Planet-NICFI\n        Basemaps (Analytic)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Gross Primary Productivity 8-Day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Daily Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        3DEP Lidar Classification\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Terrain Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        Gap Land Cover\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Basemaps (Visual)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Global\n        Biodiversity Information Facility (GBIF)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        World 3D-30m\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        PALSAR Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Water Availability\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Net Evapotranspiration Yearly Gap-Filled\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Census\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"JRC\n        Global Surface Water\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Flood Maps\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Thermal Anomalies/Fire Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HREA:\n        High Resolution Electricity Access\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Vegetation Indices 16-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Level-2A\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Land Surface Temperature/Emissivity Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Vegetation Indices 16-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Land\n        Cover of Canada\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Snow Cover 8-day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ECMWF\n        Open Data (real-time)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        HGT v001\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Esri\n        10-Meter Land Cover (10-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-1\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Denver\n        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\n        Land Cover (7-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Cover (13-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Use\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        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\n        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\n        Cropland Data Layers (CDLs)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Urban\n        Innovation Eclipse Sensor Data\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ESA\n        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\n        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\n        National Wetlands Inventory\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        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\n        US Tabular Climate Normals\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        Lightning Detection\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel\n        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\n        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\n        L1T\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"CIL\n        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:\n        National Agriculture Imagery Program\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        Intactness\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sea\n        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\n        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\n        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\n        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\n        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\n        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\n        Snow Cover Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-5P\n        Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        Building Footprints\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        service description\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json\"},{\"rel\":\"service-doc\",\"type\":\"text/html\",\"title\":\"OpenAPI\n        service documentation\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/docs\"}],\"stac_extensions\":[]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '3359'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:06:52 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150652Z-r17d779659cgl5g2hC1DEN025w00000003m0000000007yk1\n    status:\n      code: 200\n      message: OK\n- request:\n    body: '{\"collections\": [\"landsat-8-c2-l2\"], \"intersects\": {\"type\": \"Polygon\",\n      \"coordinates\": [[[-122.308150179, 37.488035566], [-122.597502109, 37.538869539],\n      [-122.576687533, 37.613537207], [-122.2880486, 37.562818007], [-122.308150179,\n      37.488035566]]]}}'\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '248'\n      Content-Type:\n      - application/json\n      User-Agent:\n      - python-requests/2.32.4\n    method: POST\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/search\n  response:\n    body:\n      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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Landsat Collection 2 Level-2 Surface\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\"}]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '99067'\n      Content-Type:\n      - application/geo+json\n      Date:\n      - Thu, 31 Jul 2025 15:06:56 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150652Z-r17d779659cqdtckhC1DENvakn0000000250000000002th4\n    status:\n      code: 200\n      message: OK\nversion: 1\n"
  },
  {
    "path": "tests/cassettes/test_cli/TestCLISearch.test_intersects_despite_warning[inprocess].yaml",
    "content": "interactions:\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1\n  response:\n    body:\n      string: '{\"type\":\"Catalog\",\"id\":\"microsoft-pc\",\"title\":\"Microsoft Planetary\n        Computer STAC API\",\"description\":\"Searchable spatiotemporal metadata describing\n        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\",\"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/geojson\",\"https://api.stacspec.org/v1.0.0/item-search#query\",\"https://api.stacspec.org/v1.0.0/item-search\",\"https://api.stacspec.org/v1.0.0/item-search#sort\",\"https://api.stacspec.org/v1.0.0-rc.2/item-search#filter\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-json\",\"https://api.stacspec.org/v1.0.0/item-search#fields\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30\",\"https://api.stacspec.org/v1.0.0/collections\",\"https://api.stacspec.org/v1.0.0/ogcapi-features\",\"http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/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\n        conformance classes implemented by this server\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/conformance\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        search\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/search\",\"method\":\"GET\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        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\n        Annual Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Seamless DEMs\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Surface Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Forest\n        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\n        Annual North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Annual Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Tables\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HGB:\n        Harmonized Global Biomass for 2010\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        DEM GLO-30\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        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\n        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\n        IMERG\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Rasters\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Height above Ground\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        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\n        1 Radiometrically Terrain Corrected (RTC)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Intensity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Source\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MTBS:\n        Monitoring Trends in Burn Severity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"C-CAP\n        Regional Land Cover and Change\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Cloud\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Burned Area Monthly\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        Forest/Non-Forest Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Returns\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MoBI:\n        Map of Biodiversity Importance\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ERA5\n        - PDS\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chloris\n        Biomass\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HydroForecast\n        - Kwando & Upper Zambezi Rivers\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Planet-NICFI\n        Basemaps (Analytic)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Gross Primary Productivity 8-Day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Daily Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        3DEP Lidar Classification\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Terrain Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        Gap Land Cover\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Basemaps (Visual)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Global\n        Biodiversity Information Facility (GBIF)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        World 3D-30m\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        PALSAR Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Water Availability\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Net Evapotranspiration Yearly Gap-Filled\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Census\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"JRC\n        Global Surface Water\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Flood Maps\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Thermal Anomalies/Fire Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HREA:\n        High Resolution Electricity Access\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Vegetation Indices 16-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Level-2A\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Land Surface Temperature/Emissivity Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Vegetation Indices 16-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Land\n        Cover of Canada\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Snow Cover 8-day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ECMWF\n        Open Data (real-time)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        HGT v001\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Esri\n        10-Meter Land Cover (10-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-1\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Denver\n        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\n        Land Cover (7-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Cover (13-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Use\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        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\n        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\n        Cropland Data Layers (CDLs)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Urban\n        Innovation Eclipse Sensor Data\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ESA\n        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\n        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\n        National Wetlands Inventory\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        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\n        US Tabular Climate Normals\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        Lightning Detection\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel\n        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\n        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\n        L1T\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"CIL\n        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:\n        National Agriculture Imagery Program\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        Intactness\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sea\n        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\n        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\n        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\n        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\n        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\n        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\n        Snow Cover Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-5P\n        Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        Building Footprints\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        service description\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json\"},{\"rel\":\"service-doc\",\"type\":\"text/html\",\"title\":\"OpenAPI\n        service documentation\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/docs\"}],\"stac_extensions\":[]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '3359'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:06:57 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150657Z-r17d779659c8vbd8hC1DENmu9s000000023g0000000040gs\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/\n  response:\n    body:\n      string: '{\"type\":\"Catalog\",\"id\":\"microsoft-pc\",\"title\":\"Microsoft Planetary\n        Computer STAC API\",\"description\":\"Searchable spatiotemporal metadata describing\n        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\",\"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/geojson\",\"https://api.stacspec.org/v1.0.0/item-search#query\",\"https://api.stacspec.org/v1.0.0/item-search\",\"https://api.stacspec.org/v1.0.0/item-search#sort\",\"https://api.stacspec.org/v1.0.0-rc.2/item-search#filter\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-json\",\"https://api.stacspec.org/v1.0.0/item-search#fields\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30\",\"https://api.stacspec.org/v1.0.0/collections\",\"https://api.stacspec.org/v1.0.0/ogcapi-features\",\"http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/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\n        conformance classes implemented by this server\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/conformance\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        search\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/search\",\"method\":\"GET\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        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\n        Annual Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Seamless DEMs\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Surface Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Forest\n        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\n        Annual North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Annual Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Tables\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HGB:\n        Harmonized Global Biomass for 2010\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        DEM GLO-30\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        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\n        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\n        IMERG\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Rasters\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Height above Ground\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        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\n        1 Radiometrically Terrain Corrected (RTC)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Intensity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Source\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MTBS:\n        Monitoring Trends in Burn Severity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"C-CAP\n        Regional Land Cover and Change\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Cloud\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Burned Area Monthly\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        Forest/Non-Forest Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Returns\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MoBI:\n        Map of Biodiversity Importance\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ERA5\n        - PDS\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chloris\n        Biomass\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HydroForecast\n        - Kwando & Upper Zambezi Rivers\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Planet-NICFI\n        Basemaps (Analytic)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Gross Primary Productivity 8-Day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Daily Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        3DEP Lidar Classification\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Terrain Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        Gap Land Cover\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Basemaps (Visual)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Global\n        Biodiversity Information Facility (GBIF)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        World 3D-30m\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        PALSAR Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Water Availability\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Net Evapotranspiration Yearly Gap-Filled\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Census\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"JRC\n        Global Surface Water\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Flood Maps\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Thermal Anomalies/Fire Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HREA:\n        High Resolution Electricity Access\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Vegetation Indices 16-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Level-2A\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Land Surface Temperature/Emissivity Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Vegetation Indices 16-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Land\n        Cover of Canada\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Snow Cover 8-day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ECMWF\n        Open Data (real-time)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        HGT v001\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Esri\n        10-Meter Land Cover (10-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-1\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Denver\n        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\n        Land Cover (7-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Cover (13-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Use\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        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\n        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\n        Cropland Data Layers (CDLs)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Urban\n        Innovation Eclipse Sensor Data\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ESA\n        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\n        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\n        National Wetlands Inventory\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        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\n        US Tabular Climate Normals\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        Lightning Detection\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel\n        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\n        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\n        L1T\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"CIL\n        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:\n        National Agriculture Imagery Program\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        Intactness\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sea\n        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\n        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\n        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\n        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\n        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\n        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\n        Snow Cover Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-5P\n        Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        Building Footprints\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        service description\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json\"},{\"rel\":\"service-doc\",\"type\":\"text/html\",\"title\":\"OpenAPI\n        service documentation\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/docs\"}],\"stac_extensions\":[]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '3359'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:06:58 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150657Z-r17d779659cwgrlbhC1DEN643g00000004g0000000008mye\n    status:\n      code: 200\n      message: OK\n- request:\n    body: '{\"collections\": [\"landsat-8-c2-l2\"], \"intersects\": {\"type\": \"Polygon\",\n      \"coordinates\": [[[-177.0002548, -45.2413329], [-176.7533258, -45.2410666], [-176.4223072,\n      -44.2514167], [-177.0002505, -44.2528774], [-177.0002548, -45.2413329]]]}}'\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '235'\n      Content-Type:\n      - application/json\n      User-Agent:\n      - python-requests/2.32.4\n    method: POST\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/search\n  response:\n    body:\n      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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        resolution browse image\"},\"ST_QA\":{\"gsd\":30.0,\"type\":\"image/tiff; application=geotiff;\n        profile=cloud-optimized\",\"title\":\"Surface Temperature Quality Assessment Band\",\"description\":\"Landsat\n        Collection 2 Level-2 Surface Temperature Band Surface Temperature Product\"},\"ST_B10\":{\"gsd\":100.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product\"},\"ST_DRAD\":{\"gsd\":30.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product\"},\"ST_EMIS\":{\"gsd\":30.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 2 Level-2 Emissivity Band Surface Temperature Product\"},\"ST_EMSD\":{\"gsd\":30.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        Standard Deviation Band Surface Temperature Product\"},\"ST_TRAD\":{\"gsd\":30.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        Surface Temperature Product\"},\"ST_URAD\":{\"gsd\":30.0,\"type\":\"image/tiff; application=geotiff;\n        profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        Band Surface Temperature Product\"},\"ST_ATRAN\":{\"gsd\":30.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product\"},\"ST_CDIST\":{\"gsd\":30.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        resolution browse image\"},\"ST_QA\":{\"gsd\":30.0,\"type\":\"image/tiff; application=geotiff;\n        profile=cloud-optimized\",\"title\":\"Surface Temperature Quality Assessment Band\",\"description\":\"Landsat\n        Collection 2 Level-2 Surface Temperature Band Surface Temperature Product\"},\"ST_B10\":{\"gsd\":100.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product\"},\"ST_DRAD\":{\"gsd\":30.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product\"},\"ST_EMIS\":{\"gsd\":30.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 2 Level-2 Emissivity Band Surface Temperature Product\"},\"ST_EMSD\":{\"gsd\":30.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        Standard Deviation Band Surface Temperature Product\"},\"ST_TRAD\":{\"gsd\":30.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        Surface Temperature Product\"},\"ST_URAD\":{\"gsd\":30.0,\"type\":\"image/tiff; application=geotiff;\n        profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        Band Surface Temperature Product\"},\"ST_ATRAN\":{\"gsd\":30.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product\"},\"ST_CDIST\":{\"gsd\":30.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        resolution browse image\"},\"ST_QA\":{\"gsd\":30.0,\"type\":\"image/tiff; application=geotiff;\n        profile=cloud-optimized\",\"title\":\"Surface Temperature Quality Assessment Band\",\"description\":\"Landsat\n        Collection 2 Level-2 Surface Temperature Band Surface Temperature Product\"},\"ST_B10\":{\"gsd\":100.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product\"},\"ST_DRAD\":{\"gsd\":30.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product\"},\"ST_EMIS\":{\"gsd\":30.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 2 Level-2 Emissivity Band Surface Temperature Product\"},\"ST_EMSD\":{\"gsd\":30.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        Standard Deviation Band Surface Temperature Product\"},\"ST_TRAD\":{\"gsd\":30.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        Surface Temperature Product\"},\"ST_URAD\":{\"gsd\":30.0,\"type\":\"image/tiff; application=geotiff;\n        profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        Band Surface Temperature Product\"},\"ST_ATRAN\":{\"gsd\":30.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product\"},\"ST_CDIST\":{\"gsd\":30.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        resolution browse image\"},\"ST_QA\":{\"gsd\":30.0,\"type\":\"image/tiff; application=geotiff;\n        profile=cloud-optimized\",\"title\":\"Surface Temperature Quality Assessment Band\",\"description\":\"Landsat\n        Collection 2 Level-2 Surface Temperature Band Surface Temperature Product\"},\"ST_B10\":{\"gsd\":100.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product\"},\"ST_DRAD\":{\"gsd\":30.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product\"},\"ST_EMIS\":{\"gsd\":30.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 2 Level-2 Emissivity Band Surface Temperature Product\"},\"ST_EMSD\":{\"gsd\":30.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        Standard Deviation Band Surface Temperature Product\"},\"ST_TRAD\":{\"gsd\":30.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        Surface Temperature Product\"},\"ST_URAD\":{\"gsd\":30.0,\"type\":\"image/tiff; application=geotiff;\n        profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        Band Surface Temperature Product\"},\"ST_ATRAN\":{\"gsd\":30.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product\"},\"ST_CDIST\":{\"gsd\":30.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        resolution browse image\"},\"ST_QA\":{\"gsd\":30.0,\"type\":\"image/tiff; application=geotiff;\n        profile=cloud-optimized\",\"title\":\"Surface Temperature Quality Assessment Band\",\"description\":\"Landsat\n        Collection 2 Level-2 Surface Temperature Band Surface Temperature Product\"},\"ST_B10\":{\"gsd\":100.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product\"},\"ST_DRAD\":{\"gsd\":30.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product\"},\"ST_EMIS\":{\"gsd\":30.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 2 Level-2 Emissivity Band Surface Temperature Product\"},\"ST_EMSD\":{\"gsd\":30.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        Standard Deviation Band Surface Temperature Product\"},\"ST_TRAD\":{\"gsd\":30.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        Surface Temperature Product\"},\"ST_URAD\":{\"gsd\":30.0,\"type\":\"image/tiff; application=geotiff;\n        profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        Band Surface Temperature Product\"},\"ST_ATRAN\":{\"gsd\":30.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product\"},\"ST_CDIST\":{\"gsd\":30.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        resolution browse image\"},\"ST_QA\":{\"gsd\":30.0,\"type\":\"image/tiff; application=geotiff;\n        profile=cloud-optimized\",\"title\":\"Surface Temperature Quality Assessment Band\",\"description\":\"Landsat\n        Collection 2 Level-2 Surface Temperature Band Surface Temperature Product\"},\"ST_B10\":{\"gsd\":100.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product\"},\"ST_DRAD\":{\"gsd\":30.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product\"},\"ST_EMIS\":{\"gsd\":30.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 2 Level-2 Emissivity Band Surface Temperature Product\"},\"ST_EMSD\":{\"gsd\":30.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        Standard Deviation Band Surface Temperature Product\"},\"ST_TRAD\":{\"gsd\":30.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        Surface Temperature Product\"},\"ST_URAD\":{\"gsd\":30.0,\"type\":\"image/tiff; application=geotiff;\n        profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        Band Surface Temperature Product\"},\"ST_ATRAN\":{\"gsd\":30.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product\"},\"ST_CDIST\":{\"gsd\":30.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        resolution browse image\"},\"ST_QA\":{\"gsd\":30.0,\"type\":\"image/tiff; application=geotiff;\n        profile=cloud-optimized\",\"title\":\"Surface Temperature Quality Assessment Band\",\"description\":\"Landsat\n        Collection 2 Level-2 Surface Temperature Band Surface Temperature Product\"},\"ST_B10\":{\"gsd\":100.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product\"},\"ST_DRAD\":{\"gsd\":30.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product\"},\"ST_EMIS\":{\"gsd\":30.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 2 Level-2 Emissivity Band Surface Temperature Product\"},\"ST_EMSD\":{\"gsd\":30.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        Standard Deviation Band Surface Temperature Product\"},\"ST_TRAD\":{\"gsd\":30.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        Surface Temperature Product\"},\"ST_URAD\":{\"gsd\":30.0,\"type\":\"image/tiff; application=geotiff;\n        profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        Band Surface Temperature Product\"},\"ST_ATRAN\":{\"gsd\":30.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product\"},\"ST_CDIST\":{\"gsd\":30.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        resolution browse image\"},\"ST_QA\":{\"gsd\":30.0,\"type\":\"image/tiff; application=geotiff;\n        profile=cloud-optimized\",\"title\":\"Surface Temperature Quality Assessment Band\",\"description\":\"Landsat\n        Collection 2 Level-2 Surface Temperature Band Surface Temperature Product\"},\"ST_B10\":{\"gsd\":100.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product\"},\"ST_DRAD\":{\"gsd\":30.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product\"},\"ST_EMIS\":{\"gsd\":30.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 2 Level-2 Emissivity Band Surface Temperature Product\"},\"ST_EMSD\":{\"gsd\":30.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        Standard Deviation Band Surface Temperature Product\"},\"ST_TRAD\":{\"gsd\":30.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        Surface Temperature Product\"},\"ST_URAD\":{\"gsd\":30.0,\"type\":\"image/tiff; application=geotiff;\n        profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        Band Surface Temperature Product\"},\"ST_ATRAN\":{\"gsd\":30.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product\"},\"ST_CDIST\":{\"gsd\":30.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        resolution browse image\"},\"ST_QA\":{\"gsd\":30.0,\"type\":\"image/tiff; application=geotiff;\n        profile=cloud-optimized\",\"title\":\"Surface Temperature Quality Assessment Band\",\"description\":\"Landsat\n        Collection 2 Level-2 Surface Temperature Band Surface Temperature Product\"},\"ST_B10\":{\"gsd\":100.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band (B10)\",\"eo:bands\":[{\"gsd\":100.0,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}],\"description\":\"Landsat\n        Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product\"},\"ST_DRAD\":{\"gsd\":30.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"}],\"description\":\"Landsat\n        Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product\"},\"ST_EMIS\":{\"gsd\":30.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}],\"description\":\"Landsat\n        Collection 2 Level-2 Emissivity Band Surface Temperature Product\"},\"ST_EMSD\":{\"gsd\":30.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        Standard Deviation Band Surface Temperature Product\"},\"ST_TRAD\":{\"gsd\":30.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Thermal Radiance Band\n        Surface Temperature Product\"},\"ST_URAD\":{\"gsd\":30.0,\"type\":\"image/tiff; application=geotiff;\n        profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}],\"description\":\"Landsat Collection 2 Level-2 Upwelled Radiance\n        Band Surface Temperature Product\"},\"ST_ATRAN\":{\"gsd\":30.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric transmission\"}],\"description\":\"Landsat\n        Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product\"},\"ST_CDIST\":{\"gsd\":30.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"eo:bands\":[{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}],\"description\":\"Landsat Collection 2 Level-2 Cloud Distance\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\n        (B1)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B1\",\"common_name\":\"coastal\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band (B2)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B2\",\"common_name\":\"blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band (B3)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band (B4)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8 (B5)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B5\",\"common_name\":\"nir08\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}],\"description\":\"Collection\n        2 Level-2 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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6 (B6)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B6\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}],\"description\":\"Collection\n        2 Level-2 Short-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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2 (B7)\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}],\"description\":\"Collection\n        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\n        Metadata File\",\"description\":\"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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Analysis\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG)\n        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\n        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\n        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\"}]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '76418'\n      Content-Type:\n      - application/geo+json\n      Date:\n      - Thu, 31 Jul 2025 15:07:00 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150658Z-r17d779659cl2jdhhC1DENntbs0000000220000000006edn\n    status:\n      code: 200\n      message: OK\nversion: 1\n"
  },
  {
    "path": "tests/cassettes/test_cli/TestCLISearch.test_item_search[inprocess].yaml",
    "content": "interactions:\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1\n  response:\n    body:\n      string: '{\"type\":\"Catalog\",\"id\":\"microsoft-pc\",\"title\":\"Microsoft Planetary\n        Computer STAC API\",\"description\":\"Searchable spatiotemporal metadata describing\n        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/ogcapi-features-1/1.0/conf/core\",\"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#sort\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson\",\"https://api.stacspec.org/v1.0.0/item-search#query\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-json\",\"https://api.stacspec.org/v1.0.0/collections\",\"https://api.stacspec.org/v1.0.0-rc.2/item-search#filter\",\"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\",\"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\n        conformance classes implemented by this server\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/conformance\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        search\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/search\",\"method\":\"GET\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        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\n        Annual Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Seamless DEMs\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Surface Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Forest\n        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\n        Annual North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Annual Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Tables\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HGB:\n        Harmonized Global Biomass for 2010\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        DEM GLO-30\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        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\n        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\n        IMERG\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Rasters\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Height above Ground\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        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\n        1 Radiometrically Terrain Corrected (RTC)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Intensity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Source\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MTBS:\n        Monitoring Trends in Burn Severity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"C-CAP\n        Regional Land Cover and Change\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Cloud\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Burned Area Monthly\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        Forest/Non-Forest Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Returns\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MoBI:\n        Map of Biodiversity Importance\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ERA5\n        - PDS\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chloris\n        Biomass\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HydroForecast\n        - Kwando & Upper Zambezi Rivers\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Planet-NICFI\n        Basemaps (Analytic)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Gross Primary Productivity 8-Day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Daily Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        3DEP Lidar Classification\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Terrain Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        Gap Land Cover\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Basemaps (Visual)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Global\n        Biodiversity Information Facility (GBIF)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        World 3D-30m\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        PALSAR Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Water Availability\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Net Evapotranspiration Yearly Gap-Filled\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Census\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"JRC\n        Global Surface Water\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Flood Maps\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Thermal Anomalies/Fire Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HREA:\n        High Resolution Electricity Access\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Vegetation Indices 16-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Level-2A\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Land Surface Temperature/Emissivity Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Vegetation Indices 16-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Land\n        Cover of Canada\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Snow Cover 8-day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ECMWF\n        Open Data (real-time)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        HGT v001\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Esri\n        10-Meter Land Cover (10-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-1\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Denver\n        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\n        Land Cover (7-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Cover (13-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Use\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        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\n        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\n        Cropland Data Layers (CDLs)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Urban\n        Innovation Eclipse Sensor Data\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ESA\n        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\n        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\n        National Wetlands Inventory\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        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\n        US Tabular Climate Normals\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        Lightning Detection\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel\n        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\n        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\n        L1T\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"CIL\n        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:\n        National Agriculture Imagery Program\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        Intactness\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sea\n        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\n        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\n        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\n        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\n        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\n        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\n        Snow Cover Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-5P\n        Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        Building Footprints\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        service description\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json\"},{\"rel\":\"service-doc\",\"type\":\"text/html\",\"title\":\"OpenAPI\n        service documentation\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/docs\"}],\"stac_extensions\":[]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '3363'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:06:45 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150644Z-r17d779659cwgrlbhC1DEN643g00000004mg000000003tsv\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/\n  response:\n    body:\n      string: '{\"type\":\"Catalog\",\"id\":\"microsoft-pc\",\"title\":\"Microsoft Planetary\n        Computer STAC API\",\"description\":\"Searchable spatiotemporal metadata describing\n        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\",\"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/geojson\",\"https://api.stacspec.org/v1.0.0/item-search#query\",\"https://api.stacspec.org/v1.0.0/item-search\",\"https://api.stacspec.org/v1.0.0/item-search#sort\",\"https://api.stacspec.org/v1.0.0-rc.2/item-search#filter\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-json\",\"https://api.stacspec.org/v1.0.0/item-search#fields\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30\",\"https://api.stacspec.org/v1.0.0/collections\",\"https://api.stacspec.org/v1.0.0/ogcapi-features\",\"http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/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\n        conformance classes implemented by this server\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/conformance\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        search\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/search\",\"method\":\"GET\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        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\n        Annual Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Seamless DEMs\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Surface Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Forest\n        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\n        Annual North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Annual Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Tables\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HGB:\n        Harmonized Global Biomass for 2010\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        DEM GLO-30\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        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\n        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\n        IMERG\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Rasters\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Height above Ground\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        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\n        1 Radiometrically Terrain Corrected (RTC)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Intensity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Source\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MTBS:\n        Monitoring Trends in Burn Severity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"C-CAP\n        Regional Land Cover and Change\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Cloud\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Burned Area Monthly\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        Forest/Non-Forest Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Returns\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MoBI:\n        Map of Biodiversity Importance\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ERA5\n        - PDS\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chloris\n        Biomass\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HydroForecast\n        - Kwando & Upper Zambezi Rivers\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Planet-NICFI\n        Basemaps (Analytic)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Gross Primary Productivity 8-Day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Daily Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        3DEP Lidar Classification\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Terrain Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        Gap Land Cover\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Basemaps (Visual)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Global\n        Biodiversity Information Facility (GBIF)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        World 3D-30m\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        PALSAR Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Water Availability\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Net Evapotranspiration Yearly Gap-Filled\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Census\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"JRC\n        Global Surface Water\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Flood Maps\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Thermal Anomalies/Fire Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HREA:\n        High Resolution Electricity Access\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Vegetation Indices 16-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Level-2A\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Land Surface Temperature/Emissivity Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Vegetation Indices 16-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Land\n        Cover of Canada\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Snow Cover 8-day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ECMWF\n        Open Data (real-time)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        HGT v001\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Esri\n        10-Meter Land Cover (10-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-1\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Denver\n        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\n        Land Cover (7-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Cover (13-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Use\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        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\n        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\n        Cropland Data Layers (CDLs)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Urban\n        Innovation Eclipse Sensor Data\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ESA\n        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\n        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\n        National Wetlands Inventory\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        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\n        US Tabular Climate Normals\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        Lightning Detection\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel\n        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\n        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\n        L1T\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"CIL\n        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:\n        National Agriculture Imagery Program\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        Intactness\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sea\n        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\n        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\n        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\n        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\n        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\n        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\n        Snow Cover Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-5P\n        Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        Building Footprints\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        service description\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json\"},{\"rel\":\"service-doc\",\"type\":\"text/html\",\"title\":\"OpenAPI\n        service documentation\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/docs\"}],\"stac_extensions\":[]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '3359'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:06:45 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150645Z-r17d779659chjt9hhC1DEN373s000000022g0000000068d0\n    status:\n      code: 200\n      message: OK\n- request:\n    body: '{\"collections\": [\"naip\"]}'\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '25'\n      Content-Type:\n      - application/json\n      User-Agent:\n      - python-requests/2.32.4\n    method: POST\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/search\n  response:\n    body:\n      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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\"}]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '30517'\n      Content-Type:\n      - application/geo+json\n      Date:\n      - Thu, 31 Jul 2025 15:06:46 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150645Z-r17d779659cdp9hwhC1DEN390s00000003rg0000000002gy\n    status:\n      code: 200\n      message: OK\nversion: 1\n"
  },
  {
    "path": "tests/cassettes/test_cli/TestCLISearch.test_matched[inprocess].yaml",
    "content": "interactions:\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://earth-search.aws.element84.com/v1\n  response:\n    body:\n      string: '{\"stac_version\":\"1.0.0\",\"type\":\"Catalog\",\"id\":\"earth-search-aws\",\"title\":\"Earth\n        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\"]}'\n    headers:\n      Connection:\n      - keep-alive\n      Content-Encoding:\n      - gzip\n      Content-Length:\n      - '612'\n      Content-Type:\n      - application/json; charset=utf-8\n      Date:\n      - Thu, 31 Jul 2025 15:07:06 GMT\n      Via:\n      - 1.1 0fdea8d3b1fc76e3ff9d36e8164171e8.cloudfront.net (CloudFront)\n      X-Amz-Cf-Id:\n      - Ze9Uxa_LWtIDKKV9OCWam_-eyGD3NOBpDj9dinobtRZv32ErdAUXnQ==\n      X-Amz-Cf-Pop:\n      - DEN52-C1\n      X-Amzn-Trace-Id:\n      - Root=1-688b869a-2d38601c25d45b2d4903c7e9;Parent=3eec8b1934500dec;Sampled=0;Lineage=1:9e2884e9:0\n      X-Cache:\n      - Miss from cloudfront\n      access-control-allow-origin:\n      - '*'\n      etag:\n      - W/\"d29-QPs+H0wJLUX32EZKNgzG3k6wfQ8\"\n      x-amz-apigw-id:\n      - OlH4REwNvHcEEig=\n      x-amzn-Remapped-content-length:\n      - '3369'\n      x-amzn-RequestId:\n      - 0e4c2fe3-ba92-43ec-b3d9-6b3e8ddf2a96\n      x-powered-by:\n      - Express\n    status:\n      code: 200\n      message: OK\n- request:\n    body: '{\"collections\": [\"cop-dem-glo-30\"], \"limit\": 1}'\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '47'\n      Content-Type:\n      - application/json\n      User-Agent:\n      - python-requests/2.32.4\n    method: POST\n    uri: https://earth-search.aws.element84.com/v1/search\n  response:\n    body:\n      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\n        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;\n        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\n        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\"}]}'\n    headers:\n      Connection:\n      - keep-alive\n      Content-Encoding:\n      - gzip\n      Content-Length:\n      - '1138'\n      Content-Type:\n      - application/geo+json; charset=utf-8\n      Date:\n      - Thu, 31 Jul 2025 15:07:07 GMT\n      Via:\n      - 1.1 bcab77f1ffe9d73bbe5ff7a973cd0160.cloudfront.net (CloudFront)\n      X-Amz-Cf-Id:\n      - 724HO67lJiJ8xMWJjnxCiO9ypG0hikiMfUUUuw3spmaOv3ZRKi6uZg==\n      X-Amz-Cf-Pop:\n      - DEN52-C1\n      X-Amzn-Trace-Id:\n      - Root=1-688b869b-64316205477d4ae63274a953;Parent=48f059bb20ad2baf;Sampled=0;Lineage=1:9e2884e9:0\n      X-Cache:\n      - Miss from cloudfront\n      access-control-allow-origin:\n      - '*'\n      etag:\n      - W/\"d52-kZRavcSAvRPx0vigsOjB/Kx7RWY\"\n      x-amz-apigw-id:\n      - OlH4SHNVvHcECVg=\n      x-amzn-Remapped-content-length:\n      - '3410'\n      x-amzn-RequestId:\n      - 28a771ff-ee8a-44c0-bc5b-89e3c13d038d\n      x-powered-by:\n      - Express\n    status:\n      code: 200\n      message: OK\nversion: 1\n"
  },
  {
    "path": "tests/cassettes/test_cli/TestCLISearch.test_matched_not_available[inprocess].yaml",
    "content": "interactions:\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1\n  response:\n    body:\n      string: '{\"type\":\"Catalog\",\"id\":\"microsoft-pc\",\"title\":\"Microsoft Planetary\n        Computer STAC API\",\"description\":\"Searchable spatiotemporal metadata describing\n        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\",\"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/geojson\",\"https://api.stacspec.org/v1.0.0/item-search#query\",\"https://api.stacspec.org/v1.0.0/item-search\",\"https://api.stacspec.org/v1.0.0/item-search#sort\",\"https://api.stacspec.org/v1.0.0-rc.2/item-search#filter\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-json\",\"https://api.stacspec.org/v1.0.0/item-search#fields\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30\",\"https://api.stacspec.org/v1.0.0/collections\",\"https://api.stacspec.org/v1.0.0/ogcapi-features\",\"http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/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\n        conformance classes implemented by this server\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/conformance\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        search\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/search\",\"method\":\"GET\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        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\n        Annual Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Seamless DEMs\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Surface Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Forest\n        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\n        Annual North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Annual Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Tables\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HGB:\n        Harmonized Global Biomass for 2010\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        DEM GLO-30\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        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\n        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\n        IMERG\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Rasters\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Height above Ground\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        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\n        1 Radiometrically Terrain Corrected (RTC)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Intensity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Source\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MTBS:\n        Monitoring Trends in Burn Severity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"C-CAP\n        Regional Land Cover and Change\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Cloud\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Burned Area Monthly\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        Forest/Non-Forest Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Returns\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MoBI:\n        Map of Biodiversity Importance\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ERA5\n        - PDS\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chloris\n        Biomass\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HydroForecast\n        - Kwando & Upper Zambezi Rivers\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Planet-NICFI\n        Basemaps (Analytic)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Gross Primary Productivity 8-Day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Daily Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        3DEP Lidar Classification\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Terrain Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        Gap Land Cover\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Basemaps (Visual)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Global\n        Biodiversity Information Facility (GBIF)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        World 3D-30m\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        PALSAR Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Water Availability\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Net Evapotranspiration Yearly Gap-Filled\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Census\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"JRC\n        Global Surface Water\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Flood Maps\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Thermal Anomalies/Fire Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HREA:\n        High Resolution Electricity Access\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Vegetation Indices 16-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Level-2A\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Land Surface Temperature/Emissivity Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Vegetation Indices 16-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Land\n        Cover of Canada\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Snow Cover 8-day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ECMWF\n        Open Data (real-time)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        HGT v001\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Esri\n        10-Meter Land Cover (10-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-1\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Denver\n        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\n        Land Cover (7-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Cover (13-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Use\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        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\n        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\n        Cropland Data Layers (CDLs)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Urban\n        Innovation Eclipse Sensor Data\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ESA\n        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\n        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\n        National Wetlands Inventory\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        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\n        US Tabular Climate Normals\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        Lightning Detection\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel\n        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\n        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\n        L1T\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"CIL\n        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:\n        National Agriculture Imagery Program\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        Intactness\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sea\n        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\n        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\n        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\n        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\n        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\n        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\n        Snow Cover Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-5P\n        Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        Building Footprints\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        service description\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json\"},{\"rel\":\"service-doc\",\"type\":\"text/html\",\"title\":\"OpenAPI\n        service documentation\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/docs\"}],\"stac_extensions\":[]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '3359'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:07:05 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150705Z-r17d779659cqk8pthC1DENd5mn00000003kg000000007xtt\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/\n  response:\n    body:\n      string: '{\"type\":\"Catalog\",\"id\":\"microsoft-pc\",\"title\":\"Microsoft Planetary\n        Computer STAC API\",\"description\":\"Searchable spatiotemporal metadata describing\n        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\",\"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/geojson\",\"https://api.stacspec.org/v1.0.0/item-search#query\",\"https://api.stacspec.org/v1.0.0/item-search\",\"https://api.stacspec.org/v1.0.0/item-search#sort\",\"https://api.stacspec.org/v1.0.0-rc.2/item-search#filter\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-json\",\"https://api.stacspec.org/v1.0.0/item-search#fields\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30\",\"https://api.stacspec.org/v1.0.0/collections\",\"https://api.stacspec.org/v1.0.0/ogcapi-features\",\"http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/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\n        conformance classes implemented by this server\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/conformance\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        search\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/search\",\"method\":\"GET\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        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\n        Annual Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Seamless DEMs\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Surface Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Forest\n        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\n        Annual North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Annual Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Tables\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HGB:\n        Harmonized Global Biomass for 2010\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        DEM GLO-30\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        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\n        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\n        IMERG\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Rasters\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Height above Ground\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        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\n        1 Radiometrically Terrain Corrected (RTC)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Intensity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Source\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MTBS:\n        Monitoring Trends in Burn Severity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"C-CAP\n        Regional Land Cover and Change\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Cloud\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Burned Area Monthly\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        Forest/Non-Forest Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Returns\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MoBI:\n        Map of Biodiversity Importance\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ERA5\n        - PDS\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chloris\n        Biomass\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HydroForecast\n        - Kwando & Upper Zambezi Rivers\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Planet-NICFI\n        Basemaps (Analytic)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Gross Primary Productivity 8-Day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Daily Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        3DEP Lidar Classification\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Terrain Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        Gap Land Cover\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Basemaps (Visual)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Global\n        Biodiversity Information Facility (GBIF)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        World 3D-30m\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        PALSAR Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Water Availability\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Net Evapotranspiration Yearly Gap-Filled\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Census\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"JRC\n        Global Surface Water\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Flood Maps\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Thermal Anomalies/Fire Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HREA:\n        High Resolution Electricity Access\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Vegetation Indices 16-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Level-2A\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Land Surface Temperature/Emissivity Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Vegetation Indices 16-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Land\n        Cover of Canada\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Snow Cover 8-day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ECMWF\n        Open Data (real-time)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        HGT v001\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Esri\n        10-Meter Land Cover (10-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-1\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Denver\n        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\n        Land Cover (7-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Cover (13-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Use\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        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\n        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\n        Cropland Data Layers (CDLs)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Urban\n        Innovation Eclipse Sensor Data\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ESA\n        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\n        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\n        National Wetlands Inventory\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        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\n        US Tabular Climate Normals\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        Lightning Detection\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel\n        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\n        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\n        L1T\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"CIL\n        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:\n        National Agriculture Imagery Program\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        Intactness\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sea\n        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\n        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\n        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\n        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\n        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\n        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\n        Snow Cover Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-5P\n        Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        Building Footprints\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        service description\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json\"},{\"rel\":\"service-doc\",\"type\":\"text/html\",\"title\":\"OpenAPI\n        service documentation\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/docs\"}],\"stac_extensions\":[]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '3359'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:07:06 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150705Z-r17d779659cdp9hwhC1DEN390s00000003ng000000003crk\n    status:\n      code: 200\n      message: OK\n- request:\n    body: '{\"collections\": [\"naip\"], \"limit\": 1}'\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '37'\n      Content-Type:\n      - application/json\n      User-Agent:\n      - python-requests/2.32.4\n    method: POST\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/search\n  response:\n    body:\n      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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\"}]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '1138'\n      Content-Type:\n      - application/geo+json\n      Date:\n      - Thu, 31 Jul 2025 15:07:06 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150706Z-r17d779659cmbwwwhC1DENxr0c00000003m0000000005r4r\n    status:\n      code: 200\n      message: OK\nversion: 1\n"
  },
  {
    "path": "tests/cassettes/test_cli/TestCLISearch.test_non_conformant_can_be_fixed[inprocess].yaml",
    "content": "interactions:\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://earth-search.aws.element84.com/v0\n  response:\n    body:\n      string: '{\"stac_version\":\"1.0.0-beta.2\",\"stac_api_version\":\"0.9.0\",\"id\":\"earth-search\",\"title\":\"Earth\n        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/\"}]}'\n    headers:\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Origin:\n      - '*'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '1180'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:07:01 GMT\n      Via:\n      - 1.1 584febef1233840787d98d1cd03f82c0.cloudfront.net (CloudFront)\n      X-Amz-Cf-Id:\n      - fbfwTTxu_zz16C_O6wn14XfRZFvY7UBuO1AfEIx-WOZLosLj7DiZXA==\n      X-Amz-Cf-Pop:\n      - DEN52-C1\n      X-Amzn-Trace-Id:\n      - Root=1-688b8695-01e7816d2626107a451a8d18;Parent=3bc225080a885af1;Sampled=0;Lineage=1:308471e4:0\n      X-Cache:\n      - Miss from cloudfront\n      x-amz-apigw-id:\n      - OlH3eEtWvHcEZyw=\n      x-amzn-RequestId:\n      - 3b25b424-e035-4219-a1ba-3cf8480bb310\n    status:\n      code: 200\n      message: OK\n- request:\n    body: '{\"collections\": [\"sentinel-s2-l2a-cogs\"], \"limit\": 1}'\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '53'\n      Content-Type:\n      - application/json\n      User-Agent:\n      - python-requests/2.32.4\n    method: POST\n    uri: https://earth-search.aws.element84.com/v0/search\n  response:\n    body:\n      string: '{\"type\":\"FeatureCollection\",\"stac_version\":\"1.0.0-beta.2\",\"stac_extensions\":[],\"context\":{\"page\":1,\"limit\":1,\"matched\":22699053,\"returned\":1},\"numberMatched\":22699053,\"numberReturned\":1,\"features\":[{\"type\":\"Feature\",\"stac_version\":\"1.0.0-beta.2\",\"stac_extensions\":[\"eo\",\"view\",\"proj\"],\"id\":\"S2B_20EPT_20250731_0_L2A\",\"bbox\":[-59.83157801622286,-60.501986080269994,-59.17918863038601,-60.381497373885004],\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-59.17918863038601,-60.501986080269994],[-59.52123913603771,-60.45105927125322],[-59.83157801622286,-60.3982344095088],[-59.19332814481684,-60.381497373885004],[-59.17918863038601,-60.501986080269994]]]},\"properties\":{\"datetime\":\"2025-07-31T13:19:22Z\",\"platform\":\"sentinel-2b\",\"constellation\":\"sentinel-2\",\"instruments\":[\"msi\"],\"gsd\":10,\"view:off_nadir\":0,\"proj:epsg\":32720,\"sentinel:utm_zone\":20,\"sentinel:latitude_band\":\"E\",\"sentinel:grid_square\":\"PT\",\"sentinel:sequence\":\"0\",\"sentinel:product_id\":\"S2B_MSIL2A_20250731T131909_N0511_R095_T20EPT_20250731T143919\",\"sentinel:data_coverage\":1.95,\"eo:cloud_cover\":0,\"sentinel:valid_cloud_cover\":true,\"sentinel:processing_baseline\":\"05.11\",\"sentinel:boa_offset_applied\":true,\"created\":\"2025-07-31T15:02:11.685Z\",\"updated\":\"2025-07-31T15:02:11.685Z\"},\"collection\":\"sentinel-s2-l2a-cogs\",\"assets\":{\"thumbnail\":{\"title\":\"Thumbnail\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"href\":\"https://roda.sentinel-hub.com/sentinel-s2-l1c/tiles/20/E/PT/2025/7/31/0/preview.jpg\"},\"overview\":{\"title\":\"True\n        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/20/E/PT/2025/7/S2B_20EPT_20250731_0_L2A/L2A_PVI.tif\",\"proj:shape\":[343,343],\"proj:transform\":[320,0,600000,0,-320,3300040,0,0,1]},\"info\":{\"title\":\"Original\n        JSON metadata\",\"type\":\"application/json\",\"roles\":[\"metadata\"],\"href\":\"https://roda.sentinel-hub.com/sentinel-s2-l2a/tiles/20/E/PT/2025/7/31/0/tileInfo.json\"},\"metadata\":{\"title\":\"Original\n        XML metadata\",\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"href\":\"https://roda.sentinel-hub.com/sentinel-s2-l2a/tiles/20/E/PT/2025/7/31/0/metadata.xml\"},\"visual\":{\"title\":\"True\n        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/20/E/PT/2025/7/S2B_20EPT_20250731_0_L2A/TCI.tif\",\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,3300040,0,0,1]},\"B01\":{\"title\":\"Band\n        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/20/E/PT/2025/7/S2B_20EPT_20250731_0_L2A/B01.tif\",\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,600000,0,-60,3300040,0,0,1]},\"B02\":{\"title\":\"Band\n        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/20/E/PT/2025/7/S2B_20EPT_20250731_0_L2A/B02.tif\",\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,3300040,0,0,1]},\"B03\":{\"title\":\"Band\n        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/20/E/PT/2025/7/S2B_20EPT_20250731_0_L2A/B03.tif\",\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,3300040,0,0,1]},\"B04\":{\"title\":\"Band\n        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/20/E/PT/2025/7/S2B_20EPT_20250731_0_L2A/B04.tif\",\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,3300040,0,0,1]},\"B05\":{\"title\":\"Band\n        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/20/E/PT/2025/7/S2B_20EPT_20250731_0_L2A/B05.tif\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,3300040,0,0,1]},\"B06\":{\"title\":\"Band\n        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/20/E/PT/2025/7/S2B_20EPT_20250731_0_L2A/B06.tif\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,3300040,0,0,1]},\"B07\":{\"title\":\"Band\n        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/20/E/PT/2025/7/S2B_20EPT_20250731_0_L2A/B07.tif\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,3300040,0,0,1]},\"B08\":{\"title\":\"Band\n        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/20/E/PT/2025/7/S2B_20EPT_20250731_0_L2A/B08.tif\",\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,3300040,0,0,1]},\"B8A\":{\"title\":\"Band\n        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/20/E/PT/2025/7/S2B_20EPT_20250731_0_L2A/B8A.tif\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,3300040,0,0,1]},\"B09\":{\"title\":\"Band\n        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/20/E/PT/2025/7/S2B_20EPT_20250731_0_L2A/B09.tif\",\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,600000,0,-60,3300040,0,0,1]},\"B11\":{\"title\":\"Band\n        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/20/E/PT/2025/7/S2B_20EPT_20250731_0_L2A/B11.tif\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,3300040,0,0,1]},\"B12\":{\"title\":\"Band\n        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/20/E/PT/2025/7/S2B_20EPT_20250731_0_L2A/B12.tif\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,3300040,0,0,1]},\"AOT\":{\"title\":\"Aerosol\n        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/20/E/PT/2025/7/S2B_20EPT_20250731_0_L2A/AOT.tif\",\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,600000,0,-60,3300040,0,0,1]},\"WVP\":{\"title\":\"Water\n        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/20/E/PT/2025/7/S2B_20EPT_20250731_0_L2A/WVP.tif\",\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,3300040,0,0,1]},\"SCL\":{\"title\":\"Scene\n        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/20/E/PT/2025/7/S2B_20EPT_20250731_0_L2A/SCL.tif\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,3300040,0,0,1]}},\"links\":[{\"rel\":\"self\",\"href\":\"https://earth-search.aws.element84.com/v0/collections/sentinel-s2-l2a-cogs/items/S2B_20EPT_20250731_0_L2A\"},{\"rel\":\"canonical\",\"href\":\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/20/E/PT/2025/7/S2B_20EPT_20250731_0_L2A/S2B_20EPT_20250731_0_L2A.json\",\"type\":\"application/json\"},{\"title\":\"sentinel-s2-l2a-aws/workflow-publish-sentinel/tiles-20-E-PT-2025-7-31-0\",\"rel\":\"via-cirrus\",\"href\":\"https://cirrus-earth-search.aws.element84.com/v0/catid/sentinel-s2-l2a-aws/workflow-publish-sentinel/tiles-20-E-PT-2025-7-31-0\"},{\"title\":\"Source\n        STAC Item\",\"rel\":\"derived_from\",\"href\":\"https://cirrus-v0-data-1qm7gekzjucbq.s3.us-west-2.amazonaws.com/sentinel-s2-l2a/20/E/PT/2025/7/S2B_20EPT_20250731_0_L2A/S2B_20EPT_20250731_0_L2A.json\",\"type\":\"application/json\"},{\"title\":\"sentinel-s2-l2a/workflow-cog-archive/S2B_20EPT_20250731_0_L2A\",\"rel\":\"via-cirrus\",\"href\":\"https://cirrus-earth-search.aws.element84.com/v0/catid/sentinel-s2-l2a/workflow-cog-archive/S2B_20EPT_20250731_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\n        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}}]}'\n    headers:\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Origin:\n      - '*'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '10642'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:07:03 GMT\n      Via:\n      - 1.1 20ebec22e4be2753f048f31dfe94e426.cloudfront.net (CloudFront)\n      X-Amz-Cf-Id:\n      - oNn1JClPeIzA_kwN4EWZmGwZty_I8EbBIRHjDCBb0EqLA-L9ohAvjA==\n      X-Amz-Cf-Pop:\n      - DEN52-C1\n      X-Amzn-Trace-Id:\n      - Root=1-688b8695-6be2c4e9592a9ec8181785d2;Parent=40b0764a9ed86a90;Sampled=0;Lineage=1:308471e4:0\n      X-Cache:\n      - Miss from cloudfront\n      x-amz-apigw-id:\n      - OlH3gHU3vHcEHBQ=\n      x-amzn-RequestId:\n      - 29fac39b-d501-4b37-ab9c-f85f2fa104de\n    status:\n      code: 200\n      message: OK\nversion: 1\n"
  },
  {
    "path": "tests/cassettes/test_cli/TestCLISearch.test_non_conformant_can_be_ignored[inprocess---ignore=no-conforms-to].yaml",
    "content": "interactions:\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://earth-search.aws.element84.com/v0\n  response:\n    body:\n      string: '{\"stac_version\":\"1.0.0-beta.2\",\"stac_api_version\":\"0.9.0\",\"id\":\"earth-search\",\"title\":\"Earth\n        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/\"}]}'\n    headers:\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Origin:\n      - '*'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '1180'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:07:04 GMT\n      Via:\n      - 1.1 bcab77f1ffe9d73bbe5ff7a973cd0160.cloudfront.net (CloudFront)\n      X-Amz-Cf-Id:\n      - vMa_MpJCu9c7GeEHnwa091FPSnWZGxD8Repa_lTj7KAlXZFmmQ5M-Q==\n      X-Amz-Cf-Pop:\n      - DEN52-C1\n      X-Amzn-Trace-Id:\n      - Root=1-688b8698-2cd92b741549105a5d8a6911;Parent=4338d3a623ac803e;Sampled=0;Lineage=1:308471e4:0\n      X-Cache:\n      - Miss from cloudfront\n      x-amz-apigw-id:\n      - OlH30Hz4vHcEMzQ=\n      x-amzn-RequestId:\n      - c966bba6-eb64-40de-a81c-b584d0a90cd8\n    status:\n      code: 200\n      message: OK\n- request:\n    body: '{\"collections\": [\"sentinel-s2-l2a-cogs\"], \"limit\": 1}'\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '53'\n      Content-Type:\n      - application/json\n      User-Agent:\n      - python-requests/2.32.4\n    method: POST\n    uri: https://earth-search.aws.element84.com/v0/search\n  response:\n    body:\n      string: '{\"type\":\"FeatureCollection\",\"stac_version\":\"1.0.0-beta.2\",\"stac_extensions\":[],\"context\":{\"page\":1,\"limit\":1,\"matched\":22699053,\"returned\":1},\"numberMatched\":22699053,\"numberReturned\":1,\"features\":[{\"type\":\"Feature\",\"stac_version\":\"1.0.0-beta.2\",\"stac_extensions\":[\"eo\",\"view\",\"proj\"],\"id\":\"S2B_20EPT_20250731_0_L2A\",\"bbox\":[-59.83157801622286,-60.501986080269994,-59.17918863038601,-60.381497373885004],\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-59.17918863038601,-60.501986080269994],[-59.52123913603771,-60.45105927125322],[-59.83157801622286,-60.3982344095088],[-59.19332814481684,-60.381497373885004],[-59.17918863038601,-60.501986080269994]]]},\"properties\":{\"datetime\":\"2025-07-31T13:19:22Z\",\"platform\":\"sentinel-2b\",\"constellation\":\"sentinel-2\",\"instruments\":[\"msi\"],\"gsd\":10,\"view:off_nadir\":0,\"proj:epsg\":32720,\"sentinel:utm_zone\":20,\"sentinel:latitude_band\":\"E\",\"sentinel:grid_square\":\"PT\",\"sentinel:sequence\":\"0\",\"sentinel:product_id\":\"S2B_MSIL2A_20250731T131909_N0511_R095_T20EPT_20250731T143919\",\"sentinel:data_coverage\":1.95,\"eo:cloud_cover\":0,\"sentinel:valid_cloud_cover\":true,\"sentinel:processing_baseline\":\"05.11\",\"sentinel:boa_offset_applied\":true,\"created\":\"2025-07-31T15:02:11.685Z\",\"updated\":\"2025-07-31T15:02:11.685Z\"},\"collection\":\"sentinel-s2-l2a-cogs\",\"assets\":{\"thumbnail\":{\"title\":\"Thumbnail\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"href\":\"https://roda.sentinel-hub.com/sentinel-s2-l1c/tiles/20/E/PT/2025/7/31/0/preview.jpg\"},\"overview\":{\"title\":\"True\n        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/20/E/PT/2025/7/S2B_20EPT_20250731_0_L2A/L2A_PVI.tif\",\"proj:shape\":[343,343],\"proj:transform\":[320,0,600000,0,-320,3300040,0,0,1]},\"info\":{\"title\":\"Original\n        JSON metadata\",\"type\":\"application/json\",\"roles\":[\"metadata\"],\"href\":\"https://roda.sentinel-hub.com/sentinel-s2-l2a/tiles/20/E/PT/2025/7/31/0/tileInfo.json\"},\"metadata\":{\"title\":\"Original\n        XML metadata\",\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"href\":\"https://roda.sentinel-hub.com/sentinel-s2-l2a/tiles/20/E/PT/2025/7/31/0/metadata.xml\"},\"visual\":{\"title\":\"True\n        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/20/E/PT/2025/7/S2B_20EPT_20250731_0_L2A/TCI.tif\",\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,3300040,0,0,1]},\"B01\":{\"title\":\"Band\n        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/20/E/PT/2025/7/S2B_20EPT_20250731_0_L2A/B01.tif\",\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,600000,0,-60,3300040,0,0,1]},\"B02\":{\"title\":\"Band\n        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/20/E/PT/2025/7/S2B_20EPT_20250731_0_L2A/B02.tif\",\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,3300040,0,0,1]},\"B03\":{\"title\":\"Band\n        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/20/E/PT/2025/7/S2B_20EPT_20250731_0_L2A/B03.tif\",\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,3300040,0,0,1]},\"B04\":{\"title\":\"Band\n        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/20/E/PT/2025/7/S2B_20EPT_20250731_0_L2A/B04.tif\",\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,3300040,0,0,1]},\"B05\":{\"title\":\"Band\n        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/20/E/PT/2025/7/S2B_20EPT_20250731_0_L2A/B05.tif\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,3300040,0,0,1]},\"B06\":{\"title\":\"Band\n        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/20/E/PT/2025/7/S2B_20EPT_20250731_0_L2A/B06.tif\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,3300040,0,0,1]},\"B07\":{\"title\":\"Band\n        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/20/E/PT/2025/7/S2B_20EPT_20250731_0_L2A/B07.tif\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,3300040,0,0,1]},\"B08\":{\"title\":\"Band\n        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/20/E/PT/2025/7/S2B_20EPT_20250731_0_L2A/B08.tif\",\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,3300040,0,0,1]},\"B8A\":{\"title\":\"Band\n        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/20/E/PT/2025/7/S2B_20EPT_20250731_0_L2A/B8A.tif\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,3300040,0,0,1]},\"B09\":{\"title\":\"Band\n        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/20/E/PT/2025/7/S2B_20EPT_20250731_0_L2A/B09.tif\",\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,600000,0,-60,3300040,0,0,1]},\"B11\":{\"title\":\"Band\n        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/20/E/PT/2025/7/S2B_20EPT_20250731_0_L2A/B11.tif\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,3300040,0,0,1]},\"B12\":{\"title\":\"Band\n        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/20/E/PT/2025/7/S2B_20EPT_20250731_0_L2A/B12.tif\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,3300040,0,0,1]},\"AOT\":{\"title\":\"Aerosol\n        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/20/E/PT/2025/7/S2B_20EPT_20250731_0_L2A/AOT.tif\",\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,600000,0,-60,3300040,0,0,1]},\"WVP\":{\"title\":\"Water\n        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/20/E/PT/2025/7/S2B_20EPT_20250731_0_L2A/WVP.tif\",\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,3300040,0,0,1]},\"SCL\":{\"title\":\"Scene\n        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/20/E/PT/2025/7/S2B_20EPT_20250731_0_L2A/SCL.tif\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,3300040,0,0,1]}},\"links\":[{\"rel\":\"self\",\"href\":\"https://earth-search.aws.element84.com/v0/collections/sentinel-s2-l2a-cogs/items/S2B_20EPT_20250731_0_L2A\"},{\"rel\":\"canonical\",\"href\":\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/20/E/PT/2025/7/S2B_20EPT_20250731_0_L2A/S2B_20EPT_20250731_0_L2A.json\",\"type\":\"application/json\"},{\"title\":\"sentinel-s2-l2a-aws/workflow-publish-sentinel/tiles-20-E-PT-2025-7-31-0\",\"rel\":\"via-cirrus\",\"href\":\"https://cirrus-earth-search.aws.element84.com/v0/catid/sentinel-s2-l2a-aws/workflow-publish-sentinel/tiles-20-E-PT-2025-7-31-0\"},{\"title\":\"Source\n        STAC Item\",\"rel\":\"derived_from\",\"href\":\"https://cirrus-v0-data-1qm7gekzjucbq.s3.us-west-2.amazonaws.com/sentinel-s2-l2a/20/E/PT/2025/7/S2B_20EPT_20250731_0_L2A/S2B_20EPT_20250731_0_L2A.json\",\"type\":\"application/json\"},{\"title\":\"sentinel-s2-l2a/workflow-cog-archive/S2B_20EPT_20250731_0_L2A\",\"rel\":\"via-cirrus\",\"href\":\"https://cirrus-earth-search.aws.element84.com/v0/catid/sentinel-s2-l2a/workflow-cog-archive/S2B_20EPT_20250731_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\n        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}}]}'\n    headers:\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Origin:\n      - '*'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '10642'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:07:04 GMT\n      Via:\n      - 1.1 20ebec22e4be2753f048f31dfe94e426.cloudfront.net (CloudFront)\n      X-Amz-Cf-Id:\n      - AWaHpUWOD--lSTYVrt5tsqhqVkPWtlNXtGCFkuwk-3X9pJe3KJRPrA==\n      X-Amz-Cf-Pop:\n      - DEN52-C1\n      X-Amzn-Trace-Id:\n      - Root=1-688b8698-7b5306612a9069356ca20b15;Parent=41bbacc785b7c995;Sampled=0;Lineage=1:308471e4:0\n      X-Cache:\n      - Miss from cloudfront\n      x-amz-apigw-id:\n      - OlH31GsZvHcEjUA=\n      x-amzn-RequestId:\n      - cbf2c620-bd7b-4e79-8d06-16c241cf5117\n    status:\n      code: 200\n      message: OK\nversion: 1\n"
  },
  {
    "path": "tests/cassettes/test_cli/TestCLISearch.test_non_conformant_can_be_ignored[inprocess---ignore].yaml",
    "content": "interactions:\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://earth-search.aws.element84.com/v0\n  response:\n    body:\n      string: '{\"stac_version\":\"1.0.0-beta.2\",\"stac_api_version\":\"0.9.0\",\"id\":\"earth-search\",\"title\":\"Earth\n        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/\"}]}'\n    headers:\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Origin:\n      - '*'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '1180'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:07:03 GMT\n      Via:\n      - 1.1 f923e65cfb5d73f11ea9a89d42fad5fc.cloudfront.net (CloudFront)\n      X-Amz-Cf-Id:\n      - uynIN7RHOWBZr9-yqE3wJLWgdX4Mj_6Y2TqYRCjIL2qyOBqBtjnALg==\n      X-Amz-Cf-Pop:\n      - DEN52-C1\n      X-Amzn-Trace-Id:\n      - Root=1-688b8697-57d1dee53216e35176e267bd;Parent=6e40ce6204a598ae;Sampled=0;Lineage=1:308471e4:0\n      X-Cache:\n      - Miss from cloudfront\n      x-amz-apigw-id:\n      - OlH3rHsivHcEMzQ=\n      x-amzn-RequestId:\n      - 36e65f82-fd7c-41e6-96c3-00fcea4b5f84\n    status:\n      code: 200\n      message: OK\n- request:\n    body: '{\"collections\": [\"sentinel-s2-l2a-cogs\"], \"limit\": 1}'\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '53'\n      Content-Type:\n      - application/json\n      User-Agent:\n      - python-requests/2.32.4\n    method: POST\n    uri: https://earth-search.aws.element84.com/v0/search\n  response:\n    body:\n      string: '{\"type\":\"FeatureCollection\",\"stac_version\":\"1.0.0-beta.2\",\"stac_extensions\":[],\"context\":{\"page\":1,\"limit\":1,\"matched\":22699053,\"returned\":1},\"numberMatched\":22699053,\"numberReturned\":1,\"features\":[{\"type\":\"Feature\",\"stac_version\":\"1.0.0-beta.2\",\"stac_extensions\":[\"eo\",\"view\",\"proj\"],\"id\":\"S2B_20EPT_20250731_0_L2A\",\"bbox\":[-59.83157801622286,-60.501986080269994,-59.17918863038601,-60.381497373885004],\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-59.17918863038601,-60.501986080269994],[-59.52123913603771,-60.45105927125322],[-59.83157801622286,-60.3982344095088],[-59.19332814481684,-60.381497373885004],[-59.17918863038601,-60.501986080269994]]]},\"properties\":{\"datetime\":\"2025-07-31T13:19:22Z\",\"platform\":\"sentinel-2b\",\"constellation\":\"sentinel-2\",\"instruments\":[\"msi\"],\"gsd\":10,\"view:off_nadir\":0,\"proj:epsg\":32720,\"sentinel:utm_zone\":20,\"sentinel:latitude_band\":\"E\",\"sentinel:grid_square\":\"PT\",\"sentinel:sequence\":\"0\",\"sentinel:product_id\":\"S2B_MSIL2A_20250731T131909_N0511_R095_T20EPT_20250731T143919\",\"sentinel:data_coverage\":1.95,\"eo:cloud_cover\":0,\"sentinel:valid_cloud_cover\":true,\"sentinel:processing_baseline\":\"05.11\",\"sentinel:boa_offset_applied\":true,\"created\":\"2025-07-31T15:02:11.685Z\",\"updated\":\"2025-07-31T15:02:11.685Z\"},\"collection\":\"sentinel-s2-l2a-cogs\",\"assets\":{\"thumbnail\":{\"title\":\"Thumbnail\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"href\":\"https://roda.sentinel-hub.com/sentinel-s2-l1c/tiles/20/E/PT/2025/7/31/0/preview.jpg\"},\"overview\":{\"title\":\"True\n        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/20/E/PT/2025/7/S2B_20EPT_20250731_0_L2A/L2A_PVI.tif\",\"proj:shape\":[343,343],\"proj:transform\":[320,0,600000,0,-320,3300040,0,0,1]},\"info\":{\"title\":\"Original\n        JSON metadata\",\"type\":\"application/json\",\"roles\":[\"metadata\"],\"href\":\"https://roda.sentinel-hub.com/sentinel-s2-l2a/tiles/20/E/PT/2025/7/31/0/tileInfo.json\"},\"metadata\":{\"title\":\"Original\n        XML metadata\",\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"href\":\"https://roda.sentinel-hub.com/sentinel-s2-l2a/tiles/20/E/PT/2025/7/31/0/metadata.xml\"},\"visual\":{\"title\":\"True\n        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/20/E/PT/2025/7/S2B_20EPT_20250731_0_L2A/TCI.tif\",\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,3300040,0,0,1]},\"B01\":{\"title\":\"Band\n        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/20/E/PT/2025/7/S2B_20EPT_20250731_0_L2A/B01.tif\",\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,600000,0,-60,3300040,0,0,1]},\"B02\":{\"title\":\"Band\n        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/20/E/PT/2025/7/S2B_20EPT_20250731_0_L2A/B02.tif\",\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,3300040,0,0,1]},\"B03\":{\"title\":\"Band\n        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/20/E/PT/2025/7/S2B_20EPT_20250731_0_L2A/B03.tif\",\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,3300040,0,0,1]},\"B04\":{\"title\":\"Band\n        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/20/E/PT/2025/7/S2B_20EPT_20250731_0_L2A/B04.tif\",\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,3300040,0,0,1]},\"B05\":{\"title\":\"Band\n        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/20/E/PT/2025/7/S2B_20EPT_20250731_0_L2A/B05.tif\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,3300040,0,0,1]},\"B06\":{\"title\":\"Band\n        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/20/E/PT/2025/7/S2B_20EPT_20250731_0_L2A/B06.tif\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,3300040,0,0,1]},\"B07\":{\"title\":\"Band\n        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/20/E/PT/2025/7/S2B_20EPT_20250731_0_L2A/B07.tif\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,3300040,0,0,1]},\"B08\":{\"title\":\"Band\n        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/20/E/PT/2025/7/S2B_20EPT_20250731_0_L2A/B08.tif\",\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,3300040,0,0,1]},\"B8A\":{\"title\":\"Band\n        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/20/E/PT/2025/7/S2B_20EPT_20250731_0_L2A/B8A.tif\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,3300040,0,0,1]},\"B09\":{\"title\":\"Band\n        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/20/E/PT/2025/7/S2B_20EPT_20250731_0_L2A/B09.tif\",\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,600000,0,-60,3300040,0,0,1]},\"B11\":{\"title\":\"Band\n        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/20/E/PT/2025/7/S2B_20EPT_20250731_0_L2A/B11.tif\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,3300040,0,0,1]},\"B12\":{\"title\":\"Band\n        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/20/E/PT/2025/7/S2B_20EPT_20250731_0_L2A/B12.tif\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,3300040,0,0,1]},\"AOT\":{\"title\":\"Aerosol\n        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/20/E/PT/2025/7/S2B_20EPT_20250731_0_L2A/AOT.tif\",\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,600000,0,-60,3300040,0,0,1]},\"WVP\":{\"title\":\"Water\n        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/20/E/PT/2025/7/S2B_20EPT_20250731_0_L2A/WVP.tif\",\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,3300040,0,0,1]},\"SCL\":{\"title\":\"Scene\n        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/20/E/PT/2025/7/S2B_20EPT_20250731_0_L2A/SCL.tif\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,3300040,0,0,1]}},\"links\":[{\"rel\":\"self\",\"href\":\"https://earth-search.aws.element84.com/v0/collections/sentinel-s2-l2a-cogs/items/S2B_20EPT_20250731_0_L2A\"},{\"rel\":\"canonical\",\"href\":\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/20/E/PT/2025/7/S2B_20EPT_20250731_0_L2A/S2B_20EPT_20250731_0_L2A.json\",\"type\":\"application/json\"},{\"title\":\"sentinel-s2-l2a-aws/workflow-publish-sentinel/tiles-20-E-PT-2025-7-31-0\",\"rel\":\"via-cirrus\",\"href\":\"https://cirrus-earth-search.aws.element84.com/v0/catid/sentinel-s2-l2a-aws/workflow-publish-sentinel/tiles-20-E-PT-2025-7-31-0\"},{\"title\":\"Source\n        STAC Item\",\"rel\":\"derived_from\",\"href\":\"https://cirrus-v0-data-1qm7gekzjucbq.s3.us-west-2.amazonaws.com/sentinel-s2-l2a/20/E/PT/2025/7/S2B_20EPT_20250731_0_L2A/S2B_20EPT_20250731_0_L2A.json\",\"type\":\"application/json\"},{\"title\":\"sentinel-s2-l2a/workflow-cog-archive/S2B_20EPT_20250731_0_L2A\",\"rel\":\"via-cirrus\",\"href\":\"https://cirrus-earth-search.aws.element84.com/v0/catid/sentinel-s2-l2a/workflow-cog-archive/S2B_20EPT_20250731_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\n        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}}]}'\n    headers:\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Origin:\n      - '*'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '10642'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:07:03 GMT\n      Via:\n      - 1.1 9427b8c01c70c4a2deb16eed5a2ced9c.cloudfront.net (CloudFront)\n      X-Amz-Cf-Id:\n      - jAQJp3oQfryxRyD78VIJKM1RC36nr_n1nIELJAE7qXb9kYoc6rB62Q==\n      X-Amz-Cf-Pop:\n      - DEN52-C1\n      X-Amzn-Trace-Id:\n      - Root=1-688b8697-07b9c28e27783de45b2a0238;Parent=07f2b78fd838a599;Sampled=0;Lineage=1:308471e4:0\n      X-Cache:\n      - Miss from cloudfront\n      x-amz-apigw-id:\n      - OlH3sGrsPHcECUQ=\n      x-amzn-RequestId:\n      - 60c5ba4d-be65-4dd7-9c2a-c5eebed5a2d3\n    status:\n      code: 200\n      message: OK\nversion: 1\n"
  },
  {
    "path": "tests/cassettes/test_cli/TestCLISearch.test_non_conformant_raises_by_default[inprocess].yaml",
    "content": "interactions:\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://earth-search.aws.element84.com/v0\n  response:\n    body:\n      string: '{\"stac_version\":\"1.0.0-beta.2\",\"stac_api_version\":\"0.9.0\",\"id\":\"earth-search\",\"title\":\"Earth\n        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/\"}]}'\n    headers:\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Origin:\n      - '*'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '1180'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:07:01 GMT\n      Via:\n      - 1.1 9bed99ac619d23b077acdc859dc1c43c.cloudfront.net (CloudFront)\n      X-Amz-Cf-Id:\n      - 6st0Z4FnU8QtD9YIicNfdl52UmzJBQifmFdu2naIXY7-0NI23W7oIQ==\n      X-Amz-Cf-Pop:\n      - DEN52-C1\n      X-Amzn-Trace-Id:\n      - Root=1-688b8695-6c3c1aa536f04aeb1ec33ce6;Parent=4a6282877ec233c2;Sampled=0;Lineage=1:308471e4:0\n      X-Cache:\n      - Miss from cloudfront\n      x-amz-apigw-id:\n      - OlH3ZGfYPHcEmtA=\n      x-amzn-RequestId:\n      - d16f0be2-7a80-468a-a2d3-7c65a5855952\n    status:\n      code: 200\n      message: OK\nversion: 1\n"
  },
  {
    "path": "tests/cassettes/test_cli/TestCLISearch.test_non_conformant_raises_if_warning_set_to_error[inprocess---error=no-conforms-to].yaml",
    "content": "interactions:\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://earth-search.aws.element84.com/v0\n  response:\n    body:\n      string: '{\"stac_version\":\"1.0.0-beta.2\",\"stac_api_version\":\"0.9.0\",\"id\":\"earth-search\",\"title\":\"Earth\n        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/\"}]}'\n    headers:\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Origin:\n      - '*'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '1180'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:07:01 GMT\n      Via:\n      - 1.1 350e87fe323bf8d725a381e15f465f40.cloudfront.net (CloudFront)\n      X-Amz-Cf-Id:\n      - JDqaZIxEt5SqGE-uZ31SwmYGjvuhoCW_KM8PSL6i0PX1wrUymPKIAg==\n      X-Amz-Cf-Pop:\n      - DEN52-C1\n      X-Amzn-Trace-Id:\n      - Root=1-688b8695-282b64931f3845d21575b1da;Parent=32a16fa657059b23;Sampled=0;Lineage=1:308471e4:0\n      X-Cache:\n      - Miss from cloudfront\n      x-amz-apigw-id:\n      - OlH3cHwnvHcEg1g=\n      x-amzn-RequestId:\n      - 137d9077-f0f7-43ff-9fa1-bf3369af110b\n    status:\n      code: 200\n      message: OK\nversion: 1\n"
  },
  {
    "path": "tests/cassettes/test_cli/TestCLISearch.test_non_conformant_raises_if_warning_set_to_error[inprocess---error].yaml",
    "content": "interactions:\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://earth-search.aws.element84.com/v0\n  response:\n    body:\n      string: '{\"stac_version\":\"1.0.0-beta.2\",\"stac_api_version\":\"0.9.0\",\"id\":\"earth-search\",\"title\":\"Earth\n        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/\"}]}'\n    headers:\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Origin:\n      - '*'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '1180'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:07:01 GMT\n      Via:\n      - 1.1 5950a1c2bfcf1f3e07bedbb2efad39f2.cloudfront.net (CloudFront)\n      X-Amz-Cf-Id:\n      - p4C3TRlVn4IfdoW4UsIqQx1oYf9ChFWIWao1g2SH0ctZzn_lJwuoiw==\n      X-Amz-Cf-Pop:\n      - DEN52-C1\n      X-Amzn-Trace-Id:\n      - Root=1-688b8695-096349986390340c396403c6;Parent=5288ce6122788a3c;Sampled=0;Lineage=1:308471e4:0\n      X-Cache:\n      - Miss from cloudfront\n      x-amz-apigw-id:\n      - OlH3aE_xvHcElMA=\n      x-amzn-RequestId:\n      - 5d0495a6-aae0-4935-9554-e81291239440\n    status:\n      code: 200\n      message: OK\nversion: 1\n"
  },
  {
    "path": "tests/cassettes/test_cli/TestCLISearch.test_save[inprocess].yaml",
    "content": "interactions:\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://earth-search.aws.element84.com/v1\n  response:\n    body:\n      string: '{\"stac_version\":\"1.0.0\",\"type\":\"Catalog\",\"id\":\"earth-search-aws\",\"title\":\"Earth\n        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\"]}'\n    headers:\n      Connection:\n      - keep-alive\n      Content-Encoding:\n      - gzip\n      Content-Length:\n      - '612'\n      Content-Type:\n      - application/json; charset=utf-8\n      Date:\n      - Thu, 31 Jul 2025 15:07:07 GMT\n      Via:\n      - 1.1 350e87fe323bf8d725a381e15f465f40.cloudfront.net (CloudFront)\n      X-Amz-Cf-Id:\n      - y5CBsW6pWe4p3JykySBu8wRWrH9I2r9EyOQpFUevXn-HIdDolAcyVQ==\n      X-Amz-Cf-Pop:\n      - DEN52-C1\n      X-Amzn-Trace-Id:\n      - Root=1-688b869b-475995d16b94b78159a1ab3c;Parent=11cbceacccdcd247;Sampled=0;Lineage=1:9e2884e9:0\n      X-Cache:\n      - Miss from cloudfront\n      access-control-allow-origin:\n      - '*'\n      etag:\n      - W/\"d29-QPs+H0wJLUX32EZKNgzG3k6wfQ8\"\n      x-amz-apigw-id:\n      - OlH4VFhwPHcEWsg=\n      x-amzn-Remapped-content-length:\n      - '3369'\n      x-amzn-RequestId:\n      - e1ed3599-1b61-43ba-8fac-e384c0eb0da6\n      x-powered-by:\n      - Express\n    status:\n      code: 200\n      message: OK\n- request:\n    body: '{\"collections\": [\"cop-dem-glo-30\"]}'\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '35'\n      Content-Type:\n      - application/json\n      User-Agent:\n      - python-requests/2.32.4\n    method: POST\n    uri: https://earth-search.aws.element84.com/v1/search\n  response:\n    body:\n      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\n        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;\n        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\n        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;\n        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\n        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;\n        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\n        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;\n        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\n        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;\n        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\n        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;\n        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\n        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;\n        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\n        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;\n        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\n        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;\n        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\n        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;\n        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\n        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\"}]}'\n    headers:\n      Connection:\n      - keep-alive\n      Content-Encoding:\n      - gzip\n      Content-Length:\n      - '2227'\n      Content-Type:\n      - application/geo+json; charset=utf-8\n      Date:\n      - Thu, 31 Jul 2025 15:07:07 GMT\n      Via:\n      - 1.1 bcab77f1ffe9d73bbe5ff7a973cd0160.cloudfront.net (CloudFront)\n      X-Amz-Cf-Id:\n      - z3inmRIRkzNydFSeZEh6-vnCDN9Fep52qay0uH-fGZygwU1TVUr1gA==\n      X-Amz-Cf-Pop:\n      - DEN52-C1\n      X-Amzn-Trace-Id:\n      - Root=1-688b869b-2b20a3cb56800f473f45f560;Parent=5b66938da73dec0e;Sampled=0;Lineage=1:9e2884e9:0\n      X-Cache:\n      - Miss from cloudfront\n      access-control-allow-origin:\n      - '*'\n      etag:\n      - W/\"70d2-XVOU+Ip4h5kZfyLDmx2Rnv6U3q4\"\n      x-amz-apigw-id:\n      - OlH4XGO6vHcEviQ=\n      x-amzn-Remapped-content-length:\n      - '28882'\n      x-amzn-RequestId:\n      - 62379ed0-7a09-49df-b2b8-7b95e911a4df\n      x-powered-by:\n      - Express\n    status:\n      code: 200\n      message: OK\nversion: 1\n"
  },
  {
    "path": "tests/cassettes/test_client/TestAPI.test_collections_fallback.yaml",
    "content": "interactions:\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.26.0\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1\n  response:\n    body:\n      string: !!binary |\n        H4sIAABBjGEC/72ZUW8iNxCA/8qISlWrxiwkL3dUfQBCCFVIEEuVh1NUGa9ZfPWuN7aXlJ7y3zte\n        dgmJolNkzL1EitmZ+XZmPB7PfmvZbcFbvdaQWipV2jpriQT/zQTTyqiVJQXDNSusdE9Nm2WYSZpz\n        S/UWhiorSss1xIv+EPqzCT6fcMO0KKxQOUrFnGq2pkvJwRQUFy3PCqWphAxVJGgZdgJLkacwotqu\n        wTDBc8bB/Wq4NbBWxvIElluwaw7fA0H7xlL294ZrswPotjvtDi4zla+UzsxCtXpfWmtri14UPT09\n        tVXB81SYNmqKTMFZpFJGC0FWnNpSc0O6EeqInDz+0Rx1eUqnXH01COWtQFFz0fES1/zxlbRBcXys\n        7ZzlxNpKp9Gm8hVZokvbF4fv+oGnBcaVmCrYXkI/rYTcxc9btrekRjBSpRmVBD2jqVXaBNDZJG0g\n        pexRkoNM8FMSwGEHS+QIdRHq4zIxnsKPJddbT1mjtP246Ju90Xo4a0mR/2OwInxraS6xXBguV67o\n        7SojLQopmCtbedQETPMV/tJYLJoSxOoK1N6XzzYuOaLIESFJ1Ho+a8xopewPMOMq6KnMMCUlZ06Z\n        ObSomPmuxeY4ucPChQcG1AJHgFQaXgjqQk/xBPkQiDu6ovur+AIOJIFJagw3ILJC8ozn+/NHGDBc\n        b3Zb5RjvvVC+sO8L6DvYeHr89g46vBRdf5q9DjyU18o1AePR4oNcP45pdhcfQrG1kMmHmP6KxzGM\n        aQE3NE+wVwgQvX3uRyktvKBu+3H/cjSF6/ECNp1ONxxRTg1NeOZFdUm36G/o53mJPdqtcv1YP+Ma\n        Hw8HmFRGCK2MkJx6kV7PR/0eXIt0DXNulCzdQzByRpBW2C30GePGhMNGNfQYp05VbtdyC9f0iQoR\n        3J3ZTj1Zi2MgL6lAxNMGPnE2fOP+xpmnJW18ehxrvZtm2OhYBXPB1Kn2UqGPj/0pMXeRD0F5ok20\n        AzxuCzWpeUpHNonp6cp+vBjN4aa7CAdG8Y6uiezaADvlRMGtN4lndEdGC+h2yJS7iccpWgmhiCwl\n        86L7cz6EsVRL9F5c6hXFHvae2pB0XzUjqXnyonPeMtTCJ3RZoxHO4YZvuCTn4Rjlzg75RNg5kede\n        rFM1mPRgiu2iWsFAqERU0yRsKCZuCmDrm0Ug4kwt/dJxuhjEPVdrhFXaDc8WmuPLg8hhUOocYvSt\n        RuqAqHZpvFAXXGs6lCLDhAyHY51WVmv1wYrxWidyl4BNIvbD0Zm9csxD6nltgSHPTRmwhS0NYTuV\n        PkBDN/7KBSsNuJvL+OaO7CaKYeCYKgjeW0gqldMbiPDziQg/+xFeKc2NhUm+wQRRegvuHOnnVG6N\n        CBjolfDLufoIeV32dqOKqmZfUSakW/xlPJhc/RrwGr0UKz/iu1FM5jCUqkzgZyyIwrjpHhZrmtaD\n        xUCEiuPuyYT/COLicjTDukwzifdSl6ABA36R8MKNRSvdfj3hzV0M90rLBEFxA2YBe0OpDPEdSaRa\n        JNNRwE7VKcR20G/qMB70sD3V2H+L/3gCL/sloxhT3Chw3ukGLDnrdOk5XprMenBb/YaAfXxpVsrD\n        nQEzrVJNs5CDJ1G8mhrqjWCcuA987zNv8qStqKi+YqHSar75e/3t7o+L6rvd23lxrRQOPzMe9QK1\n        7Xblv+eH+gMi/9fiOVkNt3tfHp7/B46xGA8sHQAA\n    headers:\n      Content-Encoding:\n      - gzip\n      Content-Length:\n      - '1284'\n      Content-Type:\n      - application/json\n      Date:\n      - Wed, 10 Nov 2021 22:00:31 GMT\n      Strict-Transport-Security:\n      - max-age=15724800; includeSubDomains\n      Vary:\n      - Accept-Encoding\n      X-Azure-Ref:\n      - 0AEGMYQAAAABwKB8OokD7Tprae0ooVhyQQk9TMzIxMDAwMTEwMDIzADkyN2FiZmE2LTE5ZjYtNGFmMS1hMDlkLWM5NTlkOWExZTY0NA==\n      X-Cache:\n      - CONFIG_NOCACHE\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.26.0\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/collections\n  response:\n    body:\n      string: !!binary |\n        H4sIAABBjGEC/+x9iXLjSI7orzC8772xd0VJ1K2aty/CVx2ztstjubp3tqbDQUm0xDFFanjYpd7o\n        /fYHIDPJ5ClKllzqam7MdslSHkgkEgkgcfz30cSxLGPim47tHb37+t9H5vTo3dFMXx7VjvzV0oA/\n        zsMW8J1l2k+soWtY8KPpGwsvaqsvl5Y50bFxY2Y4//YPj3rNXeMRfp37/tJ712gsLd02fN1dTZzF\n        MvANt74wJ67jOY9+Hb5q6Euz4fn6pPGsNST4GgBWg034W00AsNRdw/azIXj97NJEruO8xTSeYT3u\n        a5oELqVZYRLD9oz08C8vL/XAm3n1mfMM/V1D9SamYU/g35WHW9GYT6deY6r7urp0YJgVAm/6FkK/\n        DMbwjTJ1FrppS7NNDW/immNjOl5tviCcyjP8BqdRPtXHYKHbimvoU31sGQpvpDjPhvtsGi+Kbk/h\n        10fDRdgj/PrGN78x9xfW0W+/RIN9GX0YKR/0pXKF3c5xEOiiezAi0P5/H/nzYDG2ddPCPxLg62bH\n        4LN7bP2sX31sOeM6YrD+YtpT58WrwzIb7MfGcvIQDkp7U1/aswhMc6HPjAb7ynUsA0/gEc5ylIL6\n        9BYQfeS45sy0dUuljdGfCgA1ghfD83PAw61X8diJAQk42KHpxHl+0J/qv5rLbGplP+QCe2rp3pOu\n        eE7gTth2QWtGF0tiNe+OPvMp5UbKo+MqrG96mXNzP8ucm1sv86P+opvmdstkfdPLXLo7XObSfeDL\n        hIO27SpvA8P1HeXOnDjbLVUaIL3eiWMH3m53ltb8aLrGg00L1C3gMy6M4po6cEiH87ZWU9O2Rsr5\n        55svo+3Q4c8NBVbtmzZcbfD7Fxtuvaky8nXf8JRjGvnk6DfAFLAvvP0AOd4SoNKJI43HzjeA6Kuq\n        tfr1YV9rdgbaoKn1h+1aq1XvD/v9wbDVa3d7nfagXVN73Xqr12t3WgNN68BPnVpXq/c6PWjTavZ6\n        w3av9UsNBusP6lpbg5aDfqczGDZbtc6w3hw2+9Cw22q3NW1Qg0nqg/6gM+w3W+1OtwuD9bV6p90e\n        tDqDdr/faTW7NFiviZN2mr1hp9fst7DroD7oatCu0+l3tWZ/0KupWrdTBwj6nXYX4G/Dz7iC1rAL\n        kGqDgTbs9NsDHK8HC+322zDloNXXhl0ABOCA4Xvddq/b4avUBm2YcjDs9/rtHk7YbQ17Xa0Na+0M\n        e7/8AgiFbV86LsOjaQNVPOPnr1+PtOFwqDY1+N99s/mO/vdfsKNIIoBntS1/DSP9VgvvVLgHXWfp\n        mnSpQZcnY/XiuFMiGuTZ8BVy7drR1enNxftPd5f4Ub54YtuPJAbjPZtTw2WCWOBaG13Y4m8dSG/l\n        mxMPPk3hVxvIzjOZlMXbNPCcqBMOh60vxD0jEz5AMzE8z8Em8HkaTKg1Wz58+wte/HEg19zx0VzX\n        4mt5wrnj+TAqIMILFgsdMEvsYeaB6Pq13YTvLX1sWO8mFt6uDEnR56MmjDVyAn+uvLeAK0x15Uxf\n        zUFyUEYv+mKZ+vV8tQTW4CkXzsJI/XjxoruPYZOR/qzbtp5qda3bM9gzI2eGj7o7fXGcKXxYLJzJ\n        k2hg6J4fgeHAX8AMRr6LxIH/fw1r982FkeyH/HCbfmGfW+A8yh38gvsPv5768AFIJRzs1gKJTnmv\n        W5ZqYdsRtJubluUpV449swz9kY3xM6wKx1BU5fPSsIGTIdn6Dh2EXYw6mrjBuDGaw39LDf6FbvWc\n        8fK7/afhwnd3JhwE5SKwkQ4ucXM+BNZjoukn5BomcPHCqdIIUa6dqflo0tl59dgyWqRxxf7G+wk0\n        56Kz/BCFq/rZyF5V5mLeO3gfE7mu355zuASBaUeEzXrnd2DHy7UzeoixcGZ2Ku6Nb7oXDvDeNe1Z\n        Hnx5G3cFUwA+bGmevKZpiPJahou4cpD5nFnB4+MGva6B20+UkeUspbmuTc/D/y2XpnJhWL6eAU84\n        QnzgC9htvpUhQ1vX57P+RHxVYb0EN8qjlPO5YQMtUesvyyV82mBv8gZleEiDjAhUBTWweaiDV0Sg\n        eZNgFzU9R17z8EgigogS547rb3k6iKFelWSoVw4I0pYVO7gXxsScBk5ACACJlFmLdsCmsiZ7PV99\n        fPRAYIp2tMTgN4buqvQVx6+l+9jXWzceXAgz1wCWF2FGARjhwgeNfUqDIU/RLRMEe9vUQ1b1E2yK\n        AQs3v0Ez3OVIdpBbcyjPLcczpgAhwAb/MR+B9LNpIKPzFVxbNEWIJKKorPmunBcY+Rp0DxDQkKNQ\n        R/W94/hEjnFcJ4ZJMk467tHYbKkRxiSgr42piRoYTKrH+iTh0SdPBFAxDrJmL1j/tT51cd5Le4Lq\n        mPQNLHfl2OpfAttEZiNDHLUwVBw7GxLRjDErsQ4OfUG/yynIlVM6b76hB8hb1TS/XtcrunX4Ytd1\n        YFOc67hq1EKgmYPnzXz0lVPgAfAjm7kWx+UHS5+GMtG57k3gT4826tZBUcDx9CK+lbv9SZKJrqni\n        HvJmQ+sb4J1z5VafwLGd0D114QQz0AjUR9NVj3GTAEknOdDFeyeGLkA5ClGCMcNZn8HdtVLPg8XY\n        cAlxCEcOBQDXEdxmu96EbIlPZZ7N0+VShxM1NwGFgjSjIcv0ItTgl+mbTfSVm4vLTCIFbAnk4YGE\n        ASvzlIIjkcO6GVM4A1kF6WCiuwZdVK5ugmKYxEv4scydIBZXKNis7c2Es1DcUT+akycnGlHd7J4q\n        PargWYlBcwQa0KjlSyiJe86GJdkwUoXinCBTkGSNgYyDZ1MWFzlLY2tJCKK00hDa8PIvIPvCTnyq\n        NV1R4Ubs5k2ncv4iIbVkv59Md2YCg2rcmv5knjqfZUZRswglt2NqwWFjPMPZgiLOl3GSXecFRJU/\n        ebCP0xkTIqNfPwd4uFFPyOIgn3/V3Sc1bCMWJOE93SIL8pD7kF0sh7Vs0xq2hnR7uVeIRiD7jBs4\n        eyqGG5yQS3a4VokhbdtDMPPFThiWJM4mSVCIrPdw00rSLPxyF8AVDrM8ppZwaxrTBey72Fj1GEc9\n        iSYLBfzkbKcgIuBOAIrVS8t4ZpLzaOkGE0N9D7dymg55FzXr2oo6Su2ldh+NhQWqpZp/T+XecVlD\n        N8lEG+DLM0HEF5O6DqVtL2pOQuQx4O+ksD3TIXNXcqtbhvOrAxQqaJZZBHBl97oVePLOlbzFCxgF\n        F0KyDsVOzIUJrauMZhhXktXYKd/kli01YOomSHCyRF/UpdD+XsD78mfL1G+STD/Xppm56cjbrp0A\n        jg+3TmRwqOLjvREjyEJ/+d4pXOd3/WjoaMjO7XnJ0fYB9DJfyD9wPKyZq4MUcuqh/fIW9kWWC9Cg\n        nurEmko7VKqXrBb8nNUAF3IWuAWiSmY3/N3AE6kzZ4c7/ZnZHqLdzz6VReavEiJoSatj2CtvuhzR\n        7cwwJnP1Wl9a62VDaqWewTbGh04cszwICFEZoxqes5zjQ9kGAgY+3eVLUAVib5qwWePMW200B5av\n        nOku3BRePt+NcJ8y5Ua3TMRzovGyhUtiFslG+fQlCbxRp0IdtMBSEDcwMNSIbnTU11iGrs3p1GJP\n        W6uI/YkRJKtAoZaAwlt8hOgijEGTsNUVDBBa2EQPfp5HvrFcGgUdXzVrwjqTYx/L6y340JXuwg4n\n        2mcyP5Vr6x/p7i83ex6irshiwMg2w0BH5KqG3YArhDxbzcJScqez+4+CsW4tEVo2vXrmmp6PLiOC\n        bksQSzRIbMnS9ZHokLpppEkSTa8cYDBLxzISd3pq4x1XHaF8VbJDBLNkikxKxmtgi8Z4ZX9VkHuJ\n        TUiMcWbOfKQgdlnwWzJTWNrqhOdaojc+tWVHShyihAdC+TMffwcQkP3FeHx0jRXXUOJdT+S+/2Hp\n        CxC8gKa8J3PlBAnL/chwlwY5NCUWWzRE3GheZohcs7C0eyVwnW9dLj3EyKT+KrGRhbhfDM9w/ZBv\n        /jwXerjKPuJJKH7KuTOyxKbQOH3mOvqUdAB0IPIscxq7SGXZM2UTF4fatNBYhyq4gFOonOnrMTXO\n        xxVs2UKIGcBgnnR+zMv1EFPCOtWJMdVTQOQNA+TG7Lq0N0K4WyMNxIcIpaMIGfIzQUlAwlFoBOjl\n        bzUKTZ/cgGhv8vpxqeEnx5roNoqNlvOiz4wimgZUx0fMbZm+t9asXuqR1I2iHoIvZWMk+YaYGDbr\n        to3jMLMtO53KjfGsT+V1ZV6GqRdWxwoWYwBGmFnENiWlkIQgwyQhEiQKHhaz5Y7zwLVUOtjRFaLP\n        nZlurxLTSUc8eygxp/Rw61iOq0+dcEEJ6OQx17UtcWOtQVPuvZU7Ub68CeTvTJf4ubDZnbkEutXt\n        PN06NsyaFsqIuVnmtRRz5W9blj4pja8Kssx43pO7hBMVdQiVOgQiZ8JoQWt7hXNGfTLsmJljJ5R0\n        aUty9HLQOtDVR96aki0zMZLTd7TQLfKdNPQFs6tEgOWYIdJIQe2IO342863H1ETCSM7weKOE7il8\n        tBzgG1yEiivkuQPIZodG6nWCPyhcGOTqStZ6vqYcxZ9UvRfgEq7An7QFoYEuvRN5w7nOi108XAkT\n        yL05hS+Fcl28ALb30jLYO+YG0/IRIsg3H0FsTCbgue6GRPE5k2UiPddbME3/eSvIGyIT8mbSjJ3N\n        JBN2Mb2Y9RY8Pp85vu8sEhSc2VIaTz7vRYOjLV3qdhxNdlLULT00ymJ8yCTPWudJWYpM09bFnHny\n        WWSsN6OOtRjL83IsJNOCfpK3njyEoK1cp8ocWl53BKkDCxAwjKU+4278gCNQpieORzcKDXimr2Yw\n        Bwp7OD3dBDmDJph9zq5+XE1dMlbH4wJS7eKAxUHJRUdBn1w2aruIM7I0hN3wQkm+MwNG7vVvQDvB\n        onGz8jy9BIcvP7oqHIdNW/eNUm96krM0e5KWXlClyzDP0yWTf3iZxyRvCHmadUZzpiUUIiGfGGQ8\n        SgNt3AHR/GQ8GrbzZOAPq8aHYJHJELYYLukQ8JqxBKWVCTaQB4xjVdqekl7cUo+kH6AkJubFLFj6\n        Ch+r0JSku44FpIw45rtr0J6viXrIGeGj4Y71CfmQrB0jRDviQrYgMm8uaYWhjpE9EPZPxoQUDxQL\n        NorhclMn7W0duzcPwCkabn3sTEaQlbyGEkcgEYuWR6cbbIYwZrDDFb6urFdTZXNG2I055suW3/UD\n        NQueSoT9TjCwvHabzrnb7qmO0b2+9gkjNVnaQpo0ZsaQkbKAJsSvNYbf8muO92NkLiDJj29YP26u\n        uXEToio0W0YPB5vTKchI4dpPF+gpiE10dyGM+ZuSTsFQGeRTpnXuVPf6Qg8saGbHzSTS9xlTngHZ\n        IJunl9IzE592Q4GD//YXfMPlXk34MWnh583Yo0ahTx9rqUpuCILIebhBJAKhX+KUHi6V94YtefLw\n        2dKWoJDTjuYG7PlH3ZsrZ4Y+mWfG18Z+iUXQxn4Jv6WoBIv8EEb6C/MeutZdL93yPSx2zi0XlhPM\n        5ixmQvcxyYNjpYOKkX3DUJbwYk+8zQkb+/lch91zKWIlZSPP+ZEFskpHQm6XeoGD1s7CcZfzeB/5\n        MpH7r3k3k0aI0aw8RMjgZc+azIc8uVdWwE/5lmGENF7ghdwsHtrEu33Arc94Qk2uOdYu59qlVVP4\n        DfmBFXS51YGUPEMikTiDPmUvGgSx/HYfGzP7LljfIsXQ1l3JtfgSOTpTE2W9lLMBohC0KBixDBTS\n        2rfrp8ZfoWWQcx/3OcjR3HKvROMP+mJsUJynKnwV0zguQm2EmdgjQkSI0TtaBsEmRI1IczjTLXY6\n        ycFv3UMvSQPkbx6N8NHQQ49FAE9fGD5cB3FrshymIwXkrX+BvIbBnZcyAhZ/sxftw1BxRDbj2okj\n        lPlElNk8+ylIJvTQUibjPLNb5IK6ZvyRhLeiNowkhPtYZjNAzT8DvKNzRYjs0dFPOQnrqfuk257u\n        iQ3OCsCS0J+13JwHj3hwbE6jURiK6OrPRpnxs1wd0c6e0THf+JzVmkVWkWRkcd/77DbqlROYHgg9\n        0RUkXfgZT3qhiyYj+nUu3kRz0ZbSkd6kLbptR8c5y1ZTYoRUDoqshZ1aTzoFBlAgaR7NhJv90ZzN\n        8TdPDpeJuka7WtATr0IuY2b2jCItkbRYSGdWQ0YOV/oTyIGn1rNOQVkgaT7D8RMmqygoVATK5gcB\n        NZREkGdhDFHEXzJA20nEZDYF5A2NmoEHwkvO6Rciu9gGWP4i1pYDD/NexE0nMM08MC28DmSBk4dX\n        f4b+lCkr9qMzcyzLsRPyn+24OlwO/9AxHY+xMFWuT+VJ0/wayZVYZTtI3nhhtiB3JR3x0BBk2MBL\n        AksHOmUUxwXR3DQYuq/PHewQbXb+W8kStB+S2lcGJpKKB2sX7WEY6lPSaJZvco0ceRLUVvQ8IUnq\n        6V5ZwWA5frUUEaL+hxssFnPH+lW2hdKFkRP/Mw0wNVt5AyrFwsayK8WkdynMLJW5JOqbJaLl7VNh\n        J5kt8YRFa6M/xXigc1tlOhBiLenijUvGfIWFYMoNR+zuMAw/3SSmjxeOGBdTo/wZJo+EyxZnI51a\n        6ILEfkOMUO6sHJ+0pPqYK72KhgKE3IYpiZ3vYL5cnNRJeYd13hC4ylVo38ijcAMYE6F3bUsBhmgX\n        cjjdnkN/vBDxF+UnY2aE4aWRFCS6rSO8ONjxFEBnhgRn+qSJX5plLYZkalqvkITqBuuQcMt1Zszw\n        Tr+t1VhYs7xwGjh0THViT89lopHi86/JoUXWKvWzZc6cORPKmAOHsG3ldL9cjPUVui8YM/QNYn0k\n        y9ea7uGWUxeCNh+E0DBnzth+bwmz5MuEru0e6DUFp4a5GtzofoBoItbKOyRftCSZSR63oBm3M+c+\n        XstpGfChLrwHcy+H7KWxqSkiOpSEMzYpzxshDjA6DwBpvfLx9twy/Lmr7+ot+CZYGrHB1qha3CRb\n        xruRVBk1/boqGc/la1dMREiV2hS5AK6foZkXw0pGY7Jy1MK1CXmENlWGDRqL5BvwN3O7iYgqNq4Y\n        69bx58xYnWkUYBmqZLqLRKfsONewZSRmrXOeJeFTotfM2ST9iRwvvIkTuLnu0JKsR3KPNFDCoPoM\n        hGBP5mgyD3yj4G2MhvSTDDAa995YwLWkY+wH7yE1u1wYwGZsP9y2wtbXwfQRhPMsr/SfAHtI5o5j\n        5Qkulr7CR6CclsloPx5aEGucmpWHKIyAN4zdAOne0D3cYmvFXmgMbh9QQ9NUMtgtfhlGZL3Ra2rs\n        HSyFwczB00bKOKs9n5vzALRQOK9Mi7TFU5zkHBTKzxlCafiMdwo8mKIG0rtd5sEvNNudOfChwAho\n        Mbt3xhkJGY5u8bkJ8kvPD3RQ6qJjuEZYoP4kGbqgNZowzPbCQnqsNaN8sqfMv5o5TM6ccKiywoY0\n        ca5sgb+qOctb5+UntZZwKruGwVXH5yhCo1CQaEPTtsI0ga/DaE50rDDDpZh5bhekOM8I3aFy2wE+\n        VnoxfYsmp0u4bw2kdDU6chHR85cDoW1lt5YNMeFB5KocZztS63PXcDzHN8bAsGo8hIx3JgMuCE92\n        9DoY9fuwWmJuANMi++Paaa4cfbGKrr84cPGm5WFgupA48lnLTrT39bFpmb9SBCNQ4MSQ1FzhHZQ5\n        UTCZBBbyKj5BqO9yI1w6sIhb2a7NqZTjJ7Y0MUYBWZxOfMxfyZAaws4V3Lg5T95HHlJ5FrgeyqmJ\n        +QQDj4OW0wifWoHFTA0ROK4DSMnGqc2jw5c5ohriJa9dATp+1iUPA8YXrpyF7sX9OiSbGVGOxweW\n        m8BxixGJ9FveYZOb8G0Uj6p50wjVRZ4pm0VcI90BMsYkNqyNY8vHXnZ7jri0xEInNWXCks26zGlC\n        TBhKNmtBxDvkFe0FC8lZv3gnTndIBekx0DFMIRucFFISTaWBE8ib6GMr9Wi4QsfsmQCUpcjPmDjB\n        KJNA0zMFdYG1Ywy1Cl+XwGIeE1zfmju1CYgkNTQB2ii55CxzNPfAuIcL3tXz5FyGHbXgsZ+3e29Y\n        lvreNKz8JveBW2hWPI2cQEKg1jWOTZvOo0r6JemR2cupsQEecQDeOFuUjyGrEXVqsAE99oqoL6kW\n        SqbII2ldkVaUu7xLg7/JnhkFUcyJVuXjCzd7NVsXrpU9WqFiePrPQEd5lAGe4UjFzKF3uj1DU0Vo\n        Hg9z/5Yxjmbk89lghhQe+XNs1FRkrUu1lK63dOtckxg+ps516yn+BqBmPkjngZLf5dx0J8HCNgKG\n        6VTPwpRH1DwzByVCUvBzEhOZj8OpXxLv9nCkKNnBwshrxE7rKFgszJz3ZxqF+bO7LFQp6cqNQNSE\n        dxszTIFu8YxvAlPeJeWAGKHxc+BPXGeZ65KWGKyWt3eRB3OSjtMWHyZ5hskUcEGMhE18/6QcG6lk\n        AhmEnqmdn+nT5ANX2qZWOEI+bjIFx2jCokYMe5uOfQvi7IKVYSxoFUNkXj4BJqqEcETUco+F/fLk\n        lVNuwLjHZHTRSj8YKw+zStMzsOOjLzIIJl6+Alyka+RkZkjvd46gwZO1FSd6WEds2demQBeX1Q2j\n        xM2e1aeEC2lWty/2xLE9x4LLlwpV8ceGLzbcVVRy0TfpB3bOxFKSRjE2/id0JOfyxmd3Mqeoqp/g\n        lxV9IpJE3kMPGPgwG0z8wDWU0xkME1j4mWzAFuwkTXoO1MtRfgvXAfze+Kiv2AawalVToeZEz5Jw\n        6Z7adpB4W17T4xaXaptyJ5ETOwx2YNf3tCGy7Ubx3RibusFkJGLFm4UGQv5MlOi0fkxysedvDBcm\n        4mpsgAh3A6K3tzSIKChIeQI7aq1ASZjhEk7RBATff9TdZxa5FgoutJ4Grh9NfYaN4gqDJNmYiYzr\n        WsGQMRdNESyQ6BZCCNq/TSsKvxnTN8pMdshN/ObJsnjitzAFcoieBtpFwneMoiXndslcem7rECSQ\n        ZUyb1RiREqPgscFXkp9JDDxGOZAfi5PET8Io2EAdOvkjiZL45V8DOLSm4aFdzMZ/uIPlrenz02ji\n        841leVQoBn5ylkg0NNhoqVO1Vel71CyR9dme6a/iPyHHChZ5v9J5j3775Tcs1xcvqHg/NxRRBbUh\n        qunhiy3D3X1U41G5DIs8UtnFmjKmOEo4Blh8kR55DZAQ4DKAlpYzAxZlCRMumk5gPx55IciaAgIY\n        dXtEYy6vAfNI3ywwsf4UTphp4RqQTcK+ohFtAboMNHqOzp/+DK2oeq2oARkr/FdXFFifJ8pEAo+2\n        TPxBwYNso76Nu7EgvoJ3MY0yNkPgp/QWBqjDReqKS6Z37pEkqmAqHrQ06n//uw3/u5+bXlhI17Qn\n        VoCxLggXcQ6qCqhgAT8Hy1SKFQPqgXXq1kqH3kvX+Ycx8fmAsJ9YvfkhKqRLZTGxoK5c5taHS+PP\n        ilRp899nhsO+hPEeAZP/PrGcYKo6sO8LvKGLynB+MJz7T+/fswqcWJYRiyE/ECqIZrR6s478buE9\n        +u+w6CYeKhd+EJVDj3gXKrXp8TrZYSVD/EmNfqrPTH8ejOum06AahI1nGr/hTebGQq+LEs5rOyOe\n        VF4bOGOIXzi86IIHKHvQJxOUCLBAaawoqlgXPv/7D/HD8mWkvmB+OGkzTRtoZsGoEakHi1tS2WYq\n        Cm7rnj41FodYGJyDVhUH3y0+yxQIt5ZTXZ9EJUeR+Fg58InJGBuVF6Xa4HCNNI7kssFUHvxiL+XB\n        JWrdR4nwm9PR6cXltfLxw73y3Gxqb1ofnK+tRI3wCJI07GUKCPeH9Sasrj2sqd2e+Ch929P4p+Li\n        uS1opDZbaqsZVsml2rnpb8uXzsVVwFd/ub1Cm494w0GZAZZWE1Vqbz5go9Hd/fW6wrmGDoIl7kwd\n        0Uu0bHhTr4F0ZgDq4PpUoT9IjguvsQCRFyQETyIzXrGWgyVXxy1TEdd3vfo/llY0N/OXbAAL7jQ6\n        Pa3VjqZgS950huRBZd38cAkP85mPlNworPRbZqapY9Ydd9bQmvVuszdsfBi274fvL4bRwCgc3jtL\n        ROZyvsouJryfssG12Ay5JYRTouVXfmh+Od4JvZwonBQ9ZQbnHiQvX6ADOCJJeLqvaCBZTlQPExtP\n        leP/aTehH9zk5q8OBTvAeI4VMBEUiBomnMKwJi4H1INH11mwkSb6EsXZqfIM2j/KaF9H88D3Kf3x\n        VHeVaCdY1hrHjlb58vLSihOm5/qLxolyjGfqJFeyM8IDuV/xLjr4m8h2fBfUCXkvbiXecdEW796N\n        BDQ+9Xr57MPb08U6sohkwam+Whg+3OxoI1Hpsf/ghMIkjJV0uCfElhETs7glfqU6Yw/lBBIUI9kx\n        8AwmMq4kAe7y8+ji00i5QNr9gqHvrMGOBccs0t6HBHlB8wgzY8wY+qbCZHK920qVfD16xnrI2BF1\n        Akb9q+66qj5+9KRF4Z8oPTB4sEWDDQaXZh3/zKbtZ3v6b/zX+C3BZkFc4jwSpFkoV8R2/IrG5DNA\n        n/IeriJu8lH+C0ZS+DGOs+mcDtwaohdMRWN+cJ1giRYZaZwRuzRIBccUDy9w6Sj61Hr06jD9Nwwq\n        XIU3i7Nk1ZgBj/ySeeBCEEMkv2h+E0gn0skgJbl1DvnsfmcYMCW35uP9/e2oYCfY71/uPu0C+RKm\n        HRBWH55edHdGeJOfOo7e+W5g/FZGkRrUtXa7XdM69Wa/g+pUu97s9vq1Qas+1DrtYv1JGw5AU+qr\n        Te1eazFN6b9IgWqlvy6vQTFUJF9iJM8C9pZy6xoTc2mGjwg/6UusAoSeofyxxQIu4RvrFKydS+9F\n        igfgutP4fHdzdXF6et7QBt2WpH3A1wp+n6nbkFaQOOOMkCZsnUqoMoTSFclUXxk+I9mZnReAyLbw\n        wjtB33nyw+7A1YGimJDndJDonhbKN/YPpx9JjCNO8Igvk8/4wAN3j/dOWZi2uQgW3Or7jT770cbV\n        QOST9q0GXXHblnzbatTPs50XhTmMGP8MTCA3oOG6uJN0uNd0dN5A+zbfWXoCWT936cnYT/yk+g6I\n        rxnT4WGOrSbEA9c/1qG+IelbXBVDE7mHnMLGlH7wzaM+MRRkgY4b2sxRwDaJv/6ZmfPxzXUZuEsH\n        2LLpAcBiXLaXBtYxRmO98jIHKUCxHcW0PeAROBuD3PhmenBBoy0/FCDI+spM60t06+AE9RfdJm98\n        raYgA8DZOCY82qZLDKVcAfgKM7XjwQCMAcc2AaSAYi6AurDPBB26cbUo9QPeUb7HnnUmTSHGMXuv\n        coXZaFyEiJmCCQWgeUTaDm1InKXSDsIIUxMfV8aBT0AwFou/3Rj++cV7hdmWvRq9GVimbvvsZiON\n        lPOQsIbwBJ14js/fn+CW6ExdcexnfErGvKvHXMlTtHrvhG077PrkUWpDnOAk6y0jJAXCu7hpY2v6\n        s/JRf9FNkyVxCQAlDuZxd+K0CYv86hmgRiDkQg6LiLCsxDnDa4iT7L+wo0BwHxUrtNTtQVLH4IdJ\n        MDbehUwC75HnpaSB89s3QB+6d0e3JGj6vksN8UtPfGs59kzIEXqMGyARMe4lvoifdQTCsKwHgGeO\n        KSahPwjM7/DY2Qo61fGPuPWAP4Dck7+mdwj8EsaZueb0AUTHpQniJ+gWjDYfQtp8INpEcdKb67i+\n        rx2tNmj2u7X+QOsAF5/MA6Z/xr+ewnSRqo+Tw2R4OX47SrH+DRePN6/uSxjXg28m0DrdvRztUwOL\n        2XsPNhJc1g4kG8ibAaObfgD8ZuLANU7pjxmZ4JGeJlvJuMlETD5acvCRNf9vBGK5RWMWnaI1899j\n        S4bPZdYsmu1h0VkQ4CwvRu7hepo1Fq2slYofCo5Y5k1Z4mCBYPI7PVfZK/4N5b1JPgNbLLIQTN9m\n        YJeki7gcsTVO8dsDRWnWMlG3ADktF5H89CnnBUeTfixzL2QIhGUuBd7rd34vZC2esG/ab4R9Lppv\n        iH3e6/eO/YzFI/ZhsIexPfXSWxDimyYkScpTPNMGXUAbdkG71uB/Svg8GV9VK76aVt4q7GfUVnNR\n        lQ/UI6hDBt2JhGwQ/mr8O5INoi89Y2HCpvzDcR+AAKFvrw1obffxN3nDIgEhGxTpWkWx1rLQrvq1\n        1YVxejARLNC0URw1HjDAwsfEVQBCaziot7r9Vqvd7bVroYzw4Dw+RIrDg+OaMzwFnVa9W4vuVGw1\n        Yf70Dyh8YxzN0TtVa8J8ErqTuCUrR+phRzJRCWlY7vXfR8QDGYrgMy7XgPsFJiM08m0QFpzIqvNV\n        7XR7zVYXW7Vb3Va/y7ARJ8tvknyARBktHi0NwjD8wBzPEBC+G4E9NR5N5qnIQbhlXY3p+R0+wf4v\n        9rgkW1OgAak47Bev8dyst+hbNPbX4w5H6Nz2MGE0lTEnkF2wBp4PhjM1fHNyJ1bx3tWJtoGxmEvP\n        QTUks38eZZagJNzhCKES2thAX8P5rkLRL8FTcW2my7fg3ZEQPsdj13g29Ui6ozcEMZiQnYvHCqX3\n        xGAg/bNn5THHXIggICi2IjtU6CSMPYEEhFvFmDRZAKfM3AigvAP1vwVzBT4+8/krfAy5HX1AdhRC\n        zRT3c1LXz0P1/bg1uj0hQUrHDfOFaU4efDBotdcMzoV+oGkN9HLBI5SQR6RxBSJcAH1bXfFmKM3W\n        KT1bC+1G5WfrNTNm00rPRqxV4XwqdxLkXxnTrNmfUIUoPQ+ywIx5eoXzXLK7Au0+2bMADbjSJFkz\n        9AtnuOE3zwZT/FL2IHPo00OtP8WX8hkWMBYPlHOEbxIH+Fx3fQNzBx2RoX8l3SCr8AZRS1wh7eaw\n        yVp1hoMOfUpdIavqCqmukOoKqa6Q6gr5ca8Q0AcjnY85hvGl4lKaNS11LYzMXw3xrP2nUJ39U/QO\n        JtRcaeDwNVm6gzZ7SU5C0eqocycgS0AUL2M5+FJGc4cqGXuaeDJWpAUzbR31YHpi0fk78y9bet6h\n        koyaXeO5tYHfXcwbosDtLvetl6JmNPVpoaBCnX4yipzj5q5xkA5xCFflBLdDZJZxfJtgyLb5bMBY\n        C/EqyRt7jfGq0QEKllzMzs+Vs78p8OWu3doEUe7Dle3j3eXpOxagdxc5LVwiruBkYMjZKYUwvqlf\n        Gy54W182XFCZ8AitX+9o7WG/VVO73Xq3AzIn8+wZtkAArbVb9b426LQ7v9S+qq1uvd3Tuq1BTW13\n        6oM2iGP9WrdZ73eHw+ag1u7Xu91Wrz2EtvD7sNvvtaGpptV73e6w2alp3X692e73QdBqD+o9rdUc\n        tKGtBhO3h60uCHdqC+T3LgA1qGn9Vl3ra53uAD2O+i2tPRisC9HQWir8r63FQzS0YfLbpIPR+bl6\n        9je1Qw/TsnsRIZFCMwQZoPPQp0+gjRR4CjGfc3UJv2BEYj0Acp7XjWnQ+J8xBjcvTLuBIzcwLP5b\n        HWlRjliwoyjHR+UaupozKsK5aQzDm4Ua1Dq9ZnYk61dcZujbsClSToTqqOjmIuapgv5sik4HEr+2\n        4bSjy8gE65GRR4whHVzejrEDy6ScCPQ1LJp5rMB+W9O6cmWQMR6lOg8uTtBY4PakE+eumJ8Hw6SI\n        NOWPETUcAwRA2Ke5Knk8kceHgBhB9B3HInh9DFtWKLKCrQALr3LgLOZA4gUeWoTpb4ypnkXrSMJd\n        FOoKfwA7QNcd1cI4ZOE6lIOkmowh5tcUeMK7ZDDkQbZeLe41ZsPCMZqbDkYadXVlxCPv0Z0HsZXl\n        yMKCjy3LeWFxwCTCMIESZWySgdwVX8XM1e3AwhRHq3ds+Vpd+dd/ZSz6X//1Hbr2ATmgF49lPsGS\n        5pjd0Z+To1qEE3Q64kjAjAZSBDUtSR2vVPpA+w6zeei3g4hDryVpGH2G2UwwINoHQQ5wBmr8HLCI\n        8+M7lcden5KOSwzyFkJ+F6Gdge8AixNR2ASDl4LcQ0IETYHQqsAhglYGeprBrZgLSZ3lOmDkvIBb\n        CLbQ+GeAQy6pJJcD9I0Oc7Dh6NWOyRWJyboB89JV5pj3z6K2LgV1s2W0cRlfkFhwAXiRQgPaLUIZ\n        A89GAuYn1WDTu84YSJ2TGTSE+adYINHC9kAKNeVlDpwCF4wHzELrkgtUSokxaBXkAWVZ4pigc2uw\n        IGA5aB0E7QbHo4xYV4ROhFIIyhgADgyXnQpGxXbYnABBsODk8wHfo/+gQw5nUbQxORISR0DfO6Dz\n        pYV5RZVnE4ZmHmLI35QXY4xzbc8V65nRSgSmh3LFnsOVgDbHgodGTERkEiBPGjo8IVb3DM9NYqf0\n        xKaS0k4QLcNTtX8UrT++8QObOqgItvDFnKrR8dl3MJqYUj6x7BhvFJ7GZfU3jUubky4A94pepB2P\n        dnQlxq7AnKsvFW2GicaAh6lz84DDzSIgK1V7X5j9IQPO4tS9x4izazYR93D+HrFm0VJfGWy2iC1l\n        6zAzPkwD4NllnFkc0XuKMFtkTvK7ji3b0Xakgsuy92PjsLLtML7rgLJes95udns1rV8fdjE/h9bt\n        1Pv9Vq3Vrne1Qa9MQJkGw6SfAdAO1AvNPVsFlIWs5UeMJOu+IpJMkGAVSlaFklWhZD9qKBljf3/O\n        WNubhpLxi+qQYsnE3fm7CCYbtmrdQafWGsS91uVvN3Fa33TtBxxLloGWPJz8GHFkO1jwFjFkJeOb\n        BGGxyJ/dBo/tINBpT8eoaLU7ChyLT3UwkWN7RegbBI7lMsJDjBx7q0vgzQLH8iE4wMixN8P+1oFj\n        CWhbCTirmLAfOCasO2i2WEyY2u1qw1YVFFZ59Fce/ZVHf+XRXwWFlQ0K67VarJHaHlYhYdUFUl0g\n        1QVSXSBVSNhbh4SVfAveUUgYV8TxlZ49FR9mMFj+c21GNBh/9E56rZGB4bBTpAsQK4+1/eD1h/RX\n        k+l6j95qF2Sf++7p0cVqX+mwNk2vZmuvNRpr17nRM9C9J8e1af5Mv2vvtZ1sS8p3rWBfNnZgewXm\n        DzEtupYZzI5Bi83vmhb9Z0PH0q4H7czWab7Cme0DSD7ouxK5KoXvKS9s7UqkH9Y3cmoL3U5ENF4i\n        xC0a913W202tlBsbSXwvGJHl6lMzx7etwNUMZV74a+bPK9+xynfsx0pDTsdYKu91CM5jO/AU2+oV\n        WusMe93sFKZt+KE16OBz9IZP0T9UGvE8FPzAScQ3XfK+U4hv6/Z1WKci150LGIuViygvC0leinus\n        2GVdhJRD4g8C3PXObMi0sx3a+C9pLrq1S9uhcdAcrzUPRLpcjP2cc65+Th8r3AYWGc05NcijcOmC\n        0JAhPf4OL6FNVrcXZ8AdeP4dGkm+mSvfDvz2Dg532Y54qCQgK8t3i0scWlQySCc5vvj8txN87XPp\n        BYtEffxdQwNHqNp4fmp9iVVlrybrRG019WaehmwDWinEV86GVQL6ylWkchWpXEUqV5HKVaTyNawS\n        0FdXSHWFVFdIdYVUV8iBeRuWerPfkbchmRZ+J/nnmaOHeAgW7+j08lg+A30iz9ZBOx9GQFbuh/vC\n        7A+dMG/vLojCC/i7OyFGK95R3rzdOCKKfG07dkXMRPues+j9eO6IO9qc3GR6u3FJfBX+D9MpcU+p\n        9V7plFhl2Ksy7FUZ9iovycpLssqwdxAZ9rIrw7dqGBVP//njZtnL9jvMxcuP7Gy58aL/yNn29nWk\n        /tAZ9/aL1Crr3ve7GKrMe999B6rse5VDXOUQV3kzVN4MlTdD5c1QeTNUDnHVFVJdIdUVUl0h1RVS\n        pd/bZ/q934NL3EZZ+Io94tjbpbp0D9ghLoSx8ofbE2J/SHe4GGnv0RuO+xtI76zfwxUuXO0rPeH0\n        1Gq2doNjQ4G0vlMvuDS69+QCp+dO9Lv2f9vNrqTc3/K3ZWPft+0Rv2PHt16/PhyCoKj16oNOp1NT\n        e526pg17NW1YH7YHrTJ+b/1Mx/7k11v4vcX5zY/o9dZ6hdcbJ8fK6a1yequc3n5UpzeJBWbVlhVO\n        cPt2emNH4ZB83vQYNzhslzet1mprtXYv/qgufbnJi/qGCz9gX7cMpOSh5Mfwc9vBgvedUjBBXbt1\n        dTv0s7RXNzdZmjgcL7d9oPPN3NvyWOEhere9yR3wZm5tuQAcoFfb22B+a3c2/mBwRKv2TBvkfW3Y\n        5fHyingHSK4osZbK5+2H9XlrdzrdPnN5GzQHlctb5a9Q+StU/gqVv0Ll8lba5U0bgkDBCs5q/V63\n        8nmr7pDqDqnukOoOqXze3trnreRb8Y583pi2jg+07BnFxZfkw3R4y33NzfB3k9/Fs0vPHrSzmwCx\n        8nXbD15/4NKze/d0Y6kYv7Ojm1jrTgrP7sLNjdU33bGXWwrVey06+6P5uO1kS3JKzu7Cw21rrB+g\n        g9veqs2+ysGtqjVb1ZqtHMoqh7JXOJRJOdQSa61qzb51rdmMR+p27Os/QqXZyiXs8FzCvlOV2Z2e\n        h99xjdkd84UfrsLsHvjmH6u+7M4J7A9dXXYP5PgHqS27D8ztorIsb03vDoq2o5qx6UGrarCVI2Dl\n        CFg5cVROHJUTR+XEUTlxVI6A1R1S3SHVHVLdIdUdUlWD3VE12MP3A9ysFux6T8C5efCegHOz8gTc\n        D15/YE9ARtd79wRkL+Tfzwlwbu7ECZA/9L/O/w9g2b3/H4dsn65/8Sl+AK+/V25EjtdfHE1bOvxt\n        hutdV3HtNevtZrdX0/r1Ybc9BC2326n3+61aq13vaoPed3X2C1lJ5edX+flVfn6Vn99e/fwYt8nK\n        Gfem1VIrP7/km2130Km1Bqln7ujrP4KfXwYS8hDwY/j57WDBP6if307Pw+/Yz2/HfOGH8/PbA9/8\n        Y/n57ZzA/tB+fnsgxz+In98+MLcLPz9Uw0ClIA3k+OLz307wzc6ldygS7PF3De0YoSLj+TvyBtx2\n        6spnsPIZLPb46A6aLVYwV+12tWGr8hqsPD4qj4/K46Py+Ki8Bst6DfZaLe402B5WLoPVBVJdINUF\n        Ul0glcvgH8NlcM6e7X8Eb0HugZB0FOSVgQ87aWAEZOUsuC/M/pDugnHq3qPDoChZ/Z2TB0brfaXn\n        4CK9nq0dCPlYu04hmIHyPXkSLvJn+l07FO5oY1IuhQU7s7Fn4Stwf5DJBLVephQDX4tqP1W13Mxq\n        ud1XOBkKgqzK5Vblciuvx6pc7l69HvmNdUj1csUl+rsomDtsZdbsa22ZDGjTtVcJEv/oCRJL1nQV\n        hMUcyXZbLHcHxV33dIyKVrujYrnxqQ6mWu5eEfoGBXNzGeEhVsx9q0vgzdzu8iE4wKq5b4b9rQvn\n        JqFNwlm5tVWp8CqfhMonofJJqHwSKp+EyqmtSoVX3SHVHVLdIdUdUt0hB+bXVupFeEd+bVwT/10k\n        w8t/tC2bCw9Iy3BVS/MP0bUtBK5yads1Rsu4sr28vNQDb+bR4zJ6yajexERRSGUMzWvMp1OP+bGl\n        fNhuyUtLuXDwOXnXrmsxqt2Hy9rp6P7yTrnS7t/UQ42Wta1XWgRyiURgAxDrh8C64d9hs9grB2Nb\n        1GZbbXZCHlxv0v8xVtzskYuxlv61vI8OwQ7ffRl9QOH/5nR0Cv+MgKWBLElvYR8Ai7q1zv0GwHYl\n        x0t97AQ++1KNXBQ4niNfGT5d2k1GAJ/tiWMtp7o+iU4IOXXODF+l2GRjyrw8o9OnClJsLEzPk45j\n        +H0EEkeEDBJ3CaqVBW/nrkgkI/D7Balk5k3RktyttYmIgOacd2OdTNJf+a/wo5jlp5tPdw9n8LOG\n        pk5nAdesMO+iFGin3NyeTc/Eg7wyMBlZQzRC46vhPmACBZ7B412z3gUZ8TGwrIcXc+rPH+a69fhA\n        j0NAjANETS40rRQ0LtMQM2Fhv2WC0CsAoVcIQvsmBYNtus1BCgqbvGDsR1cvgGPQKoMK2DIBx+hn\n        DkcnBYb3YrpaLwUHSSIqpbAohkar97q50GiFwHQzgWm1tgemVdcKoGl2CsHp7QGcVnNrcPr7AKeA\n        gLuF0AxeM227Pcyft1847/BV8w67ZeYdRvPeCwbWTGHfAuyngMFQE7RIFEMyqLdz4Wh3C+HQdgtH\n        welYA0hrl4AM65q2LSDtXQKiAVPPBaSYQjo7hUMrIJE+Xstw1fto/iLZEKWdI3r6DAUe/J7JPCjp\n        xWFAF82vJH9FPn2biFEnkvNnTbH0wAYNF1VtdeygDQuFqz95ytd77J47xYniCWEPHQ614XBYk7xZ\n        A8s3vSWIUS5ia0H+uty+cInBNWia0boLEGkXkkdxXVGYUMx7CC9Wk9kKydGT1gZgo9mNu8fGfHxB\n        fHPcmgKb8cxdjMkdGB9wyW8UhGaPnGezfDBdg7uxehyQryCeRzhICpBMsGOIfQDl5rnZbANmyC+U\n        fGVJFEeJG1YGI4l1zZHfjUE8Ugirpq2CuuGSMZ1pPY6PXvzoWqsrZANSg6Xy5f5astfDiJ8WoR80\n        +nxOLCeYqhh2sTB/hd4fDOf+0/v3EfioHk4c0PqZEyp3feUunaiwP0SaE5wM/CceHSEpL/C7MnrR\n        KZUPORWkZcmKE1ec+MA5MTDXbws5jaJsyMFfJAVLeHzLp+A/r69CT3A0kaKkI43GbAG++fj4Z0Ua\n        +d/hCLIv4Tg/mpbx74mjmwpLkqbEKdadvPLKwgGpCgelKByUmvD9lITdwvJKzWHHwBSrE8gaUOHf\n        82nGKdad5nI2mYTVpTLNhKaZhBFm5yYaJJV/6qr/zY+9jn3z0aJHr46Fd8hfT5Wx67x4hoLEkwIQ\n        pDh8GTQnyj8DHcTtlYJCmueh+I7yKhA8vc4BBGyYFMX+Y2msN0avgWJk2jPLUJEylbGlT55ITn2Z\n        o/gPiAsmxlSODORDoZ0UUDBlEVXQrqYQ6TGZfGwFhnJ89+HsRFno7hPGmuGr14fzWw+ji6fKNHDx\n        FReVhlmIBRjSfORHL0QJaDCTJ/5I6b4KDyN6yrccO3NdKBXDJM/2K2ehY1+I70IwiDGhqb4oDkv2\n        WxX2861eRFEzUPnzx7O2waMozerpRe+hqMxyla+MUko66Z40z5giyJEn1MAsjS6VdYSFix52fbIQ\n        xuqBdk+I/SFTjsRIe48ZR3iI9/erURYu9JWpRnR5IVsnGWGj7LpMWQzJe8ouomfN8bvOK7KbvUil\n        FcncjI0TimyF7kOsVdbPzIiW/PoNa5X9LtKItF6RRoQTYJVFpMoiUmURqWqn7TWLCDsKJ3XloKqn\n        6TGOcNh5RLSsYiPalqVGNlx4VX2tqr62QfW1BHXtNpfIoZ+lveYSkSWKw0klsg90vlkekTxWeIhp\n        RN7kDnizHCK5ABxgCpG3wfzW+UN4hNYRrdozbZD5tWGX5xlXROBVYkXxLCNVkpGqdlYVIl6FiFch\n        4lWIeBUiXqUZqWpnVRdIdYFUF0h1gVQXyGHlGCn5UryjHCNMWT/04lm5b7klSmeZjmoF1uQQfdc4\n        aJXL2m7xKS/QsMjXIzWFZT4DA9F9S/fqujuZmR6NjOF39MDYKOPuNnENWMazwfyy2eMlb+w1xqtG\n        Bw5CloNY5CVzfq6c/U2Bdrv2b5Oofh9ubZeeaypaU71GkUO5wr7nONKburbxNQqPtvWgLYypqT+k\n        XN92naWkJSogRimhiItrqa+T/j7n5+rZ39QOPRXL3j4850jtKLYc+uMLEeYI389tY21aEoyUNABB\n        RCuRcw3iTParKcrmgUOYi6U+8YVTp+OuEuN9ot+Vz1GD759CJJ02xCU/bikqxXbIxvsObbaMCh4i\n        fx40ROIQlj42rHcTi6IVZOkGbZrht2Ks2hE9liF94isBmeehDfz7aDkO+iM8k1s9QL3Eb+HoB2NU\n        6QLT8tFxQSf9joQbfHtrmHQ4KRLHwzWlwqgZrUheLSjVN1UCjYUXB55BjI65UijHV1+uziloVkHa\n        rcUdpC5Hp4qgLrXFHM9dclHRCh3NX3RPmRkYnIyeJeOV8jVNFKEPSDY9ndSUl7nDQibGJuhZ6EQC\n        q5kjJ1NpH+CXpfnNsDzleBKEU6EkdkMXDCACVFtA+XIOetPImZiGvzohpxwMTwbhYWoYS8UydBc1\n        VGUBW2IRKhiCEGlhVAYt0VBmDMHo+4qL5BRME+PVtmKhHYAKNhh3AJJwiFhWPCB2fKIWtxeKMtju\n        VlA6HHNO6hneMPARZHNH0Z+BExI/592/nrqTD59GyhXdb8opXnBCOP3Zca2pFPS97goUfjjpIGp2\n        TPYQQLZJ7Ed0xe0j+qNWYgjGQLbtTQS8YeAJvzXXS8ycC0jHXM41IM56+hhHcvM/3Ik6814OUW7m\n        oFVy827xKc08AdTC4UhPIXnras32oGHTO26r2R10yibymzhLA7jtJPDqRtAwbJbVQ42+bpA8ZXMG\n        Dj849F7MCC+UnMPmyuelYSunE5Qp9hQtIp2FfUjTf7k7V/iBHXGf1p+51BDx3FlgTo0MSZpziTrx\n        1vrMcWaWQcCze0p4yaokh8D+vdiWo0+9B92ewJ0Ka2+gNymIka73Aad4RsZQX05zKI/9UBj4SWMp\n        NFjKw588VwNqQAsiRElNxF1FKBn9HDpokg1lz/oE3+WkPhGAaIY+FnAf83R5yl8cIFHlzvBAbpjM\n        lXN8ITcUNW8TX6N30Jt2r066B/y3P6g318YbdChLYkr/aIr0iNq77hD+ty7ewJuY7+C84x2ccdpz\n        NBSxZlROPN1fp5BkEWkd6M1bOn5SSSm7ETkZFIujEIxnw0KW4slHiAWvGfYMRA7BDLyGr8+IWCLQ\n        PlCXnMiEHSszsvYUKTaZt39YbZ789URSHybXU9xoWYzWIpMi31elW1P6LA5gIJQCzAWkr/BomzaT\n        gCXxVvBhmtiZgLROrLGmTOa6PRPRBobuIc/H0GdgBHH4CWyibuJQCgnIloFe3M5EctZH4cZAL3sL\n        gSFROZSSTS4li+hCwaciqXhv7PQkOx8RW/6eszF8DvGtnNN8yiebJFJ/leLQvAFgiqE92itlbPgv\n        lNwJUOi/ODzuAXQv2hUMWD6hbTzmwcStJr1NRTxuj0u85n59xH+USzZlcm1npo2aFQZbTFDPRCJ7\n        mRuYc4evFjU649lwRcCGchwnO1pQhJI327fUUt67xj8D+GXF4jFeQL+dS2sQ4BP013SUcQ2ojV4Y\n        EwNfE0kDwOW4xhst587YZjmuAZeOzdkWRc7AIvBfcviLOMa+8xNJMyWhvwkIoUBNlLMdo4J0P283\n        RIQQKWBZ++G7us1SuXl7XtO9NFOKDwD0M8dlIVUhT4izZFAm/MCLODMuh63iNyY+TIRzMwi5cNGo\n        72HCiQMs+dZ4MqyacmpPXZCWzx3f1xc15cYxLOUDCGuwuif4FS5KZVRXzgzrRXenNeWjOZurUogd\n        d5xExM+yrjxkRibceOjPqMIXC74Sr472IYwb7XaaNaWjDdROq4V8S+udHJU3QUR6wVYmCEpi7qN9\n        aVsbwvYpLDa1JMQRG0aNUeZCFOFXILOYk0xaEBYFi4kO6kCdtFSrdYiWhQSIlYVhP3j9fef8z6Dj\n        fVgFhKQ9UKLzobSUK9RU1NabvrTxFW+bO0JaSWvnr20aFgRQtZi2aweWVT6WXqiqJbL+144+MV0H\n        Pt0Zj7grOm7lGi1X4G/mPU6i1Civzvu//ojYlikmD8lWqgMA5MuoKewolMTCAgBpjfo7vN7JSf+1\n        ZnbWfznj3t3DWTq53MTRgV1ZKeEn+j4zb1qnk583rZWZ7w9mT2eRw0RhuWnk+I/Z8w/K5JFLzN/e\n        sNzB1sn0ciHo7CyP3saJKGH2blZxg8y8eeravHkFq2/nzd/bR1WDTUssABx7SdmfC0d0HOCQRnDc\n        w2nMzplMKYzTIb2l8NGs5yfizMbH/cP93elFbhZeV8eIp4lxlNP5S1bnYPkC9wZmtlvT+xTmvkl1\n        1/2F4y3nmMpAIVWQm+byRjm/+DS6T42CEjrOjWI40jRI+QpphnnDXGQtBe1bJRdzef1plOpvEOzP\n        qDPndhtdFHSL3IOnoQ9nMtF8KI9lJJsHwZDkM9fLyzjPb3/pXTzzsqZkJDNXXyhzUOgpxzkKQCKP\n        I0vBJ2IT+60/g94Z5azQKX2Ga8xRg3umZO7oDRA4ASZOmcwxS4ycy+9PntC36koIoTKIZzzf/OYf\n        nFD+E8yJAncqMFg8Q/Gsg/ijmM8z8K4lqy5PWwgNUOCqKZFEN9GXqEgz1wRsgAnqATlhqkK6kt8p\n        IPApaJOY6FYDc0Tit5El+utn8cQHPciviclZ63YlXFnDiQZQ8VuVGaVPlOPPV5/ipQFweDRfikOe\n        hOWef/+JMxv03QDJpjwsfODwGlE9GkBFMgSA7j/djWSI1iTs9yOfE4lWuBog7USUyzGkGFlxeC3x\n        yGLjSTxJP5oXeGaVnebqP735kJd5NkozNgNR4dwxHh9NsqZ4lLUtbc1Kq1CaktNZOYaJydDLhMZ3\n        IeOSQoheYY6LnrBJyGycGij0WsoZ2c7PtJOjV8qyW8isv5RAWEvJhTh88pSVIo7A1t4QeIaJdjkM\n        rVJYy5XBtxCzy6EsDmMRntp7w9MHlOQFEO1SiMpXFrZQB8phKgFlEao6e0PVHfAsDkKnFKLydJot\n        9JZyaIpBWISk7t6QdIOPMOHtSMCAfA0AdUuhrJtbZW4LZasc0gogLkJhb28oHEW6VRws0OkArF4p\n        RBZolJtri+UQuRbuInT23x6doJoCWP1S6CxQjDdWel+JTQF2LjbvH/56uj9s8kmllKLKX3lG+tMo\n        ST9CmhK0skTPaL0ZA9N6s364ZaZIvlw0F7yLLAn7X7CQbZrZtMNhKGnP2NxY8ctuEEsLWIfe6/ur\n        ekGVh/BRhfVQrkVyx/KSdmZX5RgmPhEArKtXVAiFcgyNTl4FCw3AaI1MIfs6XBeRSeWOm1TESSrm\n        UJuYaDajnjyQShxLsvrsC1WXkRmoJIbWGqE2Q0wCgFL4GF28BT5Gwix2Icxi5VG0lcFtO6zlgFkC\n        kff7PIPCwrPpASxpK94MXZnAlMDQl31i6MtySx5V1iK+GY6ywSlzr5EfQ/a9wl0c1lws2Op1Nwsb\n        AeD56+nD7af/vLza267dYixcaVEtew2FQzDKY+8W+1rEqfT+cc/eP3x/ExLc9FllM1IsBq/EuWXv\n        NXszKuIvyoV4/SmJso3fkDbDWQZQ6xAFZwU4yeh0f5hCViKKb41wfnY/ver0bDhmMqglq+BWdGfx\n        hszdnuvUgKbTy7vPo8/7YyrC2BsuwtatlWd6pdECZ6ZoCGZuz9N0eZUwKRD7obhAmWTJy6nexvG3\n        Qahp+AbSevNaY3zq9X6a0UMQPlDyZ7mp0m4uZI9ZEb8dqxzGni3xZS+3XBh7gKopEhfFUgVSfWcx\n        Mr1AZXEDqbDYwhkfZDExhKvy+dwhMss4eupPen3BmqtRo9DWTDfDyHCfDeXaOfukiCY7duoUJLkP\n        T06E+51yrS/x2J2ZztQkngOM8BO6NTJe95b+nLjYbZ05cTFlnDjhGmq1+12t3xq2msN2v19rafV+\n        u9frtYetXkcbNuErtdeu93racNDq9VqaNuwNap1hXRt0Ws1mZ9BrN5u9ZqdMvpWOqnVCD9AwaVb8\n        2/IeobTGGqc9TEqB2/PFNpHPjbCEPXIkeSOLHEBhz+xoIHr2ljw/I/LewgF059WZsp0sh8NmjvNM\n        MU3HX/2TSMBiXGFRQN9xgC55Rk0gUH2pjqVBVTMc9EQ5xu05wbvJw7I8CADLxIDxIDz2BlY/hssb\n        7sIxhqCksx8ANfbgzsIQNtQr0V2FEopRxBV69XBnGLwBQT83bfTViZFATQk8bPhimLM55rXzoihJ\n        l+JlPMwMxwKc8fWU5wz1+YUIQjWQC8Z/rCjRC8ttAmMp0WIJVhkRioy1ujLiYMMFbgW8ug0rN0SI\n        JO8Mf45lhCiiCu5vmmVkLH0Rc6QNaoClqaILJxN5BhHhA30+aMoxbD958ESIO1Gwsm1LOY5/w+K3\n        cHYLtgjg0nFfMF2WYSOGXAXLGQGOUETh5Y7QFB7uA/klK5hplFWSimFeuYw6CwycTvy6cq9/c2wH\n        zoBCWe6K8QIY9Y2xSwMej004+jUgICB+Cz7oi+XcHJug3tXQF8eHlcEnIGCfPsBpmsCmWKwBbvEj\n        kPY8ijrSbX0KghASzaPpzQ3vBOtreZPA0l0Fjy3WVIKbmMlO+j8DQPdEoZypEVDSmIsA+DiW2cJ8\n        Hq6+wkFPeMwsH2QJdy9mYHRcXA9wbssYGwjsOPBhiEfLNDis3pO5xFDnqNAS1r1itIJ0incC7bmo\n        akbGDFFBqRbG8hJaFw5WkQIuBJrJ2LCcl3fhJoKQOLeBtdTYeVDpPLg6Jp5kgESnQWWniExEiaYg\n        k74XIb0IWY3FFhNMlAuH7bHHiq1NQavBW9ln4b+e8n+AVrz5nxUsOYynSZeojHOJKd9CzJ+oT1nx\n        MEqesmIVvoBAx0C7T0RCNC8a3SnTUJzgqMSV2L9auM/SPsZ2mCMh2reTEFqClJcJwZSi5qOP3hEM\n        pGjbPA4PB5WVBIMzhiSfz1+WDt7cuLGU2JImQx48N1RcBpawllmOxLOMR2iLldBO0anRW9nQB/U4\n        4mzG1JxgOjyW+AiPy9wAhqXbtuMrs0CHnYVFKIZJ8bZRVbQJ5hhV9DH/+JjBlqne3sxEx0LMacmY\n        H1KFh4lKqNUjbMIU/kXNS13oT8CQCQKBItCZAgtWZrCEUkC5wOj+EdhsYRR1+mga0MIL4IZa0VFr\n        wAwiuBzZVhQKjUPCAQ6Qy3nxGPPIkVCWXW8MH8SLp+IrUfpbtVmHnLDxO9D9Ty1r3wG7ybOYPEGo\n        oSMot0Tp3wWaBFcVEP0UHbPvA5Y0PwfplHH5T8QCvg9UmRcNwnf7M0L44fRWaz2Mvly/AW3dluH9\n        WfTGb/w7frm8AaijxH2WewpCTv4991i6T7J29k2OavnNzTi+yQ1+E4gz9zgDuCQ6347PbIDT+NlO\n        4vPtQM5G6hrO85ZccgMmlMc5U+zoLeHP5kxlmfxb86vy2E7wsBRHeGPAM9Ecg3GDxwRuadzqGSEq\n        ObKvdA8fd2EwgZXaqLnETWaR+d8fewdp/ge4KvP/DpFZKok6kKXlzOpInhSR5FmRUR7GUF9Ma/po\n        uoY6Dlxb9TA7E1oEF46nmxNP7TQn/W4ypfrOXwc4xe7ldeD+bPROuXbgrDh0kO6h25SSqJ3BipUR\n        X/HbvhDAgrd+IYAFlXkh6PXq/Wa32erXur16u61pvU5NxbqIvV6n3+vXesP6cNBs9tu/1KB1q1/v\n        9oed1rDWatd7g+ZQ69XUXrc+6GuDdrvWbcKnJnwukR2RpUGMvRZog+S3G7wW4HrD5BFfRu/ZPxeY\n        0gHLohPDfQ8UXCY7OyE+nh0CxxfRp1s8Ekx0d+zYSOloY4iGPafvUbjOTi/4/d4b2hnPDV/XH5C4\n        bSVEJD4YAAYp9hVOLZGDCrSMycZETO8L2chnDpq2PbSc8ccFIF+qGbukqw0ZkCIYEB1yRuFoswIt\n        AWvSmxgKq+PivQy7dSw5UmQAQ8s1mjRDSybqlmwoLFyG4+FN62JKBm5FZAm9DXz1sBOTIFzdgl6X\n        ekYvnts8vkLOYsN0jpJXACKHOxEsSNjkLzAmiwqFX4hq4+Px9Pih+sysaYjhCU/lOGXd2NqxWaFE\n        QUs9hUGf9GwrWZidNuHZzqtwFGaxFU58KH/Gbp49y5pnMso2EiwnS15y4E1FSzZr6Ro+2RS2yVZH\n        ciQQnKvzokCHKE/K8FVy5R6Qum2RHiYVTSk7WONXw3UaQPENy5jpFpVJW1Ozp6lou6/YkyTmfYia\n        9zjHeTjH24mT8uLqkQyZFiHTsmYW7ErUCfgjFpRW9fGjJwGv/4pbT6yp4eov8aPYgUt1was31Hk5\n        6gy6fban/8Z/jXNrNiWVloNJc/CrnP5KUViAJOYHPqLkCsp/QVeFn8kEh8zu8OXuk3DXi41PA32g\n        Z0fQ0aXOI8ajiakG+PSPb1v61Hr06lixHbrpq5CRO8sw0Sjn6WE+AZmx/ybwTFSRQSVy6xzK2Pt2\n        MNjy9uPj/f3tqAD97PdtsS2h1lka9sPTCwiELMMzoNexzCkVInvnu4Hx225z4GnD7iCz4pQ2RKVm\n        TcWppqql6k0l+ITI6X7rGhNzKVK61o4k12346ycdwFOgjeexL8QAa7SenSsVtYT3FaUcIVgcy5mt\n        LH1Ml0CMJ3EeL1SjqLVypY/LJnaPnnTZDeaCYAzdGh6SKWxHXxtq0SSnY93/1ZmBZFhT/lK/r9eU\n        Uf2/6sqFQ27KTyb+fVpXbnX3yasp/1E/rysfjZnxYoJclgNRyiv/q7yTYbmlsghhKlN05/D0xiiv\n        81PBiiSZTAVgHg5j3Qo9l7hHEQ5sYMLYKI9sqAt1Bxm6UPhoz+km9IhCuyTQCBMY4UoH8MkfCeGY\n        r6Zu+IXnB1PuOCAyA8PXBvfmwGTToGIwbwjh5CJ5SVOGIHNhqM9AlqhxknEK5E/uCjPXycuB4UKc\n        y+QAuvI/HaxMeaw1Wh3gwMwJ7CRjvrqSLO4kfG0opw6ynki3RV5XR3kAcDZ1Jh7K7ok0OjkKA9bn\n        fCeqkhJr+qeky3BWKgqq4rnTfZ8VlcYvPfEtZmMLc10EtvP4+KAveKHUKSBNKB3YENRin9UfTVLm\n        HfWkemjm9IEncsZbx/XYCihuMG+ejHKzRz9/GA06NSxn+67TbvUoO/hcx7V97Xc6NfiuWRv0Opgp\n        cjIPmFqgtWpap9Ok//wSB//rEYfbotSgFlOCMhcBM714+ahseJm4pK9lZOJd+eAtDZYTsTQmtaa6\n        UH42bfKFo76lUBqb7UDwmVwKTKkb/muJlPjSg/GM9xNdXdvQ6+nER/X1Ekeh8LGlGdYkKofvfCgO\n        BPv5SyRr3ONu9iF0PsvAxcPCtAPvYScbdi6uJVYR4sLAHF/+Zrv1OlgPZFtzEIFF43d1torwtNmt\n        IDTZVx+0NSAdygVStF7coeWrd2gpC+3bcb5JsAiojrKS1ABKbUgOBAfD9fKWh5O/GK/Fv2WCrDnl\n        fIKiCYB3OI8PXBB+wKquG+3HCDqIMjcwNGiB+AQBrS/h3kTDO8qlZfemJHQHslfllg6AwGHK3ben\n        Wz1r49jXad5G3ONhicocMJMlV28fTKBklj669Ma1QLhJKckbsLR1kBzIJmUsE3dkOX39jnAMiJVP\n        wzu9/CZcY72zOHibyga5UBzIBhQtEe+UqWfmbgX+A8phpsYi/Ra7YHRrAdQJyncwm/sP4m0H6HJq\n        fNtob25pJOWCjRS+6yqf+Ejlbps14BzIJhWvFQFwYjkBtrp7cIyHhWN6aJMS7H2zywZGALbKRtj2\n        kskD41BulcI1IgCuns+8fm4sWlmbwb+Xt0Ok6gJcPdATKeaDe3i0gm/bXCeUtQtzK43EUCw7Dhmg\n        3sOgIrCOZ1You1tloDyQndsYBWhGpxR7OZs5NWbKedZuih/k7QRUPPgxE/gG1xAvV4iXZdyMXmqP\n        0lMfyt2Tsy5CvGkfAOJN+8dEfM66mBL54HHty7ThICdKPcZ3wnZsI2sj+Pex6yU16EZ6pWKzsomi\n        rGiTlZOtifqcoraCHVZX5BN65CfC6s9hG4cFh+IG8ojGqYlZSSyejeT87gsrBYivZkuH6Xr81SH2\n        yIcj1JWf5wZ3eGKDwQfhQuXPQbTSajQiK3jgsXBC4cCi285Ct1hINqu0YPhzJ3vQZk35y92p2u02\n        LuGfVvOc/v10c3959+k6NnLeqKUv4IyNOhT1u6KCV1MBU3irM16d8eqM/8BnHCXX6pBXh7w65D/0\n        IQcluzrk1SGvDvmPesh/K4rdICcteVv+m/YD3XO/mXhKV5F3rHAcjZxJv6qDYX3YH2o98X+dWvKb\n        fmpXYQLTD8jvPXQlD8kMSes3Rg4REN+KgdD6iTl7tfRXv2SV+VwLB9GoHM7DnWKl6TdziE2lc8cJ\n        wrCbTaNomAtwQabXWolBkBSQDhrPrT0E4lzv34czCtHBv4DEscS01dIPMUgnDmEVprMXtJYJ1PEm\n        JtL/BCt52uYk8OpG0PBfzCcT43Uao4n5MRj/bIxv0RPYasAlsPDOHZula/MaIz7hwwWcggf69QFI\n        +yFqUl9OH2PlF8VEiujL7gfM9+jtOrwnfRD2EeAzCmcRubdP3zTOJ1rltsHj4VbACgD43UZKwA3Q\n        VZs9tdW/15rvWt13ba3e6faadD/YgWWVD/oWcGKcQ0hI8MflCDE+EjV14fMHYqDwgZW0xYHkHOdr\n        oiMERuuGp9dhMY0XYxx+2eA1DGTERwEGDJRNw8UxOMDwXJOoVxoMvjq0OHGtWQMRt4eCbKzAgQiw\n        +JwuaaDzTPS8FDFKd5MnTOkS1afuRZURzppFZVbjI/PvFT5DfhnWdkEd1r5ULV2CIrdsaRyEZ9Mz\n        kYcU1jTNLzrWHA6yp88vBpo9/9alQjvdbADyimxmT19UgLOoAmc7Wn5Lnr2bNbsxnWVsgDEzmLrD\n        Yt0xKSX7E1PV8i6ZgPWbBeV5tWE2YL23AKwIrhyE9d8CrkHROcoh5EFW5dEUUFjqRBG1u3Orknby\n        yz9qEh3LiBmcvgFiBoUk3s5mc8MUAEwRIFe3vJmGnYKZUFnLQIGm5dcsjQPgRbUxxV7UFHRHbcDl\n        1aCECgnU5JY91Qp2qp0NZiu/Fuh+wGzVtXzO3OpQRVG4Vn0M9JLlDybhRX+doUAR1ZZn6S08E7/F\n        QFQUSxgU8L0kNMDPKG2+wygrW5/CqXj3NS/pezRZFJW2sZhyEuZe4dKPqDESFhJhWUdcynuM2cZ8\n        jLGjSx69erTmQu01F+mgO9fAe4BZMdH+BCqO63wjVRdtS5QjWl95yUonrsF1V5a3hcMiydO6O5lD\n        5xpTekGS7CWU3prCJRZmqALpVTkeO77vLFTnUQ0LpxgnPG884rF17kihfbA7yxCBlJvAs/Wl6gVL\n        jH40purSCmYmQ2MLBPIGywAO+0qJ/mjar4lUI8oHw7n/9P59PDnOxAFFmoI+w9DBdPYUlJ+ikqu7\n        KSqUm/bkNE8wU44BDiqfhtLYu5B77RkeVtRYUUXNeyHXwTdAdkfZEucm8mLeBNsKjr8Qhlpvt2Os\n        UDEsgErcq3gic9FSUoCNDbmlBMvw0H5jPLQBaFbAvhgRZUXp+KBbytIMFZ03RkUHoMYi9cWIKCfS\n        ywNuK9MzLHRDLLTeBAtdAPqnSIgTUhud+FYBXsorG8XTbKtoMGz13hhbvZxltNZgq7cZtnKn2VL7\n        YcjqvzGy+jmraK9BVn8zZOVOs61KxrA1eGN2NIBl3Hy6W8OOymmG8oDbKoYMC8M3lmSGAPTPkUq3\n        RooZZq88Mci2eiFhQNPe+NRoyHlHPwMlHINKeFJ8VsqrqVljb6mIMry03hovrRD2Vr21Di+l9eKs\n        sbfVfBEvg9M3xsvgNIf/dYpRtIGRZ80821p4EF+j86u3w9cIwDSYlSM0U2HO1GOAgjS3n3+6fTuu\n        H3GowFWOYWoC4dn0AvYi9DZQ3LsBprO0HJ4T9QAE4dr30kNq308TXKI5yHjZcc7WzJfLezknoac/\n        GupCt81H9MbIrj//bX0S2tHp+0slHOY3dCDT7cCCodOZbTcc+gMbSVlIeW5Nyj6xi9E/3YxuP91d\n        xkZnD5D+DkbndcJjo5MhzwcK2sH4F2IsaYYNEvEKKyc+9b95wehwcqulkzkq1xEIjbmSgfOw7LFh\n        5el9W2OlstSBp+K7eHCQxSlC4CoXpV1jtIx3ElnNqTUlldfHTuA3lg60Nw2vgSk/VfyePlC2QJE1\n        OD+R8Jf6qK6c05jKZ+inINtRbnHM1a7dj2KkvQ/Poy8jvpQ39TcKl5XvbpQGsIRPUatT7/fazd6g\n        Bp+6rXZziMUmeqDaDgfDLtaobg867e6AKlP0h6C+DYbNYa2r1VtaRxu0azAE+rt2tF6/1tfq7V5X\n        67WgtdZv1Ts9rQdfQ+N2t98bDMg3tt8fdOC7dr2pNftdNu6g3m53ekNoMKgPtWYb9EdV63bqg2av\n        32/XWoN6p9nSWlgfQ+t0QL0cIMRau95qAxBDdPKuD7u9Pjp9t+u9bqc9oFoavT7q6J1mB2auDwbt\n        1oAqabRazX6zjZN1tW5vIIYdDHrttgaD1TWt2emjA3mv3ux1BhpgB2S/bnvQbNGw3Xpz0O10Wzhs\n        r98e9hFpgL9eZ9js47gdrdXr8sXBnTYYDvpY8gOadAa94RA+9gaoCiP+4HdYe7uzISrW1QrX1OYg\n        7Ric8XV5V7CQsrAchaEH8PPpdGHaJogQlHpcGWNRVea8VDu6dZaBJV6CL4wF3rrLuTnxypQHkViQ\n        YSey1sYT5idBKvQDqxX7cy30JwOOyTzhEya+fku/sIwkt/QojQXf+ZoTT50RxriE46m8xGtjasCv\n        Npx+cbXCF/rUaOBg9B/+vYqPsTwlLslZqKM/o1CEZZQxbMZ8lkpgpSsXUH1rpATi+ehLTbVMsO7G\n        JxBjdffJYI0oUyybFEej5iAWQeOVNJDrcXmKstnOncAz5o4FgtiLQRWAn03+Ggyy0NKxw8AJPrBj\n        gyRjRFWEFZ8ywkbVsh22jluxXco5368oIa9UHgz+twxpmqAE6YcTtUT6KCVi9lmsiU3lvalMyER3\n        /bCxPgMtdMbK+2YW9CgS61WQg/4ZGH6RVn4hXvu5JIPrLpEKPVE+7bcCZYAN6fMUu5Iz4sJwAVQb\n        E/yYut1gtSyUG8YgTrE+c+Oj/qKb8KPy0YG9vSLR+vj00+nNzceTozTVm1jy2jIiUZm8l9FnnyoZ\n        sFLfaFXy2JP619fCUP5gCQJYcUEJBHjPA0KiM/QvsFEPKEXQNf2gnSgo1/tIIiQHeHMgQSyujUcp\n        wVvrQqEhwhBP7OMHPKwPgfegA+j2/KHbbD4dSXaHxMqVexCoUKEIxlPzmUpG0yrvRzflEQ20/rXE\n        uPtCmsiTzUp7s+LtBtt50KswKZmNZfrkFcJxSwJ8R9WmeYQWYODupKZ8frL0ubPQw9VINEREohx/\n        vh+dnrDy5Z8fH1VpFOgUAHdCwoFmd/dXJ+u3zPfs9I7FaPPOmLGa7OeOK5J5Irw3d+cbbtj6Yfe1\n        YTXlBXjcnLZqIi+DKpTAXiHTwSC/mWDXcWDPLd1cYKyCD7wMfbuU04lfV4qw22w96LY7SSGXb+yZ\n        5UyeWFEDQOb92YciXIbFqUJcZoyyH9y1ejHkJWmaw8H5xL2rT7BCPTsdYwJuxpaIdE+C/5SUHGUR\n        WL65hLUB3bN7GgkWVhgYuAXsZGHx+oVhUNSitFRlwRPuSFefDxqORxfxOpr3x7O8TYktA3bl/u70\n        /H6rjYmNtKed6Z9IGwP6KpEq8B9vQfWxJc6R4kQJnHOGBXz/0QABmLiYa0ycmU1ubD5b0ww3zl6w\n        omuY0lC3SFDCrJg2XMZzc8nqneD5id8cygXb1swNq7HAUob0hb6Sa5yFZGI7tkoVqmYBCjFEH2t3\n        2scxU5stQIudwOIDmGZmGYPsZ5s74W3DT5K4bjzYIJQycLdBMpIFP2oJh4Z6xvAJ5IqlXogK6Hx6\n        tGVcePYAQUJQJdwxIdebh3NiAyYDT82ZKcrQma7SUSfQCrrA2eYjsPPPopFDY0sM6zPD5tTGERzG\n        NveaLLq5XcMifEvDQRpg4m3UBfnIpjSRcfiTp37doc8lhn2edq0tn3Z2xJmRKDz3oA8tdCzgVnj2\n        daZFrbA6oREl8iUxcFVna5DPKZWHNuW9Enuk1VpNEYMu7RIreWQroKrg9Ngdpu1gk7pyFqkkdBcA\n        T3h0LMt5UUQECQWeTxGcRyqWASyJsqkxhoWLD/A1kdPMRuwgmxs49gwztTJh5AINBybs4jtF03qw\n        EPGzcnx+Ad9sRBd4Yr7mjL8fKhmehJH1cfCLZRVAzmQKHbKQE9ZPUs6ZnnB8/vnm/NP93zY8IumR\n        9oOCgSydczniBV8bAAwDiZ6y0sJWOIAljDUR8iDAtbQotBr4kHxKrk0b/nsOhwj3jx0lGjzU2XkH\n        aYXSXTkO8ECacF6Nb8iFAR7PAJgx/pspi0IFW0fAMMME0+mmdwlA5Vvz5WbzneG98XxJqb0vOVR7\n        4met2D6x1yP4yV1xpMSYlscLpV47ns//oPJq2A1DhpW/H034Mmp/PyKUs+2leGLggcg3PWh1C7wH\n        dFxq9fej68A2Mem8Q3/DJv/9CHMAL4EzIQYYmcIvKJSMDcovsf4gEd3k7xG/bsuzHdrSB9btYXMm\n        VHLierllcTDyuAUdmbhmD/CPvpyVAvlrxgB7or64SihTX4zuJvLZSN6WZELkBbPCTli1ij2MEpni\n        Bcc+sIQqxDCUM911keiU28AFsckDelTunRcbRWiPqfacfFdLVtE326oUgbF+90AOSG3YRbRNF59+\n        +jT69HlDG8zFnrepeSIKAn4Z8UpdTO+CM20uTEt3hb7OzAn8Zzz/IbALx5U3iHbSRiM4K4gsrgPO\n        VUCIChuvOxOiXcZBwAqFuscN0QkDzvnZ6NTblEevH3A/W9A/4XiXcYbC58LwXQcfYX2dGZ7pOUF8\n        IVNpKeFsMvb0DDwuxqSZZi16dLopDvMG2xfmZBbDBBFSp+QS3i8OXjtEovr0H/qErh3cTv68gLGN\n        ngl6ODr3IeNZLC1nRXIFva4B97BnJSSHDOReyxsocYLry3tgBpvhNnusfVJk3PwqFN44087QcKSL\n        UI+TcJJiuR6D5kJSYFr1LpC4ZaHwZ9pzfYy9fMZPuGRJ24jPVREIvOQhd4yRt4951QG3X1qowIjN\n        n8jXNdZmX/CkXSXkQ1gPsKTURt8YLyDMzSyE9BzrHOAHvG7EUbq5PL8vd5i+rhlr3ycpZEKbsh9q\n        Erhj3Y5MILBP0nLWIdfGpCEb4jZSFxiOy56rdWje/xGrJY0NcC3GD5kZykU+Si4JbIacjqw6uoJR\n        t7TCwsNUVy4xMZ24V5UFPmcQD9RhFgzUlAwTMIzWbJLlgZ+9UluYdULCq2HtUTkvf1bSF893Ozz8\n        xkE+knfp0Lp2fetkn5lbpmUf316dnl+WOw+sy56EzI5sWfsk2wMEpHE1nUV+c5vfhYGIirU+v7gF\n        tp4lp8PNdWpnmBxCkxbV/EUdv0anqqY8wyEBIGu4YWOHCtYw6RYYGW0T0xO4yhzhEY4SgsHOL71a\n        Uaw6brV4+gJKiJnjYePJqCHb3sYrBTeNpsQf8UFGPHPKy1hHCbTKFCEImf347vJDWdXjK+/0BgrH\n        LlUFl6BOYWA0mTuOpIUrqnLJHhhRjTy+vBpdlMOK1Cs55p5en9rAV8hD0eWvptNwESS6GBFEHkG0\n        ll0Yljctg6ERPXwQgkbnZREUdToQ/HghQCXR403KoecLsm047sdfbsoiR3T5/qghNiQcnYxpwCOa\n        oM1kblpT16B7n943Gaw63kPhmvmX0Xghnxw7MZzT0d6YQgM7awvIvHMFB9xjTzGx3bhyXoBNnM91\n        ysl7PLq6uCq3J/GOBZPsaZM6a51HPGtqbYiNL8tlAhtfSlJorOOBYiPIxgZccKP70/tyog69GcHd\n        IzkwstW+mWW+1QUx5WduLJZf8YWXOn+wFyjHA3nuWAEIuTpaNA0XTuudOXFqodfkJ49kXi5Dh35Q\n        I33h6GywcwpLezF0C44pv4FvHBeFG1u51l1Tt3U+DEz/IdAX0eiArZ9Mdwbg8gYnzKgrXHu8uCwW\n        4lF6WQCO4oBig0wHR+w2cVD+6LBu37FVeuOD8ZgZeWHzv5ydnd7dffpc8qYKu+5sf92YPrfOTy3z\n        vQuwK20tdyyYOvbfj3z+rsXNKsw3N/vNDDaMd9GtF33l8Td8RDkKnQBbZj/2fOezGdlshbvSbz14\n        AompnYk7CH8OfPTHLX8ys3rv5xy2QRalnPIIBjfChsDgDShTKbMiHfixJKpxyXrv2ECAaDbjr/uR\n        F0oUh7ZWnWep+rsLeXt/ckjNjS6d45/uy0lBiFLkvMkR9rS78RcoyXkn9HcwPHRlDl1yaaNriuVM\n        +EtQyi3LIzkJJByMzzRErNU6ND77Qqb5JSOeUg5e2kcwZZmc7OTRjZ1bpSMxE17jBZGY8RMtacQ0\n        1Iae81E848RZqlNYOdCA2m4eYlBjHMIqsnEvaC2VfH2pT4hYE/nXp86E5ZFstJpaq9doNs5H5xen\n        D5ej04drltVRxWBgtNL926ltG9/ys6xfXF4rVxyAHYc3pil9HzGOibV8uPrMJnu7eEe+zm2Tq59/\n        vpUh33VydYyi66itVkZwXeLr8sF1seTqADv+d4T/vQROyPjdugzquyZtkRE9AKCx1PoIJ1BOZ0BC\n        K3kLirKsoy0O7vZVHQOGCTj9hbaXA4i7LEXajfAmhB5GTiBfYdTd1DEp1afWrHebvWHjw7DZGtz+\n        9SwaHqOP750llxwyYu72FsmXkdW93UykusXySHC2vx1l56NNnEoyX5NjcFSpRFk4U8NSjoFyQokn\n        kfBVtOQC5iVcrnPuK4OS2DgwLfzg1ViaX8yvO0ERicmaUbpmLiTDTAjJmNwlMKsPMCBX8URZAPYw\n        o09AD8R8P9PAFYWT7nUbVqH+p8JJUID7AuLxY2BPmRyms0ipiQqn5hk1c9n/XfjG4nAfyB9Xoeyq\n        RKbnaH03ABVXd+wN4dR0x/SG8IgskCn72JKHB2Zg9xm4CnFTEEvIpNVuYs4Nw6XOQ/FHlAnizzGR\n        WpnjU6gCYpD5Kwp5lpwzIpUgot1UaDiPwzMymHr8VeQA+QiTjh3nKRKRnfE/4CKsU/6Wujf1JnVj\n        GuAVefrl/uMDHjg/pHWUpxsiyUcjWuyD+A7PPHNopbcqKe4xAZBY3RKYMe54/Ey9U/7vuuP4/9h4\n        a4Med5etaF1OE3psfRCipMSZspKexFuoOO6b5z4xxJ2wXuRO0DWQGTEOzP2u8nQjBUxEOGZsSsQ1\n        BS4p8xlLhKF73uZcgWfSrmcL+cODF/KHlZC/H7T+wYT84VsK+cPvIuTzde5C1h/+bmX9Ssr/QaX8\n        YSXlV1J+KCANKym/kvL3L+UP9yrlD/co5T+aB1k8FcCq5Pnd4bJsIsJHrx54U51eAEF2avBsmCQp\n        B56B7IsyEa7JPzi6OGWJB08nKFew/INfPJRyXIP8knYtwnMy3ofc/t7B+sTKJ/sZOT93rzq1dWvl\n        mfGkhLMAhMgM2Z0wa+qI3UdjChhuWObYhUUR+HjJq0KaZPs/CVwk9QbAO2g23n86vTj7360mINCF\n        fz7gLPDvbethoDaFwpQmIvbD2nS0OD06+grmRsvDqRSaCDPg7lsvQdxkKCMzU1YFi7dhrRaitQf1\n        Zq/WrA9bNa3Xrje7tWG9j3kWNcxQOKh16t1+DbMoYqZCzHmIP7W1utauterDbk1rd+r9dm1Q1yhx\n        YJXI8UdN5NjEQr7xRI5ZFXzPz5uqRsKOrGkyKsXCeaj6UVrGc90dEzs/M50F0D98QgYJ/3CSHiFX\n        Wl+wN81FIjUpdTj+j8yhNq3UOyGIkfWSpBlNw5aC2fu+c2bGf/kX5TNn5lyMBs4Z8IgdYJ1TdMJh\n        SQ4fGWrQs8QnhWhODj81jPh5wX8XVPabwhKwO08mTk1JyiJ3Hxwpvl1/8hTlayFTivvWxLfuRDkG\n        th7WKpRSJhYOyXuJC43JnLSuF3TvY746QgnlK2csN/T8lz1CyGdJgSFR/DTwsg+TdaOWNUY1EL3e\n        0CmN1DvPxP9qQzhNCvYDJIjQcqY2obuqSa46U5RYFyDdMw844s0UrMOKpteUZ/TfMqJ9oCA2j6nQ\n        ICV4IskIWx/MJHYS49kYvi4cDEh8x5KlYHIYEKRxq2oEotpqagPW8C6Urt8pS8vxVfJ2UY5NuGdn\n        AUZaLx1rNXPsE7ERksKJujPcyMzfEoAcU6SKj4s8/RXdu0Cj/hodjWjbE+fo5KBST06Wr0w8OWLE\n        do8/pFzQ+I/Ui9s06HPkkYb+cZiGy52SemxgbNwKC+Ridp2Q+JlbIB5IkYmEOQxjF922A0wjHzaG\n        77JGBU3NdKbmJGpZV/7v2P1/+P//qoy+3P10+bf6+Y3y78rt1ef7+ujupwf4i9QfIsDANmEPpHmk\n        CQQ8SBcEvUgWD0TG22X7qLGjmpFgIhuf/McCfPKzD8BiaOKUu1cjh7A8h9Llc3mXdxSpdHgqmKgL\n        guPJGGJJOiQMnd//LRNDfCiOnjQmsp31qFM8hA56ZKOBfkojIawsIGePdUmdt30BCHfC1VR94mKe\n        L8OaEnCxkfiaHLgVvDDNCpF+5PuJbdBKY2JCt6nBq64yzCCO7k/Pri4fbk6vL+u3V/eIqePoK+KO\n        xNV41QJ7Fd9JobNPkD3arB0b5qSunBmYTYri3jCLqvFNXywtnkQDoBJw4AJk2OXdjOA8/3xzISBM\n        7aW0bWGSX8G7WUUe/usxur5mDT/6ckZ/bDCDF4xjBydz3Pu7y8tNBsXLpHjE0eXlxdWnmw8bgfr/\n        2/sS5caRY8FfQWjirSWbpHjo6nbMvqAkSk1b14pS9/PTONAgAVFwgwAHIKVmbzhif2N/b79k86hC\n        FU6CuoYTMR32SCLryMrMqsrMysNxbA/xXbbJsV8q45TAYNEul99X5HFxRdoujAL3LYbUD10/DiEm\n        z+SRNUVbKzrUzmcyap/d41Nk3bS0P54wqRNFF8W58cihmmhfI4EhREtURJJXzQiefBlGXZNXNV5p\n        FCzq23XKlRZ35oRrnINNDCDyv6AbPdr0ZoutVdi2kDkT55BAq362qcGAEfo3PZ29KBQWW+B/+sd6\n        C/HJMgBidkH7HHEiWYULISif/Tkzq0nzT1/fToV2TIuPX/ltljulEYchir28KSWfCI8Xm1v6yeMh\n        FifAFN9x2GnmhJYnL+a3tTCNouoYrz1CFp16/FxC134839sfTqnRkjxKTyKiwXn36Bq/k00ytJxY\n        mOgBp9FWVnr+PgsO/FkKh1zsm0Jx3l+GDXdlbOTLWsP0SSw5edmJPEjjoUwE009mCpIQubcCrLIu\n        LfsxamVePR63mE3N/AMvQ6Hc3Z9/6mWGzaeRmTx98mmUPz9qa3M/Tvh/jyXz4k2e2lAaxgvJZ6YP\n        KpH+f5Et8Ca+KLtCLX1OqRnbDuixIiQXA5/UQ+hTkOA/vD+DEWiEuLr08Za3gBjWUgY8orwTxrkF\n        N/X3CozIeSrgxMD2q7PlBDphsAebmoXpw3mkWJC81U4XShCgFEKCtEuPWeIi8+jTxal5fnP9X5U4\n        ObE0yVGCbbIndGbuq+veZ1Pd6nlAaC1eDIlE2zJVJ2Zkc/Tgj83JLPyezNPtOAXHEH1VUSaM9V66\n        +VvohYCuCCAkWuqZ3bPCMfwab1JLnbU1iQbKy8FJbQgO0LXj62kV0VwXwKsR8eUyUcmcirglpML+\n        Gdp8CQLb46BlZxKVkepJtoyoZZZyaJ9xtMIaCJ/rY6SqPackHNiNrgs1FFuUaWkNKrMgGicmU2Se\n        OFYEQhjHzuFhwApAfH9a3kjLNsRqhOhK0MWHN7+7EqIF9FmKMRUktcwvl5fHZ13YcYOb3vmgAZ8p\n        lrDS2ElrmaEoLoPalaCZRs5CcplyWDOKH4516sU1GYQdvox+oWw7FG1LjlfZBBQeerBHZJOp2xaW\n        AefXuchKQ6m8nNlDYAdeMF7w4frIGaOHCzLEPgXhNzLiJCYD5Y7merS8OX2Q3vBSn0Jfoww8NA38\n        ijnGrNBzsdxOXA8ldFA6iUqIyQlsumfmYf/yvDvIkHOWi7GKVC0mpxzRFCNmCHrhzDDXOhmPr51J\n        AMhhLfJcWvSpvFBAWcNLiO3DONIIHerjxC8DRFEep3Ar6xSZi+KQghHyZojSUyhyIT1x38bbl+3h\n        In9Y9hvhESXkEIF3GW6ckf2IpKfX53Ajnl9dXvQubiQ9xVmaoC7STh6jiSHzCavtU1mzSh0bxaQe\n        hxMzRvFz6Hzu2tPAfTGZJ3KYlaQpS9HEZgxYUsQSw4nzNUk6NktTnS47cLgeiMoppxuxKekAH/vx\n        QhW7cNkXceLQXUKvJ7Tpne84C1l9tWeuePVY0Uk+u8B1wqZ/g9hP/MEvRPqak1zgRlWYvZjX6RbO\n        YfUcfj3vH1+tCa8iYZ/Fp4cOpgx4GZMOaYyKHJo4S2zBGpxyAu8S+IMTCKGeIyUCyUYPDs/ly9R6\n        hSx8iQkP4FqLnMQMOiD4iAbITk2BpeZaxuZNayuRc34FrhNP2nmIq8R0dgnHHcLFd7EeHEeEeA7H\n        9XjVxRaOqmznqIEq8l6aRBoB7jPXYXK2YvWCCNMb3FwU6BnwtQ7qSmpHSu6JZ8rQvPpMlQRXJDCM\n        lKDvQL4vFNil5NelVg56W5Nbl2vV8FPRo9yobJESmkWeNqhyJ3royQd/+Xk6JeVQxPSJVjQz9uh7\n        rjXhOf549kC7HZjEvUftQkyHz6eyS6ud3+fBCm2U62WnVR9w0s80z9E/06PnvArIFiXWsdLno3xz\n        gWiTYAt8RygxFAzid4bVXpDi9wl8MRHOo/ziDtA59Kwdn93cGLRV5zviYhvLjuAn0nPmEY+L9CW0\n        3NSZenvRaBivaSUipgfMsXGmHnMKjeEpALRXpYxNYbkxGv5IWxf6/qMV4aaUVj7hPVZA5Li5tFfF\n        poFimsNVLVJwY1IqTt97jz4NYiQxgkyQqrT/Uvte/+Jzd9D/3DOFSd8cXF1lCegWwVuEziKKZs3W\n        ZQAUmLFzu4hvk13wt6IO9N0Llpg1NWbXmzvx594p/DzClVz3Tsyrs+7FjXncP7pBHf36H43BP84P\n        L8/yQFNRRvHsF9dHgxhUdAFR7wboOWG75Ahnkc+LdB/Rm+dyuJzQFLOY0XSa8O/AoiBG2/is4KnG\n        9zkdX7wDdKQ8bw9ctYkkZRvgsRjgl2+BwvkL+D/bvoz5s61TnP+MtVXh/ey8KzP+VfvdWH7ahpme\n        w+8yDvAZHB93rczzwwWo+wv+heVvg7LTL+Nrc3BzfXt0c3vdaxiFbyYKntdkaW3qqlytdanG2FqH\n        Cry9dJmF3F3OOGY8cqKIESbQx3eHBT4MgroNau1nF2SIAoah9k/UfiLbP1L7Ei4R1Q/TcqGdMxa+\n        UYysGQh0NGotrj4mYhjjCNjjL+fCJTGfu+B7E4sy5bhgVJg3JU3nMFgesu2niUndl2H4KLDCyBGf\n        HjvD0I1WwPeIe/OnNvde9e1u6jocTZw3WGy6oMSuQiO1/MgZzaJibB9ddq8H/DTzD/O4d3jdH1TD\n        fR4IL1CnlsCS0q6K2+foWlXhrLQ1kVt4SHpZWpg85DLeOZ7f39eMM3cGf9eMk7njrcA6NnX2ROd7\n        7LyiJ2BmgCGGgjrT2YPON2i0FqZpvyr/HN+enJhn/Zub3rV5cts7y2Ge3MlfyCpF0+bySaZxhkly\n        MPxCHsERTR7QxPGWMcgJ+pY882ghp83nHCzSDyfTP3WWWEbkjEUV7KqMcdK/WHasZOd9IVcUzpnL\n        FtnWGb6oCmFltsABVzo4zmOT24qHhrLVPePAoC5eYMFCN6OHcD5kS+yDEw5Bsom5Q7SOpyrmBnTq\n        uyShPf+QSEG7nA+KEBwPVGnXXTsRe0tcYV7k6sgNZb8p9lsNt2S4xH5RBpGlGiWi8bo36B/fds/M\n        q/5Zjk1MG/qFOyl3otxdlGyZ2UFLQaq8dSTOTRxtGWFvxAFlDMTBVZ228myLz7xlfs12lUHYek0O\n        HSmzYDG1b667F4PeESi6vdNzfJKvJJjFUwuD+Qs5oQiIXGbINM7etFWQ9UJOkeOZYrz8YItcEV9z\n        f1oWjJErFGv9S97DtAdP8d5KMRRyaBGHmPT90KbTwjaAnYiS4hlnExloq5axPMuvmRxb/IrnkN8Q\n        P6RK4xa06X3unkGb4jALk2Tv7tlRRUVBw8nqvJgz6xH6bL581lI70yXp/92b2/OGkQOC+O5VFq/S\n        r0dYqGw+KY+L822TdBAYOBMed61H0JTEyiUibUr4dPaQ9SnLOm6L01CGqFkT+b5o+cC/HkbGPkXk\n        EBvhbWc4351wpi69BDAyzLfA+IQCxHXvtHexSohG8httsjILDEoQ1DjPPbsCngdxXEgpqktf36Rx\n        iWM4Iy2YXT4/ia88d+KyRQpTiVH4YC0mlnTE02Or5vaiNAJmdSRHeeutEhSTO2M6KiXTLmWSS0bh\n        VICpLCIkh+7yXbYK4dUbrmqbv71KiS+H4dd6XWyoScsz/AIbcSTSxYnrng/85xFfPFg/g/p5i84j\n        f/4bepb4+S/pol1GqEgusPxxv5IUIcfIssKVOq41JxrMn1B04KoOml8IBWSv5E+Y6hxRXc30iJT6\n        QSusQiEZXJeWQ+Ts0HryhTOHNSU3Q/YT/ebj7YXtVUgzxc4hJjEZCgVfcnnaoRb9GVeWlpeX/CAD\n        XMM4ZYuyB4dTejXCXxGEkPEcgyaognGNHEic7yNnKjylqdi07aAnGYg2cI2gWyTFmGKSQuggq4pe\n        WCI2gRNnoF9t6MTBgBjq6t7TO84sXhz5kVz6aV8sFAXQ38e8vejfxGSSDlzEXbGXbWbFic7iDtNE\n        i/ir3H1GGOUXR0VSWap7M+4bvzRQewsrr9HoR8dbyk0HzgR37LPnFZmSFVS5118wJd8jE5dRxP5K\n        fFzO+aptxTtQMH3cT/C7JrJK824ithktVSR7sGiyGbOxw4kp4+/5Da3FL76bwZBSDiLbc8FZdEDD\n        +xU5wx/XUI4jxomJwiFhW4nNlXZtm2a2vpDlZX6ITSuxpImFfpzGSFRxqzYSO8TLwH50xBKjJ19h\n        Dj1r9M345HpelN4cWKI3j+lBD5CelVI94AQdGsgiNw7Tj7IPxDzw6OQQ9CF44rQLmVUj8tIiuGJS\n        BMaM9w/+1cjbMuUqTcHqkvdDZqtFyb0md5TanXHpQCtBJwVKPH9+tPK08IaIyBk7dZ7DMYg5kSKR\n        w3UWx01bmjOfUCuHDoWaCJaxjU2nMW4kTl9sSyl35Kgkb7gxe42Bjj4z1FbxUYGJspaeEl2ptq50\n        XsTKbuWTg85kRk7uvhH4F5059a0+JdyK98lPqIvci1THrd2WRVnJSSBvGsFs5JUADNe9ubnuH97e\n        CMfemiAcJVQAaGDAhM+w4tJ0TzitYA9iSHzOtFtC8rNmiQWltpXYPj/nzBHvtIp7S2weD8shJstr\n        pyKNpAAiU5XmgFnGXmbMB8sZ7RTTTazEZJSgIofBcFmsciVNfumuxZIDYvP0+koKDowExC0f8JKD\n        tIuO0fKEzEEXCoymxXHlXyR6FiIM3MqjOIKRovrNP64a8qskzTO4Scr7+n2+mJb6MscEHIfTCpIE\n        jraSOIEdVtOrqQvwagnOYZkC544SGThrjkgylYPyPt4AMDjdHPl0qaXvTy1mQU2o9k783hZgEjOK\n        ysEr4K8EFGoyy8aSgdwJL3uZY42vi0jlVqM8ZhxX91chLsHFFubOQk4J4h4BvlzBcz/DfSX3ej6j\n        5bBhvg0vl8t/zmyJZ8yn74ryWeEX6ZymfWce9wZH16qFCJv0SyDI+VJPWKAc06rsRuhesBuvhAsa\n        aXNd0htKXlC0jtITijpaqmNpMMITSH+4Nmoe99Z3LSlY/Cw2yPkaVV5NueGmeKejc5tnLaRZEj/+\n        UxRnfJSHgdQDKLks5oC7IsWBQhviUxoauiGn356GLjm7C0jEYaDR5dG14tOfvRSFrbg7GJxeZCMv\n        89tpXm/CPKMZuxIodirnVEPasyciD4DZBsdFxg2J6qVUl9CspNclgtpDyn2EsV2k2RYaEJDU1I0u\n        RVh0pmvsKCWBEvet9t4yXMQ5KGPOSKRikQwxdb87XrTNeqTrJ8elw43ld8FgcH1o4wwX2rFNoAmZ\n        IGMh6GciImTmEMnrkQy8d/1MPK+4HjSbQj6DSYNDfPrlcFz+m4YsmC2pLMwHtB+LmEw0zjxPnDqg\n        IM7CRdnTxFi2KTGOiTaoD6mXMGDmYOQSjSmPfrwjVI5XXR9+WNghhtvTZU3cRem/A8umiCZKfJi2\n        kp72Ls8bBZsyxzaql8zAbDEi617RcwOuKoOygW9No4fyzIeRbJOHMrSOONmXHCmiUlpAakpIK2ii\n        xFhEUobbImGqwK2JLCrhEdyp58eKaYPnqaKY831q+XHBdMv+1zya0d1xb42A+TOUGFx0r96OEriA\n        /NLQnB7191UXOpHStaR4xW+SLLlKXmORfFhVpxgP3ft1LE+BcP1Rn+IVkVm1QAW2pWTKeLFH5WUo\n        Tg/7J8YNtsPz6fb168ZJ7nyLqhOnXETmEDMXUy6G2SIhQZxYI5fisjdxmVvvWkeOiFBYPe6VCjY8\n        q2xcq7MsbX9xkTjEI2fpjzGu5fGvkJw/5k2V1L4qFZcl6a/9Fkn2Udi+q7qCZLJ7iYotwZ6ku/n0\n        ABf68k0CQKZsR2R0w8eZZGk0rV4ZuxeGng33yBj3E6mbUU2IImSVEEWXcBzOcCsqqlBnStfHKjMc\n        BXEsOZ0QwnDiLQi8cUi2E7lF4mEoBwYGUbUae8bQ9Tw9YlANH2mZ/Gl0bWZ5IMSiGmf/wmsTdSGU\n        qMLQovT9/NpP1eJkCTmaCyCpwwFGkpTq7WO2VVg8SIO00SbzyJlP8ElhiEl6heGLmo7cmfsD5KNo\n        xFlhBA1ENiJrPgv4+cDxH90wIDRzCatHZwEI+/JAXrAPTiSrTfFjLubtRQxSujyEFghwh+tHJihg\n        jZpKzC7lSNbGZ9Y3h8VDegFWBePQjN4wROp/ObtSme6uOFm+mk9kz29YU9BkHE7CbzDv/pVFXm5g\n        YMEzg4Us0j3l7QDypBc8NQzjHNOBc0Zayo+uPQyjSHxH15ESgY6tEE5R4yggAC3M/mgrsOynUWNm\n        P43VRbYtHPVUMhbaKlNM6kw7AHEJzB8tREI5tCejGWVmfQ/8YALimJLZMAwLCOrMRgB412YfiFR4\n        l3iKC1G5ch7jVGVUGo/4tnvVz6fbto0ui1j+bJurLy62BM9fYSoHh684aamgse5GwmfJoApJmFwz\n        KhhctqyrlvzQUfDAGCBHi2nEGSJqG4q3ZJJEAbd47TiRtsynh0Bd0sCLDDxmQmK/Nw8IT145AqKP\n        vMj/aUi2NjbvgAmdf27x7JdqoxNv3h1f9nErixn+yd0TwHCWnHgfoY2H3ptpKwFLAgc4dgwaqNqj\n        b3qtwL/DlmQLrczhZBm/bNzJdxc5cWVE/yR6ioIS0dYvG3oaKjw6BO4onbQ66O4U+kGK0PY7flTH\n        j7R5AWXjADPesRC9pZR9/VXTCmfuyNNflB4cb2osgjmj74dG87UqqyHlq8qFNTjPf6KyBiLGtTXp\n        yp/t7WQsAuJI0F7opCuYunN0K4PgBxB51MjDxQwUSLx1ioa/ve0fxwPflfOUOhlkfdqf5D26lSxv\n        4EYFQKpPdQSUgIn1M+/gQP2oevaPS4/an/SWWw19diygYJO8tMLEolP5nKLRFpzIZLThqyQuskOH\n        uW7P4i01hB0/xHckecxrk6gyoK3dnb2D7c6HYOK4yfVMHxbAXKsth/uUr4bbVF5M/loSkJIv42qA\n        UpdyOKnJa4JJyXBW5EvssoQhsclrgnlvTVxvsRqc3KccUG7zmpCOHX++It2pSzmc1OQ1wYziam4r\n        ACo6lYMqGr0msKxGidLjzhR6OrPVIE+M0OMRypeR1+M110Qfhpb/bbWFULdr6FYOfdzsVXkGVSxy\n        IKQPVmOduO8F9F3CQYm2r7kCEFmGIDFNnrESFAtVN65iZEUJTywpSMa5iMPlc4OC+hCQB/DzoYiH\n        WAJN8n5CGQ/tK/aKlBQdj6DjkrtKNUQaSulOqoGs+SA5USjlTJPkKNAfXBqd1t5evS3S02hQo04o\n        zEsrgCx7lcMrWyUlDgxdcQivCRtnJZ7Hrlei6xKW15smAdBMMfTK8Vwhkt9IqgqS3Bro1nOFd67I\n        r2p8vbruDXoXN1/Rv/Nr95B+B/r++c/nWPoLtLYwYtfAJ+A6pCkrfiRzq86k5/z5z8ljXr6s8/uP\n        ri502mWHu+xHReWWneuJxinxkrcKiLbQ40V6BfS3fPcHMXl15ULvBRqGAietYSSgttGOZnno1DCb\n        69vZDuYFYT6MONHxTHQsR1yqcfmW9tG04bk/yC1d7Gzjy+ngYAf2NEiH6Paev4jAHz9zFbJntWXI\n        1q+9DvXx3BdRHrOF63O5++qLUsPcqmH6/jkNs+zcLem6VQAsLHvkRvwQuTKIV7JzVcDiDklwqL7h\n        bCUg4i7lU8fNkNz9+yUXZW0FjuBDEesrYhLMKH89Fm5ca7R4xrq6omvF9cnm77pOysazyoaF5st2\n        KTR5/zWsTifqVo1Giabvy4f4YIlG9NVkB+pGFuFy3pPNVjtKY4CFyHew12xxwjWS6C2y/3uUUT1J\n        KGtRWTKAtktoYqXEvUng66y8ZHxqXT4DNUnOgWV1K0+BjctnwBZbWd0yIb7kT3LDSbQddEfLsbre\n        0TjLH01Y4f8JJ7+NrDE+cLi+5ISMQpZOIR8YX5Mq0dc8Q8XLV0PzrwoYT56EaGhFbhTc80PCajuK\n        ul7eX1PXcqommuLOwiCN4F5I0Nefe8fm4Kp31D/vXXytGV9PLgeD/lnio7P+Z4w71j+6PMSuXUww\n        in9+uj3vXpipD8+7R58wu1Tm45vedb8LU3TPr856PAF81MU0k/jX7cXfLy6/XHxNWW4iFBcRD6tr\n        mlrn5dpmqnFazpHOOc/Rd2XfKiqv3jYFAxztXjDmF6EVQeCuF9R1CQR60yQAzLDPmZ97Vpleb5mc\n        XeUgHq6ovaueh0tOc73lVurSmDnq29Xmx779uO+y+0Rvu0WBv4nLLWnNiB3DVjFmcKcltgxupPT3\n        u69HR02zZTa/qo4UrOs+AskmE3xZxv781GwHE9Aatn84YbDdajS3t1DXxyHMw3+YO0sHEbNH28PF\n        9g52h+NLdL44ov6xTy0+E2OdIMywwhHtLB1IB4okB7vjhxl86q38ZsE9P1HPJRystczbP6vzr+y3\n        jHtVu9RtDlM9x/SDTasYfVS7lDYW4XsuCKLoMzNxLH/F+RP9z7H/Ejky0z4Jj2fBCa+cSCrbS1PC\n        5YPja2VuqIwPjmwIfzTlndIwYpec0FHfojwRYTUpyqVnRZy4JvZq4vqaceaOjJSBiU+YxQkcl8tk\n        +Q6OboWut1CJh1N+XgJgApZnsZOiq2O7FqFkJTJRN4xdXCLHyma4mc+tRVzZ6+tg5npeH/0lSU5A\n        G+aY/yQL4QBrsHw1NsmV6M4hCU3T2NGDc+oqufKxta212UYxaLR9Hk9ewxAYy6XUHkDK2Dap4emB\n        wiQoEyj0Ut5WyesoiubVENWNA4TvqJPGxQS0cnDHP+voEwz/t4NRtI3rIZ8Q/PAR1Jnh3LPCxbby\n        rOnjiA30ld0y4G+0SKKLjGRBcv5hzouNgDJu7xxdsRgZfIwqtzKOD4uQuyKZoe3es8YUDHRHo6AP\n        izENolmpbws22OZB6ljyngbZxm2ZF2EgvId/R/EFKd+WkggD4TU61L1GNWdEeZ/VVnav1EIDAsDy\n        aOKuZXiAgO2PEIFXRmjVMAHfiWw3cq2GH1hWYxw8wt6EDotGKkTgiuQ345gEuFcPD9A49E1CBC57\n        g/q1ceQFc9v4H3DCwcGLftN9DnB935AAsdZGMgYAQTSOzvtXeFjg/WJmAgYqBQI0mrX6QavR6dT2\n        Gp0a/fbP2l1rp9XYl19wK/5qSaxAa7/ebNfbBxgr0Nr7uNtudJr4b/WQAVgefHRx2e3ij+4AfwxA\n        GIHzi8yHRBv4KWlTJYzAtyJmWbwsAC2EW+XCL2bJhgvkxAWQCQopE9KA2iAMsT6IiC6o5cYfvE3M\n        QTKqAVDDDsXoaANEgwlm6PMrEV1v7UEP/m0fEYkr+zhBCwW06MB36CO5h9+gdSOke4Um6x724/bE\n        eHXmwruNk9uzM+O4P/g70ury4haped4bXA6Oume9uI+SKThfK/Y8ayNScuRnsSu79qMFe9g2DmFf\n        oXut2JbGJkCzZZy1xb7lao3JnSvD6lRcdWsPjwU6Dh8dTuk6AUED/xhaGMBnzYwHUMUMyfXGyLI5\n        3OFRiHxf4Mp2Qt/4hD2n5EqvhSow0JFDpahFwi0MM4hmMjr01Akitk9jbZzLqRA5YapeIlYgZv/I\n        2MRh46i+msjUE7ukBDSGDHfG494aBiGpx4ZzD6Sn4H5kVVoxMj4GRcOiWh/2dzkYPNDgEItQANQM\n        wTfGJojWdBb1QB3g/GCCkdRXiCBMqGtNiRatvTqiVqYLYN/+cQIJQTjEhHYlKI5zBAh2KOCG0LLd\n        gN48eVXwoYQjMtpU8oQSCe2A5mOFdXK2ItdwBLDVNOQHpOj4jkf8AH0Db86xHzIsttnY/cYx7e1v\n        E0H/n376CYkrE09RqSCATTFHAprZA+aZpG0QcX0Sbl7jaHGqLKEy7mXY0XamDhuMZUZ5DL/OBlzg\n        vLD30kCpuH8iSypWg5XBr6l9/tUY3HSPjD7AQoH7TjhbiKXXDTM+AcyPyIRuiOkDQjE8QIvloABa\n        xDs65cP1oIARUc/5OwvGphOFxu3U4HoxNmFHbSGYu+JPTCv3jbIAz0BBzZ0YJzjCbIk+by8Krt0U\n        fE2GJo5jIcc743LkUJiVVK8/WU+W68r2+1sCsPiII+BaBA2Axb/kAdSIdxJx3L4xDPDRyeNwLkeF\n        XT8FGvUnwIHRyPL0VGsii12kMd85skDMbiLFGfOZjJ0xYBiuQ8z8Il8pkDXVYf+RhgJk888dWQsX\n        ft+LKU5/mh2TwpYo6ROQEU0Oun4iKEvkBkHyG8zv+DHBe1aIsdAMYiLGSjQY6QTzXTzjKEtQRHm5\n        bwdbMvOmGyYVo0gxOA5F2EQzzkhHJkqKkagKfu/ezxDxE9fH3AgNbYk7ySWS2r98iXLYRydvzL3X\n        QBus6iVIe4ImL0PaLIkwccxNqBYcJSpTBwzau8TZJ3wni48cHKDksEETEhkT7pBrBxjTQkg9dtAS\n        PAtTfhmLYD6bN4bOtjna/bR3XT9vRgdbBooDQZyYynaohqFMtYjj4kaJVMbB7MYT1xW+E6stWCyL\n        KPxUkFfiUB5ijBCzBTiMSJEOglKtyJSF4oWB0qr8sjEkU7KPKTn4+182tBSMSEOKtIvmU0y9gnfi\n        nEp8czxxw6gC3yaqIlsU7cdGIJk9y06yECXd/k4bC3FaKnpxNjBbJmzmXH+UnZeIwEKEBOCewyet\n        mSx1LvJ1CDhxtZgkkES6zXOCVuPQKylyw43AMjdzmzJ8MCeiIvZVXdl0VtM9AuMxgug3HaiI8+xo\n        2XpiPta3l7bXRdyqlByl0EWJhhNp5QMgrIvyWWr6C2d2dHzCs9fQOfgJRsCfIyRkHUOsJuT/AMLJ\n        Tf/kBI+B0y1MIAL0j08NFQVLEPLQhPNNEHG2/hofSHUlDxmqES6N0d2qGe0a3h348a5MivbFGRrn\n        Tsil52B+nFa1p0YdKdhanFMOJqNhMbMGyNP+OKagG8U4F4ZskU9ZXHLK40uvPUkhn7D4azwBeSY8\n        O0bWXJksaXNRUtZZEHhxniIbmIHmAbHQ9vDpyK/Hs8HlPl5yM5/Ee1hFX9JtcHeI9ehh7/y///N/\n        I+MUQwhxc0oJnNUIfA9IuUMoXRRLKFDZoW2kC0U7b0tjYLQth49MGtucBSaPbfLYJo7dmNr3WwxO\n        cuIrgeRjTGnkxtlrb9HXFgBmeD8anzkb6q6xeUZVONrdv8iu0VYh4IKCBG20fXV7Wj9r/6X+GHi7\n        Ep7ccMSjZstsfZtoEYlsAoED8P6vhmY5+xkowh/CTLg5fk7th7KgxZIzUBxipIVwrh2jDuoING22\n        jE26stUOwXwSTvCROF2PTMTTkPq0oAG/YcrAx6E3z6m6Yy3wpjEsB00AHt89mNwQC5eAKganwhMW\n        0MAU5VOXTEdYr9QJzScLSEJ57jc+Nhs7+/9GbRuR2H4tJL4QZ+uKofa6YKi9DEPtDIZCmjYfQQRe\n        hMUuxviACLgS4e5om4yK0LK3I9DSWdvd11l993UymPPdsPmhEHeqji0m2g8x/YMV1pI8R1y2BJsH\n        +zE214TJOmuPqp11QdXOMlTtZFA1csOQ/CgKtiR9zTszHw+tRudA4GF3bTfg7uobcDeDqujJDclA\n        XXJ61WfB1JhS1klSCkSSA9A1fmAOfz94KsLiXivG4ppw0+7aomhvXVC0twxFe7koarcLUSTkAoJG\n        WBeoOFAKTfoZVoyydqO9K1C2/64o0zR9tA+jAo5fg76CxMfkH7NJIOznEpf7y3C5n1OXKwSCMB8R\n        nCQ74DQ+zg9/uaFTeop3GgcfBIYO1h5DB8swdJDB0CeYRVQgjAcEPZDlzUcL9GyBnpoRgjp/b3le\n        PqL2Gi153X1Ye0R9WIaorHBw7tqvg6YPHUZTq7nuaGo1lyo4zQyezoInJxQclYce7Ba5sDgsqukG\n        313yLs/B1H6jIwT3VmvtMbVcFWxlPS0DpdmRi+TMGrqcV1Uc73gH1gx7HsFJlcLZMj47aOxI7LXX\n        HntL1cRWuwB7wY/Ax+oq83A499BWVnqYf4glhFZn7ZGyVK2hFkvuuwJEtJqNjjyGdtYeE0u1llY2\n        M5aYD/aNY2HuQkKLNmMtNiaU76NWq9ESAkBrd+0xtVQipxaFx1ANi4WMLB9zrUcPhbgrwBQIk0IC\n        aO2tPaaWCuY5WkrXDXNYyHhwKACiACsdiRV6lqj7o4KEdL4zG9n3z9Rs68Y5PjThatbPJln7zcx+\n        tbWyBdXez9xSWwtdvLaW6m7tHRXH2vurYLX3VmZqv4FaUFsTAbv2tqJq7Q2EvtpvID7VfgNBpPbW\n        V3qe4+9z/WPILapO7v+VXGX+lPGU+dMqjjIb4pWQXEHX0h7fXt0e/65PiWSRMJ/W4xm6lnBRWetH\n        6TVBWXs1lL3zK/X64KmzGp5+84fWlnn8v07e4JHx1znlOaxPrOhbxcONnNJEPxFKWuZro4H/nqpz\n        GZTyllgjmNobYov8HsjcKSJzZ51Q2tkQLgprBNPOhnjo/j2QebeIzLvrhNLdDfEwvkYw7W2Il+c1\n        gml/Q7z1rhFMBxviWXWNYPqwId4w1wemVnNDvBauEUx8i7bW6RZt8S3aWqdrqMXXUGudrqEWX0Ot\n        dTrHW3yOt9bpHG/xOX7evzJBhH2jF47foRs2I6T9/ghZK69rxkLn/bGw9m7BjJmd98fMb+sFzMve\n        ff9lr627KmNk7/0x8rvxTmUM7b8Rhn6HzqiMkIM1Qsh6+J4yXj6sEV7WwdWUsNJqrg9W1sWzlBHT\n        WiPErLEjKSOrvUbIen+/UcZBZ41w8E5uorzwnTVa+Jp4hTJidtcIMWviBMqI2VsjxLy/z6d8PnsL\n        R4vXfcXIc7goqVtMWV/HYTCfmnEm1o2cBLeYe7PO+UiCcfRGqW6Ls9XizMsz1f7OUvap/Lcd25nW\n        YX9OgCWidUyCmwDwj0y4b4HVqulw59E4ouQl99av0fbTgzWrA/rrlKu8Pkdmx86Y33Ji4ejhI3zA\n        OawpzbUvUizi1//566zuO0+RSWVoRo4pE6L83Pyp6Kv3yrib2RNvkXb3dnA6MDrHvStjIGYyjnvn\n        0bum26XUc7BYmW43nVRXuyoUKHlrqJJ+d3+n0Wy29ujfh4NOrd7aVR/s7ddae1qDvdqB/tdeeS7e\n        1of2br3Zgv9hLl76338D8O1mu1lvwjd72sfptLxXx8dn9RbdSHpOXlwafESLq21c9I7hvz2tUh7Q\n        qkoW3njLIEHqgqHrnIwp2vbHU2I2leVWTPsbZ9TNZtEdR3BZ3LWatU4zm68Wk0nWnzB5k+3CjQt3\n        UFwZj+UFvKOC0P0RUFY+PaNoaPlj9Eal1FtUsSGgnGkLg2s3amnL7gS3GTEZMM0SpoQ1NpFMW5Qp\n        Crk8mXSpGgm2GASqwHUhU8GeW9OVxpLnG+Z35S1QF1lrt/Wzb0ukpnTgmofNBtd+Cl+aFIAUZ1kB\n        sxHC0TafqYSBiBFOckoHiZhLCQ+hhTd/enSZ9ZISQ4cT1w/mUTJVYs3oeiASWjWR+VPmmcREYR79\n        6oShC6ISGWYpWesjsgomVLw3xNJ1OlM1aceItJPO8KwFFq2N1yjWlFgJ5UKb2pxaL3R+ncMBg8U6\n        Aqp1N8acewZcFfBRXIehZrgTRAD0UOvm1GBc/tYwmKc0GJKFHCSpPMqkNw5dG5c0AjaldHEtaD6C\n        6wHQZxubcEWHwXeg4syB9p2m4NutSlim5HAzIzlGK04f90EMRmOh+TtOV5cYB6tSRLMkcmNCMyEp\n        k2C8QCKYlscOVZ0ECHtyGZgpDtWfwIdPPTSe6f00rBrOd2DPRm7OMlLJ3sJDHA6i8fTbuEA3hPGA\n        at9gsr9Ev2JOwY4+AqzPikeJ/8gf6Tsl+8/vmriiEyv819QpukGXaUW6+iPuh/dVeqqX6HjDs18p\n        KZYXRHXbmayjfiJh+0M1eWWEVtFKHAx6afzL+g4cPRXFObYdP12f42/d/+oaN6im4Fl3G1Eu4WvQ\n        6+EkfyCx4bVVCJ1j30J76J5dDowvQejZcGHWO83Ju+oNcnXP1RsIepSgK1XtqNU/NLEuR+1Dc2lJ\n        jr16q11v7qfUgJyPq1fnQGDho6vr/uAcfiIvCfkf/ksfKb2ggkbgBOEo5lgcG/h123rq2J3mNuDd\n        +Y7Mq4T0v1lT4JouOohM0Xza+z71Ak7ybHTHwCqL3CoetYTmUKYu2IFLVadazcZuc+/D9umHnfMP\n        7U+HCoTLqePfBFNO8LrIURbeUwUB/aOWqOmBvJhTrAOIGU0Kamv8kt0+v2wYm90vneNOcyvemZR9\n        WUp0utwz5rJU8sKTlm1M3O0Zm8ATVDCNK/XGcu1yQhqbyFtYvvILwME5wymlN6gCJP8K/eTK8kcP\n        8Af0HcEpNglmoIKw4cXox1gg6W+Ahc0C1GPQ28zYJCbewqIJwwCT98a2yjM8fS4pLzM2jItfAFYA\n        VbCeuMoGgdFuNvfwuoat1UrkJQftSaXNjfGeVKLKdgD/eOw02tLqYzqmg9XFMCsurWmilWB7b4Fz\n        BblNuwHWVXZL7AJm9+WsLQuF5wp1WVWio1SJdWFmzfqNyh2At5bF3xi0P8TK18VnFamyeolezxlb\n        XrK6tZLXtPe0o6aBJsbXrgynuPctZEwc/rx3874F4HhJDSVFZoXIrLSZgthQ7eHA/mGFYd0a3kca\n        yPgnlhIVe0zOik3zefHRt/8ivk3eCTz+RiaUv/sDn/UOYeXGCVZrGHD+/dvrvrThSGD/G/obp/gO\n        ikeZ1m/ARzudfZiknw9e27uPGjDtdyqc+hHuZd/89mSFY1ofnrGgBZHFbOMjnJ7Ov+Om8qoICEZq\n        Lm4N6ZmZujr+LbFHFC6hOLcvoPPrIVnUI93I8qjx6ebmasCoFOdWyk+Qvn8G9ldCdQV1pr3T2Ocn\n        jQ7926m1dxvNvcS/Wn1vv9HcPcDvqaJgs13b+dDYaer/lj6J7H8oehIBXajTKtGF4LjKeRFRx8EX\n        9PFAlSh0Ru7Unck3kZuEa8dn9KwzoE0U8QdHHgkFy5QkITmTJO84Np2+SmM4Vt8aIHLa+Y8l71Fo\n        MDGDEG1HtMTAC8YLzxoS6JLtxZUgJjlSDUFcGVapxAhTBD76E3juMIR1wCbznAVfCIGL+lsLGGX7\n        X8Go0dlpdbbRF0NN2B1asx8BiHfzmvG3xk2jYMbMOSb3CUmH8X1yD79i1exYPgQRLwhxObCXvdjw\n        lxQF74N5WP/mekFaoapxLTRZp4wqOI3nZC/HMmUkKyI/y/Leomw9vXxEwv6MtUwEV+EDAAi7FhW2\n        B1KLyjMjCV7NsGBVo7kHjEp/waX4sLAV+CTtSt2iQN4fzYfOR3z0wIuWzgM888xoijypdA9xfM19\n        F0XzyTa9785mIfXAT6P4Yy/wx/IgfqQ4CXcSawz4LVZSpIpLOa7zSAys3m58ASiMwZR3BhLPlKFG\n        HzdGoXCfocotiblUzRiTX7Pgiy+ng4OdWu9qcPpxp9OmCK3owaKKl61dYLHa7sFurdU52AOmGT3M\n        WVbuNPWP9SXANc6wwzJ4udlbM38hMLHlhqbuOVaE4b/n4ffvKezOJhP/Ofh1fXcynxjJY64SjsWM\n        64XlnOXA5BiWBEsxyRZljgsxjU9Qwj8ig3DtOx3vQ3clrB/266dVEUxDrwl6CW6YByR9UiNMkEZd\n        250tCnH5H3lI/I8U9vAN8QVcey2gMT5JaCqiVsy7lrybXRSCgPXe793Rcrx/G29/G+fhXn6h4z+a\n        PjwD/RM8yyRExsOKuOc51wr1BQuC+ekCxMvatN1QGFGKMH/sjEPHidAVcvTtyYVbnG55H+7thzyC\n        LGmfON2fTSZcgKFgr3q2ryeJUov5NwqvmrhuWhO2FxaJKpNcSWWSQvY0fAayu6PRfDL3yJyc1iEq\n        oZxmXSuUFy+JXiAs2BhzxzMnwt/XBFH9ISxE/pUTjtjIl6GA+konw/0EBlyJEtDeeACB3EC4DAlX\n        VQLI+daEBgWLKUT96+N+ZeS/GPvrhf4i/ONRZFKMnTkVlgDTduDmcIuPnm9XVu6dTB8ntKSpvRLa\n        6VwkYEiFnNM7EsNSVVeiGdcE7SXLwdM+QDuUa3mmg21moeVHU5cfHF986pPRedVjXxUjzUJkbNID\n        lTEOrSjaqnwPEBxrdRGssEiEie0nJpYxxbq1qHhRG4wFMu+9+XfQw0xQfgsp9sWY1Nt5RJNfJETY\n        0LKfa1ggEKmGuoTPgNFcXhj0F0upLNkyKOtnd6i6TjSZZh591YsM2Yd0MP43zY829+8u4n2hbODS\n        UKyMx3c5RuEcC3B6GagMzeb0GhXzYYxXxOW/ef0Kiu+lUOSZq7O26SwYwHJL4SCioJV85kzxbm0d\n        3zQ/Nc+bA/1ZShi3NZBWM2ynIaNJ41f8VZ/k+R2g5FG+VmEQ3L7IHNuP7Td51GdWxpCwetYRu9Rg\n        W2iE1Z2NC62x6lH9YTxcxwd1AOuPx/TXw2Vl90xyuvetyKLACfqorlWAp9Aw2hUYQlZnH07tTbd3\n        OTjuD8hJkzw3r7jBKz+lC559i2f0T6eHH41PVjgJfK5Dzy42h24wgZOE3ibaTcpV8X7P7LDc5/pu\n        Fq6kmjNnowk3CJyczfb+/kGNP8BQr6WenenTnR07M59W9+uUYNc2jqxwSLvj8vribOnzpGWNGkHo\n        exwHNHbrQ9fftiNkDGCvqfefdmS69s+t/b2O5kNpfTOuXXvsGHFw0Zk1RP+/IFwYx1poT5cjfbvh\n        6AF/HlFseIGPZ5lf54gWhfyPz5DayyN9fgWf/3ZPp0Wunc08f003ijdgHNgkGQVuOnyGB/ThezA9\n        5Cn2FL5sIImS2zeg+9HBeHOf46mGjhc8ib+HYjMy0kCNgjExvl3E8Czg1KJNigIggDnRrlSOv9IH\n        l4PBxCpMKaK8VnW6Y+vSfFqDcdDjDV9SkV/tGNinILAXNdYUREIsYGT+jQKwYKLQklM1jD4+dHLv\n        JwzYsfBj3c+OToroAT5CTziZ6gCH4wgf30HqWJjYQgZcwf0+ioPI7wOUE3h7Y80JStU1BXkhsBkD\n        eehEDETuxPWsEJao4WJizYC9QdQgiGGnuY8SWMcaPRSiE5eeg0cD2MEN9bdbo1tCbYUmWJmv4AKZ\n        3wGJgF+r5+SCaPkj1/MwRE9SZspGIGMWOs42BcMxkiiWywjnnlMfWoh6G2BD4Y9aNtBtMQJy48u0\n        lLEszWg4h5skRD2CY+iobIdIVAQCHz2hizg1LwrkRrDz/V817L1xZQ5xA9CE9SS96C1RIf19AKEJ\n        cwDRMGJqmH5joG41mgIgwcglUpMf17gy5tYL4HwMr+AXPZoKA8azVDBY1L9YCF3NKZpnXa49nb7L\n        naF0JZCupuuoLCFcf2hLr4jMqjk27kFPmkc2K0sPjiei2lyRR4OYYvu9EmFI7nwLteii27/6qKTh\n        buySpZLhiPD+d9WMcMnPVY1wSbrvcTVv0IOdGv7YQdPaXuPDbgstfZ2dvQoaUZ4ZrPVhqX9nsU6E\n        K4CPuiCQkdlNUAJ+ux0cY9hb9+TqEn8oauF3uoGoSgxcgslFrD/zt0was20RCPXpQzATgWfbLgMj\n        Uyowreri0209h8Zx1zgBPcAY8GjlgXJlShSFK0WhS7tCzdCDj9ZNe2o29mpwI/4zPz/ZtWNXStj9\n        CCIr7u2Q3O7i7qcgwvqZAcbi0/wh+FttkEPOmF4hjbocgr7URrjoX+cl3M709+Hurbv+fWjROvKj\n        AO+qnD3JyLW34NstYxN33ZZSbuOQ+hqbcTXzLY9uuDIHIUlm6FdLHjkzTP/FWcE2r2vGac04rBn9\n        662GYdDRhD689sT1UV0OVWTiHW9348R1PNu4UpAbl/egXDmvgQNYJR4dHD3m+jzv7cA4RoVrRt7c\n        IG5phEjnXRETwji4vXFJZBFEjWhkTbEHpdLwHCuCofj9DelIKY5IGBNuwKheRnhSUU4SzbgAuhlb\n        siPGFqfQ4GhHOGvFl5i+3rhLydTGqRPc9E9OkkCPApDLyAecAhdBhctX14iabyzZX58e9q+No8tT\n        UNw9Z2O1Q6LiQVBpq7/Obs5J2EFSBpy1rp+fq0Ph4uT0+Mg4d2Y2x/0/L4WHGu4mceFXVYOEaPW+\n        oaE46XIdiLhfnUaDSmdReje5/sibY38+ebgiabyb0p78JBmmFZ530gLeTat5J3UDd8j/B2Pd4lKa\n        YQQA\n    headers:\n      Content-Encoding:\n      - gzip\n      Content-Length:\n      - '40644'\n      Content-Type:\n      - application/json\n      Date:\n      - Wed, 10 Nov 2021 22:00:31 GMT\n      Strict-Transport-Security:\n      - max-age=15724800; includeSubDomains\n      Vary:\n      - Accept-Encoding\n      X-Azure-Ref:\n      - 0AEGMYQAAAACKjF3aQWGhQ5NHhakATSSBQk9TMzIxMDAwMTEwMDIzADkyN2FiZmE2LTE5ZjYtNGFmMS1hMDlkLWM5NTlkOWExZTY0NA==\n      X-Cache:\n      - CONFIG_NOCACHE\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.26.0\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/\n  response:\n    body:\n      string: !!binary |\n        H4sIAABBjGEC/72ZUW8iNxCA/8qISlWrxiwkL3dUfQBCCFVIEEuVh1NUGa9ZfPWuN7aXlJ7y3zte\n        dgmJolNkzL1EitmZ+XZmPB7PfmvZbcFbvdaQWipV2jpriQT/zQTTyqiVJQXDNSusdE9Nm2WYSZpz\n        S/UWhiorSss1xIv+EPqzCT6fcMO0KKxQOUrFnGq2pkvJwRQUFy3PCqWphAxVJGgZdgJLkacwotqu\n        wTDBc8bB/Wq4NbBWxvIElluwaw7fA0H7xlL294ZrswPotjvtDi4zla+UzsxCtXpfWmtri14UPT09\n        tVXB81SYNmqKTMFZpFJGC0FWnNpSc0O6EeqInDz+0Rx1eUqnXH01COWtQFFz0fES1/zxlbRBcXys\n        7ZzlxNpKp9Gm8hVZokvbF4fv+oGnBcaVmCrYXkI/rYTcxc9btrekRjBSpRmVBD2jqVXaBNDZJG0g\n        pexRkoNM8FMSwGEHS+QIdRHq4zIxnsKPJddbT1mjtP246Ju90Xo4a0mR/2OwInxraS6xXBguV67o\n        7SojLQopmCtbedQETPMV/tJYLJoSxOoK1N6XzzYuOaLIESFJ1Ho+a8xopewPMOMq6KnMMCUlZ06Z\n        ObSomPmuxeY4ucPChQcG1AJHgFQaXgjqQk/xBPkQiDu6ovur+AIOJIFJagw3ILJC8ozn+/NHGDBc\n        b3Zb5RjvvVC+sO8L6DvYeHr89g46vBRdf5q9DjyU18o1AePR4oNcP45pdhcfQrG1kMmHmP6KxzGM\n        aQE3NE+wVwgQvX3uRyktvKBu+3H/cjSF6/ECNp1ONxxRTg1NeOZFdUm36G/o53mJPdqtcv1YP+Ma\n        Hw8HmFRGCK2MkJx6kV7PR/0eXIt0DXNulCzdQzByRpBW2C30GePGhMNGNfQYp05VbtdyC9f0iQoR\n        3J3ZTj1Zi2MgL6lAxNMGPnE2fOP+xpmnJW18ehxrvZtm2OhYBXPB1Kn2UqGPj/0pMXeRD0F5ok20\n        AzxuCzWpeUpHNonp6cp+vBjN4aa7CAdG8Y6uiezaADvlRMGtN4lndEdGC+h2yJS7iccpWgmhiCwl\n        86L7cz6EsVRL9F5c6hXFHvae2pB0XzUjqXnyonPeMtTCJ3RZoxHO4YZvuCTn4Rjlzg75RNg5kede\n        rFM1mPRgiu2iWsFAqERU0yRsKCZuCmDrm0Ug4kwt/dJxuhjEPVdrhFXaDc8WmuPLg8hhUOocYvSt\n        RuqAqHZpvFAXXGs6lCLDhAyHY51WVmv1wYrxWidyl4BNIvbD0Zm9csxD6nltgSHPTRmwhS0NYTuV\n        PkBDN/7KBSsNuJvL+OaO7CaKYeCYKgjeW0gqldMbiPDziQg/+xFeKc2NhUm+wQRRegvuHOnnVG6N\n        CBjolfDLufoIeV32dqOKqmZfUSakW/xlPJhc/RrwGr0UKz/iu1FM5jCUqkzgZyyIwrjpHhZrmtaD\n        xUCEiuPuyYT/COLicjTDukwzifdSl6ABA36R8MKNRSvdfj3hzV0M90rLBEFxA2YBe0OpDPEdSaRa\n        JNNRwE7VKcR20G/qMB70sD3V2H+L/3gCL/sloxhT3Chw3ukGLDnrdOk5XprMenBb/YaAfXxpVsrD\n        nQEzrVJNs5CDJ1G8mhrqjWCcuA987zNv8qStqKi+YqHSar75e/3t7o+L6rvd23lxrRQOPzMe9QK1\n        7Xblv+eH+gMi/9fiOVkNt3tfHp7/B46xGA8sHQAA\n    headers:\n      Content-Encoding:\n      - gzip\n      Content-Length:\n      - '1284'\n      Content-Type:\n      - application/json\n      Date:\n      - Wed, 10 Nov 2021 22:00:32 GMT\n      Strict-Transport-Security:\n      - max-age=15724800; includeSubDomains\n      Vary:\n      - Accept-Encoding\n      X-Azure-Ref:\n      - 0AEGMYQAAAADpUGj6DqsCQoxvabm0PiaWQk9TMzIxMDAwMTEwMDIzADkyN2FiZmE2LTE5ZjYtNGFmMS1hMDlkLWM5NTlkOWExZTY0NA==\n      X-Cache:\n      - CONFIG_NOCACHE\n    status:\n      code: 200\n      message: OK\nversion: 1\n"
  },
  {
    "path": "tests/cassettes/test_client/TestAPI.test_environment_variable.yaml",
    "content": "interactions:\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.25.1\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1\n  response:\n    body:\n      string: !!binary |\n        H4sIAAl/A2EC/82YUW/bNhDHv8pBe1xk2clL4Tc58ZwAcWZEHvYwFMOZOktsKZElaWde0e++oyzb\n        aucVQ4pWfjLA4x1/vP+RPOtjJPNoHFVSWO302sdGRFeRl14RD88Pw7BQWJNHu4NbXZmNJwvZMr2F\n        dPHA83Nywkrjpa7ZKyO0osSVInAGedBTZbRFBRWHyNEj7B1Wsi5gitaX4ISkWhAEqyPvoNTOUw6r\n        HfiS4GsgvL7Q9Vrbyi11NP4jKr03bpwkaOTAeRTOkBhoWyTb0WA4GMYr9h9cJ0JbYt//OVvyJmLX\n        7OxVTj992JDdta7s+fLyMtCG6kK6AW8oCRESXQiOGK8J/caSi0cJh0vC7rq0r/DW6G6Gr3cvSL9z\n        rO3bqyjs9s8tWbfXutkuB1ayfu84+R8jS4rHHal1KKSdCXWExigpQinUSROISSyt2XJIpDnIKlpV\n        B8eSHPBQSHQSluYEJ9Gnq8MyuRbutIynv3xS+kp1SvhX3iYXKbQzv2HZJsJp6bbmkKv2qxs9gITj\n        kvz+S3YDHU8QCp0jB7IyiiqqjzUvHTiy26a8vwG6S3liP9bxGWzW+ucz6HCq/dfTtDE6+vFx/15l\n        IrRSJEKwz2Qrpcp/wJJJWaw6KbyfTcZwj7bStfybNZ4pveILcSJ1xQUArBFcD0fDPkB5pkWhZIWe\n        OsTLMHzbDveRP0vYTeDzNOUMyqKEZ3JabcIsmIbpVgrpd5AKQa4XqR2fW1mTiq9jdd2Fzo4GeKRt\n        +E374Kv0SnZfdT15GMMcDeh1qMBcNvc5p/AhvNP+i8vih2He5GTCa1mpoOOJ97dslsHN3XQBWWuE\n        u+m8F6XZLXfo4zexCFp3IB/3FnjDfclhPhxl74MVuYGysRr5DmWaLafP8Dha9gGU444bwDhHqXZx\n        2a3Iu8YCd8HCt+QLStkjIN/RvmTEGv+NON/b4EmHrjWtiC8fvADWc+k8sPae0L3ixv6X4gtujb2G\n        Zyl075TnRN9TXprk5/J5kPwyMop1vUF1FjRtTJfFeU76lvNStG9Jz532lrS/w16jw5yqDtlTmqX8\n        UsP9bAnb4XDUS+/jV91eYr6cZONwTKTXNnx+WFrihxtkDZONrbnD4F6IW6E+UKWO1UZ1v79MnZUw\n        GsZzCh9cQovB3UX4T9iLvNJ8pu3DYgxPzUpcdmnBJ2OjwpcD7iKxIMuXkNWFxaoP2ALNlw3kjPvd\n        bgbfHjFu+U+o0kX06R8WRiU5DRMAAA==\n    headers:\n      Content-Encoding:\n      - gzip\n      Content-Length:\n      - '934'\n      Content-Type:\n      - application/json\n      Date:\n      - Fri, 30 Jul 2021 04:24:41 GMT\n      Strict-Transport-Security:\n      - max-age=15724800; includeSubDomains\n      Vary:\n      - Accept-Encoding\n      X-Azure-Ref:\n      - 0CH8DYQAAAAAvcyIhWf8DSafVV+FJzvZAQk9TMzFFREdFMDQyMQA5MjdhYmZhNi0xOWY2LTRhZjEtYTA5ZC1jOTU5ZDlhMWU2NDQ=\n      X-Cache:\n      - CONFIG_NOCACHE\n    status:\n      code: 200\n      message: OK\nversion: 1\n"
  },
  {
    "path": "tests/cassettes/test_client/TestAPI.test_from_file.yaml",
    "content": "interactions:\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1\n  response:\n    body:\n      string: '{\"type\":\"Catalog\",\"id\":\"microsoft-pc\",\"title\":\"Microsoft Planetary\n        Computer STAC API\",\"description\":\"Searchable spatiotemporal metadata describing\n        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\",\"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/geojson\",\"https://api.stacspec.org/v1.0.0/item-search#query\",\"https://api.stacspec.org/v1.0.0/item-search\",\"https://api.stacspec.org/v1.0.0/item-search#sort\",\"https://api.stacspec.org/v1.0.0-rc.2/item-search#filter\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-json\",\"https://api.stacspec.org/v1.0.0/item-search#fields\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30\",\"https://api.stacspec.org/v1.0.0/collections\",\"https://api.stacspec.org/v1.0.0/ogcapi-features\",\"http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/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\n        conformance classes implemented by this server\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/conformance\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        search\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/search\",\"method\":\"GET\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        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\n        Annual Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Seamless DEMs\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Surface Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Forest\n        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\n        Annual North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Annual Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Tables\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HGB:\n        Harmonized Global Biomass for 2010\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        DEM GLO-30\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        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\n        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\n        IMERG\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Rasters\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Height above Ground\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        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\n        1 Radiometrically Terrain Corrected (RTC)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Intensity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Source\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MTBS:\n        Monitoring Trends in Burn Severity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"C-CAP\n        Regional Land Cover and Change\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Cloud\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Burned Area Monthly\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        Forest/Non-Forest Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Returns\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MoBI:\n        Map of Biodiversity Importance\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ERA5\n        - PDS\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chloris\n        Biomass\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HydroForecast\n        - Kwando & Upper Zambezi Rivers\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Planet-NICFI\n        Basemaps (Analytic)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Gross Primary Productivity 8-Day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Daily Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        3DEP Lidar Classification\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Terrain Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        Gap Land Cover\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Basemaps (Visual)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Global\n        Biodiversity Information Facility (GBIF)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        World 3D-30m\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        PALSAR Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Water Availability\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Net Evapotranspiration Yearly Gap-Filled\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Census\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"JRC\n        Global Surface Water\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Flood Maps\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Thermal Anomalies/Fire Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HREA:\n        High Resolution Electricity Access\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Vegetation Indices 16-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Level-2A\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Land Surface Temperature/Emissivity Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Vegetation Indices 16-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Land\n        Cover of Canada\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Snow Cover 8-day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ECMWF\n        Open Data (real-time)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        HGT v001\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Esri\n        10-Meter Land Cover (10-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-1\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Denver\n        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\n        Land Cover (7-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Cover (13-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Use\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        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\n        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\n        Cropland Data Layers (CDLs)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Urban\n        Innovation Eclipse Sensor Data\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ESA\n        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\n        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\n        National Wetlands Inventory\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        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\n        US Tabular Climate Normals\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        Lightning Detection\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel\n        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\n        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\n        L1T\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"CIL\n        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:\n        National Agriculture Imagery Program\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        Intactness\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sea\n        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\n        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\n        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\n        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\n        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\n        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\n        Snow Cover Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-5P\n        Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        Building Footprints\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        service description\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json\"},{\"rel\":\"service-doc\",\"type\":\"text/html\",\"title\":\"OpenAPI\n        service documentation\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/docs\"}],\"stac_extensions\":[]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '3359'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:07:11 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150711Z-r17d779659cgl5g2hC1DEN025w00000003q0000000003vwx\n    status:\n      code: 200\n      message: OK\nversion: 1\n"
  },
  {
    "path": "tests/cassettes/test_client/TestAPI.test_instance.yaml",
    "content": "interactions:\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1\n  response:\n    body:\n      string: '{\"type\":\"Catalog\",\"id\":\"microsoft-pc\",\"title\":\"Microsoft Planetary\n        Computer STAC API\",\"description\":\"Searchable spatiotemporal metadata describing\n        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\",\"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/geojson\",\"https://api.stacspec.org/v1.0.0/item-search#query\",\"https://api.stacspec.org/v1.0.0/item-search\",\"https://api.stacspec.org/v1.0.0/item-search#sort\",\"https://api.stacspec.org/v1.0.0-rc.2/item-search#filter\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-json\",\"https://api.stacspec.org/v1.0.0/item-search#fields\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30\",\"https://api.stacspec.org/v1.0.0/collections\",\"https://api.stacspec.org/v1.0.0/ogcapi-features\",\"http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/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\n        conformance classes implemented by this server\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/conformance\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        search\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/search\",\"method\":\"GET\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        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\n        Annual Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Seamless DEMs\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Surface Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Forest\n        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\n        Annual North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Annual Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Tables\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HGB:\n        Harmonized Global Biomass for 2010\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        DEM GLO-30\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        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\n        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\n        IMERG\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Rasters\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Height above Ground\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        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\n        1 Radiometrically Terrain Corrected (RTC)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Intensity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Source\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MTBS:\n        Monitoring Trends in Burn Severity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"C-CAP\n        Regional Land Cover and Change\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Cloud\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Burned Area Monthly\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        Forest/Non-Forest Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Returns\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MoBI:\n        Map of Biodiversity Importance\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ERA5\n        - PDS\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chloris\n        Biomass\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HydroForecast\n        - Kwando & Upper Zambezi Rivers\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Planet-NICFI\n        Basemaps (Analytic)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Gross Primary Productivity 8-Day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Daily Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        3DEP Lidar Classification\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Terrain Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        Gap Land Cover\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Basemaps (Visual)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Global\n        Biodiversity Information Facility (GBIF)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        World 3D-30m\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        PALSAR Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Water Availability\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Net Evapotranspiration Yearly Gap-Filled\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Census\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"JRC\n        Global Surface Water\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Flood Maps\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Thermal Anomalies/Fire Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HREA:\n        High Resolution Electricity Access\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Vegetation Indices 16-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Level-2A\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Land Surface Temperature/Emissivity Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Vegetation Indices 16-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Land\n        Cover of Canada\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Snow Cover 8-day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ECMWF\n        Open Data (real-time)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        HGT v001\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Esri\n        10-Meter Land Cover (10-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-1\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Denver\n        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\n        Land Cover (7-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Cover (13-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Use\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        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\n        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\n        Cropland Data Layers (CDLs)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Urban\n        Innovation Eclipse Sensor Data\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ESA\n        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\n        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\n        National Wetlands Inventory\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        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\n        US Tabular Climate Normals\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        Lightning Detection\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel\n        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\n        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\n        L1T\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"CIL\n        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:\n        National Agriculture Imagery Program\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        Intactness\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sea\n        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\n        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\n        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\n        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\n        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\n        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\n        Snow Cover Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-5P\n        Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        Building Footprints\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        service description\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json\"},{\"rel\":\"service-doc\",\"type\":\"text/html\",\"title\":\"OpenAPI\n        service documentation\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/docs\"}],\"stac_extensions\":[]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '3359'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:07:09 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150708Z-r17d779659cqhh64hC1DEN1czn00000004n0000000005z0v\n    status:\n      code: 200\n      message: OK\nversion: 1\n"
  },
  {
    "path": "tests/cassettes/test_client/TestAPI.test_links.yaml",
    "content": "interactions:\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1\n  response:\n    body:\n      string: '{\"type\":\"Catalog\",\"id\":\"microsoft-pc\",\"title\":\"Microsoft Planetary\n        Computer STAC API\",\"description\":\"Searchable spatiotemporal metadata describing\n        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\",\"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/geojson\",\"https://api.stacspec.org/v1.0.0/item-search#query\",\"https://api.stacspec.org/v1.0.0/item-search\",\"https://api.stacspec.org/v1.0.0/item-search#sort\",\"https://api.stacspec.org/v1.0.0-rc.2/item-search#filter\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-json\",\"https://api.stacspec.org/v1.0.0/item-search#fields\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30\",\"https://api.stacspec.org/v1.0.0/collections\",\"https://api.stacspec.org/v1.0.0/ogcapi-features\",\"http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/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\n        conformance classes implemented by this server\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/conformance\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        search\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/search\",\"method\":\"GET\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        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\n        Annual Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Seamless DEMs\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Surface Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Forest\n        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\n        Annual North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Annual Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Tables\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HGB:\n        Harmonized Global Biomass for 2010\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        DEM GLO-30\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        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\n        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\n        IMERG\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Rasters\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Height above Ground\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        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\n        1 Radiometrically Terrain Corrected (RTC)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Intensity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Source\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MTBS:\n        Monitoring Trends in Burn Severity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"C-CAP\n        Regional Land Cover and Change\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Cloud\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Burned Area Monthly\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        Forest/Non-Forest Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Returns\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MoBI:\n        Map of Biodiversity Importance\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ERA5\n        - PDS\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chloris\n        Biomass\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HydroForecast\n        - Kwando & Upper Zambezi Rivers\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Planet-NICFI\n        Basemaps (Analytic)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Gross Primary Productivity 8-Day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Daily Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        3DEP Lidar Classification\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Terrain Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        Gap Land Cover\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Basemaps (Visual)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Global\n        Biodiversity Information Facility (GBIF)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        World 3D-30m\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        PALSAR Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Water Availability\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Net Evapotranspiration Yearly Gap-Filled\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Census\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"JRC\n        Global Surface Water\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Flood Maps\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Thermal Anomalies/Fire Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HREA:\n        High Resolution Electricity Access\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Vegetation Indices 16-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Level-2A\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Land Surface Temperature/Emissivity Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Vegetation Indices 16-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Land\n        Cover of Canada\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Snow Cover 8-day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ECMWF\n        Open Data (real-time)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        HGT v001\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Esri\n        10-Meter Land Cover (10-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-1\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Denver\n        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\n        Land Cover (7-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Cover (13-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Use\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        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\n        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\n        Cropland Data Layers (CDLs)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Urban\n        Innovation Eclipse Sensor Data\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ESA\n        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\n        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\n        National Wetlands Inventory\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        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\n        US Tabular Climate Normals\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        Lightning Detection\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel\n        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\n        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\n        L1T\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"CIL\n        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:\n        National Agriculture Imagery Program\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        Intactness\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sea\n        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\n        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\n        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\n        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\n        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\n        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\n        Snow Cover Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-5P\n        Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        Building Footprints\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        service description\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json\"},{\"rel\":\"service-doc\",\"type\":\"text/html\",\"title\":\"OpenAPI\n        service documentation\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/docs\"}],\"stac_extensions\":[]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '3359'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:07:09 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150709Z-r17d779659cgv7lqhC1DENzvbg00000003qg000000001avh\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/\n  response:\n    body:\n      string: '{\"type\":\"Catalog\",\"id\":\"microsoft-pc\",\"title\":\"Microsoft Planetary\n        Computer STAC API\",\"description\":\"Searchable spatiotemporal metadata describing\n        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\",\"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/geojson\",\"https://api.stacspec.org/v1.0.0/item-search#query\",\"https://api.stacspec.org/v1.0.0/item-search\",\"https://api.stacspec.org/v1.0.0/item-search#sort\",\"https://api.stacspec.org/v1.0.0-rc.2/item-search#filter\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-json\",\"https://api.stacspec.org/v1.0.0/item-search#fields\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30\",\"https://api.stacspec.org/v1.0.0/collections\",\"https://api.stacspec.org/v1.0.0/ogcapi-features\",\"http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/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\n        conformance classes implemented by this server\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/conformance\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        search\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/search\",\"method\":\"GET\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        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\n        Annual Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Seamless DEMs\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Surface Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Forest\n        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\n        Annual North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Annual Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Tables\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HGB:\n        Harmonized Global Biomass for 2010\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        DEM GLO-30\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        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\n        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\n        IMERG\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Rasters\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Height above Ground\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        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\n        1 Radiometrically Terrain Corrected (RTC)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Intensity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Source\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MTBS:\n        Monitoring Trends in Burn Severity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"C-CAP\n        Regional Land Cover and Change\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Cloud\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Burned Area Monthly\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        Forest/Non-Forest Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Returns\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MoBI:\n        Map of Biodiversity Importance\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ERA5\n        - PDS\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chloris\n        Biomass\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HydroForecast\n        - Kwando & Upper Zambezi Rivers\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Planet-NICFI\n        Basemaps (Analytic)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Gross Primary Productivity 8-Day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Daily Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        3DEP Lidar Classification\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Terrain Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        Gap Land Cover\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Basemaps (Visual)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Global\n        Biodiversity Information Facility (GBIF)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        World 3D-30m\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        PALSAR Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Water Availability\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Net Evapotranspiration Yearly Gap-Filled\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Census\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"JRC\n        Global Surface Water\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Flood Maps\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Thermal Anomalies/Fire Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HREA:\n        High Resolution Electricity Access\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Vegetation Indices 16-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Level-2A\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Land Surface Temperature/Emissivity Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Vegetation Indices 16-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Land\n        Cover of Canada\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Snow Cover 8-day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ECMWF\n        Open Data (real-time)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        HGT v001\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Esri\n        10-Meter Land Cover (10-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-1\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Denver\n        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\n        Land Cover (7-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Cover (13-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Use\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        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\n        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\n        Cropland Data Layers (CDLs)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Urban\n        Innovation Eclipse Sensor Data\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ESA\n        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\n        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\n        National Wetlands Inventory\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        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\n        US Tabular Climate Normals\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        Lightning Detection\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel\n        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\n        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\n        L1T\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"CIL\n        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:\n        National Agriculture Imagery Program\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        Intactness\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sea\n        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\n        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\n        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\n        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\n        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\n        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\n        Snow Cover Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-5P\n        Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        Building Footprints\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        service description\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json\"},{\"rel\":\"service-doc\",\"type\":\"text/html\",\"title\":\"OpenAPI\n        service documentation\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/docs\"}],\"stac_extensions\":[]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '3359'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:07:10 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150709Z-r17d779659cnj9cghC1DENr2m800000004f00000000090bs\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/collections\n  response:\n    body:\n      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\n        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\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"Daymet\n        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\n        annual Puerto Rico map thumbnail\\\"},\\\"zarr-abfs\\\":{\\\"href\\\":\\\"abfs://daymet-zarr/annual/pr.zarr\\\",\\\"type\\\":\\\"application/vnd+zarr\\\",\\\"roles\\\":[\\\"data\\\",\\\"zarr\\\",\\\"abfs\\\"],\\\"title\\\":\\\"Annual\n        Puerto Rico Daymet Azure Blob File System Zarr root\\\",\\\"description\\\":\\\"Azure\n        Blob File System of the annual Puerto Rico Daymet Zarr Group on Azure Blob\n        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\n        Puerto Rico Daymet HTTPS Zarr root\\\",\\\"description\\\":\\\"HTTPS URI of the annual\n        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\n        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\n        DAAC\\\",\\\"roles\\\":[\\\"producer\\\"]}],\\\"description\\\":\\\"Annual climate summaries\n        derived from [Daymet](https://daymet.ornl.gov) Version 4 daily data at a 1\n        km x 1 km spatial resolution for five variables: minimum and maximum temperature,\n        precipitation, vapor pressure, and snow water equivalent. Annual averages\n        are provided for minimum and maximum temperature, vapor pressure, and snow\n        water equivalent, and annual totals are provided for the precipitation variable.\\\\n\\\\n[Daymet](https://daymet.ornl.gov/)\n        provides measurements of near-surface meteorological conditions; the main\n        purpose is to provide data estimates where no instrumentation exists. The\n        dataset covers the period from January 1, 1980 to the present. Each year is\n        processed individually at the close of a calendar year. Data are in a Lambert\n        conformal conic projection for North America and are distributed in Zarr and\n        NetCDF formats, compliant with the [Climate and Forecast (CF) metadata conventions\n        (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)\n        to cite your usage of the data.\\\\n\\\\nThis dataset provides coverage for Hawaii;\n        North America and Puerto Rico are provided in [separate datasets](https://planetarycomputer.microsoft.com/dataset/group/daymet#annual).\n        \\\\n\\\\n\\\",\\\"sci:citation\\\":\\\"Thornton, M.M., R. Shrestha, Y. Wei, P.E. Thornton,\n        S. Kao, and B.E. Wilson. 2020. Daymet: Annual Climate Summaries on a 1-km\n        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\n        average of daily average vapor pressure\\\",\\\"cell_methods\\\":\\\"area: mean time:\n        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\n        average of daily average vapor pressure\\\"},\\\"lat\\\":{\\\"type\\\":\\\"auxiliary\\\",\\\"unit\\\":\\\"degrees_north\\\",\\\"attrs\\\":{\\\"units\\\":\\\"degrees_north\\\",\\\"long_name\\\":\\\"latitude\n        coordinate\\\",\\\"standard_name\\\":\\\"latitude\\\"},\\\"shape\\\":[231,364],\\\"chunks\\\":[231,364],\\\"dimensions\\\":[\\\"y\\\",\\\"x\\\"],\\\"description\\\":\\\"latitude\n        coordinate\\\"},\\\"lon\\\":{\\\"type\\\":\\\"auxiliary\\\",\\\"unit\\\":\\\"degrees_east\\\",\\\"attrs\\\":{\\\"units\\\":\\\"degrees_east\\\",\\\"long_name\\\":\\\"longitude\n        coordinate\\\",\\\"standard_name\\\":\\\"longitude\\\"},\\\"shape\\\":[231,364],\\\"chunks\\\":[231,364],\\\"dimensions\\\":[\\\"y\\\",\\\"x\\\"],\\\"description\\\":\\\"longitude\n        coordinate\\\"},\\\"swe\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"kg/m2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"kg/m2\\\",\\\"long_name\\\":\\\"annual\n        average snow water equivalent\\\",\\\"cell_methods\\\":\\\"area: mean time: sum within\n        days time: mean over days\\\",\\\"grid_mapping\\\":\\\"lambert_conformal_conic\\\"},\\\"shape\\\":[41,231,364],\\\"chunks\\\":[1,231,364],\\\"dimensions\\\":[\\\"time\\\",\\\"y\\\",\\\"x\\\"],\\\"description\\\":\\\"annual\n        average snow water equivalent\\\"},\\\"prcp\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"mm\\\",\\\"attrs\\\":{\\\"units\\\":\\\"mm\\\",\\\"long_name\\\":\\\"annual\n        total precipitation\\\",\\\"cell_methods\\\":\\\"area: mean time: sum within days\n        time: sum over days\\\",\\\"grid_mapping\\\":\\\"lambert_conformal_conic\\\"},\\\"shape\\\":[41,231,364],\\\"chunks\\\":[1,231,364],\\\"dimensions\\\":[\\\"time\\\",\\\"y\\\",\\\"x\\\"],\\\"description\\\":\\\"annual\n        total precipitation\\\"},\\\"tmax\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"degrees C\\\",\\\"attrs\\\":{\\\"units\\\":\\\"degrees\n        C\\\",\\\"long_name\\\":\\\"annual average of daily maximum temperature\\\",\\\"cell_methods\\\":\\\"area:\n        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\n        average of daily maximum temperature\\\"},\\\"tmin\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"degrees\n        C\\\",\\\"attrs\\\":{\\\"units\\\":\\\"degrees C\\\",\\\"long_name\\\":\\\"annual average of daily\n        minimum temperature\\\",\\\"cell_methods\\\":\\\"area: mean time: minimum within days\n        time: mean over days\\\",\\\"grid_mapping\\\":\\\"lambert_conformal_conic\\\"},\\\"shape\\\":[41,231,364],\\\"chunks\\\":[1,231,364],\\\"dimensions\\\":[\\\"time\\\",\\\"y\\\",\\\"x\\\"],\\\"description\\\":\\\"annual\n        average of daily minimum temperature\\\"},\\\"time_bnds\\\":{\\\"type\\\":\\\"data\\\",\\\"attrs\\\":{\\\"time\\\":\\\"days\n        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\n        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\n        Conic Conformal (2SP)\\\"},\\\"parameters\\\":[{\\\"id\\\":{\\\"code\\\":8823,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Latitude\n        of 1st standard parallel\\\",\\\"unit\\\":\\\"degree\\\",\\\"value\\\":25},{\\\"id\\\":{\\\"code\\\":8824,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Latitude\n        of 2nd standard parallel\\\",\\\"unit\\\":\\\"degree\\\",\\\"value\\\":60},{\\\"id\\\":{\\\"code\\\":8821,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Latitude\n        of false origin\\\",\\\"unit\\\":\\\"degree\\\",\\\"value\\\":42.5},{\\\"id\\\":{\\\"code\\\":8822,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Longitude\n        of false origin\\\",\\\"unit\\\":\\\"degree\\\",\\\"value\\\":-100},{\\\"id\\\":{\\\"code\\\":8826,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Easting\n        at false origin\\\",\\\"unit\\\":\\\"metre\\\",\\\"value\\\":0},{\\\"id\\\":{\\\"code\\\":8827,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Northing\n        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\n        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\n        Conic Conformal (2SP)\\\"},\\\"parameters\\\":[{\\\"id\\\":{\\\"code\\\":8823,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Latitude\n        of 1st standard parallel\\\",\\\"unit\\\":\\\"degree\\\",\\\"value\\\":25},{\\\"id\\\":{\\\"code\\\":8824,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Latitude\n        of 2nd standard parallel\\\",\\\"unit\\\":\\\"degree\\\",\\\"value\\\":60},{\\\"id\\\":{\\\"code\\\":8821,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Latitude\n        of false origin\\\",\\\"unit\\\":\\\"degree\\\",\\\"value\\\":42.5},{\\\"id\\\":{\\\"code\\\":8822,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Longitude\n        of false origin\\\",\\\"unit\\\":\\\"degree\\\",\\\"value\\\":-100},{\\\"id\\\":{\\\"code\\\":8826,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Easting\n        at false origin\\\",\\\"unit\\\":\\\"metre\\\",\\\"value\\\":0},{\\\"id\\\":{\\\"code\\\":8827,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Northing\n        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\n        of the 'time_bnds' variable.\\\"},\\\"time\\\":{\\\"type\\\":\\\"temporal\\\",\\\"extent\\\":[\\\"1980-07-01T12:00:00Z\\\",\\\"2020-07-01T12:00:00Z\\\"],\\\"description\\\":\\\"24-hour\n        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\n        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\n        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\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"Daymet\n        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\n        daily Hawaii map thumbnail\\\"},\\\"zarr-abfs\\\":{\\\"href\\\":\\\"abfs://daymet-zarr/daily/hi.zarr\\\",\\\"type\\\":\\\"application/vnd+zarr\\\",\\\"roles\\\":[\\\"data\\\",\\\"zarr\\\",\\\"abfs\\\"],\\\"title\\\":\\\"Daily\n        Hawaii Daymet Azure Blob File System Zarr root\\\",\\\"description\\\":\\\"Azure Blob\n        File System of the daily Hawaii Daymet Zarr Group on Azure Blob Storage for\n        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\n        Hawaii Daymet HTTPS Zarr root\\\",\\\"description\\\":\\\"HTTPS URI of the daily Hawaii\n        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\n        Pressure\\\",\\\"Weather\\\"],\\\"providers\\\":[{\\\"url\\\":\\\"https://planetarycomputer.microsoft.com\\\",\\\"name\\\":\\\"Microsoft\\\",\\\"roles\\\":[\\\"host\\\",\\\"processor\\\"]},{\\\"url\\\":\\\"https://doi.org/10.3334/ORNLDAAC/1840\\\",\\\"name\\\":\\\"ORNL\n        DAAC\\\",\\\"roles\\\":[\\\"producer\\\"]}],\\\"description\\\":\\\"Gridded estimates of daily\n        weather parameters. [Daymet](https://daymet.ornl.gov) Version 4 variables\n        include the following parameters: minimum temperature, maximum temperature,\n        precipitation, shortwave radiation, vapor pressure, snow water equivalent,\n        and day length.\\\\n\\\\n[Daymet](https://daymet.ornl.gov/) provides measurements\n        of near-surface meteorological conditions; the main purpose is to provide\n        data estimates where no instrumentation exists. The dataset covers the period\n        from January 1, 1980 to the present. Each year is processed individually at\n        the close of a calendar year. Data are in a Lambert conformal conic projection\n        for North America and are distributed in Zarr and NetCDF formats, compliant\n        with the [Climate and Forecast (CF) metadata conventions (version 1.6)](http://cfconventions.org/).\\\\n\\\\nUse\n        the DOI at [https://doi.org/10.3334/ORNLDAAC/1840](https://doi.org/10.3334/ORNLDAAC/1840)\n        to cite your usage of the data.\\\\n\\\\nThis dataset provides coverage for Hawaii;\n        North America and Puerto Rico are provided in [separate datasets](https://planetarycomputer.microsoft.com/dataset/group/daymet#daily).\\\\n\\\\n\\\",\\\"sci:citation\\\":\\\"Thornton,\n        M.M., R. Shrestha, P.E. Thornton, S. Kao, Y. Wei, and B.E. Wilson. 2021. Daymet\n        Version 4 Monthly Latency: Daily Surface Weather Data. ORNL DAAC, Oak Ridge,\n        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\n        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\n        average vapor pressure\\\"},\\\"lat\\\":{\\\"type\\\":\\\"auxiliary\\\",\\\"unit\\\":\\\"degrees_north\\\",\\\"attrs\\\":{\\\"units\\\":\\\"degrees_north\\\",\\\"long_name\\\":\\\"latitude\n        coordinate\\\",\\\"standard_name\\\":\\\"latitude\\\"},\\\"shape\\\":[584,284],\\\"chunks\\\":[584,284],\\\"dimensions\\\":[\\\"y\\\",\\\"x\\\"],\\\"description\\\":\\\"latitude\n        coordinate\\\"},\\\"lon\\\":{\\\"type\\\":\\\"auxiliary\\\",\\\"unit\\\":\\\"degrees_east\\\",\\\"attrs\\\":{\\\"units\\\":\\\"degrees_east\\\",\\\"long_name\\\":\\\"longitude\n        coordinate\\\",\\\"standard_name\\\":\\\"longitude\\\"},\\\"shape\\\":[584,284],\\\"chunks\\\":[584,284],\\\"dimensions\\\":[\\\"y\\\",\\\"x\\\"],\\\"description\\\":\\\"longitude\n        coordinate\\\"},\\\"swe\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"kg/m2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"kg/m2\\\",\\\"long_name\\\":\\\"snow\n        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\n        water equivalent\\\"},\\\"dayl\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"s\\\",\\\"attrs\\\":{\\\"units\\\":\\\"s\\\",\\\"long_name\\\":\\\"daylength\\\",\\\"cell_methods\\\":\\\"area:\n        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\n        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\n        total precipitation\\\"},\\\"srad\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"W/m2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"W/m2\\\",\\\"long_name\\\":\\\"daylight\n        average incident shortwave radiation\\\",\\\"cell_methods\\\":\\\"area: mean time:\n        mean\\\",\\\"grid_mapping\\\":\\\"lambert_conformal_conic\\\"},\\\"shape\\\":[14965,584,284],\\\"chunks\\\":[365,584,284],\\\"dimensions\\\":[\\\"time\\\",\\\"y\\\",\\\"x\\\"],\\\"description\\\":\\\"daylight\n        average incident shortwave radiation\\\"},\\\"tmax\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"degrees\n        C\\\",\\\"attrs\\\":{\\\"units\\\":\\\"degrees C\\\",\\\"long_name\\\":\\\"daily maximum temperature\\\",\\\"cell_methods\\\":\\\"area:\n        mean time: maximum\\\",\\\"grid_mapping\\\":\\\"lambert_conformal_conic\\\"},\\\"shape\\\":[14965,584,284],\\\"chunks\\\":[365,584,284],\\\"dimensions\\\":[\\\"time\\\",\\\"y\\\",\\\"x\\\"],\\\"description\\\":\\\"daily\n        maximum temperature\\\"},\\\"tmin\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"degrees C\\\",\\\"attrs\\\":{\\\"units\\\":\\\"degrees\n        C\\\",\\\"long_name\\\":\\\"daily minimum temperature\\\",\\\"cell_methods\\\":\\\"area: mean\n        time: minimum\\\",\\\"grid_mapping\\\":\\\"lambert_conformal_conic\\\"},\\\"shape\\\":[14965,584,284],\\\"chunks\\\":[365,584,284],\\\"dimensions\\\":[\\\"time\\\",\\\"y\\\",\\\"x\\\"],\\\"description\\\":\\\"daily\n        minimum temperature\\\"},\\\"yearday\\\":{\\\"type\\\":\\\"data\\\",\\\"attrs\\\":{\\\"long_name\\\":\\\"day\n        of year (DOY) starting with day 1 on January 1st\\\"},\\\"shape\\\":[14965],\\\"chunks\\\":[365],\\\"dimensions\\\":[\\\"time\\\"],\\\"description\\\":\\\"day\n        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\n        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\n        Conic Conformal (2SP)\\\"},\\\"parameters\\\":[{\\\"id\\\":{\\\"code\\\":8823,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Latitude\n        of 1st standard parallel\\\",\\\"unit\\\":\\\"degree\\\",\\\"value\\\":25},{\\\"id\\\":{\\\"code\\\":8824,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Latitude\n        of 2nd standard parallel\\\",\\\"unit\\\":\\\"degree\\\",\\\"value\\\":60},{\\\"id\\\":{\\\"code\\\":8821,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Latitude\n        of false origin\\\",\\\"unit\\\":\\\"degree\\\",\\\"value\\\":42.5},{\\\"id\\\":{\\\"code\\\":8822,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Longitude\n        of false origin\\\",\\\"unit\\\":\\\"degree\\\",\\\"value\\\":-100},{\\\"id\\\":{\\\"code\\\":8826,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Easting\n        at false origin\\\",\\\"unit\\\":\\\"metre\\\",\\\"value\\\":0},{\\\"id\\\":{\\\"code\\\":8827,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Northing\n        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\n        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\n        Conic Conformal (2SP)\\\"},\\\"parameters\\\":[{\\\"id\\\":{\\\"code\\\":8823,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Latitude\n        of 1st standard parallel\\\",\\\"unit\\\":\\\"degree\\\",\\\"value\\\":25},{\\\"id\\\":{\\\"code\\\":8824,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Latitude\n        of 2nd standard parallel\\\",\\\"unit\\\":\\\"degree\\\",\\\"value\\\":60},{\\\"id\\\":{\\\"code\\\":8821,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Latitude\n        of false origin\\\",\\\"unit\\\":\\\"degree\\\",\\\"value\\\":42.5},{\\\"id\\\":{\\\"code\\\":8822,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Longitude\n        of false origin\\\",\\\"unit\\\":\\\"degree\\\",\\\"value\\\":-100},{\\\"id\\\":{\\\"code\\\":8826,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Easting\n        at false origin\\\",\\\"unit\\\":\\\"metre\\\",\\\"value\\\":0},{\\\"id\\\":{\\\"code\\\":8827,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Northing\n        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\n        of the 'time_bnds' variable.\\\"},\\\"time\\\":{\\\"type\\\":\\\"temporal\\\",\\\"extent\\\":[\\\"1980-01-01T12:00:00Z\\\",\\\"2020-12-30T12:00:00Z\\\"],\\\"description\\\":\\\"24-hour\n        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\n        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\n        Domain\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/3dep-seamless\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"USGS\n        3DEP Seamless DEMs\\\",\\\"assets\\\":{\\\"thumbnail\\\":{\\\"href\\\":\\\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/threedep.png\\\",\\\"type\\\":\\\"image/png\\\",\\\"roles\\\":[\\\"thumbnail\\\"],\\\"title\\\":\\\"USGS\n        3DEP\\\"},\\\"geoparquet-items\\\":{\\\"href\\\":\\\"abfs://items/3dep-seamless.parquet\\\",\\\"type\\\":\\\"application/x-parquet\\\",\\\"roles\\\":[\\\"stac-items\\\"],\\\"title\\\":\\\"GeoParquet\n        STAC items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        digital elevation data at horizontal resolutions ranging from one to sixty\n        meters.\\\\n\\\\nThe [USGS 3D Elevation Program (3DEP) Datasets](https://www.usgs.gov/core-science-systems/ngp/3dep)\n        from the [National Map](https://www.usgs.gov/core-science-systems/national-geospatial-program/national-map)\n        are the primary elevation data product produced and distributed by the USGS.\n        The 3DEP program provides raster elevation data for the conterminous United\n        States, Alaska, Hawaii, and the island territories, at a variety of spatial\n        resolutions.  The seamless DEM layers produced by the 3DEP program are updated\n        frequently to integrate newly available, improved elevation source data.  \\\\n\\\\nDEM\n        layers are available nationally at grid spacings of 1 arc-second (approximately\n        30 meters) for the conterminous United States, and at approximately 1, 3,\n        and 9 meters for parts of the United States. Most seamless DEM data for Alaska\n        is available at a resolution of approximately 60 meters, where only lower\n        resolution source data exist.\\\\n\\\",\\\"item_assets\\\":{\\\"data\\\":{\\\"type\\\":\\\"image/tiff;\n        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\n        digital elevation data at horizontal resolutions ranging from one to sixty\n        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\n        3DEP Products & Services\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/3dep-lidar-dsm\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"USGS\n        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\n        Lidar COG\\\"},\\\"geoparquet-items\\\":{\\\"href\\\":\\\"abfs://items/3dep-lidar-dsm.parquet\\\",\\\"type\\\":\\\"application/x-parquet\\\",\\\"roles\\\":[\\\"stac-items\\\"],\\\"title\\\":\\\"GeoParquet\n        STAC items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        collection is derived from the [USGS 3DEP COPC collection](https://planetarycomputer.microsoft.com/dataset/3dep-lidar-copc).\n        It creates a Digital Surface Model (DSM) using [`pdal.filters.range`](https://pdal.io/stages/filters.range.html#filters-range)\n        to output a collection of Cloud Optimized GeoTIFFs, removing all points that\n        have been classified as noise.\\\",\\\"item_assets\\\":{\\\"data\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"COG data\\\",\\\"raster:bands\\\":[{\\\"type\\\":\\\"Z\\\",\\\"unit\\\":\\\"metre\\\",\\\"sampling\\\":\\\"point\\\",\\\"data_type\\\":\\\"float32\\\",\\\"description\\\":\\\"Z\n        PDAL Dimension\\\"}]},\\\"thumbnail\\\":{\\\"type\\\":\\\"image/png\\\",\\\"roles\\\":[\\\"thumbnail\\\"],\\\"title\\\":\\\"3DEP\n        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\n        Lidar collection for the Digital Surface Model (DSM) Cloud Optimized Geotiffs\n        (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\n        Open Access Data Use Agreement\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/fia\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"Forest\n        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\n        Description and User Guide\\\"},\\\"thumbnail\\\":{\\\"href\\\":\\\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/fia.png\\\",\\\"type\\\":\\\"image/gif\\\",\\\"title\\\":\\\"Forest\n        Inventory and Analysis\\\"},\\\"geoparquet-items\\\":{\\\"href\\\":\\\"abfs://items/fia.parquet\\\",\\\"type\\\":\\\"application/x-parquet\\\",\\\"roles\\\":[\\\"stac-items\\\"],\\\"title\\\":\\\"GeoParquet\n        STAC items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        Service\\\"],\\\"providers\\\":[{\\\"url\\\":\\\"https://www.fia.fs.fed.us/\\\",\\\"name\\\":\\\"Forest\n        Inventory & Analysis\\\",\\\"roles\\\":[\\\"producer\\\",\\\"licensor\\\"]},{\\\"url\\\":\\\"https://carbonplan.org/\\\",\\\"name\\\":\\\"CarbonPlan\\\",\\\"roles\\\":[\\\"processor\\\"]},{\\\"url\\\":\\\"https://planetarycomputer.microsoft.com\\\",\\\"name\\\":\\\"Microsoft\\\",\\\"roles\\\":[\\\"host\\\"]}],\\\"description\\\":\\\"Status\n        and trends on U.S. forest location, health, growth, mortality, and production,\n        from the U.S. Forest Service's  [Forest Inventory and Analysis](https://www.fia.fs.fed.us/)\n        (FIA) program.\\\\n\\\\nThe Forest Inventory and Analysis (FIA) dataset is a nationwide\n        survey of the forest assets of the United States. The FIA research program\n        has been in existence since 1928.  FIA's primary objective is to determine\n        the extent, condition, volume, growth, and use of trees on the nation's forest\n        land.\\\\n\\\\nDomain: continental U.S., 1928-2018\\\\n\\\\nResolution: plot-level\n        (irregular polygon)\\\\n\\\\nThis dataset was curated and brought to Azure by\n        [CarbonPlan](https://carbonplan.org/).\\\\n\\\",\\\"item_assets\\\":{\\\"data\\\":{\\\"type\\\":\\\"application/x-parquet\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Dataset\n        root\\\",\\\"table:storage_options\\\":{\\\"account_name\\\":\\\"cpdataeuwest\\\"}}},\\\"stac_version\\\":\\\"1.0.0\\\",\\\"table:tables\\\":[{\\\"name\\\":\\\"Survey\n        Table\\\",\\\"description\\\":\\\"Survey table. This table contains one record for\n        each year an inventory is conducted in a State for annual inventory or one\n        record for each periodic inventory. <br><br>* SURVEY.CN = PLOT.SRV_CN links\n        the unique inventory record for a State and year to the plot records.\\\",\\\"msft:item_name\\\":\\\"survey\\\"},{\\\"name\\\":\\\"County\n        Table\\\",\\\"description\\\":\\\"County table. This table contains survey unit codes\n        and is also a reference table for the county codes and names. <br><br>* COUNTY.CN\n        = PLOT.CTY_CN links the unique county record to the plot record.\\\",\\\"msft:item_name\\\":\\\"county\\\"},{\\\"name\\\":\\\"Plot\n        Table\\\",\\\"description\\\":\\\"Plot table. This table provides information relevant\n        to the entire 1-acre field plot. This table links to most other tables, and\n        the linkage is made using PLOT.CN = TABLE_NAME.PLT_CN (TABLE_NAME is the name\n        of any table containing the column name PLT_CN). Below are some examples of\n        linking PLOT to other tables. <br><br>* PLOT.CN = COND.PLT_CN links the unique\n        plot record to the condition class record(s). <br><br>* PLOT.CN = SUBPLOT.PLT_CN\n        links the unique plot record to the subplot records. <br><br>* PLOT.CN = TREE.PLT_CN\n        links the unique plot record to the tree records. <br><br>* PLOT.CN = SEEDLING.PLT_CN\n        links the unique plot record to the seedling records.\\\",\\\"msft:item_name\\\":\\\"plot\\\"},{\\\"name\\\":\\\"Condition\n        Table\\\",\\\"description\\\":\\\"Condition table. This table provides information\n        on the discrete combination of landscape attributes that define the condition\n        (a condition will have the same land class, reserved status, owner group,\n        forest type, stand-size class, regeneration status, and stand density). <br><br>*\n        PLOT.CN = COND.PLT_CN links the condition class record(s) to the plot table.\n        <br><br>* COND.PLT_CN = SITETREE.PLT_CN and COND.CONDID = SITETREE.CONDID\n        links the condition class record to the site tree data. <br><br>* COND.PLT_CN\n        = TREE.PLT_CN and COND.CONDID = TREE.CONDID links the condition class record\n        to the tree data.\\\",\\\"msft:item_name\\\":\\\"cond\\\"},{\\\"name\\\":\\\"Subplot Table\\\",\\\"description\\\":\\\"Subplot\n        table. This table describes the features of a single subplot. There are multiple\n        subplots per 1-acre field plot and there can be multiple conditions sampled\n        on each subplot. <br><br>* PLOT.CN = SUBPLOT.PLT_CN links the unique plot\n        record to the subplot records. <br><br>* SUBPLOT.PLT_CN = COND.PLT_CN and\n        SUBPLOT.MACRCOND = COND.CONDID links the macroplot conditions to the condition\n        class record. <br><br>* SUBPLOT.PLT_CN = COND.PLT_CN and SUBPLOT.SUBPCOND\n        = COND.CONDID links the subplot conditions to the condition class record.\n        <br><br>* SUBPLOT.PLT_CN = COND.PLT_CN and SUBPLOT.MICRCOND = COND.CONDID\n        links the microplot conditions to the condition class record.\\\",\\\"msft:item_name\\\":\\\"subplot\\\"},{\\\"name\\\":\\\"Subplot\n        Condition Table\\\",\\\"description\\\":\\\"Subplot condition table. This table contains\n        information about the proportion of a subplot in a condition. <br><br>* PLOT.CN\n        = SUBP_COND.PLT_CN links the subplot condition class record to the plot table.\n        <br><br>* SUBP_COND.PLT_CN = COND.PLT_CN and SUBP_COND.CONDID = COND.CONDID\n        links the condition class records found on the four subplots to the subplot\n        description.\\\",\\\"msft:item_name\\\":\\\"subp_cond\\\"},{\\\"name\\\":\\\"boundary\\\",\\\"description\\\":\\\"Boundary\n        table. This table provides a description of the demarcation line between two\n        conditions that occur on a single subplot\\\",\\\"msft:item_name\\\":\\\"boundary\\\"},{\\\"name\\\":\\\"Subplot\n        Condition Change Matrix\\\",\\\"description\\\":\\\"Subplot condition change matrix\n        table. This table contains information about the mix of current and previous\n        conditions that occupy the same area on the subplot. <br><br>* PLOT.CN = SUBP_COND_CHNG_MTRX.PLT_CN\n        links the subplot condition change matrix records to the unique plot record.\n        <br><br>* PLOT.PREV_PLT_CN = SUBP_COND_CHNG_MTRX.PREV_PLT_CN links the subplot\n        condition change matrix records to the unique previous plot record.\\\",\\\"msft:item_name\\\":\\\"subp_cond_chng_mtrx\\\"},{\\\"name\\\":\\\"Tree\n        Table\\\",\\\"description\\\":\\\"Tree table. This table provides information for\n        each tree 1 inch in diameter and larger found on a microplot, subplot, or\n        core optional macroplot. <br><br>* PLOT.CN = TREE.PLT_CN links the tree records\n        to the unique plot record. <br><br>* COND.PLT_CN = TREE.PLT_CN and COND.CONDID\n        = TREE.CONDID links the tree records to the unique condition record.\\\",\\\"msft:item_name\\\":\\\"tree\\\"},{\\\"name\\\":\\\"Tree\n        Woodland Stems Table\\\",\\\"description\\\":\\\"Tree woodland stems table. This table\n        stores data for the individual stems of a woodland species tree. Individual\n        woodland stem diameter measurements contribute to the calculation of the diameter\n        stored on the parent TREE table record. <br><br>* TREE.CN = TREE_WOODLAND_STEMS.TRE_CN\n        links a woodland stems record to the corresponding unique tree record.\\\",\\\"msft:item_name\\\":\\\"tree_woodland_stems\\\"},{\\\"name\\\":\\\"Tree\n        Regional Biomass Table\\\",\\\"description\\\":\\\"Tree regional biomass table. This\n        table contains biomass estimates computed using equations and methodology\n        that varies by FIA work unit. This table retains valuable information for\n        generating biomass estimates that match earlier published reports. <br><br>*\n        TREE.CN = TREE_REGIONAL_BIOMASS.TRE_CN links a tree regional biomass record\n        to the corresponding unique tree.\\\",\\\"msft:item_name\\\":\\\"tree_regional_biomass\\\"},{\\\"name\\\":\\\"Tree\n        Net Growth, Removal, and Mortality Component Table\\\",\\\"description\\\":\\\"Tree\n        net growth, removal, and mortality component table. This table stores information\n        used to compute net growth, removals, and mortality estimates for remeasurement\n        trees. Each remeasurement tree has a single record in this table. <br><br>*\n        TREE_GRM_COMPONENT.TRE_CN = TREE.TRE_CN links the records in this table to\n        the corresponding tree record in the TREE table.\\\",\\\"msft:item_name\\\":\\\"tree_grm_component\\\"},{\\\"name\\\":\\\"Tree\n        Net Growth, Removal, and Mortality Midpoint Table\\\",\\\"description\\\":\\\"Tree\n        net growth, removal, and mortality midpoint table. This table contains information\n        about a remeasured tree at the midpoint of the remeasurement period. It does\n        not contain a record for every tree. Midpoint estimates are computed for trees\n        that experience mortality, removal, or land use diversion or reversion. The\n        information in this table is used to compute net growth, removal, and mortality\n        estimates on remeasurement trees. <br><br>* TREE_GRM_MIDPT.TRE_CN = TREE.TRE_CN\n        links the records in this table to the corresponding tree record in the TREE\n        table.\\\",\\\"msft:item_name\\\":\\\"tree_grm_midpt\\\"},{\\\"name\\\":\\\"Tree Net Growth,\n        Removal, and Mortality Begin Table\\\",\\\"description\\\":\\\"Tree net growth, removal,\n        and mortality begin table. This table contains information for remeasured\n        trees where values have been calculated for the beginning of the remeasurement\n        period. Only those trees where information was recalculated for time 1 (T1)\n        are included. The information in this table is used to produce net growth,\n        removal and mortality estimates on remeasured trees. <br><br>* TREE_GRM_BEGIN.TRE_CN\n        = TREE.TRE_CN links the records in this table to the corresponding tree record\n        in the TREE table.\\\",\\\"msft:item_name\\\":\\\"tree_grm_begin\\\"},{\\\"name\\\":\\\"Tree\n        Net Growth, Removal, and Mortality Estimation Table\\\",\\\"description\\\":\\\"Tree\n        net growth, removal, and mortality estimation table. This table contains information\n        used to produce estimates of growth, removals and mortality. <br><br>* PLOT.CN\n        = TREE_GRM_ESTN.PLT_CN links the tree GRM estimation records to the unique\n        plot record. <br><br>* TREE.CN = TREE_GRM_ESTN.TRE_CN links the tree GRM estimation\n        records to the unique tree record.\\\",\\\"msft:item_name\\\":\\\"tree_grm_estn\\\"},{\\\"name\\\":\\\"Seedling\n        Table\\\",\\\"description\\\":\\\"Seedling table. This table provides a count of the\n        number of live trees of a species found on a microplot that are less than\n        1 inch in diameter but at least 6 inches in length for conifer species or\n        at least 12 inches in length for hardwood species. <br><br>* PLOT.CN = SEEDLING.PLT_CN\n        links the seedling records to the unique plot record. <br><br>* COND.PLT_CN\n        = SEEDLING.PLT_CN and COND.CONDID = SEEDLING.CONDID links the condition record\n        to the seedling record.\\\",\\\"msft:item_name\\\":\\\"seedling\\\"},{\\\"name\\\":\\\"Site\n        Tree Table\\\",\\\"description\\\":\\\"Site tree table. This table provides information\n        on the site tree(s) collected in order to calculate site index and/or site\n        productivity information for a condition. <br><br>* PLOT.CN = SITETREE.PLT_CN\n        links the site tree records to the unique plot record. <br><br>* SITETREE.PLT_CN\n        = COND.PLT_CN and SITETREE.CONDID = COND.CONDID links the site tree record(s)\n        to the unique condition class record.\\\",\\\"msft:item_name\\\":\\\"sitetree\\\"},{\\\"name\\\":\\\"Invasive\n        Subplot Species Table\\\",\\\"description\\\":\\\"Invasive subplot species table.\n        This table provides percent cover data of invasive species identified on the\n        subplot. <br><br>* PLOT.CN = INVASIVE_SUBPLOT_SPP.PLT_CN links the invasive\n        subplot species record(s) to the unique plot record. <br><br>* SUBP_COND.PLT_CN\n        = INVASIVE_SUBPLOT_SPP.PLT_CN and SUBP_COND.CONDID = INVASIVE_SUBPLOT_SPP.CONDID\n        and SUBP_COND.SUBP = INVASIVE_SUBPLOT_SPP.SUBP links the invasive subplot\n        species record(s) to the unique subplot condition record. <br><br>* INVASIVE_SUBPLOT_SPP.VEG_SPCD\n        = REF_PLANT_DICTIONARY.SYMBOL links the invasive vegetation subplot NRCS species\n        code to the plant dictionary reference species code.\\\",\\\"msft:item_name\\\":\\\"invasive_subplot_spp\\\"},{\\\"name\\\":\\\"Phase\n        2 Vegetation Subplot Species Table\\\",\\\"description\\\":\\\"Phase 2 Vegetation\n        subplot species table. This table provides percent cover data of vegetation\n        species identified on the subplot. <br><br>* PLOT.CN = P2VEG_SUBPLOT_SPP.PLT_CN\n        links the vegetation subplot species record(s) to the unique plot record.\n        <br><br>* SUBP_COND.PLT_CN = P2VEG_SUBPLOT_SPP.PLT_CN and SUBP_COND.CONDID\n        = P2VEG_SUBPLOT_SPP.CONDID and SUBP_COND.SUBP = P2VEG_SUBPLOT_SPP.SUBP links\n        the vegetation subplot species record(s) to the unique subplot condition record.\n        <br><br>* P2VEG_SUBPLOT_SPP.VEG_SPCD = REF_PLANT_DICTIONARY.SYMBOL links the\n        P2 vegetation subplot NRCS species code to the plant dictionary reference\n        species code.\\\",\\\"msft:item_name\\\":\\\"p2veg_subplot_spp\\\"},{\\\"name\\\":\\\"Phase\n        2 Vegetation Subplot Structure Table\\\",\\\"description\\\":\\\"Phase 2 Vegetation\n        subplot structure table. This table provides percent cover by layer by growth\n        habit. <br><br>* PLOT.CN = P2VEG_SUBP_STRUCTURE. PLT_CN links the subplot\n        structure record(s) to the unique plot record. <br><br>* SUBP_COND.PLT_CN\n        = P2VEG_SUBP_STRUCTURE.PLT_CN and SUBP_COND.CONDID = P2VEG_SUBP_STRUCTURE.CONDID\n        and SUBP_COND.SUBP = P2VEG_SUBP_STRUCTURE.SUBP links the vegetation subplot\n        structure record(s) to the unique subplot condition record.\\\",\\\"msft:item_name\\\":\\\"p2veg_subp_structure\\\"},{\\\"name\\\":\\\"Down\n        Woody Material Visit Table\\\",\\\"description\\\":\\\"Down woody material visit table.\n        This table provides general information on down woody material indicator visit,\n        such as the date of the DWM survey. <br><br>* PLOT.CN = DWM_VISIT.PLT_CN links\n        the down woody material indicator visit record to the unique plot record.\\\",\\\"msft:item_name\\\":\\\"dwm_visit\\\"},{\\\"name\\\":\\\"Down\n        Woody Material Coarse Woody Debris Table\\\",\\\"description\\\":\\\"Down woody material\n        coarse woody debris table. This table provides information for each piece\n        of coarse woody debris measured along the transects. <br><br>* PLOT.CN = DWM_COARSE_WOODY_DEBRIS.PLT_CN\n        links the down woody material coarse woody debris records to the unique plot\n        record. <br><br>* COND.PLT_CN = DWM_COARSE_WOODY_DEBRIS.PLT_CN and COND.CONDID=\n        DWM_COARSE_WOODY_DEBRIS.CONDID links the coarse woody debris records to the\n        unique condition record.\\\",\\\"msft:item_name\\\":\\\"dwm_coarse_woody_debris\\\"},{\\\"name\\\":\\\"Down\n        Woody Material Duff, Litter, Fuel Table\\\",\\\"description\\\":\\\"Down woody material\n        duff, litter, fuel table. This table provides information on the duff, litter,\n        fuelbed depths measured at a point on the transects. <br><br>* PLOT.CN = DWM_DUFF_LITTER_FUEL.PLT_CN\n        links the duff, litter, fuelbed records to the unique plot record. <br><br>*\n        COND.PLT_CN = DWM_DUFF_LITTER_FUEL.PLT_CN and COND.CONDID= DWM_DUFF_LITTER_FUEL.CONDID\n        links the duff, litter, fuel records to the unique condition record.\\\",\\\"msft:item_name\\\":\\\"dwm_duff_litter_fuel\\\"},{\\\"name\\\":\\\"Down\n        Woody Material Fine Woody Debris Table\\\",\\\"description\\\":\\\"Down woody material\n        fine woody debris table. This table provides information on the fine woody\n        debris measured along a segment of the transects. <br><br>* PLOT.CN = DWM_FINE_WOODY_DEBRIS.PLT_CN\n        links the fine woody debris records to the unique plot record. <br><br>* COND.PLT_CN\n        = DWM_FINE_WOODY_DEBRIS.PLT_CN and COND.CONDID= DWM_FINE_WOODY_DEBRIS.CONDID\n        links the fine woody debris records to the unique condition record.\\\",\\\"msft:item_name\\\":\\\"dwm_fine_woody_debris\\\"},{\\\"name\\\":\\\"Down\n        Woody Material Microplot Fuel Table\\\",\\\"description\\\":\\\"Down woody material\n        microplot fuel table. This table provides information on the fuel loads (shrubs\n        and herbs) measured on the microplot. <br><br>* PLOT.CN = DWM_MICROPLOT_FUEL.PLT_CN\n        links the microplot fuel records to the unique plot record.\\\",\\\"msft:item_name\\\":\\\"dwm_microplot_fuel\\\"},{\\\"name\\\":\\\"Down\n        Woody Material Residual Pile Table\\\",\\\"description\\\":\\\"Down woody material\n        residual pile table. This table provides information on the wood piles measured\n        on the subplot. <br><br>* PLOT.CN = DWM_RESIDUAL_PILE.PLT_CN links the wood\n        piles records to the unique plot record. <br><br>* COND.PLT_CN = DWM_RESIDUAL_PILE.PLT_CN\n        and COND.CONDID= DWM_RESIDUAL_PILE.CONDID links the wood piles records to\n        the unique condition record.\\\",\\\"msft:item_name\\\":\\\"dwm_residual_pile\\\"},{\\\"name\\\":\\\"Down\n        Woody Material Transect Segment Table\\\",\\\"description\\\":\\\"Down woody material\n        transect segment table. This table describes the down woody material transect\n        segment lengths by condition class. <br><br>* PLOT.CN = DWM_TRANSECT_SEGMENT.PLT_CN\n        links the down woody material transect length records to the unique plot record.\n        <br><br>* COND.PLT_CN = DWM_TRANSECT_SEGMENT.PLT_CN and COND.CONDID= DWM_TRANSECT_SEGMENT.CONDID\n        links the down woody material transect segment records to the unique condition\n        record.\\\",\\\"msft:item_name\\\":\\\"dwm_transect_segment\\\"},{\\\"name\\\":\\\"Condition\n        Down Woody Material Calculation Table\\\",\\\"description\\\":\\\"Condition down woody\n        material calculation table. This table contains calculated values and condition-level\n        estimates for down woody attributes by plot number (PLOT), condition class\n        number (CONDID), and evaluation identifier (EVALID). <br><br>* PLOT.CN = COND_DWM_CALC.PLT_CN\n        links the down woody material calculation records to the unique plot record.\n        <br><br>* COND.CN = COND_DWM_CALC.CND_CN links the down woody material calculation\n        records to the unique condition record. <br><br>* POP_STRATUM. CN = COND_DWM_CALC.STRATUM_CN\n        links the down woody material calculation records to the unique population\n        stratum record.\\\",\\\"msft:item_name\\\":\\\"cond_dwm_calc\\\"},{\\\"name\\\":\\\"Plot Regeneration\n        Table\\\",\\\"description\\\":\\\"Plot regeneration table. This table contains the\n        information for the four subplots describing the amount of animal browse pressure\n        exerted on the regeneration of trees. <br><br>* PLOT.CN = PLOT_REGEN.PLT_CN\n        links the unique plot record to the unique plot regeneration record.\\\",\\\"msft:item_name\\\":\\\"plot_regen\\\"},{\\\"name\\\":\\\"Subplot\n        Regeneration Table\\\",\\\"description\\\":\\\"Subplot regeneration table. This table\n        provides information on the subplot survey status and the site survey limitations,\n        if any, for the tree regeneration study. <br><br>* PLOT.CN = SUBPLOT_REGEN.PLT_CN\n        links the unique plot record to the subplot regeneration records. <br><br>*\n        SUBPLOT.PLT_CN = SUBPLOT_REGEN.PLT_CN and SUBPLOT.SUBP = SUBPLOT_REGEN.SUBP\n        links the subplot record to the subplot regeneration record.\\\",\\\"msft:item_name\\\":\\\"subplot_regen\\\"},{\\\"name\\\":\\\"Seedling\n        Regeneration Table\\\",\\\"description\\\":\\\"Seedling regeneration. This table contains\n        provides information on the seedling count by condition, species, source,\n        and length class for the tree regeneration study. <br><br>* PLOT.CN = SEEDLING_REGEN.PLT_CN\n        links the unique plot record to the seedling regeneration records. <br><br>*\n        COND.PLT_CN = SEEDLING_REGEN.PLT_CN and COND.CONDID = SEEDLING_REGEN.CONDID\n        links the regeneration seedling records to the unique condition record.\\\",\\\"msft:item_name\\\":\\\"seedling_regen\\\"},{\\\"name\\\":\\\"Population\n        Estimation Unit Table\\\",\\\"description\\\":\\\"Population estimation unit table.\n        This table contains information about estimation units. An estimation unit\n        is a geographic area that can be drawn on a map. It has a known area, and\n        the sampling intensity must be the same within a stratum within an estimation\n        unit. Generally, estimation units are contiguous areas, but exceptions are\n        made when certain ownerships, usually National Forests, are sampled at different\n        intensities. One record in the POP_ESTN_UNIT table corresponds to a single\n        estimation unit. POP_ESTN_UNIT.CN = POP_STRATUM.ESTN_UNIT_CN links the unique\n        stratified geographical area (ESTN_UNIT) to the strata (STRATUMCD) that are\n        assigned to each ESTN_UNIT.\\\",\\\"msft:item_name\\\":\\\"pop_estn_unit\\\"},{\\\"name\\\":\\\"Population\n        Evaluation Table\\\",\\\"description\\\":\\\"Population evaluation table. This table\n        provides information about evaluations. An evaluation is the combination of\n        a set of plots (the sample) and a set of Phase 1 data (obtained through remote\n        sensing, called a stratification) that can be used to produce population estimates\n        for a State (an evaluation may be created to produce population estimates\n        for a region other than a State, such as the Black Hills National Forest).\n        A record in the POP_EVAL table identifies one evaluation and provides some\n        descriptive information about how the evaluation may be used. <br><br>* POP_ESTN_UNIT.EVAL_CN\n        = POP_EVAL.CN links the unique evaluation identifier (EVALID) in the POP_EVAL\n        table to the unique geographical areas (ESTN_UNIT) that are stratified. Within\n        a population evaluation (EVALID) there can be multiple population estimation\n        units, or geographic areas across which there are a number of values being\n        estimated (e.g., estimation of volume across counties for a given State).\\\",\\\"msft:item_name\\\":\\\"pop_eval\\\"},{\\\"name\\\":\\\"Population\n        Evaluation Attribute Table\\\",\\\"description\\\":\\\"Population evaluation attribute\n        table. This table provides information as to which population estimates can\n        be provided by an evaluation. If an evaluation can produce only 22 of all\n        the population estimates in the REF_POP_ATTRIBUTE table, there will be 22\n        records in the POP_EVAL_ATTRIBUTE table (one per population estimate) for\n        that evaluation. <br><br>* POP_EVAL.CN = POP_EVAL_ATTRIBUTE.EVAL_CN links\n        the unique evaluation identifier to the list of population estimates that\n        can be derived for that evaluation.\\\",\\\"msft:item_name\\\":\\\"pop_eval_attribute\\\"},{\\\"name\\\":\\\"Population\n        Evaluation Group Table\\\",\\\"description\\\":\\\"Population evaluation group table.\n        This table lists and describes the evaluation groups. One record in the POP_EVAL_GRP\n        table can be linked to all the evaluations that were used in generating estimates\n        for a State inventory report. <br><br>* POP_EVAL_GRP.CN = POP_EVAL_TYP.EVAL_GRP_CN\n        links the evaluation group record to the evaluation type record.\\\",\\\"msft:item_name\\\":\\\"pop_eval_grp\\\"},{\\\"name\\\":\\\"Population\n        Evaluation Type Table\\\",\\\"description\\\":\\\"Population evaluation type table.\n        This table provides information on the type of evaluations that were used\n        to generate a set of tables for an inventory report. In a typical State inventory\n        report, one evaluation is used to generate an estimate of the total land area;\n        a second evaluation is used to generate current estimates of volume, numbers\n        of trees and biomass; and a third evaluation is used for estimating growth,\n        removals and mortality. <br><br>* POP_EVAL_TYP.EVAL_CN = POP_EVAL.CN links\n        the evaluation type record to the evaluation record. <br><br>* POP_EVAL_TYP.EVAL_GRP_CN\n        = POP_EVAL_GRP.CN links the evaluation type record to the evaluation group\n        record. <br><br>* POP_EVAL_TYP.EVAL_TYP = REF_POP_EVAL_TYP_DESCR.EVAL_TYP\n        links an evaluation type record to an evaluation type description reference\n        record.\\\",\\\"msft:item_name\\\":\\\"pop_eval_typ\\\"},{\\\"name\\\":\\\"Population Plot\n        Stratum Assignment Table\\\",\\\"description\\\":\\\"Population plot stratum assignment\n        table. This table provides a way to assign stratum information to a plot.\n        Stratum information is assigned to a plot by overlaying the plot's location\n        on the Phase 1 imagery. Plots are linked to their appropriate stratum for\n        an evaluation via the POP_PLOT_STRATUM_ASSGN table. <br><br>* POP_PLOT_STRATUM_ASSGN.PLT_CN\n        = PLOT.CN links the stratum assigned to the plot record.\\\",\\\"msft:item_name\\\":\\\"pop_plot_stratum_assgn\\\"},{\\\"name\\\":\\\"Population\n        Stratum Table\\\",\\\"description\\\":\\\"Population stratum table. This table provides\n        information about individual strata. The area within an estimation unit is\n        divided into strata. The area for each stratum can be calculated by determining\n        the proportion of Phase 1 pixels/plots in each stratum and multiplying that\n        proportion by the total area in the estimation unit. Information for a single\n        stratum is stored in a single record of the POP_STRATUM table. <br><br>* POP_STRATUM.CN\n        = POP_PLOT_STRATUM_ASSGN.STRATUM_CN links the defined stratum to each plot.\\\",\\\"msft:item_name\\\":\\\"pop_stratum\\\"},{\\\"name\\\":\\\"Plot\n        Geometry Table\\\",\\\"description\\\":\\\"Plot geometry table. This table contains\n        geometric attributes associated with the plot location, such as the hydrological\n        unit and roadless codes. <br><br>* PLOTGEOM.CN = PLOT.CN links the unique\n        plot record between the two tables.\\\",\\\"msft:item_name\\\":\\\"plotgeom\\\"},{\\\"name\\\":\\\"Plot\n        Snapshot Table\\\",\\\"description\\\":\\\"Plot snapshot table. This table combines\n        the information in the PLOT table with information in the PLOT_EVAL_GRP and\n        POP_STRATUM tables to provide a snapshot of the plot records with their associated\n        expansion and adjustment factors. <br><br>* PLOTSNAP.CN = PLOT.CN links the\n        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\n        and trends on U.S. forest location, health, growth, mortality, and production,\n        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\n        1.0\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/gridmet\\\",\\\"title\\\":\\\"Human\n        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\n        thumbnail\\\"},\\\"zarr-abfs\\\":{\\\"href\\\":\\\"abfs://gridmet/gridmet.zarr\\\",\\\"type\\\":\\\"application/vnd+zarr\\\",\\\"roles\\\":[\\\"data\\\",\\\"zarr\\\"],\\\"description\\\":\\\"Azure\n        Blob File System URI of the gridMET Zarr Group on Azure Blob Storage for use\n        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\n        HTTPS Zarr root\\\",\\\"description\\\":\\\"HTTPS URI of the gridMET Zarr Group on\n        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\n        Pressure\\\",\\\"Climate\\\"],\\\"providers\\\":[{\\\"url\\\":\\\"https://developmentseed.org/\\\",\\\"name\\\":\\\"Development\n        Seed\\\",\\\"roles\\\":[\\\"processor\\\"]},{\\\"url\\\":\\\"https://planetarycomputer.microsoft.com\\\",\\\"name\\\":\\\"Microsoft\\\",\\\"roles\\\":[\\\"host\\\",\\\"processor\\\"]},{\\\"url\\\":\\\"http://www.climatologylab.org/gridmet.html\\\",\\\"name\\\":\\\"Climatology\n        Lab\\\",\\\"roles\\\":[\\\"producer\\\"]},{\\\"url\\\":\\\"http://onlinelibrary.wiley.com/doi/10.1002/joc.3413/full\\\",\\\"name\\\":\\\"Abatzoglou,\n        J.T.\\\",\\\"roles\\\":[\\\"producer\\\"]}],\\\"description\\\":\\\"gridMET is a dataset of\n        daily surface meteorological data at approximately four-kilometer resolution,\n        covering the contiguous U.S. from 1979 to the present. These data can provide\n        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\n        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\n        Mean Wind Speed\\\"},\\\"air_temperature\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"K\\\",\\\"attrs\\\":{\\\"units\\\":\\\"K\\\",\\\"long_name\\\":\\\"tmmn\\\",\\\"dimensions\\\":\\\"lon\n        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\n        Minimum Temperature\\\"},\\\"burning_index_g\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"Unitless\\\",\\\"attrs\\\":{\\\"units\\\":\\\"Unitless\\\",\\\"long_name\\\":\\\"bi\\\",\\\"dimensions\\\":\\\"lon\n        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\n        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\n        Minimum Relative Humidity\\\"},\\\"specific_humidity\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"kg/kg\\\",\\\"attrs\\\":{\\\"units\\\":\\\"kg/kg\\\",\\\"long_name\\\":\\\"sph\\\",\\\"dimensions\\\":\\\"lon\n        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\n        mean specific humidity\\\"},\\\"wind_from_direction\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"Degrees\n        Clockwise from north\\\",\\\"attrs\\\":{\\\"units\\\":\\\"Degrees Clockwise from north\\\",\\\"long_name\\\":\\\"th\\\",\\\"dimensions\\\":\\\"lon\n        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\n        mean wind direction\\\"},\\\"precipitation_amount\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"mm\\\",\\\"attrs\\\":{\\\"units\\\":\\\"mm\\\",\\\"long_name\\\":\\\"pr\\\",\\\"dimensions\\\":\\\"lon\n        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\n        Accumulated Precipitation\\\"},\\\"dead_fuel_moisture_100hr\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"Percent\\\",\\\"attrs\\\":{\\\"units\\\":\\\"Percent\\\",\\\"long_name\\\":\\\"fm100\\\",\\\"dimensions\\\":\\\"lon\n        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\n        hour fuel moisture\\\"},\\\"dead_fuel_moisture_1000hr\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"Percent\\\",\\\"attrs\\\":{\\\"units\\\":\\\"Percent\\\",\\\"long_name\\\":\\\"fm1000\\\",\\\"dimensions\\\":\\\"lon\n        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\n        hour fuel moisture\\\"},\\\"mean_vapor_pressure_deficit\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"kPa\\\",\\\"attrs\\\":{\\\"units\\\":\\\"kPa\\\",\\\"long_name\\\":\\\"vpd\\\",\\\"dimensions\\\":\\\"lon\n        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\n        vapor presure deficit\\\"},\\\"potential_evapotranspiration\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"mm\\\",\\\"attrs\\\":{\\\"units\\\":\\\"mm\\\",\\\"long_name\\\":\\\"pet\\\",\\\"dimensions\\\":\\\"lon\n        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\n        reference evapotranspiration (short grass)\\\"},\\\"surface_downwelling_shortwave_flux_in_air\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"W\n        m-2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"W m-2\\\",\\\"long_name\\\":\\\"srad\\\",\\\"dimensions\\\":\\\"lon\n        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\n        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\n        high-spatial resolution surface meteorological data covering the contiguous\n        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\n        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\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"Daymet\n        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\n        annual North America map thumbnail\\\"},\\\"zarr-abfs\\\":{\\\"href\\\":\\\"abfs://daymet-zarr/annual/na.zarr\\\",\\\"type\\\":\\\"application/vnd+zarr\\\",\\\"roles\\\":[\\\"data\\\",\\\"zarr\\\",\\\"abfs\\\"],\\\"title\\\":\\\"Annual\n        North America Daymet Azure Blob File System Zarr root\\\",\\\"description\\\":\\\"Azure\n        Blob File System of the annual North America Daymet Zarr Group on Azure Blob\n        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\n        North America Daymet HTTPS Zarr root\\\",\\\"description\\\":\\\"HTTPS URI of the\n        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\n        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\n        DAAC\\\",\\\"roles\\\":[\\\"producer\\\"]}],\\\"description\\\":\\\"Annual climate summaries\n        derived from [Daymet](https://daymet.ornl.gov) Version 4 daily data at a 1\n        km x 1 km spatial resolution for five variables: minimum and maximum temperature,\n        precipitation, vapor pressure, and snow water equivalent. Annual averages\n        are provided for minimum and maximum temperature, vapor pressure, and snow\n        water equivalent, and annual totals are provided for the precipitation variable.\\\\n\\\\n[Daymet](https://daymet.ornl.gov/)\n        provides measurements of near-surface meteorological conditions; the main\n        purpose is to provide data estimates where no instrumentation exists. The\n        dataset covers the period from January 1, 1980 to the present. Each year is\n        processed individually at the close of a calendar year. Data are in a Lambert\n        conformal conic projection for North America and are distributed in Zarr and\n        NetCDF formats, compliant with the [Climate and Forecast (CF) metadata conventions\n        (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)\n        to cite your usage of the data.\\\\n\\\\nThis dataset provides coverage for Hawaii;\n        North America and Puerto Rico are provided in [separate datasets](https://planetarycomputer.microsoft.com/dataset/group/daymet#annual).\n        \\\\n\\\\n\\\",\\\"sci:citation\\\":\\\"Thornton, M.M., R. Shrestha, Y. Wei, P.E. Thornton,\n        S. Kao, and B.E. Wilson. 2020. Daymet: Annual Climate Summaries on a 1-km\n        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\n        average of daily average vapor pressure\\\",\\\"cell_methods\\\":\\\"area: mean time:\n        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\n        average of daily average vapor pressure\\\"},\\\"lat\\\":{\\\"type\\\":\\\"auxiliary\\\",\\\"unit\\\":\\\"degrees_north\\\",\\\"attrs\\\":{\\\"units\\\":\\\"degrees_north\\\",\\\"long_name\\\":\\\"latitude\n        coordinate\\\",\\\"standard_name\\\":\\\"latitude\\\"},\\\"shape\\\":[8075,7814],\\\"chunks\\\":[8075,7814],\\\"dimensions\\\":[\\\"y\\\",\\\"x\\\"],\\\"description\\\":\\\"latitude\n        coordinate\\\"},\\\"lon\\\":{\\\"type\\\":\\\"auxiliary\\\",\\\"unit\\\":\\\"degrees_east\\\",\\\"attrs\\\":{\\\"units\\\":\\\"degrees_east\\\",\\\"long_name\\\":\\\"longitude\n        coordinate\\\",\\\"standard_name\\\":\\\"longitude\\\"},\\\"shape\\\":[8075,7814],\\\"chunks\\\":[8075,7814],\\\"dimensions\\\":[\\\"y\\\",\\\"x\\\"],\\\"description\\\":\\\"longitude\n        coordinate\\\"},\\\"swe\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"kg/m2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"kg/m2\\\",\\\"long_name\\\":\\\"annual\n        average snow water equivalent\\\",\\\"cell_methods\\\":\\\"area: mean time: sum within\n        days time: mean over days\\\",\\\"grid_mapping\\\":\\\"lambert_conformal_conic\\\"},\\\"shape\\\":[41,8075,7814],\\\"chunks\\\":[1,8075,7814],\\\"dimensions\\\":[\\\"time\\\",\\\"y\\\",\\\"x\\\"],\\\"description\\\":\\\"annual\n        average snow water equivalent\\\"},\\\"prcp\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"mm\\\",\\\"attrs\\\":{\\\"units\\\":\\\"mm\\\",\\\"long_name\\\":\\\"annual\n        total precipitation\\\",\\\"cell_methods\\\":\\\"area: mean time: sum within days\n        time: sum over days\\\",\\\"grid_mapping\\\":\\\"lambert_conformal_conic\\\"},\\\"shape\\\":[41,8075,7814],\\\"chunks\\\":[1,8075,7814],\\\"dimensions\\\":[\\\"time\\\",\\\"y\\\",\\\"x\\\"],\\\"description\\\":\\\"annual\n        total precipitation\\\"},\\\"tmax\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"degrees C\\\",\\\"attrs\\\":{\\\"units\\\":\\\"degrees\n        C\\\",\\\"long_name\\\":\\\"annual average of daily maximum temperature\\\",\\\"cell_methods\\\":\\\"area:\n        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\n        average of daily maximum temperature\\\"},\\\"tmin\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"degrees\n        C\\\",\\\"attrs\\\":{\\\"units\\\":\\\"degrees C\\\",\\\"long_name\\\":\\\"annual average of daily\n        minimum temperature\\\",\\\"cell_methods\\\":\\\"area: mean time: minimum within days\n        time: mean over days\\\",\\\"grid_mapping\\\":\\\"lambert_conformal_conic\\\"},\\\"shape\\\":[41,8075,7814],\\\"chunks\\\":[1,8075,7814],\\\"dimensions\\\":[\\\"time\\\",\\\"y\\\",\\\"x\\\"],\\\"description\\\":\\\"annual\n        average of daily minimum temperature\\\"},\\\"time_bnds\\\":{\\\"type\\\":\\\"data\\\",\\\"attrs\\\":{\\\"time\\\":\\\"days\n        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\n        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\n        Conic Conformal (2SP)\\\"},\\\"parameters\\\":[{\\\"id\\\":{\\\"code\\\":8823,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Latitude\n        of 1st standard parallel\\\",\\\"unit\\\":\\\"degree\\\",\\\"value\\\":25},{\\\"id\\\":{\\\"code\\\":8824,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Latitude\n        of 2nd standard parallel\\\",\\\"unit\\\":\\\"degree\\\",\\\"value\\\":60},{\\\"id\\\":{\\\"code\\\":8821,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Latitude\n        of false origin\\\",\\\"unit\\\":\\\"degree\\\",\\\"value\\\":42.5},{\\\"id\\\":{\\\"code\\\":8822,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Longitude\n        of false origin\\\",\\\"unit\\\":\\\"degree\\\",\\\"value\\\":-100},{\\\"id\\\":{\\\"code\\\":8826,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Easting\n        at false origin\\\",\\\"unit\\\":\\\"metre\\\",\\\"value\\\":0},{\\\"id\\\":{\\\"code\\\":8827,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Northing\n        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\n        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\n        Conic Conformal (2SP)\\\"},\\\"parameters\\\":[{\\\"id\\\":{\\\"code\\\":8823,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Latitude\n        of 1st standard parallel\\\",\\\"unit\\\":\\\"degree\\\",\\\"value\\\":25},{\\\"id\\\":{\\\"code\\\":8824,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Latitude\n        of 2nd standard parallel\\\",\\\"unit\\\":\\\"degree\\\",\\\"value\\\":60},{\\\"id\\\":{\\\"code\\\":8821,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Latitude\n        of false origin\\\",\\\"unit\\\":\\\"degree\\\",\\\"value\\\":42.5},{\\\"id\\\":{\\\"code\\\":8822,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Longitude\n        of false origin\\\",\\\"unit\\\":\\\"degree\\\",\\\"value\\\":-100},{\\\"id\\\":{\\\"code\\\":8826,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Easting\n        at false origin\\\",\\\"unit\\\":\\\"metre\\\",\\\"value\\\":0},{\\\"id\\\":{\\\"code\\\":8827,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Northing\n        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\n        of the 'time_bnds' variable.\\\"},\\\"time\\\":{\\\"type\\\":\\\"temporal\\\",\\\"extent\\\":[\\\"1980-07-01T12:00:00Z\\\",\\\"2020-07-01T12:00:00Z\\\"],\\\"description\\\":\\\"24-hour\n        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\n        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\n        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\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"Daymet\n        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\n        monthly North America map thumbnail\\\"},\\\"zarr-abfs\\\":{\\\"href\\\":\\\"abfs://daymet-zarr/monthly/na.zarr\\\",\\\"type\\\":\\\"application/vnd+zarr\\\",\\\"roles\\\":[\\\"data\\\",\\\"zarr\\\",\\\"abfs\\\"],\\\"title\\\":\\\"Monthly\n        North America Daymet Azure Blob File System Zarr root\\\",\\\"description\\\":\\\"Azure\n        Blob File System of the monthly North America Daymet Zarr Group on Azure Blob\n        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\n        North America Daymet HTTPS Zarr root\\\",\\\"description\\\":\\\"HTTPS URI of the\n        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\n        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\n        DAAC\\\",\\\"roles\\\":[\\\"producer\\\"]}],\\\"description\\\":\\\"Monthly climate summaries\n        derived from [Daymet](https://daymet.ornl.gov) Version 4 daily data at a 1\n        km x 1 km spatial resolution for five variables: minimum and maximum temperature,\n        precipitation, vapor pressure, and snow water equivalent. Annual averages\n        are provided for minimum and maximum temperature, vapor pressure, and snow\n        water equivalent, and annual totals are provided for the precipitation variable.\\\\n\\\\n[Daymet](https://daymet.ornl.gov/)\n        provides measurements of near-surface meteorological conditions; the main\n        purpose is to provide data estimates where no instrumentation exists. The\n        dataset covers the period from January 1, 1980 to the present. Each year is\n        processed individually at the close of a calendar year. Data are in a Lambert\n        conformal conic projection for North America and are distributed in Zarr and\n        NetCDF formats, compliant with the [Climate and Forecast (CF) metadata conventions\n        (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)\n        to cite your usage of the data.\\\\n\\\\nThis dataset provides coverage for Hawaii;\n        North America and Puerto Rico are provided in [separate datasets](https://planetarycomputer.microsoft.com/dataset/group/daymet#monthly).\\\\n\\\",\\\"sci:citation\\\":\\\"Thornton,\n        M.M., R. Shrestha, Y. Wei, P.E. Thornton, S. Kao, and B.E. Wilson. 2020. Daymet:\n        Monthly Climate Summaries on a 1-km Grid for North America, Version 4. ORNL\n        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\n        average of daily average vapor pressure\\\",\\\"cell_methods\\\":\\\"area: mean time:\n        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\n        average of daily average vapor pressure\\\"},\\\"lat\\\":{\\\"type\\\":\\\"auxiliary\\\",\\\"unit\\\":\\\"degrees_north\\\",\\\"attrs\\\":{\\\"units\\\":\\\"degrees_north\\\",\\\"long_name\\\":\\\"latitude\n        coordinate\\\",\\\"standard_name\\\":\\\"latitude\\\"},\\\"shape\\\":[8075,7814],\\\"chunks\\\":[2000,2000],\\\"dimensions\\\":[\\\"y\\\",\\\"x\\\"],\\\"description\\\":\\\"latitude\n        coordinate\\\"},\\\"lon\\\":{\\\"type\\\":\\\"auxiliary\\\",\\\"unit\\\":\\\"degrees_east\\\",\\\"attrs\\\":{\\\"units\\\":\\\"degrees_east\\\",\\\"long_name\\\":\\\"longitude\n        coordinate\\\",\\\"standard_name\\\":\\\"longitude\\\"},\\\"shape\\\":[8075,7814],\\\"chunks\\\":[2000,2000],\\\"dimensions\\\":[\\\"y\\\",\\\"x\\\"],\\\"description\\\":\\\"longitude\n        coordinate\\\"},\\\"swe\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"mm\\\",\\\"attrs\\\":{\\\"units\\\":\\\"mm\\\",\\\"long_name\\\":\\\"monthly\n        total snow water equivalent\\\",\\\"cell_methods\\\":\\\"area: mean time: sum within\n        days time: sum over days\\\",\\\"grid_mapping\\\":\\\"lambert_conformal_conic\\\"},\\\"shape\\\":[492,8075,7814],\\\"chunks\\\":[12,2000,2000],\\\"dimensions\\\":[\\\"time\\\",\\\"y\\\",\\\"x\\\"],\\\"description\\\":\\\"monthly\n        total snow water equivalent\\\"},\\\"prcp\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"mm\\\",\\\"attrs\\\":{\\\"units\\\":\\\"mm\\\",\\\"long_name\\\":\\\"monthly\n        total precipitation\\\",\\\"cell_methods\\\":\\\"area: mean time: sum within days\n        time: sum over days\\\",\\\"grid_mapping\\\":\\\"lambert_conformal_conic\\\"},\\\"shape\\\":[492,8075,7814],\\\"chunks\\\":[12,2000,2000],\\\"dimensions\\\":[\\\"time\\\",\\\"y\\\",\\\"x\\\"],\\\"description\\\":\\\"monthly\n        total precipitation\\\"},\\\"tmax\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"degrees C\\\",\\\"attrs\\\":{\\\"units\\\":\\\"degrees\n        C\\\",\\\"long_name\\\":\\\"monthly average of daily maximum temperature\\\",\\\"cell_methods\\\":\\\"area:\n        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\n        average of daily maximum temperature\\\"},\\\"tmin\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"degrees\n        C\\\",\\\"attrs\\\":{\\\"units\\\":\\\"degrees C\\\",\\\"long_name\\\":\\\"monthly average of\n        daily minimum temperature\\\",\\\"cell_methods\\\":\\\"area: mean time: minimum within\n        days time: mean over days\\\",\\\"grid_mapping\\\":\\\"lambert_conformal_conic\\\"},\\\"shape\\\":[492,8075,7814],\\\"chunks\\\":[12,2000,2000],\\\"dimensions\\\":[\\\"time\\\",\\\"y\\\",\\\"x\\\"],\\\"description\\\":\\\"monthly\n        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\n        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\n        Conic Conformal (2SP)\\\"},\\\"parameters\\\":[{\\\"id\\\":{\\\"code\\\":8823,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Latitude\n        of 1st standard parallel\\\",\\\"unit\\\":\\\"degree\\\",\\\"value\\\":25},{\\\"id\\\":{\\\"code\\\":8824,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Latitude\n        of 2nd standard parallel\\\",\\\"unit\\\":\\\"degree\\\",\\\"value\\\":60},{\\\"id\\\":{\\\"code\\\":8821,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Latitude\n        of false origin\\\",\\\"unit\\\":\\\"degree\\\",\\\"value\\\":42.5},{\\\"id\\\":{\\\"code\\\":8822,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Longitude\n        of false origin\\\",\\\"unit\\\":\\\"degree\\\",\\\"value\\\":-100},{\\\"id\\\":{\\\"code\\\":8826,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Easting\n        at false origin\\\",\\\"unit\\\":\\\"metre\\\",\\\"value\\\":0},{\\\"id\\\":{\\\"code\\\":8827,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Northing\n        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\n        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\n        Conic Conformal (2SP)\\\"},\\\"parameters\\\":[{\\\"id\\\":{\\\"code\\\":8823,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Latitude\n        of 1st standard parallel\\\",\\\"unit\\\":\\\"degree\\\",\\\"value\\\":25},{\\\"id\\\":{\\\"code\\\":8824,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Latitude\n        of 2nd standard parallel\\\",\\\"unit\\\":\\\"degree\\\",\\\"value\\\":60},{\\\"id\\\":{\\\"code\\\":8821,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Latitude\n        of false origin\\\",\\\"unit\\\":\\\"degree\\\",\\\"value\\\":42.5},{\\\"id\\\":{\\\"code\\\":8822,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Longitude\n        of false origin\\\",\\\"unit\\\":\\\"degree\\\",\\\"value\\\":-100},{\\\"id\\\":{\\\"code\\\":8826,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Easting\n        at false origin\\\",\\\"unit\\\":\\\"metre\\\",\\\"value\\\":0},{\\\"id\\\":{\\\"code\\\":8827,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Northing\n        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\n        of the 'time_bnds' variable.\\\"},\\\"time\\\":{\\\"type\\\":\\\"temporal\\\",\\\"extent\\\":[\\\"1980-01-16T12:00:00Z\\\",\\\"2020-12-16T00:00:00Z\\\"],\\\"description\\\":\\\"24-hour\n        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\n        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\n        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\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"Daymet\n        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\n        annual Hawaii map thumbnail\\\"},\\\"zarr-abfs\\\":{\\\"href\\\":\\\"abfs://daymet-zarr/annual/hi.zarr\\\",\\\"type\\\":\\\"application/vnd+zarr\\\",\\\"roles\\\":[\\\"data\\\",\\\"zarr\\\",\\\"abfs\\\"],\\\"title\\\":\\\"Annual\n        Hawaii Daymet Azure Blob File System Zarr root\\\",\\\"description\\\":\\\"Azure Blob\n        File System of the annual Hawaii Daymet Zarr Group on Azure Blob Storage for\n        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\n        Hawaii Daymet HTTPS Zarr root\\\",\\\"description\\\":\\\"HTTPS URI of the annual\n        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\n        Pressure\\\",\\\"Climate\\\"],\\\"providers\\\":[{\\\"url\\\":\\\"https://planetarycomputer.microsoft.com\\\",\\\"name\\\":\\\"Microsoft\\\",\\\"roles\\\":[\\\"host\\\",\\\"processor\\\"]},{\\\"url\\\":\\\"https://doi.org/10.3334/ORNLDAAC/1852\\\",\\\"name\\\":\\\"ORNL\n        DAAC\\\",\\\"roles\\\":[\\\"producer\\\"]}],\\\"description\\\":\\\"Annual climate summaries\n        derived from [Daymet](https://daymet.ornl.gov) Version 4 daily data at a 1\n        km x 1 km spatial resolution for five variables: minimum and maximum temperature,\n        precipitation, vapor pressure, and snow water equivalent. Annual averages\n        are provided for minimum and maximum temperature, vapor pressure, and snow\n        water equivalent, and annual totals are provided for the precipitation variable.\\\\n\\\\n[Daymet](https://daymet.ornl.gov/)\n        provides measurements of near-surface meteorological conditions; the main\n        purpose is to provide data estimates where no instrumentation exists. The\n        dataset covers the period from January 1, 1980 to the present. Each year is\n        processed individually at the close of a calendar year. Data are in a Lambert\n        conformal conic projection for North America and are distributed in Zarr and\n        NetCDF formats, compliant with the [Climate and Forecast (CF) metadata conventions\n        (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)\n        to cite your usage of the data.\\\\n\\\\nThis dataset provides coverage for Hawaii;\n        North America and Puerto Rico are provided in [separate datasets](https://planetarycomputer.microsoft.com/dataset/group/daymet#annual).\n        \\\\n\\\\n\\\",\\\"sci:citation\\\":\\\"Thornton, M.M., R. Shrestha, Y. Wei, P.E. Thornton,\n        S. Kao, and B.E. Wilson. 2020. Daymet: Annual Climate Summaries on a 1-km\n        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\n        average of daily average vapor pressure\\\",\\\"cell_methods\\\":\\\"area: mean time:\n        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\n        average of daily average vapor pressure\\\"},\\\"lat\\\":{\\\"type\\\":\\\"auxiliary\\\",\\\"unit\\\":\\\"degrees_north\\\",\\\"attrs\\\":{\\\"units\\\":\\\"degrees_north\\\",\\\"long_name\\\":\\\"latitude\n        coordinate\\\",\\\"standard_name\\\":\\\"latitude\\\"},\\\"shape\\\":[584,284],\\\"chunks\\\":[584,284],\\\"dimensions\\\":[\\\"y\\\",\\\"x\\\"],\\\"description\\\":\\\"latitude\n        coordinate\\\"},\\\"lon\\\":{\\\"type\\\":\\\"auxiliary\\\",\\\"unit\\\":\\\"degrees_east\\\",\\\"attrs\\\":{\\\"units\\\":\\\"degrees_east\\\",\\\"long_name\\\":\\\"longitude\n        coordinate\\\",\\\"standard_name\\\":\\\"longitude\\\"},\\\"shape\\\":[584,284],\\\"chunks\\\":[584,284],\\\"dimensions\\\":[\\\"y\\\",\\\"x\\\"],\\\"description\\\":\\\"longitude\n        coordinate\\\"},\\\"swe\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"kg/m2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"kg/m2\\\",\\\"long_name\\\":\\\"annual\n        average snow water equivalent\\\",\\\"cell_methods\\\":\\\"area: mean time: sum within\n        days time: mean over days\\\",\\\"grid_mapping\\\":\\\"lambert_conformal_conic\\\"},\\\"shape\\\":[41,584,284],\\\"chunks\\\":[1,584,284],\\\"dimensions\\\":[\\\"time\\\",\\\"y\\\",\\\"x\\\"],\\\"description\\\":\\\"annual\n        average snow water equivalent\\\"},\\\"prcp\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"mm\\\",\\\"attrs\\\":{\\\"units\\\":\\\"mm\\\",\\\"long_name\\\":\\\"annual\n        total precipitation\\\",\\\"cell_methods\\\":\\\"area: mean time: sum within days\n        time: sum over days\\\",\\\"grid_mapping\\\":\\\"lambert_conformal_conic\\\"},\\\"shape\\\":[41,584,284],\\\"chunks\\\":[1,584,284],\\\"dimensions\\\":[\\\"time\\\",\\\"y\\\",\\\"x\\\"],\\\"description\\\":\\\"annual\n        total precipitation\\\"},\\\"tmax\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"degrees C\\\",\\\"attrs\\\":{\\\"units\\\":\\\"degrees\n        C\\\",\\\"long_name\\\":\\\"annual average of daily maximum temperature\\\",\\\"cell_methods\\\":\\\"area:\n        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\n        average of daily maximum temperature\\\"},\\\"tmin\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"degrees\n        C\\\",\\\"attrs\\\":{\\\"units\\\":\\\"degrees C\\\",\\\"long_name\\\":\\\"annual average of daily\n        minimum temperature\\\",\\\"cell_methods\\\":\\\"area: mean time: minimum within days\n        time: mean over days\\\",\\\"grid_mapping\\\":\\\"lambert_conformal_conic\\\"},\\\"shape\\\":[41,584,284],\\\"chunks\\\":[1,584,284],\\\"dimensions\\\":[\\\"time\\\",\\\"y\\\",\\\"x\\\"],\\\"description\\\":\\\"annual\n        average of daily minimum temperature\\\"},\\\"time_bnds\\\":{\\\"type\\\":\\\"data\\\",\\\"attrs\\\":{\\\"time\\\":\\\"days\n        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\n        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\n        Conic Conformal (2SP)\\\"},\\\"parameters\\\":[{\\\"id\\\":{\\\"code\\\":8823,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Latitude\n        of 1st standard parallel\\\",\\\"unit\\\":\\\"degree\\\",\\\"value\\\":25},{\\\"id\\\":{\\\"code\\\":8824,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Latitude\n        of 2nd standard parallel\\\",\\\"unit\\\":\\\"degree\\\",\\\"value\\\":60},{\\\"id\\\":{\\\"code\\\":8821,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Latitude\n        of false origin\\\",\\\"unit\\\":\\\"degree\\\",\\\"value\\\":42.5},{\\\"id\\\":{\\\"code\\\":8822,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Longitude\n        of false origin\\\",\\\"unit\\\":\\\"degree\\\",\\\"value\\\":-100},{\\\"id\\\":{\\\"code\\\":8826,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Easting\n        at false origin\\\",\\\"unit\\\":\\\"metre\\\",\\\"value\\\":0},{\\\"id\\\":{\\\"code\\\":8827,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Northing\n        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\n        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\n        Conic Conformal (2SP)\\\"},\\\"parameters\\\":[{\\\"id\\\":{\\\"code\\\":8823,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Latitude\n        of 1st standard parallel\\\",\\\"unit\\\":\\\"degree\\\",\\\"value\\\":25},{\\\"id\\\":{\\\"code\\\":8824,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Latitude\n        of 2nd standard parallel\\\",\\\"unit\\\":\\\"degree\\\",\\\"value\\\":60},{\\\"id\\\":{\\\"code\\\":8821,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Latitude\n        of false origin\\\",\\\"unit\\\":\\\"degree\\\",\\\"value\\\":42.5},{\\\"id\\\":{\\\"code\\\":8822,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Longitude\n        of false origin\\\",\\\"unit\\\":\\\"degree\\\",\\\"value\\\":-100},{\\\"id\\\":{\\\"code\\\":8826,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Easting\n        at false origin\\\",\\\"unit\\\":\\\"metre\\\",\\\"value\\\":0},{\\\"id\\\":{\\\"code\\\":8827,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Northing\n        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\n        of the 'time_bnds' variable.\\\"},\\\"time\\\":{\\\"type\\\":\\\"temporal\\\",\\\"extent\\\":[\\\"1980-07-01T12:00:00Z\\\",\\\"2020-07-01T12:00:00Z\\\"],\\\"description\\\":\\\"24-hour\n        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\n        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\n        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\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"Daymet\n        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\n        monthly Hawaii map thumbnail\\\"},\\\"zarr-abfs\\\":{\\\"href\\\":\\\"abfs://daymet-zarr/monthly/hi.zarr\\\",\\\"type\\\":\\\"application/vnd+zarr\\\",\\\"roles\\\":[\\\"data\\\",\\\"zarr\\\",\\\"abfs\\\"],\\\"title\\\":\\\"Monthly\n        Hawaii Daymet Azure Blob File System Zarr root\\\",\\\"description\\\":\\\"Azure Blob\n        File System of the monthly Hawaii Daymet Zarr Group on Azure Blob Storage\n        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\n        Hawaii Daymet HTTPS Zarr root\\\",\\\"description\\\":\\\"HTTPS URI of the monthly\n        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\n        Pressure\\\",\\\"Climate\\\"],\\\"providers\\\":[{\\\"url\\\":\\\"https://planetarycomputer.microsoft.com\\\",\\\"name\\\":\\\"Microsoft\\\",\\\"roles\\\":[\\\"host\\\",\\\"processor\\\"]},{\\\"url\\\":\\\"https://doi.org/10.3334/ORNLDAAC/1855\\\",\\\"name\\\":\\\"ORNL\n        DAAC\\\",\\\"roles\\\":[\\\"producer\\\"]}],\\\"description\\\":\\\"Monthly climate summaries\n        derived from [Daymet](https://daymet.ornl.gov) Version 4 daily data at a 1\n        km x 1 km spatial resolution for five variables: minimum and maximum temperature,\n        precipitation, vapor pressure, and snow water equivalent. Annual averages\n        are provided for minimum and maximum temperature, vapor pressure, and snow\n        water equivalent, and annual totals are provided for the precipitation variable.\\\\n\\\\n[Daymet](https://daymet.ornl.gov/)\n        provides measurements of near-surface meteorological conditions; the main\n        purpose is to provide data estimates where no instrumentation exists. The\n        dataset covers the period from January 1, 1980 to the present. Each year is\n        processed individually at the close of a calendar year. Data are in a Lambert\n        conformal conic projection for North America and are distributed in Zarr and\n        NetCDF formats, compliant with the [Climate and Forecast (CF) metadata conventions\n        (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)\n        to cite your usage of the data.\\\\n\\\\nThis dataset provides coverage for Hawaii;\n        North America and Puerto Rico are provided in [separate datasets](https://planetarycomputer.microsoft.com/dataset/group/daymet#monthly).\\\\n\\\",\\\"sci:citation\\\":\\\"Thornton,\n        M.M., R. Shrestha, Y. Wei, P.E. Thornton, S. Kao, and B.E. Wilson. 2020. Daymet:\n        Monthly Climate Summaries on a 1-km Grid for North America, Version 4. ORNL\n        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\n        average of daily average vapor pressure\\\",\\\"cell_methods\\\":\\\"area: mean time:\n        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\n        average of daily average vapor pressure\\\"},\\\"lat\\\":{\\\"type\\\":\\\"auxiliary\\\",\\\"unit\\\":\\\"degrees_north\\\",\\\"attrs\\\":{\\\"units\\\":\\\"degrees_north\\\",\\\"long_name\\\":\\\"latitude\n        coordinate\\\",\\\"standard_name\\\":\\\"latitude\\\"},\\\"shape\\\":[584,284],\\\"chunks\\\":[584,284],\\\"dimensions\\\":[\\\"y\\\",\\\"x\\\"],\\\"description\\\":\\\"latitude\n        coordinate\\\"},\\\"lon\\\":{\\\"type\\\":\\\"auxiliary\\\",\\\"unit\\\":\\\"degrees_east\\\",\\\"attrs\\\":{\\\"units\\\":\\\"degrees_east\\\",\\\"long_name\\\":\\\"longitude\n        coordinate\\\",\\\"standard_name\\\":\\\"longitude\\\"},\\\"shape\\\":[584,284],\\\"chunks\\\":[584,284],\\\"dimensions\\\":[\\\"y\\\",\\\"x\\\"],\\\"description\\\":\\\"longitude\n        coordinate\\\"},\\\"swe\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"mm\\\",\\\"attrs\\\":{\\\"units\\\":\\\"mm\\\",\\\"long_name\\\":\\\"monthly\n        total snow water equivalent\\\",\\\"cell_methods\\\":\\\"area: mean time: sum within\n        days time: sum over days\\\",\\\"grid_mapping\\\":\\\"lambert_conformal_conic\\\"},\\\"shape\\\":[492,584,284],\\\"chunks\\\":[12,584,284],\\\"dimensions\\\":[\\\"time\\\",\\\"y\\\",\\\"x\\\"],\\\"description\\\":\\\"monthly\n        total snow water equivalent\\\"},\\\"prcp\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"mm\\\",\\\"attrs\\\":{\\\"units\\\":\\\"mm\\\",\\\"long_name\\\":\\\"monthly\n        total precipitation\\\",\\\"cell_methods\\\":\\\"area: mean time: sum within days\n        time: sum over days\\\",\\\"grid_mapping\\\":\\\"lambert_conformal_conic\\\"},\\\"shape\\\":[492,584,284],\\\"chunks\\\":[12,584,284],\\\"dimensions\\\":[\\\"time\\\",\\\"y\\\",\\\"x\\\"],\\\"description\\\":\\\"monthly\n        total precipitation\\\"},\\\"tmax\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"degrees C\\\",\\\"attrs\\\":{\\\"units\\\":\\\"degrees\n        C\\\",\\\"long_name\\\":\\\"monthly average of daily maximum temperature\\\",\\\"cell_methods\\\":\\\"area:\n        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\n        average of daily maximum temperature\\\"},\\\"tmin\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"degrees\n        C\\\",\\\"attrs\\\":{\\\"units\\\":\\\"degrees C\\\",\\\"long_name\\\":\\\"monthly average of\n        daily minimum temperature\\\",\\\"cell_methods\\\":\\\"area: mean time: minimum within\n        days time: mean over days\\\",\\\"grid_mapping\\\":\\\"lambert_conformal_conic\\\"},\\\"shape\\\":[492,584,284],\\\"chunks\\\":[12,584,284],\\\"dimensions\\\":[\\\"time\\\",\\\"y\\\",\\\"x\\\"],\\\"description\\\":\\\"monthly\n        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\n        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\n        Conic Conformal (2SP)\\\"},\\\"parameters\\\":[{\\\"id\\\":{\\\"code\\\":8823,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Latitude\n        of 1st standard parallel\\\",\\\"unit\\\":\\\"degree\\\",\\\"value\\\":25},{\\\"id\\\":{\\\"code\\\":8824,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Latitude\n        of 2nd standard parallel\\\",\\\"unit\\\":\\\"degree\\\",\\\"value\\\":60},{\\\"id\\\":{\\\"code\\\":8821,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Latitude\n        of false origin\\\",\\\"unit\\\":\\\"degree\\\",\\\"value\\\":42.5},{\\\"id\\\":{\\\"code\\\":8822,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Longitude\n        of false origin\\\",\\\"unit\\\":\\\"degree\\\",\\\"value\\\":-100},{\\\"id\\\":{\\\"code\\\":8826,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Easting\n        at false origin\\\",\\\"unit\\\":\\\"metre\\\",\\\"value\\\":0},{\\\"id\\\":{\\\"code\\\":8827,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Northing\n        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\n        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\n        Conic Conformal (2SP)\\\"},\\\"parameters\\\":[{\\\"id\\\":{\\\"code\\\":8823,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Latitude\n        of 1st standard parallel\\\",\\\"unit\\\":\\\"degree\\\",\\\"value\\\":25},{\\\"id\\\":{\\\"code\\\":8824,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Latitude\n        of 2nd standard parallel\\\",\\\"unit\\\":\\\"degree\\\",\\\"value\\\":60},{\\\"id\\\":{\\\"code\\\":8821,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Latitude\n        of false origin\\\",\\\"unit\\\":\\\"degree\\\",\\\"value\\\":42.5},{\\\"id\\\":{\\\"code\\\":8822,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Longitude\n        of false origin\\\",\\\"unit\\\":\\\"degree\\\",\\\"value\\\":-100},{\\\"id\\\":{\\\"code\\\":8826,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Easting\n        at false origin\\\",\\\"unit\\\":\\\"metre\\\",\\\"value\\\":0},{\\\"id\\\":{\\\"code\\\":8827,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Northing\n        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\n        of the 'time_bnds' variable.\\\"},\\\"time\\\":{\\\"type\\\":\\\"temporal\\\",\\\"extent\\\":[\\\"1980-01-16T12:00:00Z\\\",\\\"2020-12-16T00:00:00Z\\\"],\\\"description\\\":\\\"24-hour\n        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\n        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\n        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\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"Daymet\n        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\n        monthly Puerto Rico map thumbnail\\\"},\\\"zarr-abfs\\\":{\\\"href\\\":\\\"abfs://daymet-zarr/monthly/pr.zarr\\\",\\\"type\\\":\\\"application/vnd+zarr\\\",\\\"roles\\\":[\\\"data\\\",\\\"zarr\\\",\\\"abfs\\\"],\\\"title\\\":\\\"Monthly\n        Puerto Rico Daymet Azure Blob File System Zarr root\\\",\\\"description\\\":\\\"Azure\n        Blob File System of the monthly Puerto Rico Daymet Zarr Group on Azure Blob\n        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\n        Puerto Rico Daymet HTTPS Zarr root\\\",\\\"description\\\":\\\"HTTPS URI of the monthly\n        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\n        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\n        DAAC\\\",\\\"roles\\\":[\\\"producer\\\"]}],\\\"description\\\":\\\"Monthly climate summaries\n        derived from [Daymet](https://daymet.ornl.gov) Version 4 daily data at a 1\n        km x 1 km spatial resolution for five variables: minimum and maximum temperature,\n        precipitation, vapor pressure, and snow water equivalent. Annual averages\n        are provided for minimum and maximum temperature, vapor pressure, and snow\n        water equivalent, and annual totals are provided for the precipitation variable.\\\\n\\\\n[Daymet](https://daymet.ornl.gov/)\n        provides measurements of near-surface meteorological conditions; the main\n        purpose is to provide data estimates where no instrumentation exists. The\n        dataset covers the period from January 1, 1980 to the present. Each year is\n        processed individually at the close of a calendar year. Data are in a Lambert\n        conformal conic projection for North America and are distributed in Zarr and\n        NetCDF formats, compliant with the [Climate and Forecast (CF) metadata conventions\n        (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)\n        to cite your usage of the data.\\\\n\\\\nThis dataset provides coverage for Hawaii;\n        North America and Puerto Rico are provided in [separate datasets](https://planetarycomputer.microsoft.com/dataset/group/daymet#monthly).\\\\n\\\",\\\"sci:citation\\\":\\\"Thornton,\n        M.M., R. Shrestha, Y. Wei, P.E. Thornton, S. Kao, and B.E. Wilson. 2020. Daymet:\n        Monthly Climate Summaries on a 1-km Grid for North America, Version 4. ORNL\n        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\n        average of daily average vapor pressure\\\",\\\"cell_methods\\\":\\\"area: mean time:\n        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\n        average of daily average vapor pressure\\\"},\\\"lat\\\":{\\\"type\\\":\\\"auxiliary\\\",\\\"unit\\\":\\\"degrees_north\\\",\\\"attrs\\\":{\\\"units\\\":\\\"degrees_north\\\",\\\"long_name\\\":\\\"latitude\n        coordinate\\\",\\\"standard_name\\\":\\\"latitude\\\"},\\\"shape\\\":[231,364],\\\"chunks\\\":[231,364],\\\"dimensions\\\":[\\\"y\\\",\\\"x\\\"],\\\"description\\\":\\\"latitude\n        coordinate\\\"},\\\"lon\\\":{\\\"type\\\":\\\"auxiliary\\\",\\\"unit\\\":\\\"degrees_east\\\",\\\"attrs\\\":{\\\"units\\\":\\\"degrees_east\\\",\\\"long_name\\\":\\\"longitude\n        coordinate\\\",\\\"standard_name\\\":\\\"longitude\\\"},\\\"shape\\\":[231,364],\\\"chunks\\\":[231,364],\\\"dimensions\\\":[\\\"y\\\",\\\"x\\\"],\\\"description\\\":\\\"longitude\n        coordinate\\\"},\\\"swe\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"mm\\\",\\\"attrs\\\":{\\\"units\\\":\\\"mm\\\",\\\"long_name\\\":\\\"monthly\n        total snow water equivalent\\\",\\\"cell_methods\\\":\\\"area: mean time: sum within\n        days time: sum over days\\\",\\\"grid_mapping\\\":\\\"lambert_conformal_conic\\\"},\\\"shape\\\":[492,231,364],\\\"chunks\\\":[12,231,364],\\\"dimensions\\\":[\\\"time\\\",\\\"y\\\",\\\"x\\\"],\\\"description\\\":\\\"monthly\n        total snow water equivalent\\\"},\\\"prcp\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"mm\\\",\\\"attrs\\\":{\\\"units\\\":\\\"mm\\\",\\\"long_name\\\":\\\"monthly\n        total precipitation\\\",\\\"cell_methods\\\":\\\"area: mean time: sum within days\n        time: sum over days\\\",\\\"grid_mapping\\\":\\\"lambert_conformal_conic\\\"},\\\"shape\\\":[492,231,364],\\\"chunks\\\":[12,231,364],\\\"dimensions\\\":[\\\"time\\\",\\\"y\\\",\\\"x\\\"],\\\"description\\\":\\\"monthly\n        total precipitation\\\"},\\\"tmax\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"degrees C\\\",\\\"attrs\\\":{\\\"units\\\":\\\"degrees\n        C\\\",\\\"long_name\\\":\\\"monthly average of daily maximum temperature\\\",\\\"cell_methods\\\":\\\"area:\n        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\n        average of daily maximum temperature\\\"},\\\"tmin\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"degrees\n        C\\\",\\\"attrs\\\":{\\\"units\\\":\\\"degrees C\\\",\\\"long_name\\\":\\\"monthly average of\n        daily minimum temperature\\\",\\\"cell_methods\\\":\\\"area: mean time: minimum within\n        days time: mean over days\\\",\\\"grid_mapping\\\":\\\"lambert_conformal_conic\\\"},\\\"shape\\\":[492,231,364],\\\"chunks\\\":[12,231,364],\\\"dimensions\\\":[\\\"time\\\",\\\"y\\\",\\\"x\\\"],\\\"description\\\":\\\"monthly\n        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\n        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\n        Conic Conformal (2SP)\\\"},\\\"parameters\\\":[{\\\"id\\\":{\\\"code\\\":8823,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Latitude\n        of 1st standard parallel\\\",\\\"unit\\\":\\\"degree\\\",\\\"value\\\":25},{\\\"id\\\":{\\\"code\\\":8824,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Latitude\n        of 2nd standard parallel\\\",\\\"unit\\\":\\\"degree\\\",\\\"value\\\":60},{\\\"id\\\":{\\\"code\\\":8821,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Latitude\n        of false origin\\\",\\\"unit\\\":\\\"degree\\\",\\\"value\\\":42.5},{\\\"id\\\":{\\\"code\\\":8822,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Longitude\n        of false origin\\\",\\\"unit\\\":\\\"degree\\\",\\\"value\\\":-100},{\\\"id\\\":{\\\"code\\\":8826,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Easting\n        at false origin\\\",\\\"unit\\\":\\\"metre\\\",\\\"value\\\":0},{\\\"id\\\":{\\\"code\\\":8827,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Northing\n        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\n        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\n        Conic Conformal (2SP)\\\"},\\\"parameters\\\":[{\\\"id\\\":{\\\"code\\\":8823,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Latitude\n        of 1st standard parallel\\\",\\\"unit\\\":\\\"degree\\\",\\\"value\\\":25},{\\\"id\\\":{\\\"code\\\":8824,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Latitude\n        of 2nd standard parallel\\\",\\\"unit\\\":\\\"degree\\\",\\\"value\\\":60},{\\\"id\\\":{\\\"code\\\":8821,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Latitude\n        of false origin\\\",\\\"unit\\\":\\\"degree\\\",\\\"value\\\":42.5},{\\\"id\\\":{\\\"code\\\":8822,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Longitude\n        of false origin\\\",\\\"unit\\\":\\\"degree\\\",\\\"value\\\":-100},{\\\"id\\\":{\\\"code\\\":8826,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Easting\n        at false origin\\\",\\\"unit\\\":\\\"metre\\\",\\\"value\\\":0},{\\\"id\\\":{\\\"code\\\":8827,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Northing\n        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\n        of the 'time_bnds' variable.\\\"},\\\"time\\\":{\\\"type\\\":\\\"temporal\\\",\\\"extent\\\":[\\\"1980-01-16T12:00:00Z\\\",\\\"2020-12-16T00:00:00Z\\\"],\\\"description\\\":\\\"24-hour\n        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\n        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\n        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\n        Overview Slides\\\",\\\"description\\\":\\\"Slides giving a high level overview of\n        the gNATSGO dataset\\\"},{\\\"rel\\\":\\\"license\\\",\\\"href\\\":\\\"https://creativecommons.org/publicdomain/zero/1.0/\\\",\\\"title\\\":\\\"CC0\n        1.0 Universal Public Domain Dedication\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/gnatsgo-tables\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"gNATSGO\n        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\n        STAC items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        States\\\"],\\\"providers\\\":[{\\\"url\\\":\\\"https://www.nrcs.usda.gov/\\\",\\\"name\\\":\\\"United\n        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\n        collection contains the table data for gNATSGO. This table data can be used\n        to determine the values of raster data cells for Items in the [gNATSGO Rasters](https://planetarycomputer.microsoft.com/dataset/gnatsgo-rasters)\n        Collection.\\\\n\\\\nThe gridded National Soil Survey Geographic Database (gNATSGO)\n        is a USDA-NRCS Soil & Plant Science Division (SPSD) composite database that\n        provides complete coverage of the best available soils information for all\n        areas of the United States and Island Territories. It was created by combining\n        data from the Soil Survey Geographic Database (SSURGO), State Soil Geographic\n        Database (STATSGO2), and Raster Soil Survey Databases (RSS) into a single\n        seamless ESRI file geodatabase.\\\\n\\\\nSSURGO is the SPSD flagship soils database\n        that has over 100 years of field-validated detailed soil mapping data. SSURGO\n        contains soils information for more than 90 percent of the United States and\n        island territories, but unmapped land remains. STATSGO2 is a general soil\n        map that has soils data for all of the United States and island territories,\n        but the data is not as detailed as the SSURGO data. The Raster Soil Surveys\n        (RSSs) are the next generation soil survey databases developed using advanced\n        digital soil mapping methods.\\\\n\\\\nThe gNATSGO database is composed primarily\n        of SSURGO data, but STATSGO2 data was used to fill in the gaps. The RSSs are\n        newer product with relatively limited spatial extent.  These RSSs were merged\n        into the gNATSGO after combining the SSURGO and STATSGO2 data. The extent\n        of RSS is expected to increase in the coming years.\\\\n\\\\nSee the [official\n        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\n        Horizon AASHTO table contains the American Association of State Highway Transportation\n        Officials classification(s) for the referenced horizon.  One row in this table\n        is marked as the representative AASHTO classification for the horizon.\\\"},{\\\"name\\\":\\\"chconsistence\\\",\\\"description\\\":\\\"The\n        Horizon Consistence table contains descriptive terms of soil consistence --\n        rupture resistance, plasticity, and stickiness -- for the referenced horizon.\n        \\ One row in this table is marked as having the representative characteristics\n        for the horizon.\\\"},{\\\"name\\\":\\\"chdesgnsuffix\\\",\\\"description\\\":\\\"The Horizon\n        Designation Suffix table contains the designation suffix(es), one per row,\n        \\ for the referenced horizon.  For example, the \\\\\\\"h\\\\\\\" and \\\\\\\"s\\\\\\\" of\n        a Bhs horizon appear as two rows in this table.\\\"},{\\\"name\\\":\\\"chfrags\\\",\\\"description\\\":\\\"The\n        Horizon Fragments table lists the mineral and organic fragments that generally\n        occur in the referenced horizon.  If the Volume % is greater than zero (low=5,\n        RV=10, high=15) in a row, the kind and size of fragment in that row exists\n        everywhere this horizon and component occur in the map unit.  If the Volume\n        % includes zero (low=0, RV=5, high=10), the kind and size of fragment may\n        exist in some places, but not in others.\\\"},{\\\"name\\\":\\\"chorizon\\\",\\\"description\\\":\\\"The\n        Horizon table lists the horizon(s) and related data for the referenced map\n        unit component.  If the horizon thickness is greater than zero (low=5, RV=8,\n        high=12), the horizon exists everywhere this component occurs.  If the horizon\n        thickness includes zero (low=0, RV=1, high=3), the horizon may exist in some\n        places, but not in other places.\\\\r\\\\nHorizons that have two distinct parts,\n        such as E/B or E&Bt horizons, are recorded twice.  Once for the characteristics\n        of the first part; and again on another row, using the same depths and thicknesses,\n        for the characteristics of the other part.\\\"},{\\\"name\\\":\\\"chpores\\\",\\\"description\\\":\\\"The\n        Horizon Pores table lists the voids for the referenced horizon.  If the Quantity\n        is greater than zero (low=2, RV=5, high=10) in a row, the voids in that row\n        exist everywhere the horizon and component occur in the map unit.  If the\n        Quantity includes zero (low=0, RV=2, high=5), the voids may exist in some\n        places, but not in others.  More than one row can be marked as an RV row because\n        a horizon may have more than one size or shape of void.\\\"},{\\\"name\\\":\\\"chstruct\\\",\\\"description\\\":\\\"The\n        Horizon Structure table lists the individual soil structure size, grade, and\n        shape terms for the referenced horizon.  Terms in this table are assembled\n        into a structure group string which is recorded in the Horizon Structure Group\n        table.\\\"},{\\\"name\\\":\\\"chstructgrp\\\",\\\"description\\\":\\\"The Horizon Structure\n        Group table lists the ranges of  soil structure for the referenced horizon.\n        \\ The row with the typically occurring structure is marked as being representative.\n        \\ The entry in this table is based on grouping of entries in the Horizon Structure\n        table.\\\"},{\\\"name\\\":\\\"chtext\\\",\\\"description\\\":\\\"The Horizon Text table contains\n        notes and narrative descriptions related to the referenced horizon.  Some\n        notes may provide additional information about the horizon for which there\n        is no explicit column for such data.  In many cases, the table is empty for\n        a particular horizon.\\\"},{\\\"name\\\":\\\"chtexture\\\",\\\"description\\\":\\\"The Horizon\n        Texture table lists the individual texture(s), or term(s) used in lieu of\n        texture, for the referenced horizon.  Only the unmodified texture terms are\n        listed in the Horizon Texture table; modifiers are listed in the Horizon Texture\n        Modifier table.  For example, a gravelly loamy sand is shown as \\\\\\\"GR-LS\\\\\\\"\n        in the Horizon Texture Group table, \\\\\\\"ls\\\\\\\" in the Horizon Texture table,\n        and \\\\\\\"gr\\\\\\\" in the Horizon Texture Modifier table.\\\"},{\\\"name\\\":\\\"chtexturegrp\\\",\\\"description\\\":\\\"The\n        Horizon Texture Group table lists the range of textures for the referenced\n        horizon as a concatenation of horizon texture and texture modifier(s).  For\n        example, a horizon that is gravelly loamy sand in some places and gravelly\n        loamy coarse sand in other places is shown as GR-LS on one row and GR-LCOS\n        on another row in this table.  The row with the typically occurring texture\n        is identified as the RV row.  Stratified textures are shown in one row.  For\n        example, a horizon that is stratified gravelly loamy fine sand and cobbly\n        coarse sand is shown as SR- GR-LFS CB-COS on one row and the Stratified? column\n        for that row is marked \\\\\\\"yes\\\\\\\".  If two or more textures always occur\n        together but are not stratified, all of the textures are listed on one row\n        and the Stratified? column for that row is marked \\\\\\\"no\\\\\\\".\\\"},{\\\"name\\\":\\\"chtexturemod\\\",\\\"description\\\":\\\"The\n        Horizon Texture Modifier table lists the texture modifier(s) for the referenced\n        texture.  For example, a gravelly loamy sand is shown as \\\\\\\"GR-LS\\\\\\\" in\n        the Horizon Texture Group table, \\\\\\\"ls\\\\\\\" in the Horizon Texture table,\n        and \\\\\\\"gr\\\\\\\" in this table.\\\"},{\\\"name\\\":\\\"chunified\\\",\\\"description\\\":\\\"The\n        Horizon Unified table contains the Unified Soil Classification(s) for the\n        referenced horizon.  One row in the Horizon Unified table is marked as the\n        representative Unified classification for the horizon.\\\"},{\\\"name\\\":\\\"cocanopycover\\\",\\\"description\\\":\\\"The\n        Component Canopy Cover table lists the overstory plants that typically occur\n        on the referenced map unit component.\\\"},{\\\"name\\\":\\\"cocropyld\\\",\\\"description\\\":\\\"The\n        Component Crop Yield table lists commonly grown crops and their expected range\n        in yields when grown on the referenced map unit component.  Yields for the\n        map unit as a whole are given in the Mapunit Crop Yield table.\\\"},{\\\"name\\\":\\\"codiagfeatures\\\",\\\"description\\\":\\\"The\n        Component Diagnostic Features table lists the typical soil features, such\n        as ochric epipedon or cambic horizon, for the referenced map unit component.\\\"},{\\\"name\\\":\\\"coecoclass\\\",\\\"description\\\":\\\"The\n        Component Ecological Classification table identifies the ecological sites\n        typically associated with the referenced map unit component.  These may include\n        the official NRCS forestland and rangland ecological sites, as well as those\n        of other classification systems, such as the USFS Habitat Types.\\\"},{\\\"name\\\":\\\"coeplants\\\",\\\"description\\\":\\\"The\n        Component Existing Plants table lists the plants, either rangeland or forestland\n        plants, that typically occur on the referenced map unit component.\\\"},{\\\"name\\\":\\\"coerosionacc\\\",\\\"description\\\":\\\"The\n        Component Erosion Accelerated table lists the kinds of accelerated erosion\n        that occur on the referenced map unit component.  One row in this table is\n        marked as the representative kind of accelerated erosion for that component.\\\"},{\\\"name\\\":\\\"coforprod\\\",\\\"description\\\":\\\"The\n        Component Forest Productivity table lists the site index and the annual productivity\n        in cubic feet per acre per year (CAMI) of forest overstory tree species that\n        typically occur on the referenced map unit component.\\\"},{\\\"name\\\":\\\"coforprodo\\\",\\\"description\\\":\\\"The\n        Component Forest Productivity - Other table lists the site index and annual\n        productivity of forest overstory tree species in units other than cubic feet\n        per acre per year for trees that typically occur on the referenced map unit\n        component.\\\"},{\\\"name\\\":\\\"cogeomordesc\\\",\\\"description\\\":\\\"The Component Geomorphic\n        Description table lists the geomorphic features on which the referenced map\n        unit component typically occurs.\\\"},{\\\"name\\\":\\\"cohydriccriteria\\\",\\\"description\\\":\\\"The\n        Component Hydric Criteria table lists the hydric soil criteria met for those\n        referenced map unit components that are classified as a \\\\\\\"hydric soil.\\\\\\\"\\\"},{\\\"name\\\":\\\"cointerp\\\",\\\"description\\\":\\\"The\n        Component Interpretation table lists the predictions of behavior and limiting\n        features for specified uses made for the referenced map unit component.\\\"},{\\\"name\\\":\\\"comonth\\\",\\\"description\\\":\\\"The\n        Component Month table lists the monthly flooding and ponding characteristics\n        for the referenced map unit component.  This table has one row for each month\n        of the year.\\\"},{\\\"name\\\":\\\"component\\\",\\\"description\\\":\\\"The Component table\n        lists the map unit components identified in the referenced map unit, and selected\n        properties of each component.  If the Component % is greater than zero (low=65,\n        RV=75, high=90) for a component, that component exists in every delineation\n        of that mapunit.  If the Component % includes zero (low=0, RV=50, high=90),\n        the component may exist in some delineations, but not in others.\\\"},{\\\"name\\\":\\\"copm\\\",\\\"description\\\":\\\"The\n        Component Parent Material table lists the individual parent material(s) for\n        the referenced map unit component.    In some cases where soils developed\n        in multiple materials in a vertical sequence, that sequence will be noted.\n        \\ In other cases multiple entries with no vertical sequence noted indicates\n        the soil may have formed in one of the materials listed.\\\"},{\\\"name\\\":\\\"copmgrp\\\",\\\"description\\\":\\\"The\n        Component Parent Material Group table lists the concatenated string of parent\n        material(s) in which the referenced map unit component formed based on entries\n        in the Component Parent Material table.  For example, a component formed in\n        one parent material, such as loess, or one vertical sequence of parent materials,\n        such as loamy glacial drift over silty residuum weathered from shale, has\n        one row in this table.  A component formed in one parent material in some\n        locations, but another parent material (or sequence of parent materials) in\n        other locations has two rows in this table, one for each parent material (or\n        sequence of parent materials).  One row is identified as the representative\n        parent material.\\\"},{\\\"name\\\":\\\"copwindbreak\\\",\\\"description\\\":\\\"The Component\n        Potential Windbreak table lists the windbreak plant species commonly recommended\n        for the referenced map unit component.  A windbreak plant listed in this table\n        may be used alone or in combination with other plants.\\\"},{\\\"name\\\":\\\"corestrictions\\\",\\\"description\\\":\\\"The\n        Component Restrictions table lists the root restrictive feature(s) or layer(s)\n        for the referenced map unit component.  If the thickness of the restrictive\n        layer is greater than zero (low=5, RV=8, high=10), the restrictive layer exists\n        in all delineations of the map unit where the component occurs.  If the thickness\n        of the restrictive layer includes zero (low=0, RV=2, high=5), the restrictive\n        layer may exist in some delineations, but not in others.  This table will\n        be empty if the component does not have restrictive features, but could have\n        several rows if several restrictive features occur in the soil.\\\"},{\\\"name\\\":\\\"cosoilmoist\\\",\\\"description\\\":\\\"The\n        Component Soil Moisture table describes the typical soil moisture profile\n        for the referenced map unit component during the month referenced in the Component\n        Month table.  The soil moisture profiles for each month, taken as a group\n        of twelve months, describe the representative situation for the component\n        throughout the year.\\\"},{\\\"name\\\":\\\"cosoiltemp\\\",\\\"description\\\":\\\"The Component\n        Soil Temperature table describes the typical soil temperature profile for\n        the referenced map unit component during the month referenced in the Component\n        Month table.  The soil temperature profiles for each month, taken as a group\n        of twelve months, describe the representative situation for the component\n        throughout the year.\\\"},{\\\"name\\\":\\\"cosurffrags\\\",\\\"description\\\":\\\"The Component\n        Surface Fragments table lists the organic or mineral fragments that generally\n        occur on the surface of the referenced map unit component.  If the cover percent\n        is greater than zero (low=0.1, RV=1, high=3) for a row in this table, the\n        fragment is in every delineation of the map unit where the referenced component\n        occurs.  If the Cover % includes zero (low=0, RV=0.01, high=1) for a row in\n        this table, the fragment may exist in some delineations and not in others.\\\"},{\\\"name\\\":\\\"cosurfmorphgc\\\",\\\"description\\\":\\\"The\n        Component Three Dimensional Surface Morphometry table lists the typical geomorphic\n        position (s) of the referenced map unit component, in three dimension terms.\n        \\ The geomorphic position(s) listed in this table apply to the geomorphic\n        feature referenced in the Component Geomorphic Description table.\\\"},{\\\"name\\\":\\\"cosurfmorphhpp\\\",\\\"description\\\":\\\"The\n        Component Two Dimensional Surface Morphometry table lists the geomorphic position(s)\n        of the referenced map unit component, in two dimensional hillslope profile\n        terms.  The geomorphic position(s) listed in this table apply to the geomorphic\n        feature referenced  in the Component Geomorphic Description table.\\\"},{\\\"name\\\":\\\"cosurfmorphmr\\\",\\\"description\\\":\\\"The\n        Component Microrelief Surface Morphometry table lists microrelief features\n        associated with the referenced geomorphic (microfeature) feature shown in\n        the Component Geomorphic Description table.\\\"},{\\\"name\\\":\\\"cosurfmorphss\\\",\\\"description\\\":\\\"The\n        Component Slope Shape Surface Morphometry table lists the geomorphic shape(s)\n        of the referenced map unit component, in slope shape terms.  The slope shape\n        terms listed in this table apply to the referenced geomorphic feature shown\n        in the Component Geomorphic Description table.\\\"},{\\\"name\\\":\\\"cotaxfmmin\\\",\\\"description\\\":\\\"The\n        Component Taxonomic Family Mineralogy table lists the mineralogy characteristics,\n        as defined in Soil Taxonomy, that apply to the referenced map unit component.\\\"},{\\\"name\\\":\\\"cotaxmoistcl\\\",\\\"description\\\":\\\"The\n        Component Taxonomic Moisture Class table provides clear identification of\n        the intended taxonomic moisture class, as defined in Soil Taxonomy, that apply\n        to the referenced map unit component, even though moisture class is implied\n        at a higher taxonomic level.  The class or classes listed in this table describe\n        the representative situation for the component.\\\"},{\\\"name\\\":\\\"cotext\\\",\\\"description\\\":\\\"The\n        Component Text table contains notes and narrative descriptions for the referenced\n        map unit component.  In many cases, the table will be empty for a particular\n        component.\\\"},{\\\"name\\\":\\\"cotreestomng\\\",\\\"description\\\":\\\"The Component Trees\n        To Manage table lists the trees commonly recommended for managing on the referenced\n        map unit component.\\\"},{\\\"name\\\":\\\"cotxfmother\\\",\\\"description\\\":\\\"The Component\n        Taxonomic Family Other Criteria table lists the other taxonomic characteristics,\n        such as classes of coatings or permanent cracks, as defined in Soil Taxonomy,\n        that apply to the referenced map unit component.  The characteristics listed\n        in this table describe the representative situation for the component.\\\"},{\\\"name\\\":\\\"distinterpmd\\\",\\\"description\\\":\\\"The\n        Distribution Interp Metadata table records the set of NASIS fuzzy logic interpretations\n        which were generated for the map unit components included in a set of distribution\n        data.\\\"},{\\\"name\\\":\\\"distlegendmd\\\",\\\"description\\\":\\\"The Distribution Legend\n        Metadata table records information about the legends or soil survey areas\n        selected for inclusion in a set of distributed data.  The presence of a legend\n        in this table does not imply that all of the available data for that legend\n        was included in the set of data that was distributed.  Only certain map units\n        and components for that legend may have been selected.  The record of the\n        criteria used for selecting map units and components may be found in the Distribution\n        Metadata table.\\\"},{\\\"name\\\":\\\"distmd\\\",\\\"description\\\":\\\"The Distribution\n        Metadata table records information associated with the selection of a set\n        of data for distribution to some entity or information system external to\n        NASIS.  A set of distribution data may include only selected map units from\n        a legend or legends, and only selected components of those map units.  This\n        table records the criteria used for selecting map units and components for\n        inclusion in the set of distributed data.  Other recorded information includes\n        the name of the NASIS user who initiated a distribution request, and the times\n        when that request was made, and when that request was ultimately processed.\\\"},{\\\"name\\\":\\\"laoverlap\\\",\\\"description\\\":\\\"The\n        Legend Area Overlap table lists the geographic areas that are coincident with\n        the soil survey area identified in the Legend table.  For example, a survey\n        area that covers two counties would have two rows in this table, one for each\n        county.  Other types of geographic areas listed might include state, MLRA,\n        rainfall (R) factor area, climate (C) factor area, etc.\\\"},{\\\"name\\\":\\\"legend\\\",\\\"description\\\":\\\"The\n        Legend table identifies the soil survey area that the legend is related to,\n        and related information about that legend.\\\"},{\\\"name\\\":\\\"legendtext\\\",\\\"description\\\":\\\"The\n        Legend Text table contains notes and narrative descriptions related to the\n        referenced legend.  Legend text is optional.  In many cases, this table is\n        empty.\\\"},{\\\"name\\\":\\\"mapunit\\\",\\\"description\\\":\\\"The Mapunit table identifies\n        the map units included in the referenced legend.  Data related the map unit\n        as a whole are also given.\\\"},{\\\"name\\\":\\\"muaggatt\\\",\\\"description\\\":\\\"The\n        Mapunit Aggregated Attribute table records a variety of soil attributes and\n        interpretations that have been aggregated from the component level to a single\n        value at the map unit level. They have been aggregated by one or more appropriate\n        means in order to express a consolidated value or interpretation for the map\n        unit as a whole.\\\"},{\\\"name\\\":\\\"muaoverlap\\\",\\\"description\\\":\\\"The Mapunit\n        Area Overlap table lists the map units that exist in the overlap between the\n        entire soil survey area and the referenced geographic area in the Legend Area\n        Overlap table.\\\"},{\\\"name\\\":\\\"mucropyld\\\",\\\"description\\\":\\\"The Mapunit Crop\n        Yield table lists commonly grown crops and their expected yields for the referenced\n        map unit as a whole.  Yields for individual map unit components are given\n        in the Component Crop Yield table.\\\"},{\\\"name\\\":\\\"mutext\\\",\\\"description\\\":\\\"The\n        Mapunit Text table contains notes and narrative descriptions related to the\n        referenced map unit.\\\"},{\\\"name\\\":\\\"sacatalog\\\",\\\"description\\\":\\\"This table\n        records the primary dynamic metadata associated with a soil survey area.  This\n        includes such things as survey area version, tabular data version, etc. The\n        remaining dynamic metadata, which soil interpretations were generated for\n        the corresponding soil survey area, is recorded in the Survey Area Interpretation\n        table.\\\"},{\\\"name\\\":\\\"sainterp\\\",\\\"description\\\":\\\"This table records information\n        about the soil interpretations that were generated for a soil survey area.\\\"},{\\\"name\\\":\\\"valu1\\\",\\\"description\\\":\\\"Included\n        with the gSSURGO database, but not a part of the standard SSURGO dataset is\n        a table called Valu1. This table contains 57 pre-summarized or 'ready to map'\n        attributes derived from the official SSURGO database. These attribute data\n        are pre-summarized to the map unit level using best-practice generalization\n        methods intended to meet the needs of most users. The generalization methods\n        include map unit component weighted averages and percent of the map unit meeting\n        a given criteria. These themes were prepared to better meet the mapping needs\n        of users of soil survey information and can be used with both SSURGO and gridded\n        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\n        gridded National Soil Survey Geographic Database (gNATSGO) is a USDA-NRCS\n        Soil & Plant Science Division (SPSD) composite database that provides complete\n        coverage of the best available soils information for all areas of the United\n        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\n        Data Use Policy\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/hgb\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"HGB:\n        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\n        Global Biomass\\\"},\\\"geoparquet-items\\\":{\\\"href\\\":\\\"abfs://items/hgb.parquet\\\",\\\"type\\\":\\\"application/x-parquet\\\",\\\"roles\\\":[\\\"stac-items\\\"],\\\"title\\\":\\\"GeoParquet\n        STAC items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        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\n        dataset provides temporally consistent and harmonized global maps of aboveground\n        and belowground biomass carbon density for the year 2010 at 300m resolution.\n        The aboveground biomass map integrates land-cover-specific, remotely sensed\n        maps of woody, grassland, cropland, and tundra biomass. Input maps were amassed\n        from the published literature and, where necessary, updated to cover the focal\n        extent or time period. The belowground biomass map similarly integrates matching\n        maps derived from each aboveground biomass map and land-cover-specific empirical\n        models. Aboveground and belowground maps were then integrated separately using\n        ancillary maps of percent tree/land cover and a rule-based decision tree.\n        Maps reporting the accumulated uncertainty of pixel-level estimates are also\n        provided.\\\\n\\\",\\\"item_assets\\\":{\\\"aboveground\\\":{\\\"type\\\":\\\"image/tiff; application=geotiff;\n        profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Global above-ground\n        biomass\\\"},\\\"belowground\\\":{\\\"type\\\":\\\"image/tiff; application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Global\n        below-ground biomass\\\"},\\\"aboveground_uncertainty\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Uncertainty\n        associated with global above-ground biomass\\\"},\\\"belowground_uncertainty\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Uncertainty\n        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\n        maps of aboveground and belowground biomass carbon density for the year 2010\n        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\n        DEM License\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/cop-dem-glo-30\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"Copernicus\n        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\n        DEM GLO-30\\\"},\\\"geoparquet-items\\\":{\\\"href\\\":\\\"abfs://items/cop-dem-glo-30.parquet\\\",\\\"type\\\":\\\"application/x-parquet\\\",\\\"roles\\\":[\\\"stac-items\\\"],\\\"title\\\":\\\"GeoParquet\n        STAC items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        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\n        Copernicus DEM is a digital surface model (DSM), which represents the surface\n        of the Earth including buildings, infrastructure, and vegetation. This DSM\n        is based on radar satellite data acquired during the TanDEM-X Mission, which\n        was funded by a public-private partnership between the German Aerospace Centre\n        (DLR) and Airbus Defence and Space.\\\\n\\\\nCopernicus DEM is available at both\n        30-meter and 90-meter resolution; this dataset has a horizontal resolution\n        of approximately 30 meters.\\\\n\\\\nSee the [Product Handbook](https://object.cloud.sdsc.edu/v1/AUTH_opentopography/www/metadata/Copernicus_metadata.pdf)\n        for more information.\\\\n\\\\nSee the dataset page on OpenTopography: <https://doi.org/10.5069/G9028PQB>\\\\n\\\\n\\\",\\\"item_assets\\\":{\\\"data\\\":{\\\"type\\\":\\\"image/tiff;\n        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\n        DEM 30 is a near-global digital surface model (DSM) with a horizontal resolution\n        of approximately 30 meters, derived from radar satellite data acquired during\n        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\n        DEM License\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/cop-dem-glo-90\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"Copernicus\n        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\n        DEM GLO-90\\\"},\\\"geoparquet-items\\\":{\\\"href\\\":\\\"abfs://items/cop-dem-glo-90.parquet\\\",\\\"type\\\":\\\"application/x-parquet\\\",\\\"roles\\\":[\\\"stac-items\\\"],\\\"title\\\":\\\"GeoParquet\n        STAC items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        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\n        Copernicus DEM is a digital surface model (DSM), which represents the surface\n        of the Earth including buildings, infrastructure, and vegetation. This DSM\n        is based on radar satellite data acquired during the TanDEM-X Mission, which\n        was funded by a public-private partnership between the German Aerospace Centre\n        (DLR) and Airbus Defence and Space.\\\\n\\\\nCopernicus DEM is available at both\n        30-meter and 90-meter resolution; this dataset has a horizontal resolution\n        of approximately 90 meters.\\\\n\\\\nSee the [Product Handbook](https://object.cloud.sdsc.edu/v1/AUTH_opentopography/www/metadata/Copernicus_metadata.pdf)\n        for more information.\\\\n\\\\nSee the dataset page on OpenTopography: <https://doi.org/10.5069/G9028PQB>\\\\n\\\\n\\\",\\\"item_assets\\\":{\\\"data\\\":{\\\"type\\\":\\\"image/tiff;\n        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\n        DEM 90 is a near-global digital surface model (DSM) with a horizontal resolution\n        of approximately 90 meters, derived from radar satellite data acquired during\n        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\n        License\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/terraclimate\\\",\\\"title\\\":\\\"Human\n        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\n        thumbnail\\\"},\\\"zarr-abfs\\\":{\\\"href\\\":\\\"az://cpdata/terraclimate.zarr\\\",\\\"type\\\":\\\"application/vnd+zarr\\\",\\\"roles\\\":[\\\"data\\\",\\\"zarr\\\",\\\"abfs\\\"],\\\"title\\\":\\\"TerraClimate\n        Azure Blob File System Zarr root\\\",\\\"description\\\":\\\"Azure Blob File System\n        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\n        HTTPS Zarr root\\\",\\\"description\\\":\\\"HTTPS URI of the TerraClimate Zarr Group\n        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\n        Pressure\\\",\\\"Climate\\\"],\\\"providers\\\":[{\\\"url\\\":\\\"https://planetarycomputer.microsoft.com\\\",\\\"name\\\":\\\"Microsoft\\\",\\\"roles\\\":[\\\"host\\\",\\\"processor\\\"]},{\\\"url\\\":\\\"http://www.climatologylab.org/terraclimate.html\\\",\\\"name\\\":\\\"Climatology\n        Lab\\\",\\\"roles\\\":[\\\"producer\\\"]},{\\\"url\\\":\\\"https://www.nature.com/articles/sdata2017191\\\",\\\"name\\\":\\\"Abatzoglou,\n        J.T., S.Z. Dobrowski, S.A. Parks, K.C. Hegewisch\\\",\\\"roles\\\":[\\\"producer\\\"]}],\\\"description\\\":\\\"[TerraClimate](http://www.climatologylab.org/terraclimate.html)\n        is a dataset of monthly climate and climatic water balance for global terrestrial\n        surfaces from 1958 to the present. These data provide important inputs for\n        ecological and hydrological studies at global scales that require high spatial\n        resolution and time-varying data. All data have monthly temporal resolution\n        and a ~4-km (1/24th degree) spatial resolution. This dataset is provided in\n        [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\n        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\n        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\n        Speed at 10-m\\\"},\\\"aet\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"mm\\\",\\\"attrs\\\":{\\\"units\\\":\\\"mm\\\",\\\"long_name\\\":\\\"water_evaporation_amount\\\",\\\"dimensions\\\":\\\"lon\n        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\n        Evapotranspiration\\\"},\\\"def\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"mm\\\",\\\"attrs\\\":{\\\"units\\\":\\\"mm\\\",\\\"long_name\\\":\\\"water_potential_evaporation_amount_minus_water_evaporation_amount\\\",\\\"dimensions\\\":\\\"lon\n        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\n        Water Deficit\\\"},\\\"pet\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"mm\\\",\\\"attrs\\\":{\\\"units\\\":\\\"mm\\\",\\\"long_name\\\":\\\"water_potential_evaporation_amount\\\",\\\"dimensions\\\":\\\"lon\n        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\n        Evapotranspiration\\\"},\\\"ppt\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"mm\\\",\\\"attrs\\\":{\\\"units\\\":\\\"mm\\\",\\\"long_name\\\":\\\"precipitation_amount\\\",\\\"dimensions\\\":\\\"lon\n        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\n        Precipitation\\\"},\\\"swe\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"mm\\\",\\\"attrs\\\":{\\\"units\\\":\\\"mm\\\",\\\"long_name\\\":\\\"liquid_water_content_of_surface_snow\\\",\\\"dimensions\\\":\\\"lon\n        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\n        Water Equivalent at End of Month\\\"},\\\"vap\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"kPa\\\",\\\"attrs\\\":{\\\"units\\\":\\\"kPa\\\",\\\"long_name\\\":\\\"water_vapor_partial_pressure_in_air\\\",\\\"dimensions\\\":\\\"lon\n        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\n        Vapor Pressure\\\"},\\\"vpd\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"kPa\\\",\\\"attrs\\\":{\\\"units\\\":\\\"kPa\\\",\\\"long_name\\\":\\\"vapor_pressure_deficit\\\",\\\"dimensions\\\":\\\"lon\n        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\n        Pressure Deficit\\\"},\\\"pdsi\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"unitless\\\",\\\"attrs\\\":{\\\"units\\\":\\\"unitless\\\",\\\"long_name\\\":\\\"palmer_drought_severity_index\\\",\\\"dimensions\\\":\\\"lon\n        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\n        Drought Severity Index\\\"},\\\"soil\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"mm\\\",\\\"attrs\\\":{\\\"units\\\":\\\"mm\\\",\\\"long_name\\\":\\\"soil_moisture_content\\\",\\\"dimensions\\\":\\\"lon\n        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\n        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\n        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\n        Shortwave Radiation Flux at the Surface\\\"},\\\"tmax\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"degC\\\",\\\"attrs\\\":{\\\"units\\\":\\\"degC\\\",\\\"long_name\\\":\\\"air_temperature\\\",\\\"dimensions\\\":\\\"lon\n        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\n        2-m Temperature\\\"},\\\"tmin\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"degC\\\",\\\"attrs\\\":{\\\"units\\\":\\\"degC\\\",\\\"long_name\\\":\\\"air_temperature\\\",\\\"dimensions\\\":\\\"lon\n        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\n        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\n        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\n        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\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"Earth\n        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\n        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\n        STAC items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        NEX-GDDP-CMIP6 dataset is comprised of global downscaled climate scenarios\n        derived from the General Circulation Model (GCM) runs conducted under the\n        Coupled Model Intercomparison Project Phase 6 (CMIP6) and across two of the\n        four \\u201CTier 1\\u201D greenhouse gas emissions scenarios known as Shared\n        Socioeconomic Pathways (SSPs). The CMIP6 GCM runs were developed in support\n        of the Sixth Assessment Report of the Intergovernmental Panel on Climate Change\n        (IPCC AR6). This dataset includes downscaled projections from ScenarioMIP\n        model runs for which daily scenarios were produced and distributed through\n        the Earth System Grid Federation. The purpose of this dataset is to provide\n        a set of global, high resolution, bias-corrected climate change projections\n        that can be used to evaluate climate change impacts on processes that are\n        sensitive to finer-scale climate gradients and the effects of local topography\n        on climate conditions.\\\\n\\\\nThe [NASA Center for Climate Simulation](https://www.nccs.nasa.gov/)\n        maintains the [next-gddp-cmip6 product page](https://www.nccs.nasa.gov/services/data-collections/land-based-products/nex-gddp-cmip6)\n        where you can find more information about these datasets. Users are encouraged\n        to review the [technote](https://www.nccs.nasa.gov/sites/default/files/NEX-GDDP-CMIP6-Tech_Note.pdf),\n        provided alongside the data set, where more detailed information, references\n        and acknowledgements can be found.\\\\n\\\\nThis collection contains many NetCDF\n        files. There is one NetCDF file per `(model, scenario, variable, year)` tuple.\\\\n\\\\n-\n        **model** is the name of a modeling group (e.g. \\\\\\\"ACCESS-CM-2\\\\\\\"). See\n        the `cmip6:model` summary in the STAC collection for a full list of models.\\\\n-\n        **scenario** is one of \\\\\\\"historical\\\\\\\", \\\\\\\"ssp245\\\\\\\" or \\\\\\\"ssp585\\\\\\\".\\\\n-\n        **variable** is one of \\\\\\\"hurs\\\\\\\", \\\\\\\"huss\\\\\\\", \\\\\\\"pr\\\\\\\", \\\\\\\"rlds\\\\\\\",\n        \\\\\\\"rsds\\\\\\\", \\\\\\\"sfcWind\\\\\\\", \\\\\\\"tas\\\\\\\", \\\\\\\"tasmax\\\\\\\", \\\\\\\"tasmin\\\\\\\".\\\\n-\n        **year** depends on the value of *scenario*. For \\\\\\\"historical\\\\\\\", the values\n        range from 1950 to 2014 (inclusive). For \\\\\\\"ssp245\\\\\\\" and \\\\\\\"ssp585\\\\\\\",\n        the years range from 2015 to 2100 (inclusive).\\\\n\\\\nIn addition to the NetCDF\n        files, we provide some *experimental* **reference files** as collection-level\n        dataset assets. These are JSON files implementing the [references specification](https://fsspec.github.io/kerchunk/spec.html).\\\\nThese\n        files include the positions of data variables within the binary NetCDF files,\n        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\n        Near-Surface Air Temperature\\\",\\\"description\\\":\\\"Daily Near-Surface Air Temperature\\\"},\\\"hurs\\\":{\\\"type\\\":\\\"application/netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Near-Surface\n        Relative Humidity\\\",\\\"description\\\":\\\"Near-Surface Relative Humidity\\\"},\\\"huss\\\":{\\\"type\\\":\\\"application/netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Near-Surface\n        Specific Humidity\\\",\\\"description\\\":\\\"Near-Surface Specific Humidity\\\"},\\\"rlds\\\":{\\\"type\\\":\\\"application/netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Surface\n        Downwelling Longwave Radiation\\\",\\\"description\\\":\\\"Surface Downwelling Longwave\n        Radiation\\\"},\\\"rsds\\\":{\\\"type\\\":\\\"application/netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Surface\n        Downwelling Shortwave Radiation\\\",\\\"description\\\":\\\"Surface Downwelling Shortwave\n        Radiation\\\"},\\\"tasmax\\\":{\\\"type\\\":\\\"application/netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Daily\n        Maximum Near-Surface Air Temperature\\\",\\\"description\\\":\\\"Daily Maximum Near-Surface\n        Air Temperature\\\"},\\\"tasmin\\\":{\\\"type\\\":\\\"application/netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Daily\n        Minimum Near-Surface Air Temperature\\\",\\\"description\\\":\\\"Daily Minimum Near-Surface\n        Air Temperature\\\"},\\\"sfcWind\\\":{\\\"type\\\":\\\"application/netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Daily-Mean\n        Near-Surface Wind Speed\\\",\\\"description\\\":\\\"Daily-Mean Near-Surface Wind Speed\\\"}},\\\"sci:citation\\\":\\\"Climate\n        scenarios used were from the NEX-GDDP-CMIP6 dataset, prepared by the Climate\n        Analytics Group and NASA Ames Research Center using the NASA Earth Exchange,\n        and distributed by the NASA Center for Climate Simulation (NCCS).\\\",\\\"stac_version\\\":\\\"1.0.0\\\",\\\"cube:variables\\\":{\\\"pr\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"kg\n        m-2 s-1\\\",\\\"attrs\\\":{\\\"units\\\":\\\"kg m-2 s-1\\\",\\\"comment\\\":\\\"includes both\n        liquid and solid phases\\\",\\\"long_name\\\":\\\"Precipitation\\\",\\\"cell_methods\\\":\\\"area:\n        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\n        (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin\\\",\\\"long_name\\\":\\\"Daily\n        Near-Surface Air Temperature\\\",\\\"cell_methods\\\":\\\"area: mean time: maximum\\\",\\\"cell_measures\\\":\\\"area:\n        areacella\\\",\\\"standard_name\\\":\\\"air_temperature\\\"},\\\"shape\\\":[365,600,1440],\\\"dimensions\\\":[\\\"time\\\",\\\"lat\\\",\\\"lon\\\"],\\\"description\\\":\\\"Daily\n        Near-Surface Air Temperature\\\"},\\\"hurs\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"%\\\",\\\"attrs\\\":{\\\"units\\\":\\\"%\\\",\\\"comment\\\":\\\"The\n        relative humidity with respect to liquid water for T> 0 C, and with respect\n        to ice for T<0 C.\\\",\\\"long_name\\\":\\\"Near-Surface Relative Humidity\\\",\\\"cell_methods\\\":\\\"area:\n        time: mean\\\",\\\"cell_measures\\\":\\\"area: areacella\\\",\\\"standard_name\\\":\\\"relative_humidity\\\"},\\\"shape\\\":[365,600,1440],\\\"dimensions\\\":[\\\"time\\\",\\\"lat\\\",\\\"lon\\\"],\\\"description\\\":\\\"Near-Surface\n        Relative Humidity\\\"},\\\"huss\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"1\\\",\\\"attrs\\\":{\\\"units\\\":\\\"1\\\",\\\"comment\\\":\\\"Near-surface\n        (usually, 2 meter) specific humidity.\\\",\\\"long_name\\\":\\\"Near-Surface Specific\n        Humidity\\\",\\\"cell_methods\\\":\\\"area: time: mean\\\",\\\"cell_measures\\\":\\\"area:\n        areacella\\\",\\\"standard_name\\\":\\\"specific_humidity\\\"},\\\"shape\\\":[365,600,1440],\\\"dimensions\\\":[\\\"time\\\",\\\"lat\\\",\\\"lon\\\"],\\\"description\\\":\\\"Near-Surface\n        Specific Humidity\\\"},\\\"rlds\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"W m-2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"W\n        m-2\\\",\\\"comment\\\":\\\"The surface called 'surface' means the lower boundary\n        of the atmosphere. 'longwave' means longwave radiation. Downwelling radiation\n        is radiation from above. It does not mean 'net downward'. When thought of\n        as being incident on a surface, a radiative flux is sometimes called 'irradiance'.\n        In addition, it is identical with the quantity measured by a cosine-collector\n        light-meter and sometimes called 'vector irradiance'. In accordance with common\n        usage in geophysical disciplines, 'flux' implies per unit area, called 'flux\n        density' in physics.\\\",\\\"long_name\\\":\\\"Surface Downwelling Longwave Radiation\\\",\\\"cell_methods\\\":\\\"area:\n        time: mean\\\",\\\"cell_measures\\\":\\\"area: areacella\\\",\\\"standard_name\\\":\\\"surface_downwelling_longwave_flux_in_air\\\"},\\\"shape\\\":[365,600,1440],\\\"dimensions\\\":[\\\"time\\\",\\\"lat\\\",\\\"lon\\\"],\\\"description\\\":\\\"Surface\n        Downwelling Longwave Radiation\\\"},\\\"rsds\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"W\n        m-2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"W m-2\\\",\\\"comment\\\":\\\"Surface solar irradiance\n        for UV calculations.\\\",\\\"long_name\\\":\\\"Surface Downwelling Shortwave Radiation\\\",\\\"cell_methods\\\":\\\"area:\n        time: mean\\\",\\\"cell_measures\\\":\\\"area: areacella\\\",\\\"standard_name\\\":\\\"surface_downwelling_shortwave_flux_in_air\\\"},\\\"shape\\\":[365,600,1440],\\\"dimensions\\\":[\\\"time\\\",\\\"lat\\\",\\\"lon\\\"],\\\"description\\\":\\\"Surface\n        Downwelling Shortwave Radiation\\\"},\\\"tasmax\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"K\\\",\\\"attrs\\\":{\\\"units\\\":\\\"K\\\",\\\"comment\\\":\\\"maximum\n        near-surface (usually, 2 meter) air temperature (add cell_method attribute\n        'time: max')\\\",\\\"long_name\\\":\\\"Daily Maximum Near-Surface Air Temperature\\\",\\\"cell_methods\\\":\\\"area:\n        mean time: maximum\\\",\\\"cell_measures\\\":\\\"area: areacella\\\",\\\"standard_name\\\":\\\"air_temperature\\\"},\\\"shape\\\":[365,600,1440],\\\"dimensions\\\":[\\\"time\\\",\\\"lat\\\",\\\"lon\\\"],\\\"description\\\":\\\"Daily\n        Maximum Near-Surface Air Temperature\\\"},\\\"tasmin\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"K\\\",\\\"attrs\\\":{\\\"units\\\":\\\"K\\\",\\\"comment\\\":\\\"minimum\n        near-surface (usually, 2 meter) air temperature (add cell_method attribute\n        'time: min')\\\",\\\"long_name\\\":\\\"Daily Minimum Near-Surface Air Temperature\\\",\\\"cell_methods\\\":\\\"area:\n        mean time: minimum\\\",\\\"cell_measures\\\":\\\"area: areacella\\\",\\\"standard_name\\\":\\\"air_temperature\\\"},\\\"shape\\\":[365,600,1440],\\\"dimensions\\\":[\\\"time\\\",\\\"lat\\\",\\\"lon\\\"],\\\"description\\\":\\\"Daily\n        Minimum Near-Surface Air Temperature\\\"},\\\"sfcWind\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"m\n        s-1\\\",\\\"attrs\\\":{\\\"units\\\":\\\"m s-1\\\",\\\"comment\\\":\\\"near-surface (usually,\n        10 meters) wind speed.\\\",\\\"long_name\\\":\\\"Daily-Mean Near-Surface Wind Speed\\\",\\\"cell_methods\\\":\\\"area:\n        time: mean\\\",\\\"cell_measures\\\":\\\"area: areacella\\\",\\\"standard_name\\\":\\\"wind_speed\\\"},\\\"shape\\\":[365,600,1440],\\\"dimensions\\\":[\\\"time\\\",\\\"lat\\\",\\\"lon\\\"],\\\"description\\\":\\\"Daily-Mean\n        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\n        downscaled climate scenarios derived from the General Circulation Model conducted\n        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\n        DAAC - Data Citation and Policies\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/gpm-imerg-hhr\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"GPM\n        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\n        thumbnail\\\"},\\\"zarr-abfs\\\":{\\\"href\\\":\\\"abfs://imerg/gpm-imerg-hhr.zarr\\\",\\\"type\\\":\\\"application/vnd+zarr\\\",\\\"roles\\\":[\\\"data\\\",\\\"zarr\\\"],\\\"description\\\":\\\"Azure\n        Blob File System URI of the gpm-imerg-hhr Zarr Group on Azure Blob Storage\n        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\n        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\n        Integrated Multi-satellitE Retrievals for GPM (IMERG) algorithm combines information\n        from the [GPM satellite constellation](https://gpm.nasa.gov/missions/gpm/constellation)\n        to estimate precipitation over the majority of the Earth's surface. This algorithm\n        is particularly valuable over the majority of the Earth's surface that lacks\n        precipitation-measuring instruments on the ground. Now in the latest Version\n        06 release of IMERG the algorithm fuses the early precipitation estimates\n        collected during the operation of the TRMM satellite (2000 - 2015) with more\n        recent precipitation estimates collected during operation of the GPM satellite\n        (2014 - present). The longer the record, the more valuable it is, as researchers\n        and application developers will attest. By being able to compare and contrast\n        past and present data, researchers are better informed to make climate and\n        weather models more accurate, better understand normal and extreme rain and\n        snowfall around the world, and strengthen applications for current and future\n        disasters, disease, resource management, energy production and food security.\\\\n\\\\nFor\n        more, see the [IMERG homepage](https://gpm.nasa.gov/data/imerg) The [IMERG\n        Technical documentation](https://gpm.nasa.gov/sites/default/files/2020-10/IMERG_doc_201006.pdf)\n        provides more information on the algorithm, input datasets, and output products.\\\",\\\"sci:citation\\\":\\\"Huffman,\n        G.J., E.F. Stocker, D.T. Bolvin, E.J. Nelkin, Jackson Tan (2019), GPM IMERG\n        Final Precipitation L3 Half Hourly 0.1 degree x 0.1 degree V06, Greenbelt,\n        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\n        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\n        lonv\\\",\\\"DimensionNames\\\":\\\"lon,lonv\\\"},\\\"shape\\\":[3600,2],\\\"chunks\\\":[3600,2],\\\"dimensions\\\":[\\\"lon\\\",\\\"lonv\\\"]},\\\"time_bnds\\\":{\\\"type\\\":\\\"auxiliary\\\",\\\"attrs\\\":{\\\"Units\\\":\\\"seconds\n        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\n        Integrated Multi-satellitE Retrievals for GPM (IMERG) algorithm combines information\n        from the GPM satellite constellation to estimate precipitation over the majority\n        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\n        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\n        Overview Slides\\\",\\\"description\\\":\\\"Slides giving a high level overview of\n        the gNATSGO dataset\\\"},{\\\"rel\\\":\\\"license\\\",\\\"href\\\":\\\"https://creativecommons.org/publicdomain/zero/1.0/\\\",\\\"title\\\":\\\"CC0\n        1.0 Universal Public Domain Dedication\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/gnatsgo-rasters\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"gNATSGO\n        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\n        STAC items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        States\\\"],\\\"providers\\\":[{\\\"url\\\":\\\"https://www.nrcs.usda.gov/\\\",\\\"name\\\":\\\"United\n        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\n        collection contains the raster data for gNATSGO. In order to use the map unit\n        values contained in the `mukey` raster asset, you'll need to join to tables\n        represented as Items in the [gNATSGO Tables](https://planetarycomputer.microsoft.com/dataset/gnatsgo-tables)\n        Collection. Many items have commonly used values encoded in additional raster\n        assets.\\\\n\\\\nThe gridded National Soil Survey Geographic Database (gNATSGO)\n        is a USDA-NRCS Soil & Plant Science Division (SPSD) composite database that\n        provides complete coverage of the best available soils information for all\n        areas of the United States and Island Territories. It was created by combining\n        data from the Soil Survey Geographic Database (SSURGO), State Soil Geographic\n        Database (STATSGO2), and Raster Soil Survey Databases (RSS) into a single\n        seamless ESRI file geodatabase.\\\\n\\\\nSSURGO is the SPSD flagship soils database\n        that has over 100 years of field-validated detailed soil mapping data. SSURGO\n        contains soils information for more than 90 percent of the United States and\n        island territories, but unmapped land remains. STATSGO2 is a general soil\n        map that has soils data for all of the United States and island territories,\n        but the data is not as detailed as the SSURGO data. The Raster Soil Surveys\n        (RSSs) are the next generation soil survey databases developed using advanced\n        digital soil mapping methods.\\\\n\\\\nThe gNATSGO database is composed primarily\n        of SSURGO data, but STATSGO2 data was used to fill in the gaps. The RSSs are\n        newer product with relatively limited spatial extent.  These RSSs were merged\n        into the gNATSGO after combining the SSURGO and STATSGO2 data. The extent\n        of RSS is expected to increase in the coming years.\\\\n\\\\nSee the [official\n        documentation](https://www.nrcs.usda.gov/wps/portal/nrcs/detail/soils/survey/geo/?cid=nrcseprd1464625)\\\",\\\"item_assets\\\":{\\\"mukey\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"mukey\\\",\\\"description\\\":\\\"Map\n        unit key is the unique identifier of a record in the Mapunit table. Use this\n        column to join the Component table to the Map Unit table and the Valu1 table\n        to the MapUnitRaster_10m raster map layer to map valu1 themes.\\\"},\\\"aws0_5\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"aws0_5\\\",\\\"description\\\":\\\"Available\n        water storage estimate (AWS) in a standard zone 1 (0-5 cm depth), expressed\n        in mm. The volume of plant available water that the soil can store in this\n        layer based on all map unit components (weighted average). NULL values are\n        presented where data are incomplete or not available.\\\"},\\\"soc0_5\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"soc0_5\\\",\\\"description\\\":\\\"Soil\n        organic carbon stock estimate (SOC) in standard layer 1 or standard zone 1\n        (0-5 cm depth). The concentration of organic carbon present in the soil expressed\n        in grams C per square meter to a depth of 5 cm. NULL values are presented\n        where data are incomplete or not available.\\\"},\\\"tk0_5a\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"tk0_5a\\\",\\\"description\\\":\\\"Thickness\n        of soil components used in standard layer 1 or standard zone 1 (0-5 cm) expressed\n        in cm (weighted average) for the available water storage calculation. NULL\n        values are presented where data are incomplete or not available.\\\"},\\\"tk0_5s\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"tk0_5s\\\",\\\"description\\\":\\\"Thickness\n        of soil components used in standard layer 1 or standard zone 1 (0-5 cm) expressed\n        in cm (weighted average) for the Soil Organic Carbon calculation. NULL values\n        are presented where data are incomplete or not available.\\\"},\\\"aws0_20\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"aws0_20\\\",\\\"description\\\":\\\"Available\n        water storage estimate (AWS) in standard zone 2 (0-20 cm depth), expressed\n        in mm. The volume of plant available water that the soil can store in this\n        zone based on all map unit components (weighted average). NULL values are\n        presented where data are incomplete or not available.\\\"},\\\"aws0_30\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"aws0_30\\\",\\\"description\\\":\\\"Available\n        water storage estimate (AWS) in standard zone 3 (0-30 cm depth), expressed\n        in mm. The volume of plant available water that the soil can store in this\n        zone based on all map unit components (weighted average). NULL values are\n        presented where data are incomplete or not available.\\\"},\\\"aws5_20\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"aws5_20\\\",\\\"description\\\":\\\"Available\n        water storage estimate (AWS) in standard layer 2 (5-20 cm depth), expressed\n        in mm. The volume of plant available water that the soil can store in this\n        layer based on all map unit components (weighted average). NULL values are\n        presented where data are incomplete or not available.\\\"},\\\"soc0_20\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"soc0_20\\\",\\\"description\\\":\\\"Soil\n        organic carbon stock estimate (SOC) in standard zone 2 (0-20 cm depth). The\n        concentration of organic carbon present in the soil expressed in grams C per\n        square meter to a depth of 20 cm. NULL values are presented where data are\n        incomplete or not available.\\\"},\\\"soc0_30\\\":{\\\"type\\\":\\\"image/tiff; application=geotiff;\n        profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"soc0_30\\\",\\\"description\\\":\\\"Soil\n        organic carbon stock estimate (SOC) in standard zone 3 (0-30 cm depth). The\n        concentration of organic carbon present in the soil expressed in grams C per\n        square meter to a depth of 30 cm. NULL values are presented where data are\n        incomplete or not available.\\\"},\\\"soc5_20\\\":{\\\"type\\\":\\\"image/tiff; application=geotiff;\n        profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"soc5_20\\\",\\\"description\\\":\\\"Soil\n        organic carbon stock estimate (SOC) in standard layer 2 (5-20 cm depth). The\n        concentration of organic carbon present in the soil expressed in grams C per\n        square meter for the 5-20 cm layer. NULL values are presented where data are\n        incomplete or not available.\\\"},\\\"tk0_20a\\\":{\\\"type\\\":\\\"image/tiff; application=geotiff;\n        profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"tk0_20a\\\",\\\"description\\\":\\\"Thickness\n        of soil components used in standard zone 2 (0-20 cm) expressed in cm (weighted\n        average) for the available water storage calculation. NULL values are presented\n        where data are incomplete or not available.\\\"},\\\"tk0_20s\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"tk0_20s\\\",\\\"description\\\":\\\"Thickness\n        of soil components used in standard zone 2 (0-20 cm) expressed in cm (weighted\n        average) for the Soil Organic Carbon calculation. NULL values are presented\n        where data are incomplete or not available.\\\"},\\\"tk0_30a\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"tk0_30a\\\",\\\"description\\\":\\\"Thickness\n        of soil components used in standard zone 3 (0-30 cm) expressed in cm (weighted\n        average) for the available water storage calculation. NULL values are presented\n        where data are incomplete or not available.\\\"},\\\"tk0_30s\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"tk0_30s\\\",\\\"description\\\":\\\"Thickness\n        of soil components used in standard zone 3 (0-30 cm) expressed in cm (weighted\n        average) for the Soil Organic Carbon calculation. NULL values are presented\n        where data are incomplete or not available.\\\"},\\\"tk5_20a\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"tk5_20a\\\",\\\"description\\\":\\\"Thickness\n        of soil components used in standard layer 2 (5-20 cm) expressed in cm (weighted\n        average) for the available water storage calculation. NULL values are presented\n        where data are incomplete or not available.\\\"},\\\"tk5_20s\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"tk5_20s\\\",\\\"description\\\":\\\"Thickness\n        of soil components used in standard layer 2 (5-20 cm) expressed in cm (weighted\n        average) for the Soil Organic Carbon calculation. NULL values are presented\n        where data are incomplete or not available.\\\"},\\\"aws0_100\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"aws0_100\\\",\\\"description\\\":\\\"Available\n        water storage estimate (AWS) in standard zone 4 (0-100 cm depth), expressed\n        in mm. The volume of plant available water that the soil can store in this\n        zone based on all map unit components (weighted average). NULL values are\n        presented where data are incomplete or not available.\\\"},\\\"aws0_150\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"aws0_150\\\",\\\"description\\\":\\\"Available\n        water storage estimate (AWS) in standard zone 5 (0-150 cm depth), expressed\n        in mm. The volume of plant available water that the soil can store in this\n        zone based on all map unit components (weighted average). NULL values are\n        presented where data are incomplete or not available.\\\"},\\\"aws0_999\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"aws0_999\\\",\\\"description\\\":\\\"Available\n        water storage estimate (AWS) in total soil profile (0 cm to the reported depth\n        of the soil profile), expressed in mm. The volume of plant available water\n        that the soil can store in this layer based on all map unit components (weighted\n        average). NULL values are presented where data are incomplete or not available.\\\"},\\\"aws20_50\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"aws20_50\\\",\\\"description\\\":\\\"Available\n        water storage estimate (AWS) in standard layer 3 (20-50 cm depth), expressed\n        in mm. The volume of plant available water that the soil can store in this\n        layer based on all map unit components (weighted average). NULL values are\n        presented where data are incomplete or not available.\\\"},\\\"droughty\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"droughty\\\",\\\"description\\\":\\\"zone\n        for commodity crops that is less than or equal to 6 inches (152 mm) expressed\n        as \\\\\\\"1\\\\\\\" for a drought vulnerable soil landscape map unit or \\\\\\\"0\\\\\\\"\n        for a non-droughty soil landscape map unit or NULL for miscellaneous areas\n        (includes water bodies) or where data were not available. It is computed as\n        a weighted average for major earthy components. Earthy components are those\n        soil series or higher level taxa components that can support crop growth (Dobos\n        et al., 2012). Major components are those soil components where the majorcompflag\n        = 'Yes'\\\"},\\\"nccpi3sg\\\":{\\\"type\\\":\\\"image/tiff; application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"nccpi3sg\\\",\\\"description\\\":\\\"National\n        Commodity Crop Productivity Index for Small Grains (weighted average) for\n        major earthy components. Values range from .01 (low productivity) to .99 (high\n        productivity). Earthy components are those soil series or higher level taxa\n        components that can support crop growth (Dobos et al., 2012). Major components\n        are those soil components where the majorcompflag = 'Yes' (SSURGO component\n        table). NULL values are presented where data are incomplete or not available.\\\"},\\\"soc0_100\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"soc0_100\\\",\\\"description\\\":\\\"Soil\n        organic carbon stock estimate (SOC) in standard zone 4 (0-100 cm depth). The\n        concentration of organic carbon present in the soil expressed in grams C per\n        square meter to a depth of 100 cm. NULL values are presented where data are\n        incomplete or not available.\\\"},\\\"soc0_150\\\":{\\\"type\\\":\\\"image/tiff; application=geotiff;\n        profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"soc0_150\\\",\\\"description\\\":\\\"Soil\n        organic carbon stock estimate (SOC) in standard zone 5 (0-150 cm depth). The\n        concentration of organic carbon present in the soil expressed in grams C per\n        square meter to a depth of 150 cm. NULL values are presented where data are\n        incomplete or not available.\\\"},\\\"soc0_999\\\":{\\\"type\\\":\\\"image/tiff; application=geotiff;\n        profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"soc0_999\\\",\\\"description\\\":\\\"Soil\n        organic carbon stock estimate (SOC) in total soil profile (0 cm to the reported\n        depth of the soil profile). The concentration of organic carbon present in\n        the soil expressed in grams C per square meter for the total reported soil\n        profile depth. NULL values are presented where data are incomplete or not\n        available.\\\"},\\\"soc20_50\\\":{\\\"type\\\":\\\"image/tiff; application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"soc20_50\\\",\\\"description\\\":\\\"Soil\n        organic carbon stock estimate (SOC) in standard layer 3 (20-50 cm depth).\n        The concentration of organic carbon present in the soil expressed in grams\n        C per square meter for the 20-50 cm layer. NULL values are presented where\n        data are incomplete or not available.\\\"},\\\"tk0_100a\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"tk0_100a\\\",\\\"description\\\":\\\"Thickness\n        of soil components used in standard zone 4 (0-100 cm) expressed in cm (weighted\n        average) for the available water storage calculation. NULL values are presented\n        where data are incomplete or not available.\\\"},\\\"tk0_100s\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"tk0_100s\\\",\\\"description\\\":\\\"Thickness\n        of soil components used in standard zone 4 (0-100 cm) expressed in cm (weighted\n        average) for the Soil Organic Carbon calculation. NULL values are presented\n        where data are incomplete or not available.\\\"},\\\"tk0_150a\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"tk0_150a\\\",\\\"description\\\":\\\"Thickness\n        of soil components used in standard zone 5 (0-150 cm) expressed in cm (weighted\n        average) for the available water storage calculation. NULL values are presented\n        where data are incomplete or not available.\\\"},\\\"tk0_150s\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"tk0_150s\\\",\\\"description\\\":\\\"Thickness\n        of soil components used in standard zone 5 (0-150 cm) expressed in cm (weighted\n        average) for the Soil Organic Carbon calculation. NULL values are presented\n        where data are incomplete or not available.\\\"},\\\"tk0_999a\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"tk0_999a\\\",\\\"description\\\":\\\"Thickness\n        of soil components used in total soil profile (0 cm to the reported depth\n        of the soil profile) expressed in cm (weighted average) for the available\n        water storage calculation. NULL values are presented where data are incomplete\n        or not available.\\\"},\\\"tk0_999s\\\":{\\\"type\\\":\\\"image/tiff; application=geotiff;\n        profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"tk0_999s\\\",\\\"description\\\":\\\"Thickness\n        of soil components used in total soil profile (0 cm to the reported depth\n        of the soil profile) expressed in cm (weighted average) for the Soil Organic\n        Carbon calculation. NULL values are presented where data are incomplete or\n        not available.\\\"},\\\"tk20_50a\\\":{\\\"type\\\":\\\"image/tiff; application=geotiff;\n        profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"tk20_50a\\\",\\\"description\\\":\\\"Thickness\n        of soil components used in standard layer 3 (20-50 cm) expressed in cm (weighted\n        average) for the available water storage calculation. NULL values are presented\n        where data are incomplete or not available.\\\"},\\\"tk20_50s\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"tk20_50s\\\",\\\"description\\\":\\\"Thickness\n        of soil components used in standard layer 3 (20-50 cm) expressed in cm (weighted\n        average) for the Soil Organic Carbon calculation. NULL values are presented\n        where data are incomplete or not available.\\\"},\\\"aws50_100\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"aws50_100\\\",\\\"description\\\":\\\"Available\n        water storage estimate (AWS) in standard layer 3 (50-100 cm depth), expressed\n        in mm. The volume of plant available water that the soil can store in this\n        layer based on all map unit components (weighted average). NULL values are\n        presented where data are incomplete or not available.\\\"},\\\"musumcpct\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"musumcpct\\\",\\\"description\\\":\\\"The\n        sum of the comppct_r (SSURGO component table) values for all listed components\n        in the map unit. Useful metadata information. NULL values are presented where\n        data are incomplete or not available.\\\"},\\\"nccpi3all\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"nccpi3all\\\",\\\"description\\\":\\\"National\n        Commodity Crop Productivity Index that has the highest value among Corn and\n        Soybeans, Small Grains, or Cotton (weighted average) for major earthy components.\n        Values range from .01 (low productivity) to .99 (high productivity). Earthy\n        components are those soil series or higher level taxa components that can\n        support crop growth (Dobos et al., 2012). Major components are those soil\n        components where the majorcompflag = 'Yes' (SSURGO component table). NULL\n        values are presented where data are incomplete or not available.\\\"},\\\"nccpi3cot\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"nccpi3cot\\\",\\\"description\\\":\\\"National\n        Commodity Crop Productivity Index for Cotton (weighted average) for major\n        earthy components. Values range from .01 (low productivity) to .99 (high productivity).\n        Earthy components are those soil series or higher level taxa components that\n        can support crop growth (Dobos et al., 2012). Major components are those soil\n        components where the majorcompflag = 'Yes' (SSURGO component table). NULL\n        values are presented where data are incomplete or not available.\\\"},\\\"nccpi3soy\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"nccpi3soy\\\",\\\"description\\\":\\\"National\n        Commodity Crop Productivity Index for Soybeans (weighted average) for major\n        earthy components. Values range from .01 (low productivity) to .99 (high productivity).\n        Earthy components are those soil series or higher level taxa components that\n        can support crop growth (Dobos et al., 2012). Major components are those soil\n        components where the majorcompflag = 'Yes' (SSURGO component table). NULL\n        values are presented where data are incomplete or not available.\\\"},\\\"pwsl1pomu\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"pwsl1pomu\\\",\\\"description\\\":\\\"Potential\n        Wetland Soil Landscapes (PWSL) is expressed as the percentage of the map unit\n        that meets the PWSL criteria. The hydric rating (soil component variable \\u201Chydricrating\\u201D)\n        is an indicator of wet soils. For version 1 (pwsl1), those soil components\n        that meet the following criteria are tagged as PWSL and their comppct_r values\n        are summed for each map unit. Soil components with hydricrating = 'YES' are\n        considered PWSL. Soil components with hydricrating = \\u201CNO\\u201D are not\n        PWSL. Soil components with hydricrating = 'UNRANKED' are tested using other\n        attributes, and will be considered PWSL if any of the following conditions\n        are met: drainagecl = 'Poorly drained' or 'Very poorly drained' or the localphase\n        or the otherph data fields contain any of the phrases \\\\\\\"drained\\\\\\\" or \\\\\\\"undrained\\\\\\\"\n        or \\\\\\\"channeled\\\\\\\" or \\\\\\\"protected\\\\\\\" or \\\\\\\"ponded\\\\\\\" or \\\\\\\"flooded\\\\\\\".\n        If these criteria do not determine the PWSL for a component and hydricrating\n        = 'UNRANKED', then the map unit will be classified as PWSL if the map unit\n        name contains any of the phrases \\\\\\\"drained\\\\\\\" or \\\\\\\"undrained\\\\\\\" or \\\\\\\"channeled\\\\\\\"\n        or \\\\\\\"protected\\\\\\\" or \\\\\\\"ponded\\\\\\\" or \\\\\\\"flooded\\\\\\\". For version 1 (pwsl1),\n        waterbodies are identified as \\\\\\\"999\\\\\\\" when map unit names match a list\n        of terms that identify water or intermittent water or map units have a sum\n        of the comppct_r for \\\\\\\"Water\\\\\\\" that is 80% or greater. NULL values are\n        presented where data are incomplete or not available.\\\"},\\\"rootznaws\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"rootznaws\\\",\\\"description\\\":\\\"Root\n        zone (commodity crop) available water storage estimate (RZAWS) , expressed\n        in mm, is the volume of plant available water that the soil can store within\n        the root zone based on all map unit earthy major components (weighted average).\n        Earthy components are those soil series or higher level taxa components that\n        can support crop growth (Dobos et al., 2012). Major components are those soil\n        components where the majorcompflag = 'Yes' (SSURGO component table). NULL\n        values are presented where data are incomplete or not available.\\\"},\\\"rootznemc\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"rootznemc\\\",\\\"description\\\":\\\"Root\n        zone depth is the depth within the soil profile that commodity crop (cc) roots\n        can effectively extract water and nutrients for growth. Root zone depth influences\n        soil productivity significantly. Soil component horizon criteria for root-limiting\n        depth include: presence of hard bedrock, soft bedrock, a fragipan, a duripan,\n        sulfuric material, a dense layer, a layer having a pH of less than 3.5, or\n        a layer having an electrical conductivity of more than 12 within the component\n        soil profile. If no root-restricting zone is identified, a depth of 150 cm\n        is used to approximate the root zone depth (Dobos et al., 2012). Root zone\n        depth is computed for all map unit major earthy components (weighted average).\n        Earthy components are those soil series or higher level taxa components that\n        can support crop growth (Dobos et al., 2012). Major components are those soil\n        components where the majorcompflag = 'Yes' (SSURGO component table). NULL\n        values are presented where data are incomplete or not available.\\\"},\\\"soc50_100\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"soc50_100\\\",\\\"description\\\":\\\"Soil\n        organic carbon stock estimate (SOC) in standard layer 4 (50-100 cm depth).\n        The concentration of organic carbon present in the soil expressed in grams\n        C per square meter for the 50-100 cm layer. NULL values are presented where\n        data are incomplete or not available.\\\"},\\\"tk50_100a\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"tk50_100a\\\",\\\"description\\\":\\\"Thickness\n        of soil components used in standard layer 4 (50-100 cm) expressed in cm (weighted\n        average) for the available water storage calculation. NULL values are presented\n        where data are incomplete or not available.\\\"},\\\"tk50_100s\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"tk50_100s\\\",\\\"description\\\":\\\"Thickness\n        of soil components used in standard layer 4 (50-100 cm) expressed in cm (weighted\n        average) for the Soil Organic Carbon calculation. NULL values are presented\n        where data are incomplete or not available.\\\"},\\\"aws100_150\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"aws100_150\\\",\\\"description\\\":\\\"Available\n        water storage estimate (AWS) in standard layer 5 (100-150 cm depth), expressed\n        in mm. The volume of plant available water that the soil can store in this\n        layer based on all map unit components (weighted average). NULL values are\n        presented where data are incomplete or not available.\\\"},\\\"aws150_999\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"aws150_999\\\",\\\"description\\\":\\\"Available\n        water storage estimate (AWS) in standard layer 6 (150 cm to the reported depth\n        of the soil profile), expressed in mm. The volume of plant available water\n        that the soil can store in this layer based on all map unit components (weighted\n        average). NULL values are presented where data are incomplete or not available.\\\"},\\\"musumcpcta\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"musumcpcta\\\",\\\"description\\\":\\\"The\n        sum of the comppct_r (SSURGO component table) values used in the available\n        water storage calculation for the map unit. Useful metadata information. NULL\n        values are presented where data are incomplete or not available.\\\"},\\\"musumcpcts\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"musumcpcts\\\",\\\"description\\\":\\\"The\n        sum of the comppct_r (SSURGO component table) values used in the soil organic\n        carbon calculation for the map unit. Useful metadata information. NULL values\n        are presented where data are incomplete or not available.\\\"},\\\"nccpi3corn\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"nccpi3corn\\\",\\\"description\\\":\\\"National\n        Commodity Crop Productivity Index for Corn (weighted average) for major earthy\n        components. Values range from .01 (low productivity) to .99 (high productivity).\n        Earthy components are those soil series or higher level taxa components that\n        can support crop growth (Dobos et al., 2012). Major components are those soil\n        components where the majorcompflag = 'Yes' (SSURGO component table). NULL\n        values are presented where data are incomplete or not available.\\\"},\\\"pctearthmc\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"pctearthmc\\\",\\\"description\\\":\\\"The\n        National Commodity Crop Productivity Index map unit percent earthy is the\n        map unit summed comppct_r for major earthy components. Earthy components are\n        those soil series or higher level taxa components that can support crop growth\n        (Dobos et al., 2012). Major components are those soil components where the\n        majorcompflag = 'Yes' (SSURGO component table). Useful metadata information.\n        NULL values are presented where data are incomplete or not available.\\\"},\\\"soc100_150\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"soc100_150\\\",\\\"description\\\":\\\"Soil\n        organic carbon stock estimate (SOC) in standard layer 5 (100-150 cm depth).\n        The concentration of organic carbon present in the soil expressed in grams\n        C per square meter for the 100-150 cm layer. NULL values are presented where\n        data are incomplete or not available.\\\"},\\\"soc150_999\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"soc150_999\\\",\\\"description\\\":\\\"Soil\n        organic carbon stock estimate (SOC) in standard layer 6 (150 cm to the reported\n        depth of the soil profile). The concentration of organic carbon present in\n        the soil expressed in grams C per square meter for the 150 cm and greater\n        depth layer. NULL values are presented where data are incomplete or not available.\\\"},\\\"tk100_150a\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"tk100_150a\\\",\\\"description\\\":\\\"Thickness\n        of soil components used in standard layer 5 (100-150 cm) expressed in cm (weighted\n        average) for the available water storage calculation. NULL values are presented\n        where data are incomplete or not available.\\\"},\\\"tk100_150s\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"tk100_150s\\\",\\\"description\\\":\\\"Thickness\n        of soil components used in standard layer 5 (100-150 cm) expressed in cm (weighted\n        average) for the Soil Organic Carbon calculation. NULL values are presented\n        where data are incomplete or not available.\\\"},\\\"tk150_999a\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"tk150_999a\\\",\\\"description\\\":\\\"Thickness\n        of soil components used in standard layer 6 (150 cm to the reported depth\n        of the soil profile) expressed in cm (weighted average) for the available\n        water storage calculation. NULL values are presented where data are incomplete\n        or not available.\\\"},\\\"tk150_999s\\\":{\\\"type\\\":\\\"image/tiff; application=geotiff;\n        profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"tk150_999s\\\",\\\"description\\\":\\\"Thickness\n        of soil components used in standard layer 6 (150 cm to the reported depth\n        of the soil profile) expressed in cm (weighted average) for the Soil Organic\n        Carbon calculation. NULL values are presented where data are incomplete or\n        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\n        data for the gridded National Soil Survey Geographic Database (gNATSGO), a\n        USDA-NRCS Soil & Plant Science Division (SPSD) composite database that provides\n        complete coverage of the best available soils information for all areas of\n        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\n        3DEP Products & Services\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/3dep-lidar-hag\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"USGS\n        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\n        Lidar COG\\\"},\\\"geoparquet-items\\\":{\\\"href\\\":\\\"abfs://items/3dep-lidar-hag.parquet\\\",\\\"type\\\":\\\"application/x-parquet\\\",\\\"roles\\\":[\\\"stac-items\\\"],\\\"title\\\":\\\"GeoParquet\n        STAC items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        COG type is generated using the Z dimension of the [COPC data](https://planetarycomputer.microsoft.com/dataset/3dep-lidar-copc)\n        data and removes noise, water, and using [`pdal.filters.smrf`](https://pdal.io/stages/filters.smrf.html#filters-smrf)\n        followed by [pdal.filters.hag_nn](https://pdal.io/stages/filters.hag_nn.html#filters-hag-nn).\\\\n\\\\nThe\n        Height Above Ground Nearest Neighbor filter takes as input a point cloud with\n        Classification set to 2 for ground points. It creates a new dimension, HeightAboveGround,\n        that contains the normalized height values.\\\\n\\\\nGround points may be generated\n        with [`pdal.filters.pmf`](https://pdal.io/stages/filters.pmf.html#filters-pmf)\n        or [`pdal.filters.smrf`](https://pdal.io/stages/filters.smrf.html#filters-smrf),\n        but you can use any method you choose, as long as the ground returns are marked.\\\\n\\\\nNormalized\n        heights are a commonly used attribute of point cloud data. This can also be\n        referred to as height above ground (HAG) or above ground level (AGL) heights.\n        In the end, it is simply a measure of a point's relative height as opposed\n        to its raw elevation value.\\\\n\\\\nThe filter finds the number of ground points\n        nearest to the non-ground point under consideration. It calculates an average\n        ground height weighted by the distance of each ground point from the non-ground\n        point. The HeightAboveGround is the difference between the Z value of the\n        non-ground point and the interpolated ground height.\\\\n\\\",\\\"item_assets\\\":{\\\"data\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"COG\n        data\\\",\\\"raster:bands\\\":[{\\\"name\\\":\\\"HeightAboveGround\\\",\\\"unit\\\":\\\"metre\\\",\\\"sampling\\\":\\\"point\\\",\\\"data_type\\\":\\\"float32\\\",\\\"description\\\":\\\"Raster\n        for Height Above Ground (HAG)\\\"}]},\\\"thumbnail\\\":{\\\"type\\\":\\\"image/png\\\",\\\"roles\\\":[\\\"thumbnail\\\"],\\\"title\\\":\\\"3DEP\n        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\n        Lidar collection for the Height Above Ground (HAG or Elevation) Cloud Optimized\n        Geotiffs (COGs). All USGS HAG COG STAC items will be associated with this\n        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\n        BY 4.0\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/io-lulc-annual-v02\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"10m\n        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\n        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\n        STAC items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        Cover\\\",\\\"Land Use\\\",\\\"Sentinel\\\"],\\\"providers\\\":[{\\\"url\\\":\\\"https://www.esri.com/\\\",\\\"name\\\":\\\"Esri\\\",\\\"roles\\\":[\\\"licensor\\\"]},{\\\"url\\\":\\\"https://www.impactobservatory.com/\\\",\\\"name\\\":\\\"Impact\n        Observatory\\\",\\\"roles\\\":[\\\"processor\\\",\\\"producer\\\",\\\"licensor\\\"]},{\\\"url\\\":\\\"https://planetarycomputer.microsoft.com\\\",\\\"name\\\":\\\"Microsoft\\\",\\\"roles\\\":[\\\"host\\\"]}],\\\"summaries\\\":{\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"spatial_resolution\\\":10}]},\\\"description\\\":\\\"Time\n        series of annual global maps of land use and land cover (LULC). It currently\n        has data from 2017-2023. The maps are derived from ESA Sentinel-2 imagery\n        at 10m resolution. Each map is a composite of LULC predictions for 9 classes\n        throughout the year in order to generate a representative snapshot of each\n        year.\\\\n\\\\nThis dataset, produced by [Impact Observatory](http://impactobservatory.com/),\n        Microsoft, and Esri, displays a global map of land use and land cover (LULC)\n        derived from ESA Sentinel-2 imagery at 10 meter resolution for the years 2017\n        - 2023. Each map is a composite of LULC predictions for 9 classes throughout\n        the year in order to generate a representative snapshot of each year. This\n        dataset was generated by Impact Observatory, which used billions of human-labeled\n        pixels (curated by the National Geographic Society) to train a deep learning\n        model for land classification. Each global map was produced by applying this\n        model to the Sentinel-2 annual scene collections from the Mircosoft Planetary\n        Computer. Each of the maps has an assessed average accuracy of over 75%.\\\\n\\\\nThese\n        maps have been improved from Impact Observatory\\u2019s [previous release](https://planetarycomputer.microsoft.com/dataset/io-lulc-9-class)\n        and provide a relative reduction in the amount of anomalous change between\n        classes, particularly between \\u201CBare\\u201D and any of the vegetative classes\n        \\u201CTrees,\\u201D \\u201CCrops,\\u201D \\u201CFlooded Vegetation,\\u201D and\n        \\u201CRangeland\\u201D. This updated time series of annual global maps is also\n        re-aligned to match the ESA UTM tiling grid for Sentinel-2 imagery.\\\\n\\\\nAll\n        years are available under a Creative Commons BY-4.0.\\\",\\\"item_assets\\\":{\\\"data\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Global\n        land cover data\\\",\\\"file:values\\\":[{\\\"values\\\":[0],\\\"summary\\\":\\\"No Data\\\"},{\\\"values\\\":[1],\\\"summary\\\":\\\"Water\\\"},{\\\"values\\\":[2],\\\"summary\\\":\\\"Trees\\\"},{\\\"values\\\":[4],\\\"summary\\\":\\\"Flooded\n        vegetation\\\"},{\\\"values\\\":[5],\\\"summary\\\":\\\"Crops\\\"},{\\\"values\\\":[7],\\\"summary\\\":\\\"Built\n        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\n        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\n        Domain\\\"},{\\\"rel\\\":\\\"preview\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/api/data/v1/collection/map?collection=goes-cmi\\\",\\\"title\\\":\\\"Map\n        of collection mosaic\\\",\\\"type\\\":\\\"text/html\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/goes-cmi\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"GOES-R\n        Cloud & Moisture Imagery\\\",\\\"assets\\\":{\\\"thumbnail\\\":{\\\"href\\\":\\\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/goes-cmi-thumb.png\\\",\\\"title\\\":\\\"GOES\n        CMIP\\\",\\\"media_type\\\":\\\"image/png\\\"},\\\"geoparquet-items\\\":{\\\"href\\\":\\\"abfs://items/goes-cmi.parquet\\\",\\\"type\\\":\\\"application/x-parquet\\\",\\\"roles\\\":[\\\"stac-items\\\"],\\\"title\\\":\\\"GeoParquet\n        STAC items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        to GeoParquet format.\\\",\\\"msft:partition_info\\\":{\\\"is_partitioned\\\":true,\\\"partition_frequency\\\":\\\"W-MON\\\"},\\\"table:storage_options\\\":{\\\"account_name\\\":\\\"pcstacitems\\\"}},\\\"tilejson\\\":{\\\"title\\\":\\\"Mosaic\n        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\n        DISK\\\",\\\"CONUS\\\",\\\"MESOSCALE\\\"],\\\"goes:processing-level\\\":[\\\"L2\\\"]},\\\"description\\\":\\\"The\n        GOES-R Advanced Baseline Imager (ABI) L2 Cloud and Moisture Imagery product\n        provides 16 reflective and emissive bands at high temporal cadence over the\n        Western Hemisphere.\\\\n\\\\nThe GOES-R series is the latest in the Geostationary\n        Operational Environmental Satellites (GOES) program, which has been operated\n        in a collaborative effort by NOAA and NASA since 1975. The operational GOES-R\n        Satellites, GOES-16, GOES-17, and GOES-18, capture 16-band imagery from geostationary\n        orbits over the Western Hemisphere via the Advance Baseline Imager (ABI) radiometer.\n        The ABI captures 2 visible, 4 near-infrared, and 10 infrared channels at resolutions\n        between 0.5km and 2km.\\\\n\\\\n### Geographic coverage\\\\n\\\\nThe ABI captures\n        three levels of coverage, each at a different temporal cadence depending on\n        the modes described below. The geographic coverage for each image is described\n        by the `goes:image-type` STAC Item property.\\\\n\\\\n- _FULL DISK_: a circular\n        image depicting nearly full coverage of the Western Hemisphere.\\\\n- _CONUS_:\n        a 3,000 (lat) by 5,000 (lon) km rectangular image depicting the Continental\n        U.S. (GOES-16) or the Pacific Ocean including Hawaii (GOES-17).\\\\n- _MESOSCALE_:\n        a 1,000 by 1,000 km rectangular image. GOES-16 and 17 both alternate between\n        two different mesoscale geographic regions.\\\\n\\\\n### Modes\\\\n\\\\nThere are\n        three standard scanning modes for the ABI instrument: Mode 3, Mode 4, and\n        Mode 6.\\\\n\\\\n- Mode _3_ consists of one observation of the full disk scene\n        of the Earth, three observations of the continental United States (CONUS),\n        and thirty observations for each of two distinct mesoscale views every fifteen\n        minutes.\\\\n- Mode _4_ consists of the observation of the full disk scene every\n        five minutes.\\\\n- Mode _6_ consists of one observation of the full disk scene\n        of the Earth, two observations of the continental United States (CONUS), and\n        twenty observations for each of two distinct mesoscale views every ten minutes.\\\\n\\\\nThe\n        mode that each image was captured with is described by the `goes:mode` STAC\n        Item property.\\\\n\\\\nSee this [ABI Scan Mode Demonstration](https://youtu.be/_c5H6R-M0s8)\n        video for an idea of how the ABI scans multiple geographic regions over time.\\\\n\\\\n###\n        Cloud and Moisture Imagery\\\\n\\\\nThe Cloud and Moisture Imagery product contains\n        one or more images with pixel values identifying \\\\\\\"brightness values\\\\\\\"\n        that are scaled to support visual analysis.  Cloud and Moisture Imagery product\n        (CMIP) files are generated for each of the sixteen ABI reflective and emissive\n        bands. In addition, there is a multi-band product file that includes the imagery\n        at all bands (MCMIP).\\\\n\\\\nThe Planetary Computer STAC Collection `goes-cmi`\n        captures both the CMIP and MCMIP product files into individual STAC Items\n        for each observation from a GOES-R satellite. It contains the original CMIP\n        and MCMIP NetCDF files, as well as cloud-optimized GeoTIFF (COG) exports of\n        the data from each MCMIP band (2km); the full-resolution CMIP band for bands\n        1, 2, 3, and 5; and a Web Mercator COG of bands 1, 2 and 3, which are useful\n        for rendering.\\\\n\\\\nThis product is not in a standard coordinate reference\n        system (CRS), which can cause issues with some tooling that does not handle\n        non-standard large geographic regions.\\\\n\\\\n### For more information\\\\n- [Beginner\\u2019s\n        Guide to GOES-R Series Data](https://www.goes-r.gov/downloads/resources/documents/Beginners_Guide_to_GOES-R_Series_Data.pdf)\\\\n-\n        [GOES-R Series Product Definition and Users\\u2019 Guide: Volume 5 (Level 2A+\n        Products)](https://www.goes-r.gov/products/docs/PUG-L2+-vol5.pdf) ([Spanish\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Cloud\n        and Moisture Imagery reflectance factor - Band 01 (full resolution)\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"ABI\n        Band 1\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Daytime aerosol over land,\n        coastal water mapping\\\",\\\"center_wavelength\\\":0.47}]},\\\"C01_2km\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Cloud and Moisture\n        Imagery reflectance factor - Band 01\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"ABI Band\n        1\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Daytime aerosol over land,\n        coastal water mapping\\\",\\\"center_wavelength\\\":0.47}]},\\\"C02_2km\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Cloud and Moisture\n        Imagery reflectance factor - Band 02\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"ABI Band\n        2\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Daytime clouds, fog, insolation,\n        winds\\\",\\\"center_wavelength\\\":0.64}]},\\\"C03_1km\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Cloud\n        and Moisture Imagery reflectance factor - Band 03 (full resolution)\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"ABI\n        Band 3\\\",\\\"common_name\\\":\\\"nir09\\\",\\\"description\\\":\\\"Daytime vegetation, burn\n        scar, aerosol over water, winds\\\",\\\"center_wavelength\\\":0.87}]},\\\"C03_2km\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Cloud and Moisture\n        Imagery reflectance factor - Band 03\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"ABI Band\n        3\\\",\\\"common_name\\\":\\\"nir09\\\",\\\"description\\\":\\\"Daytime vegetation, burn scar,\n        aerosol over water, winds\\\",\\\"center_wavelength\\\":0.87}]},\\\"C04_2km\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Cloud and Moisture\n        Imagery reflectance factor - Band 04\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"ABI Band\n        4\\\",\\\"common_name\\\":\\\"cirrus\\\",\\\"description\\\":\\\"Daytime cirrus cloud\\\",\\\"center_wavelength\\\":1.38}]},\\\"C05_1km\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Cloud\n        and Moisture Imagery reflectance factor - Band 05 (full resolution)\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"ABI\n        Band 5\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"Daytime cloud-top phase\n        and particle size, snow\\\",\\\"center_wavelength\\\":1.61}]},\\\"C05_2km\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Cloud and Moisture\n        Imagery reflectance factor - Band 05\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"ABI Band\n        5\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"Daytime cloud-top phase and\n        particle size, snow\\\",\\\"center_wavelength\\\":1.61}]},\\\"C06_2km\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Cloud and Moisture\n        Imagery reflectance factor - Band 06\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"ABI Band\n        6\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"Daytime land, cloud properties,\n        particle size, vegetation, snow\\\",\\\"center_wavelength\\\":2.25}]},\\\"C07_2km\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Cloud and Moisture\n        Imagery brightness temperature at top of atmosphere - Band 07\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"ABI\n        Band 7\\\",\\\"description\\\":\\\"Surface and cloud, fog at night, fire, winds\\\",\\\"center_wavelength\\\":3.89}]},\\\"C08_2km\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Cloud and Moisture\n        Imagery brightness temperature at top of atmosphere - Band 08\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"ABI\n        Band 8\\\",\\\"description\\\":\\\"High-level atmospheric water vapor, winds, rainfall\\\",\\\"center_wavelength\\\":6.17}]},\\\"C09_2km\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Cloud and Moisture\n        Imagery brightness temperature at top of atmosphere - Band 09\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"ABI\n        Band 9\\\",\\\"description\\\":\\\"Midlevel atmospheric water vapor, winds, rainfall\\\",\\\"center_wavelength\\\":6.93}]},\\\"C10_2km\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Cloud and Moisture\n        Imagery brightness temperature at top of atmosphere - Band 10\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"ABI\n        Band 10\\\",\\\"description\\\":\\\"Lower-level water vapor, winds, and silicon dioxide\\\",\\\"center_wavelength\\\":7.34}]},\\\"C11_2km\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Cloud and Moisture\n        Imagery brightness temperature at top of atmosphere - Band 11\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"ABI\n        Band 11\\\",\\\"description\\\":\\\"Total water for stability, cloud phase, dust,\n        silicon dioxide, rainfall\\\",\\\"center_wavelength\\\":8.44}]},\\\"C12_2km\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Cloud and Moisture\n        Imagery brightness temperature at top of atmosphere - Band 12\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"ABI\n        Band 12\\\",\\\"description\\\":\\\"Total ozone, turbulence, winds\\\",\\\"center_wavelength\\\":9.61}]},\\\"C13_2km\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Cloud and Moisture\n        Imagery brightness temperature at top of atmosphere - Band 13\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"ABI\n        Band 13\\\",\\\"description\\\":\\\"Surface and clouds\\\",\\\"center_wavelength\\\":10.33}]},\\\"C14_2km\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Cloud and Moisture\n        Imagery brightness temperature at top of atmosphere - Band 14\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"ABI\n        Band 14\\\",\\\"description\\\":\\\"Imagery, sea surface temperature, clouds, rainfall\\\",\\\"center_wavelength\\\":11.19}]},\\\"C15_2km\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Cloud and Moisture\n        Imagery brightness temperature at top of atmosphere - Band 15\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"ABI\n        Band 15\\\",\\\"description\\\":\\\"Total water, volcanic ash, sea surface temperature\\\",\\\"center_wavelength\\\":12.27}]},\\\"C16_2km\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Cloud and Moisture\n        Imagery brightness temperature at top of atmosphere - Band 16\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"ABI\n        Band 16\\\",\\\"description\\\":\\\"Air temperature, cloud heights\\\",\\\"center_wavelength\\\":13.27}]},\\\"MCMIP-nc\\\":{\\\"type\\\":\\\"application/netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Cloud\n        and Moisture Imagery - Multiband\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"ABI Band 1\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Daytime\n        aerosol over land, coastal water mapping\\\",\\\"center_wavelength\\\":0.47},{\\\"name\\\":\\\"ABI\n        Band 2\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Daytime clouds, fog, insolation,\n        winds\\\",\\\"center_wavelength\\\":0.64},{\\\"name\\\":\\\"ABI Band 3\\\",\\\"common_name\\\":\\\"nir09\\\",\\\"description\\\":\\\"Daytime\n        vegetation, burn scar, aerosol over water, winds\\\",\\\"center_wavelength\\\":0.87},{\\\"name\\\":\\\"ABI\n        Band 4\\\",\\\"common_name\\\":\\\"cirrus\\\",\\\"description\\\":\\\"Daytime cirrus cloud\\\",\\\"center_wavelength\\\":1.38},{\\\"name\\\":\\\"ABI\n        Band 5\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"Daytime cloud-top phase\n        and particle size, snow\\\",\\\"center_wavelength\\\":1.61},{\\\"name\\\":\\\"ABI Band\n        6\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"Daytime land, cloud properties,\n        particle size, vegetation, snow\\\",\\\"center_wavelength\\\":2.25},{\\\"name\\\":\\\"ABI\n        Band 7\\\",\\\"description\\\":\\\"Surface and cloud, fog at night, fire, winds\\\",\\\"center_wavelength\\\":3.89},{\\\"name\\\":\\\"ABI\n        Band 8\\\",\\\"description\\\":\\\"High-level atmospheric water vapor, winds, rainfall\\\",\\\"center_wavelength\\\":6.17},{\\\"name\\\":\\\"ABI\n        Band 9\\\",\\\"description\\\":\\\"Midlevel atmospheric water vapor, winds, rainfall\\\",\\\"center_wavelength\\\":6.93},{\\\"name\\\":\\\"ABI\n        Band 10\\\",\\\"description\\\":\\\"Lower-level water vapor, winds, and silicon dioxide\\\",\\\"center_wavelength\\\":7.34},{\\\"name\\\":\\\"ABI\n        Band 11\\\",\\\"description\\\":\\\"Total water for stability, cloud phase, dust,\n        silicon dioxide, rainfall\\\",\\\"center_wavelength\\\":8.44},{\\\"name\\\":\\\"ABI Band\n        12\\\",\\\"description\\\":\\\"Total ozone, turbulence, winds\\\",\\\"center_wavelength\\\":9.61},{\\\"name\\\":\\\"ABI\n        Band 13\\\",\\\"description\\\":\\\"Surface and clouds\\\",\\\"center_wavelength\\\":10.33},{\\\"name\\\":\\\"ABI\n        Band 14\\\",\\\"description\\\":\\\"Imagery, sea surface temperature, clouds, rainfall\\\",\\\"center_wavelength\\\":11.19},{\\\"name\\\":\\\"ABI\n        Band 15\\\",\\\"description\\\":\\\"Total water, volcanic ash, sea surface temperature\\\",\\\"center_wavelength\\\":12.27},{\\\"name\\\":\\\"ABI\n        Band 16\\\",\\\"description\\\":\\\"Air temperature, cloud heights\\\",\\\"center_wavelength\\\":13.27}],\\\"description\\\":\\\"The\n        Cloud and Moisture Imagery product contains one or more Earth-view images\n        with pixel values identifying 'brightness values' that are scaled to support\n        visual analysis.\\\"},\\\"C02_0.5km\\\":{\\\"type\\\":\\\"image/tiff; application=geotiff;\n        profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Cloud and Moisture\n        Imagery reflectance factor - Band 02 (full resolution)\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"ABI\n        Band 2\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Daytime clouds, fog, insolation,\n        winds\\\",\\\"center_wavelength\\\":0.64}]},\\\"C01_2km_wm\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Cloud and Moisture\n        Imagery reflectance factor - Band 01, Web Mercator\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"ABI\n        Band 1\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Daytime aerosol over land,\n        coastal water mapping\\\",\\\"center_wavelength\\\":0.47}]},\\\"C02_2km_wm\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Cloud and Moisture\n        Imagery reflectance factor - Band 02, Web Mercator\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"ABI\n        Band 2\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Daytime clouds, fog, insolation,\n        winds\\\",\\\"center_wavelength\\\":0.64}]},\\\"C03_2km_wm\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Cloud and Moisture\n        Imagery reflectance factor - Band 03, Web Mercator\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"ABI\n        Band 3\\\",\\\"common_name\\\":\\\"nir09\\\",\\\"description\\\":\\\"Daytime vegetation, burn\n        scar, aerosol over water, winds\\\",\\\"center_wavelength\\\":0.87}]},\\\"C01_DQF_1km\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"quality-mask\\\"],\\\"title\\\":\\\"Cloud\n        and Moisture Imagery data quality flags - Band 01 (full resolution)\\\"},\\\"C01_DQF_2km\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Cloud and Moisture\n        Imagery data quality flags - Band 01\\\"},\\\"C02_DQF_2km\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Cloud and Moisture\n        Imagery data quality flags - Band 02\\\"},\\\"C03_DQF_1km\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"quality-mask\\\"],\\\"title\\\":\\\"Cloud\n        and Moisture Imagery data quality flags - Band 03 (full resolution)\\\"},\\\"C03_DQF_2km\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Cloud and Moisture\n        Imagery data quality flags - Band 03\\\"},\\\"C04_DQF_2km\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Cloud and Moisture\n        Imagery data quality flags - Band 04\\\"},\\\"C05_DQF_1km\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"quality-mask\\\"],\\\"title\\\":\\\"Cloud\n        and Moisture Imagery data quality flags - Band 05 (full resolution)\\\"},\\\"C05_DQF_2km\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Cloud and Moisture\n        Imagery data quality flags - Band 05\\\"},\\\"C06_DQF_2km\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Cloud and Moisture\n        Imagery data quality flags - Band 06\\\"},\\\"C07_DQF_2km\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Cloud and Moisture\n        Imagery data quality flags - Band 07\\\"},\\\"C08_DQF_2km\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Cloud and Moisture\n        Imagery data quality flags - Band 08\\\"},\\\"C09_DQF_2km\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Cloud and Moisture\n        Imagery data quality flags - Band 09\\\"},\\\"C10_DQF_2km\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Cloud and Moisture\n        Imagery data quality flags - Band 10\\\"},\\\"C11_DQF_2km\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Cloud and Moisture\n        Imagery data quality flags - Band 11\\\"},\\\"C12_DQF_2km\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Cloud and Moisture\n        Imagery data quality flags - Band 12\\\"},\\\"C13_DQF_2km\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Cloud and Moisture\n        Imagery data quality flags - Band 13\\\"},\\\"C14_DQF_2km\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Cloud and Moisture\n        Imagery data quality flags - Band 14\\\"},\\\"C15_DQF_2km\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Cloud and Moisture\n        Imagery data quality flags - Band 15\\\"},\\\"C16_DQF_2km\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Cloud and Moisture\n        Imagery data quality flags - Band 16\\\"},\\\"CMIP_C01-nc\\\":{\\\"type\\\":\\\"application/netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Cloud\n        and Moisture Imagery reflectance factor - Band 01\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"ABI\n        Band 1\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Daytime aerosol over land,\n        coastal water mapping\\\",\\\"center_wavelength\\\":0.47}]},\\\"CMIP_C02-nc\\\":{\\\"type\\\":\\\"application/netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Cloud\n        and Moisture Imagery reflectance factor - Band 02\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"ABI\n        Band 2\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Daytime clouds, fog, insolation,\n        winds\\\",\\\"center_wavelength\\\":0.64}]},\\\"CMIP_C03-nc\\\":{\\\"type\\\":\\\"application/netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Cloud\n        and Moisture Imagery reflectance factor - Band 03\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"ABI\n        Band 3\\\",\\\"common_name\\\":\\\"nir09\\\",\\\"description\\\":\\\"Daytime vegetation, burn\n        scar, aerosol over water, winds\\\",\\\"center_wavelength\\\":0.87}]},\\\"CMIP_C04-nc\\\":{\\\"type\\\":\\\"application/netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Cloud\n        and Moisture Imagery reflectance factor - Band 04\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"ABI\n        Band 4\\\",\\\"common_name\\\":\\\"cirrus\\\",\\\"description\\\":\\\"Daytime cirrus cloud\\\",\\\"center_wavelength\\\":1.38}]},\\\"CMIP_C05-nc\\\":{\\\"type\\\":\\\"application/netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Cloud\n        and Moisture Imagery reflectance factor - Band 05\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"ABI\n        Band 5\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"Daytime cloud-top phase\n        and particle size, snow\\\",\\\"center_wavelength\\\":1.61}]},\\\"CMIP_C06-nc\\\":{\\\"type\\\":\\\"application/netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Cloud\n        and Moisture Imagery reflectance factor - Band 06\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"ABI\n        Band 6\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"Daytime land, cloud\n        properties, particle size, vegetation, snow\\\",\\\"center_wavelength\\\":2.25}]},\\\"CMIP_C07-nc\\\":{\\\"type\\\":\\\"application/netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Cloud\n        and Moisture Imagery brightness temperature at top of atmosphere - Band 07\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"ABI\n        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\n        and Moisture Imagery brightness temperature at top of atmosphere - Band 08\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"ABI\n        Band 8\\\",\\\"description\\\":\\\"High-level atmospheric water vapor, winds, rainfall\\\",\\\"center_wavelength\\\":6.17}]},\\\"CMIP_C09-nc\\\":{\\\"type\\\":\\\"application/netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Cloud\n        and Moisture Imagery brightness temperature at top of atmosphere - Band 09\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"ABI\n        Band 9\\\",\\\"description\\\":\\\"Midlevel atmospheric water vapor, winds, rainfall\\\",\\\"center_wavelength\\\":6.93}]},\\\"CMIP_C10-nc\\\":{\\\"type\\\":\\\"application/netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Cloud\n        and Moisture Imagery brightness temperature at top of atmosphere - Band 10\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"ABI\n        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\n        and Moisture Imagery brightness temperature at top of atmosphere - Band 11\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"ABI\n        Band 11\\\",\\\"description\\\":\\\"Total water for stability, cloud phase, dust,\n        silicon dioxide, rainfall\\\",\\\"center_wavelength\\\":8.44}]},\\\"CMIP_C12-nc\\\":{\\\"type\\\":\\\"application/netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Cloud\n        and Moisture Imagery brightness temperature at top of atmosphere - Band 12\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"ABI\n        Band 12\\\",\\\"description\\\":\\\"Total ozone, turbulence, winds\\\",\\\"center_wavelength\\\":9.61}]},\\\"CMIP_C13-nc\\\":{\\\"type\\\":\\\"application/netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Cloud\n        and Moisture Imagery brightness temperature at top of atmosphere - Band 13\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"ABI\n        Band 13\\\",\\\"description\\\":\\\"Surface and clouds\\\",\\\"center_wavelength\\\":10.33}]},\\\"CMIP_C14-nc\\\":{\\\"type\\\":\\\"application/netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Cloud\n        and Moisture Imagery brightness temperature at top of atmosphere - Band 14\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"ABI\n        Band 14\\\",\\\"description\\\":\\\"Imagery, sea surface temperature, clouds, rainfall\\\",\\\"center_wavelength\\\":11.19}]},\\\"CMIP_C15-nc\\\":{\\\"type\\\":\\\"application/netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Cloud\n        and Moisture Imagery brightness temperature at top of atmosphere - Band 15\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"ABI\n        Band 15\\\",\\\"description\\\":\\\"Total water, volcanic ash, sea surface temperature\\\",\\\"center_wavelength\\\":12.27}]},\\\"CMIP_C16-nc\\\":{\\\"type\\\":\\\"application/netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Cloud\n        and Moisture Imagery brightness temperature at top of atmosphere - Band 16\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"ABI\n        Band 16\\\",\\\"description\\\":\\\"Air temperature, cloud heights\\\",\\\"center_wavelength\\\":13.27}]},\\\"C02_DQF_0.5km\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"quality-mask\\\"],\\\"title\\\":\\\"Cloud\n        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\n        temporal cadence cloud and moisture imagery over the Western Hemisphere from\n        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\n        Commons Attribution 4.0 International\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/conus404\\\",\\\"title\\\":\\\"Human\n        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\n        Thumbnail\\\"},\\\"zarr-abfs\\\":{\\\"href\\\":\\\"az://noaa/conus404.zarr\\\",\\\"type\\\":\\\"application/vnd+zarr\\\",\\\"roles\\\":[\\\"data\\\",\\\"zarr\\\",\\\"abfs\\\"],\\\"title\\\":\\\"CONUS404\n        Zarr root\\\",\\\"description\\\":\\\"Azure Blob File Syustem URI of the Zarr store\n        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\n        Zarr root\\\",\\\"description\\\":\\\"HTTPS URI of the Zarr store for the CONUS404\n        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\n        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)\n        is a unique, high-resolution hydro-climate dataset appropriate for forcing\n        hydrological models and conducting meteorological analysis over the conterminous\n        United States. CONUS404, so named because it covers the CONterminous United\n        States for over 40 years at 4 km resolution, was produced by the Weather Research\n        and Forecasting (WRF) model simulations run by NCAR as part of a collaboration\n        with the USGS Water Mission Area. The CONUS404 includes 42 years of data (water\n        years 1980-2021) and the spatial domain extends beyond the CONUS into Canada\n        and Mexico, thereby capturing transboundary river basins and covering all\n        contributing areas for CONUS surface waters.\\\\n\\\\nThe CONUS404 dataset, produced\n        using WRF version 3.9.1.1, is the successor to the CONUS1 dataset in [ds612.0](https://rda.ucar.edu/datasets/ds612.0/)\n        (Liu, et al., 2017) with improved representation of weather and climate conditions\n        in the central United States due to the addition of a shallow groundwater\n        module and several other improvements in the NOAH-Multiparameterization land\n        surface model. It also uses a more up-to-date and higher-resolution reanalysis\n        dataset (ERA5) as input and covers a longer period than CONUS1.\\\",\\\"msft:region\\\":\\\"eastus\\\",\\\"sci:citation\\\":\\\"Rasmussen,\n        R. M., Chen, F., Liu, C.H., Ikeda, K., Prein, A., Kim, J., Schneider, T.,\n        Dai, A., Gochis, D., Dugger, A., Zhang, Y., Jaye, A., Dudhia, J., He, C.,\n        Harrold, M., Xue, L., Chen, S., Newman, A., Dougherty, E., Abolafia-Rosenzweig,\n        R., Lybarger, N. D., Viger, R., Lesmes, D., Skalak, K., Brakebill, J., Cline,\n        D., Dunne, K., Rasmussen, K., & Miguez-Macho, G. (2023). CONUS404: The NCAR\\u2013USGS\n        4-km Long-Term Regional Hydroclimate Reanalysis over the CONUS. Bulletin of\n        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\n        pressure (P0 + PB)\\\"},\\\"shape\\\":[376944,50,1015,1367],\\\"chunks\\\":[1,1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"bottom_top\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"Total\n        pressure (P0 + PB)\\\"},\\\"U\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"m s-1\\\",\\\"attrs\\\":{\\\"units\\\":\\\"m\n        s-1\\\",\\\"stagger\\\":\\\"X\\\",\\\"description\\\":\\\"U-component of wind with respect\n        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\n        of wind with respect to model grid\\\"},\\\"V\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"m\n        s-1\\\",\\\"attrs\\\":{\\\"units\\\":\\\"m s-1\\\",\\\"stagger\\\":\\\"Y\\\",\\\"description\\\":\\\"V-component\n        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\n        of wind with respect to model grid\\\"},\\\"W\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"m\n        s-1\\\",\\\"attrs\\\":{\\\"units\\\":\\\"m s-1\\\",\\\"stagger\\\":\\\"Z\\\",\\\"description\\\":\\\"W-component\n        of wind\\\"},\\\"shape\\\":[376944,51,1015,1367],\\\"chunks\\\":[1,1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"bottom_top_stag\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"W-component\n        of wind\\\"},\\\"Z\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"m2 s-2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"m2\n        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\n        height (PH + PHB)/9.81\\\"},\\\"LH\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"W m-2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"W\n        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\n        HEAT FLUX AT THE SURFACE\\\"},\\\"MU\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"Pa\\\",\\\"attrs\\\":{\\\"units\\\":\\\"Pa\\\",\\\"stagger\\\":\\\"\\\",\\\"description\\\":\\\"dry\n        airmass in column (MU+MUB)\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"dry\n        airmass in column (MU+MUB)\\\"},\\\"Q2\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"kg kg-1\\\",\\\"attrs\\\":{\\\"units\\\":\\\"kg\n        kg-1\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Water vapor mixing ratio at 2 meters\\\",\\\"description\\\":\\\"QV\n        at 2 M\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"QV\n        at 2 M\\\"},\\\"SR\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"-\\\",\\\"attrs\\\":{\\\"units\\\":\\\"-\\\",\\\"stagger\\\":\\\"\\\",\\\"description\\\":\\\"fraction\n        of frozen precipitation\\\",\\\"number_of_significant_digits\\\":5},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"fraction\n        of frozen precipitation\\\"},\\\"T2\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"K\\\",\\\"attrs\\\":{\\\"units\\\":\\\"K\\\",\\\"stagger\\\":\\\"\\\",\\\"description\\\":\\\"TEMP\n        at 2 M\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"TEMP\n        at 2 M\\\"},\\\"TG\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"K\\\",\\\"attrs\\\":{\\\"units\\\":\\\"K\\\",\\\"stagger\\\":\\\"\\\",\\\"description\\\":\\\"bulk\n        ground temperature\\\",\\\"number_of_significant_digits\\\":5},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"bulk\n        ground temperature\\\"},\\\"TK\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"K\\\",\\\"attrs\\\":{\\\"units\\\":\\\"K\\\",\\\"stagger\\\":\\\"\\\",\\\"description\\\":\\\"Air\n        Temperature\\\"},\\\"shape\\\":[376944,50,1015,1367],\\\"chunks\\\":[1,1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"bottom_top\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"Air\n        Temperature\\\"},\\\"TV\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"K\\\",\\\"attrs\\\":{\\\"units\\\":\\\"K\\\",\\\"stagger\\\":\\\"\\\",\\\"description\\\":\\\"vegetation\n        leaf temperature\\\",\\\"number_of_significant_digits\\\":5},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"vegetation\n        leaf temperature\\\"},\\\"GLW\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"W m-2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"W\n        m-2\\\",\\\"stagger\\\":\\\"\\\",\\\"description\\\":\\\"DOWNWARD LONG WAVE FLUX AT GROUND\n        SURFACE\\\",\\\"number_of_significant_digits\\\":5},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"DOWNWARD\n        LONG WAVE FLUX AT GROUND SURFACE\\\"},\\\"HFX\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"W\n        m-2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"W m-2\\\",\\\"stagger\\\":\\\"\\\",\\\"description\\\":\\\"UPWARD\n        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\n        HEAT FLUX AT THE SURFACE\\\"},\\\"LAI\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"m-2/m-2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"m-2/m-2\\\",\\\"stagger\\\":\\\"\\\",\\\"description\\\":\\\"LEAF\n        AREA INDEX\\\",\\\"number_of_significant_digits\\\":3},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"LEAF\n        AREA INDEX\\\"},\\\"OLR\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"W m-2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"W\n        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\n        OUTGOING LONG WAVE\\\"},\\\"QFX\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"kg m-2 s-1\\\",\\\"attrs\\\":{\\\"units\\\":\\\"kg\n        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\n        MOISTURE FLUX AT THE SURFACE\\\"},\\\"SST\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"K\\\",\\\"attrs\\\":{\\\"units\\\":\\\"K\\\",\\\"stagger\\\":\\\"\\\",\\\"description\\\":\\\"SEA\n        SURFACE TEMPERATURE\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"SEA\n        SURFACE TEMPERATURE\\\"},\\\"TD2\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"K\\\",\\\"attrs\\\":{\\\"units\\\":\\\"K\\\",\\\"stagger\\\":\\\"\\\",\\\"description\\\":\\\"2-m\n        dewpoint temperature\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"2-m\n        dewpoint temperature\\\"},\\\"TH2\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"K\\\",\\\"attrs\\\":{\\\"units\\\":\\\"K\\\",\\\"stagger\\\":\\\"\\\",\\\"description\\\":\\\"POT\n        TEMP at 2 M\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"POT\n        TEMP at 2 M\\\"},\\\"TSK\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"K\\\",\\\"attrs\\\":{\\\"units\\\":\\\"K\\\",\\\"stagger\\\":\\\"\\\",\\\"description\\\":\\\"SURFACE\n        SKIN TEMPERATURE\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"SURFACE\n        SKIN TEMPERATURE\\\"},\\\"U10\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"m s-1\\\",\\\"attrs\\\":{\\\"units\\\":\\\"m\n        s-1\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"U-component wind with respect to model\n        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\n        at 10 M\\\"},\\\"UST\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"m s-1\\\",\\\"attrs\\\":{\\\"units\\\":\\\"m\n        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*\n        IN SIMILARITY THEORY\\\"},\\\"V10\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"m s-1\\\",\\\"attrs\\\":{\\\"units\\\":\\\"m\n        s-1\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"V-component wind with respect to model\n        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\n        at 10 M\\\"},\\\"ZWT\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"m\\\",\\\"attrs\\\":{\\\"units\\\":\\\"m\\\",\\\"stagger\\\":\\\"\\\",\\\"description\\\":\\\"water\n        table depth\\\",\\\"number_of_significant_digits\\\":5},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"water\n        table depth\\\"},\\\"lat\\\":{\\\"type\\\":\\\"auxiliary\\\",\\\"unit\\\":\\\"degree_north\\\",\\\"attrs\\\":{\\\"units\\\":\\\"degree_north\\\",\\\"stagger\\\":\\\"\\\",\\\"description\\\":\\\"LATITUDE,\n        SOUTH IS NEGATIVE\\\"},\\\"shape\\\":[1015,1367],\\\"chunks\\\":[882,1188],\\\"dimensions\\\":[\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"LATITUDE,\n        SOUTH IS NEGATIVE\\\"},\\\"lon\\\":{\\\"type\\\":\\\"auxiliary\\\",\\\"unit\\\":\\\"degree_east\\\",\\\"attrs\\\":{\\\"units\\\":\\\"degree_east\\\",\\\"stagger\\\":\\\"\\\",\\\"description\\\":\\\"LONGITUDE,\n        WEST IS NEGATIVE\\\"},\\\"shape\\\":[1015,1367],\\\"chunks\\\":[882,1188],\\\"dimensions\\\":[\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"LONGITUDE,\n        WEST IS NEGATIVE\\\"},\\\"ACTR\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"kJ/m2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"kJ/m2\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Accumulated\n        transpiration, accumulated over prior 60 minutes\\\",\\\"description\\\":\\\"acccumlated\n        TR\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"acccumlated\n        TR\\\"},\\\"PBLH\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"m\\\",\\\"attrs\\\":{\\\"units\\\":\\\"m\\\",\\\"stagger\\\":\\\"\\\",\\\"description\\\":\\\"PBL\n        HEIGHT\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"PBL\n        HEIGHT\\\"},\\\"PSFC\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"Pa\\\",\\\"attrs\\\":{\\\"units\\\":\\\"Pa\\\",\\\"stagger\\\":\\\"\\\",\\\"description\\\":\\\"SFC\n        PRESSURE\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"SFC\n        PRESSURE\\\"},\\\"PWAT\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"meters\\\",\\\"attrs\\\":{\\\"units\\\":\\\"meters\\\",\\\"stagger\\\":\\\"\\\",\\\"sum_op_ncl\\\":\\\"dim_sum_n\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\n        Water\\\"},\\\"QICE\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"kg kg-1\\\",\\\"attrs\\\":{\\\"units\\\":\\\"kg\n        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\n        mixing ratio\\\"},\\\"QRFS\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"mm\\\",\\\"attrs\\\":{\\\"units\\\":\\\"mm\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Accumulated\n        baseflow since model start time\\\",\\\"description\\\":\\\"sum baseflow\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"sum\n        baseflow\\\"},\\\"RECH\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"mm\\\",\\\"attrs\\\":{\\\"units\\\":\\\"mm\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Accumulated\n        water tabel recharged since model init time\\\",\\\"description\\\":\\\"Accumulated\n        water tabel recharged\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"Accumulated\n        water tabel recharged\\\"},\\\"SH2O\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"m3 m-3\\\",\\\"attrs\\\":{\\\"units\\\":\\\"m3\n        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\n        LIQUID WATER\\\"},\\\"SNOW\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"kg m-2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"kg\n        m-2\\\",\\\"stagger\\\":\\\"\\\",\\\"description\\\":\\\"SNOW WATER EQUIVALENT\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"SNOW\n        WATER EQUIVALENT\\\"},\\\"TRAD\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"K\\\",\\\"attrs\\\":{\\\"units\\\":\\\"K\\\",\\\"stagger\\\":\\\"\\\",\\\"description\\\":\\\"surface\n        radiative temperature\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"surface\n        radiative temperature\\\"},\\\"TSLB\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"K\\\",\\\"attrs\\\":{\\\"units\\\":\\\"K\\\",\\\"stagger\\\":\\\"Z\\\",\\\"description\\\":\\\"SOIL\n        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\n        TEMPERATURE\\\"},\\\"TSNO\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"K\\\",\\\"attrs\\\":{\\\"units\\\":\\\"K\\\",\\\"stagger\\\":\\\"Z\\\",\\\"description\\\":\\\"snow\n        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\n        temperature\\\"},\\\"ACEVB\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"kJ/m2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"kJ/m2\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Accumulated\n        latent heat flux over bare ground, accumulated over prior 60 minutes\\\",\\\"description\\\":\\\"acccumlated\n        EVB\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"acccumlated\n        EVB\\\"},\\\"ACEVC\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"kJ/m2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"kJ/m2\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Accumulated\n        latent heat flux for canopy layer, accumulated over prior 60 minutes\\\",\\\"description\\\":\\\"acccumlated\n        EVC\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"acccumlated\n        EVC\\\"},\\\"ACEVG\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"kJ/m2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"kJ/m2\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Accumulated\n        ground latent heat flux below canopy, accumulated over prior 60 minutes\\\",\\\"description\\\":\\\"acccumlated\n        EVG\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"acccumlated\n        EVG\\\"},\\\"ACGHB\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"kJ/m2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"kJ/m2\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Accumulated\n        heat flux into soil or snowpack for bare ground, accumulated over prior 60\n        minutes\\\",\\\"description\\\":\\\"acccumlated GHB\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"acccumlated\n        GHB\\\"},\\\"ACGHV\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"kJ/m2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"kJ/m2\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Accumulated\n        heat flux into soil or snowpack under canopy, accumulated over prior 60 minutes\\\",\\\"description\\\":\\\"acccumlated\n        GHV\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"acccumlated\n        GHV\\\"},\\\"ACIRB\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"kJ/m2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"kJ/m2\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Accumulated\n        net longwave radiation for bare ground, accumulated over prior 60 minutes\\\",\\\"description\\\":\\\"acccumlated\n        IRB\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"acccumlated\n        IRB\\\"},\\\"ACIRC\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"kJ/m2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"kJ/m2\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Accumulated\n        net longwave radiation from canopy, accumulated over prior 60 minutes\\\",\\\"description\\\":\\\"acccumlated\n        IRC\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"acccumlated\n        IRC\\\"},\\\"ACIRG\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"kJ/m2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"kJ/m2\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Accumulated\n        net longwave radiation from ground below canopy, accumulated over prior 60\n        minutes\\\",\\\"description\\\":\\\"acccumlated IRG\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"acccumlated\n        IRG\\\"},\\\"ACQRF\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"mm\\\",\\\"attrs\\\":{\\\"units\\\":\\\"mm\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Accumulated\n        groundwater baseflow, accumulated over prior 60 minutes\\\",\\\"description\\\":\\\"accumulated\n        baseflow\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"accumulated\n        baseflow\\\"},\\\"ACSAV\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"kJ/m2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"kJ/m2\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Accumulated\n        solar radiation absorbed by vegetated fraction, accumulated over prior 60\n        minutes\\\",\\\"description\\\":\\\"acccumlated SAV\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"acccumlated\n        SAV\\\"},\\\"ACSHB\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"kJ/m2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"kJ/m2\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Accumulated\n        sensible heat flux at bare fraction, accumulated over prior 60 minutes\\\",\\\"description\\\":\\\"acccumlated\n        SHB\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"acccumlated\n        SHB\\\"},\\\"ACSHC\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"kJ/m2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"kJ/m2\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Accumulated\n        sensible heat flux, canopy to atmosphere, accumulated over prior 60 minutes\\\",\\\"description\\\":\\\"acccumlated\n        SHC\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"acccumlated\n        SHC\\\"},\\\"ACSHG\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"kJ/m2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"kJ/m2\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Accumulated\n        sensible heat flux from ground below canopy, accumulated over prior 60 minutes\\\",\\\"description\\\":\\\"acccumlated\n        SHG\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"acccumlated\n        SHG\\\"},\\\"EMISS\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"\\\",\\\"attrs\\\":{\\\"units\\\":\\\"\\\",\\\"stagger\\\":\\\"\\\",\\\"description\\\":\\\"SURFACE\n        EMISSIVITY\\\",\\\"number_of_significant_digits\\\":5},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"SURFACE\n        EMISSIVITY\\\"},\\\"LWDNB\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"W m-2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"W\n        m-2\\\",\\\"stagger\\\":\\\"\\\",\\\"description\\\":\\\"INSTANTANEOUS DOWNWELLING LONGWAVE\n        FLUX AT BOTTOM\\\",\\\"number_of_significant_digits\\\":5},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"INSTANTANEOUS\n        DOWNWELLING LONGWAVE FLUX AT BOTTOM\\\"},\\\"LWDNT\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"W\n        m-2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"W m-2\\\",\\\"stagger\\\":\\\"\\\",\\\"description\\\":\\\"INSTANTANEOUS\n        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\n        DOWNWELLING LONGWAVE FLUX AT TOP\\\"},\\\"LWUPB\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"W\n        m-2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"W m-2\\\",\\\"stagger\\\":\\\"\\\",\\\"description\\\":\\\"INSTANTANEOUS\n        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\n        UPWELLING LONGWAVE FLUX AT BOTTOM\\\"},\\\"LWUPT\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"W\n        m-2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"W m-2\\\",\\\"stagger\\\":\\\"\\\",\\\"description\\\":\\\"INSTANTANEOUS\n        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\n        UPWELLING LONGWAVE FLUX AT TOP\\\"},\\\"MLLCL\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"m\\\",\\\"attrs\\\":{\\\"units\\\":\\\"m\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Mixed-layer\n        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\n        LCL\\\"},\\\"O3RAD\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"ppmv\\\",\\\"attrs\\\":{\\\"units\\\":\\\"ppmv\\\",\\\"stagger\\\":\\\"\\\",\\\"description\\\":\\\"RADIATION\n        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\n        3D OZONE\\\"},\\\"P_HYD\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"Pa\\\",\\\"attrs\\\":{\\\"units\\\":\\\"Pa\\\",\\\"stagger\\\":\\\"\\\",\\\"description\\\":\\\"hydrostatic\n        pressure\\\"},\\\"shape\\\":[376944,50,1015,1367],\\\"chunks\\\":[1,1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"bottom_top\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"hydrostatic\n        pressure\\\"},\\\"QNICE\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"  kg-1\\\",\\\"attrs\\\":{\\\"units\\\":\\\"\n        \\ 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\n        Number concentration\\\"},\\\"QRAIN\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"kg kg-1\\\",\\\"attrs\\\":{\\\"units\\\":\\\"kg\n        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\n        water mixing ratio\\\"},\\\"QSLAT\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"mm\\\",\\\"attrs\\\":{\\\"units\\\":\\\"mm\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Accumulated\n        groundwater lateral flow since model start time\\\",\\\"description\\\":\\\"sum lateral\n        flow\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"sum\n        lateral flow\\\"},\\\"QSNOW\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"kg kg-1\\\",\\\"attrs\\\":{\\\"units\\\":\\\"kg\n        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\n        mixing ratio\\\"},\\\"SBLCL\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"m\\\",\\\"attrs\\\":{\\\"units\\\":\\\"m\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Surface-based\n        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\n        LCL\\\"},\\\"SMOIS\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"m3 m-3\\\",\\\"attrs\\\":{\\\"units\\\":\\\"m3\n        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\n        MOISTURE\\\"},\\\"SNICE\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"mm\\\",\\\"attrs\\\":{\\\"units\\\":\\\"mm\\\",\\\"stagger\\\":\\\"Z\\\",\\\"description\\\":\\\"snow\n        layer ice\\\"},\\\"shape\\\":[376944,3,1015,1367],\\\"chunks\\\":[1,1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"snow_layers_stag\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"snow\n        layer ice\\\"},\\\"SNLIQ\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"mm\\\",\\\"attrs\\\":{\\\"units\\\":\\\"mm\\\",\\\"stagger\\\":\\\"Z\\\",\\\"description\\\":\\\"snow\n        layer liquid\\\"},\\\"shape\\\":[376944,3,1015,1367],\\\"chunks\\\":[1,1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"snow_layers_stag\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"snow\n        layer liquid\\\"},\\\"SNOWC\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"\\\",\\\"attrs\\\":{\\\"units\\\":\\\"\\\",\\\"stagger\\\":\\\"\\\",\\\"description\\\":\\\"FLAG\n        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\n        INDICATING SNOW COVERAGE (1 FOR SNOW COVER)\\\"},\\\"SNOWH\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"m\\\",\\\"attrs\\\":{\\\"units\\\":\\\"m\\\",\\\"stagger\\\":\\\"\\\",\\\"description\\\":\\\"PHYSICAL\n        SNOW DEPTH\\\",\\\"number_of_significant_digits\\\":5},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"PHYSICAL\n        SNOW DEPTH\\\"},\\\"SRH01\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"m2s-2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"m2s-2\\\",\\\"stagger\\\":\\\"\\\",\\\"description\\\":\\\"0-1km\n        storm-relative helicity\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"0-1km\n        storm-relative helicity\\\"},\\\"SRH03\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"m2s-2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"m2s-2\\\",\\\"stagger\\\":\\\"\\\",\\\"description\\\":\\\"0-3km\n        storm-relative helicity\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"0-3km\n        storm-relative helicity\\\"},\\\"SSTSK\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"K\\\",\\\"attrs\\\":{\\\"units\\\":\\\"K\\\",\\\"stagger\\\":\\\"\\\",\\\"description\\\":\\\"SKIN\n        SEA SURFACE TEMPERATURE\\\",\\\"number_of_significant_digits\\\":5},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"SKIN\n        SEA SURFACE TEMPERATURE\\\"},\\\"SWDNB\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"W m-2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"W\n        m-2\\\",\\\"stagger\\\":\\\"\\\",\\\"description\\\":\\\"INSTANTANEOUS DOWNWELLING SHORTWAVE\n        FLUX AT BOTTOM\\\",\\\"number_of_significant_digits\\\":5},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"INSTANTANEOUS\n        DOWNWELLING SHORTWAVE FLUX AT BOTTOM\\\"},\\\"SWDNT\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"W\n        m-2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"W m-2\\\",\\\"stagger\\\":\\\"\\\",\\\"description\\\":\\\"INSTANTANEOUS\n        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\n        DOWNWELLING SHORTWAVE FLUX AT TOP\\\"},\\\"SWUPB\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"W\n        m-2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"W m-2\\\",\\\"stagger\\\":\\\"\\\",\\\"description\\\":\\\"INSTANTANEOUS\n        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\n        UPWELLING SHORTWAVE FLUX AT BOTTOM\\\"},\\\"SWUPT\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"W\n        m-2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"W m-2\\\",\\\"stagger\\\":\\\"\\\",\\\"description\\\":\\\"INSTANTANEOUS\n        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\n        UPWELLING SHORTWAVE FLUX AT TOP\\\"},\\\"USHR1\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"s-1\\\",\\\"attrs\\\":{\\\"units\\\":\\\"s-1\\\",\\\"stagger\\\":\\\"\\\",\\\"description\\\":\\\"0-1km\n        AGL U-component Wind Shear\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"0-1km\n        AGL U-component Wind Shear\\\"},\\\"USHR6\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"s-1\\\",\\\"attrs\\\":{\\\"units\\\":\\\"s-1\\\",\\\"stagger\\\":\\\"\\\",\\\"description\\\":\\\"0-6km\n        AGL U-component Wind Shear\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"0-6km\n        AGL U-component Wind Shear\\\"},\\\"VSHR1\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"s-1\\\",\\\"attrs\\\":{\\\"units\\\":\\\"s-1\\\",\\\"stagger\\\":\\\"\\\",\\\"description\\\":\\\"0-1km\n        AGL V-component Wind Shear\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"0-1km\n        AGL V-component Wind Shear\\\"},\\\"VSHR6\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"s-1\\\",\\\"attrs\\\":{\\\"units\\\":\\\"s-1\\\",\\\"stagger\\\":\\\"\\\",\\\"description\\\":\\\"0-6km\n        AGL V-component Wind Shear\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"0-6km\n        AGL V-component Wind Shear\\\"},\\\"ZSNSO\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"m\\\",\\\"attrs\\\":{\\\"units\\\":\\\"m\\\",\\\"stagger\\\":\\\"Z\\\",\\\"description\\\":\\\"layer-bottom\n        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\n        depth from snow surf\\\"},\\\"lat_u\\\":{\\\"type\\\":\\\"auxiliary\\\",\\\"unit\\\":\\\"degree_north\\\",\\\"attrs\\\":{\\\"units\\\":\\\"degree_north\\\",\\\"stagger\\\":\\\"X\\\",\\\"description\\\":\\\"LATITUDE,\n        SOUTH IS NEGATIVE\\\"},\\\"shape\\\":[1015,1368],\\\"chunks\\\":[882,1188],\\\"dimensions\\\":[\\\"south_north\\\",\\\"west_east_stag\\\"],\\\"description\\\":\\\"LATITUDE,\n        SOUTH IS NEGATIVE\\\"},\\\"lat_v\\\":{\\\"type\\\":\\\"auxiliary\\\",\\\"unit\\\":\\\"degree_north\\\",\\\"attrs\\\":{\\\"units\\\":\\\"degree_north\\\",\\\"stagger\\\":\\\"Y\\\",\\\"description\\\":\\\"LATITUDE,\n        SOUTH IS NEGATIVE\\\"},\\\"shape\\\":[1016,1367],\\\"chunks\\\":[883,1187],\\\"dimensions\\\":[\\\"south_north_stag\\\",\\\"west_east\\\"],\\\"description\\\":\\\"LATITUDE,\n        SOUTH IS NEGATIVE\\\"},\\\"lon_u\\\":{\\\"type\\\":\\\"auxiliary\\\",\\\"unit\\\":\\\"degree_east\\\",\\\"attrs\\\":{\\\"units\\\":\\\"degree_east\\\",\\\"stagger\\\":\\\"X\\\",\\\"description\\\":\\\"LONGITUDE,\n        WEST IS NEGATIVE\\\"},\\\"shape\\\":[1015,1368],\\\"chunks\\\":[882,1188],\\\"dimensions\\\":[\\\"south_north\\\",\\\"west_east_stag\\\"],\\\"description\\\":\\\"LONGITUDE,\n        WEST IS NEGATIVE\\\"},\\\"lon_v\\\":{\\\"type\\\":\\\"auxiliary\\\",\\\"unit\\\":\\\"degree_east\\\",\\\"attrs\\\":{\\\"units\\\":\\\"degree_east\\\",\\\"stagger\\\":\\\"Y\\\",\\\"description\\\":\\\"LONGITUDE,\n        WEST IS NEGATIVE\\\"},\\\"shape\\\":[1016,1367],\\\"chunks\\\":[883,1187],\\\"dimensions\\\":[\\\"south_north_stag\\\",\\\"west_east\\\"],\\\"description\\\":\\\"LONGITUDE,\n        WEST IS NEGATIVE\\\"},\\\"ACDEWC\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"mm\\\",\\\"attrs\\\":{\\\"units\\\":\\\"mm\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Accumulated\n        canopy dew rate, accumulated over prior 60 minutes\\\",\\\"description\\\":\\\"acccumlated\n        QDEWC\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"acccumlated\n        QDEWC\\\"},\\\"ACECAN\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"mm\\\",\\\"attrs\\\":{\\\"units\\\":\\\"mm\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Accumulated\n        net evaporation of canopy water (evap + sublim - dew - frost), accumulated\n        over prior 60 minutes\\\",\\\"description\\\":\\\"acccumlated ECAN\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"acccumlated\n        ECAN\\\"},\\\"ACEDIR\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"mm\\\",\\\"attrs\\\":{\\\"units\\\":\\\"mm\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Accumulated\n        net soil evaporation or snowpack sublimation (evap or sublim - dew or frost),\n        accumulated over prior 60 minutes\\\",\\\"description\\\":\\\"acccumlated EDIR\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"acccumlated\n        EDIR\\\"},\\\"ACEVAC\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"mm\\\",\\\"attrs\\\":{\\\"units\\\":\\\"mm\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Accumulated\n        canopy evaporation, accumulated over prior 60 minutes\\\",\\\"description\\\":\\\"acccumlated\n        QEVAC\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"acccumlated\n        QEVAC\\\"},\\\"ACFROC\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"mm\\\",\\\"attrs\\\":{\\\"units\\\":\\\"mm\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Accumulated\n        canopy frost, accumulated over prior 60 minutes\\\",\\\"description\\\":\\\"acccumlated\n        QFROC\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"acccumlated\n        QFROC\\\"},\\\"ACFRZC\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"mm\\\",\\\"attrs\\\":{\\\"units\\\":\\\"mm\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Accumulated\n        refreezing of canopy liquid water, accumulated over prior 60 minutes\\\",\\\"description\\\":\\\"acccumlated\n        QFRZC\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"acccumlated\n        QFRZC\\\"},\\\"ACINTR\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"mm\\\",\\\"attrs\\\":{\\\"units\\\":\\\"mm\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Accumulated\n        canopy rain interception rate, accumulated over prior 60 minutes\\\",\\\"description\\\":\\\"acccumlated\n        QINTR\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"acccumlated\n        QINTR\\\"},\\\"ACINTS\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"mm\\\",\\\"attrs\\\":{\\\"units\\\":\\\"mm\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Accumulated\n        canopy snow interception rate, accumulated over prior 60 minutes\\\",\\\"description\\\":\\\"acccumlated\n        QINTS\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"acccumlated\n        QINTS\\\"},\\\"ACPAHB\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"kJ/m2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"kJ/m2\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Accumulated\n        precipitation advected energy to bare ground, accumulated over prior 60 minutes\\\",\\\"description\\\":\\\"acccumlated\n        PAHB\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"acccumlated\n        PAHB\\\"},\\\"ACPAHG\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"kJ/m2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"kJ/m2\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Accumulated\n        precipitation advected energy to below canopy, accumulated over prior 60 minutes\\\",\\\"description\\\":\\\"acccumlated\n        PAHG\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"acccumlated\n        PAHG\\\"},\\\"ACPAHV\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"kJ/m2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"kJ/m2\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Accumulated\n        precipitation advected energy to vegetation, accumulated over prior 60 minutes\\\",\\\"description\\\":\\\"acccumlated\n        PAHV\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"acccumlated\n        PAHV\\\"},\\\"ACQLAT\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"mm\\\",\\\"attrs\\\":{\\\"units\\\":\\\"mm\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Accumulated\n        groundwater lateral flow, accumulated over prior 60 minutes\\\",\\\"description\\\":\\\"accumulated\n        lateral flow\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"accumulated\n        lateral flow\\\"},\\\"ACSAGB\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"kJ/m2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"kJ/m2\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Accumulated\n        solar radiation absorbed by bare ground, accumulated over prior 60 minutes\\\",\\\"description\\\":\\\"acccumlated\n        SAG under vegetation\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"acccumlated\n        SAG under vegetation\\\"},\\\"ACSAGV\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"kJ/m2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"kJ/m2\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Accumulated\n        solar radiation absorbed by vegetated ground, accumulated over prior 60 minutes\\\",\\\"description\\\":\\\"acccumlated\n        SAG in bare section\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"acccumlated\n        SAG in bare section\\\"},\\\"ACSNOM\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"kg m-2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"kg\n        m-2\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Accumulated total liquid water out\n        of the snowpack since model initial time\\\",\\\"description\\\":\\\"Accumulated total\n        liquid water out of the snowpack\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"Accumulated\n        total liquid water out of the snowpack\\\"},\\\"ACSUBC\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"mm\\\",\\\"attrs\\\":{\\\"units\\\":\\\"mm\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Accumulated\n        canopy snow sublimation, accumulated over prior 60 minutes\\\",\\\"description\\\":\\\"acccumlated\n        QSUBC\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"acccumlated\n        QSUBC\\\"},\\\"ALBEDO\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"-\\\",\\\"attrs\\\":{\\\"units\\\":\\\"-\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Surface\n        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\n        ice mass\\\",\\\"number_of_significant_digits\\\":5},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"intercepted\n        ice mass\\\"},\\\"CANWAT\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"kg m-2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"kg\n        m-2\\\",\\\"stagger\\\":\\\"\\\",\\\"description\\\":\\\"CANOPY WATER\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"CANOPY\n        WATER\\\"},\\\"CLDFRA\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"\\\",\\\"attrs\\\":{\\\"units\\\":\\\"\\\",\\\"stagger\\\":\\\"\\\",\\\"description\\\":\\\"CLOUD\n        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\n        FRACTION\\\"},\\\"COSZEN\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"dimensionless\\\",\\\"attrs\\\":{\\\"units\\\":\\\"dimensionless\\\",\\\"stagger\\\":\\\"\\\",\\\"description\\\":\\\"COS\n        of SOLAR ZENITH ANGLE\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"COS\n        of SOLAR ZENITH ANGLE\\\"},\\\"LWDNBC\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"W m-2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"W\n        m-2\\\",\\\"stagger\\\":\\\"\\\",\\\"description\\\":\\\"INSTANTANEOUS DOWNWELLING CLEAR SKY\n        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\n        DOWNWELLING CLEAR SKY LONGWAVE FLUX AT BOTTOM\\\"},\\\"LWDNTC\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"W\n        m-2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"W m-2\\\",\\\"stagger\\\":\\\"\\\",\\\"description\\\":\\\"INSTANTANEOUS\n        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\n        DOWNWELLING CLEAR SKY LONGWAVE FLUX AT TOP\\\"},\\\"LWUPBC\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"W\n        m-2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"W m-2\\\",\\\"stagger\\\":\\\"\\\",\\\"description\\\":\\\"INSTANTANEOUS\n        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\n        UPWELLING CLEAR SKY LONGWAVE FLUX AT BOTTOM\\\"},\\\"LWUPTC\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"W\n        m-2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"W m-2\\\",\\\"stagger\\\":\\\"\\\",\\\"description\\\":\\\"INSTANTANEOUS\n        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\n        UPWELLING CLEAR SKY LONGWAVE FLUX AT TOP\\\"},\\\"MLCAPE\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"J\n        kg-1\\\",\\\"attrs\\\":{\\\"units\\\":\\\"J kg-1\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Mixed-layer\n        convective available potential energy (CAPE)\\\",\\\"description\\\":\\\"MIXED-LAYER\n        CAPE\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"MIXED-LAYER\n        CAPE\\\"},\\\"MLCINH\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"J kg-1\\\",\\\"attrs\\\":{\\\"units\\\":\\\"J\n        kg-1\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Mixed-layer convective inhibition\n        up to the level of free convection (CINH)\\\",\\\"description\\\":\\\"MIXED-LAYER\n        CINH\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"MIXED-LAYER\n        CINH\\\"},\\\"MUCAPE\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"J kg-1\\\",\\\"attrs\\\":{\\\"units\\\":\\\"J\n        kg-1\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Most-unstable convective available\n        potential energy (CAPE)\\\",\\\"description\\\":\\\"MOST-UNSTABLE CAPE\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"MOST-UNSTABLE\n        CAPE\\\"},\\\"MUCINH\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"J kg-1\\\",\\\"attrs\\\":{\\\"units\\\":\\\"J\n        kg-1\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Most-unstable convective inhibition\n        up to the level of free convection (CINH)\\\",\\\"description\\\":\\\"MOST-UNSTABLE\n        CINH\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"MOST-UNSTABLE\n        CINH\\\"},\\\"QCLOUD\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"kg kg-1\\\",\\\"attrs\\\":{\\\"units\\\":\\\"kg\n        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\n        water mixing ratio\\\"},\\\"QGRAUP\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"kg kg-1\\\",\\\"attrs\\\":{\\\"units\\\":\\\"kg\n        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\n        mixing ratio\\\"},\\\"QNRAIN\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"  kg(-1)\\\",\\\"attrs\\\":{\\\"units\\\":\\\"\n        \\ 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\n        Number concentration\\\"},\\\"QVAPOR\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"kg kg-1\\\",\\\"attrs\\\":{\\\"units\\\":\\\"kg\n        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\n        vapor mixing ratio\\\"},\\\"SBCAPE\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"J kg-1\\\",\\\"attrs\\\":{\\\"units\\\":\\\"J\n        kg-1\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Surface-based convective available\n        potential energy (CAPE)\\\",\\\"description\\\":\\\"SURFACE-BASED CAPE\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"SURFACE-BASED\n        CAPE\\\"},\\\"SBCINH\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"J kg-1\\\",\\\"attrs\\\":{\\\"units\\\":\\\"J\n        kg-1\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Surface-based convective inhibition\n        up to the level of free convection (CINH)\\\",\\\"description\\\":\\\"SURFACE-BASED\n        CINH\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"SURFACE-BASED\n        CINH\\\"},\\\"SEAICE\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"\\\",\\\"attrs\\\":{\\\"units\\\":\\\"\\\",\\\"stagger\\\":\\\"\\\",\\\"description\\\":\\\"SEA\n        ICE FLAG\\\",\\\"number_of_significant_digits\\\":3},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"SEA\n        ICE FLAG\\\"},\\\"SMCWTD\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"m3 m-3\\\",\\\"attrs\\\":{\\\"units\\\":\\\"m3\n        m-3\\\",\\\"stagger\\\":\\\"\\\",\\\"description\\\":\\\"deep soil moisture\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"deep\n        soil moisture\\\"},\\\"SWDNBC\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"W m-2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"W\n        m-2\\\",\\\"stagger\\\":\\\"\\\",\\\"description\\\":\\\"INSTANTANEOUS DOWNWELLING CLEAR SKY\n        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\n        DOWNWELLING CLEAR SKY SHORTWAVE FLUX AT BOTTOM\\\"},\\\"SWDNTC\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"W\n        m-2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"W m-2\\\",\\\"stagger\\\":\\\"\\\",\\\"description\\\":\\\"INSTANTANEOUS\n        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\n        DOWNWELLING CLEAR SKY SHORTWAVE FLUX AT TOP\\\"},\\\"SWDOWN\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"W\n        m-2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"W m-2\\\",\\\"stagger\\\":\\\"\\\",\\\"description\\\":\\\"DOWNWARD\n        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\n        SHORT WAVE FLUX AT GROUND SURFACE\\\"},\\\"SWNORM\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"W\n        m-2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"W m-2\\\",\\\"stagger\\\":\\\"\\\",\\\"description\\\":\\\"NORMAL\n        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\n        SHORT WAVE FLUX AT GROUND SURFACE (SLOPE-DEPENDENT)\\\"},\\\"SWUPBC\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"W\n        m-2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"W m-2\\\",\\\"stagger\\\":\\\"\\\",\\\"description\\\":\\\"INSTANTANEOUS\n        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\n        UPWELLING CLEAR SKY SHORTWAVE FLUX AT BOTTOM\\\"},\\\"SWUPTC\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"W\n        m-2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"W m-2\\\",\\\"stagger\\\":\\\"\\\",\\\"description\\\":\\\"INSTANTANEOUS\n        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\n        UPWELLING CLEAR SKY SHORTWAVE FLUX AT TOP\\\"},\\\"U_BUNK\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"ms-1\\\",\\\"attrs\\\":{\\\"units\\\":\\\"ms-1\\\",\\\"stagger\\\":\\\"\\\",\\\"description\\\":\\\"U-component\n        of Bunkers storm motion\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"U-component\n        of Bunkers storm motion\\\"},\\\"V_BUNK\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"ms-1\\\",\\\"attrs\\\":{\\\"units\\\":\\\"ms-1\\\",\\\"stagger\\\":\\\"\\\",\\\"description\\\":\\\"V-component\n        of Bunkers storm motion\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"V-component\n        of Bunkers storm motion\\\"},\\\"ACDRIPR\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"mm\\\",\\\"attrs\\\":{\\\"units\\\":\\\"mm\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Accumulated\n        canopy precipitation drip rate, accumulated over prior 60 minutes\\\",\\\"description\\\":\\\"acccumlated\n        QDRIPR\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"acccumlated\n        QDRIPR\\\"},\\\"ACDRIPS\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"mm\\\",\\\"attrs\\\":{\\\"units\\\":\\\"mm\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Accumulated\n        canopy snow drip rate, accumulated over prior 60 minutes\\\",\\\"description\\\":\\\"acccumlated\n        QDRIPS\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"acccumlated\n        QDRIPS\\\"},\\\"ACETLSM\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"mm\\\",\\\"attrs\\\":{\\\"units\\\":\\\"mm\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Accumulated\n        total evaporation, accumulated over prior 60 minutes\\\",\\\"description\\\":\\\"acccumlated\n        ET\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"acccumlated\n        ET\\\"},\\\"ACETRAN\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"mm\\\",\\\"attrs\\\":{\\\"units\\\":\\\"mm\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Accumulated\n        plant transpiration, accumulated over prior 60 minutes\\\",\\\"description\\\":\\\"acccumlated\n        ETRAN\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"acccumlated\n        ETRAN\\\"},\\\"ACLWDNB\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"J m-2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"J\n        m-2\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Accumulated downwelling longwave radiation\n        flux at bottom, accumulated since last bucket_J (1.0e9 J m-2) reset\\\",\\\"description\\\":\\\"ACCUMULATED\n        DOWNWELLING LONGWAVE FLUX AT BOTTOM\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"ACCUMULATED\n        DOWNWELLING LONGWAVE FLUX AT BOTTOM\\\"},\\\"ACLWDNT\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"J\n        m-2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"J m-2\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Accumulated\n        downwelling longwave radiation flux at top, accumulated since last bucket_J\n        (1.0e9 J m-2) reset\\\",\\\"description\\\":\\\"ACCUMULATED DOWNWELLING LONGWAVE FLUX\n        AT TOP\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"ACCUMULATED\n        DOWNWELLING LONGWAVE FLUX AT TOP\\\"},\\\"ACLWUPB\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"J\n        m-2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"J m-2\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Accumulated\n        upwelling longwave radiation flux at bottom, accumulated since last bucket_J\n        (1.0e9 J m-2) reset\\\",\\\"description\\\":\\\"ACCUMULATED UPWELLING LONGWAVE FLUX\n        AT BOTTOM\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"ACCUMULATED\n        UPWELLING LONGWAVE FLUX AT BOTTOM\\\"},\\\"ACLWUPT\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"J\n        m-2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"J m-2\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Accumulated\n        upwelling longwave radiation flux at top, accumulated since last bucket_J\n        (1.0e9 J m-2) reset\\\",\\\"description\\\":\\\"ACCUMULATED UPWELLING LONGWAVE FLUX\n        AT TOP\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"ACCUMULATED\n        UPWELLING LONGWAVE FLUX AT TOP\\\"},\\\"ACMELTC\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"mm\\\",\\\"attrs\\\":{\\\"units\\\":\\\"mm\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Accumulated\n        canopy snow melt, accumulated over prior 60 minutes\\\",\\\"description\\\":\\\"acccumlated\n        QMELTC\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"acccumlated\n        QMELTC\\\"},\\\"ACRUNSB\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"mm\\\",\\\"attrs\\\":{\\\"units\\\":\\\"mm\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Accumulated\n        subsurface runoff, accumulated over prior 60 minutes\\\",\\\"description\\\":\\\"Accumulated\n        RUNSB\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"Accumulated\n        RUNSB\\\"},\\\"ACRUNSF\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"mm\\\",\\\"attrs\\\":{\\\"units\\\":\\\"mm\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Accumulated\n        surface runoff, accumulated over prior 60 minutes\\\",\\\"description\\\":\\\"Accumulated\n        RUNSF\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"Accumulated\n        RUNSF\\\"},\\\"ACSNBOT\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"mm\\\",\\\"attrs\\\":{\\\"units\\\":\\\"mm\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Accumulated\n        liquid water flux out of bottom of snowpack, accumulated over prior 60 minutes\\\",\\\"description\\\":\\\"acccumlated\n        QSNBOT\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"acccumlated\n        QSNBOT\\\"},\\\"ACSNFRO\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"mm\\\",\\\"attrs\\\":{\\\"units\\\":\\\"mm\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Accumulated\n        snowpack frost, accumulated over prior 60 minutes\\\",\\\"description\\\":\\\"acccumlated\n        QSNFRO\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"acccumlated\n        QSNFRO\\\"},\\\"ACSNSUB\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"mm\\\",\\\"attrs\\\":{\\\"units\\\":\\\"mm\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Accumulated\n        snowpack sublimation, accumulated over prior 60 minutes\\\",\\\"description\\\":\\\"acccumlated\n        QSNSUB\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"acccumlated\n        QSNSUB\\\"},\\\"ACSWDNB\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"J m-2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"J\n        m-2\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Accumulated downwelling shortwave radiation\n        flux at bottom, accumulated since last bucket_J (1.0e9 J m-2) reset\\\",\\\"description\\\":\\\"ACCUMULATED\n        DOWNWELLING SHORTWAVE FLUX AT BOTTOM\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"ACCUMULATED\n        DOWNWELLING SHORTWAVE FLUX AT BOTTOM\\\"},\\\"ACSWDNT\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"J\n        m-2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"J m-2\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Accumulated\n        downwelling shortwave radiation flux at top, accumulated since last bucket_J\n        (1.0e9 J m-2) reset\\\",\\\"description\\\":\\\"ACCUMULATED DOWNWELLING SHORTWAVE\n        FLUX AT TOP\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"ACCUMULATED\n        DOWNWELLING SHORTWAVE FLUX AT TOP\\\"},\\\"ACSWUPB\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"J\n        m-2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"J m-2\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Accumulated\n        upwelling shortwave radiation flux at bottom, accumulated since last bucket_J\n        (1.0e9 J m-2) reset\\\",\\\"description\\\":\\\"ACCUMULATED UPWELLING SHORTWAVE FLUX\n        AT BOTTOM\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"ACCUMULATED\n        UPWELLING SHORTWAVE FLUX AT BOTTOM\\\"},\\\"ACSWUPT\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"J\n        m-2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"J m-2\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Accumulated\n        upwelling shortwave radiation flux at top, accumulated since last bucket_J\n        (1.0e9 J m-2) reset\\\",\\\"description\\\":\\\"ACCUMULATED UPWELLING SHORTWAVE FLUX\n        AT TOP\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"ACCUMULATED\n        UPWELLING SHORTWAVE FLUX AT TOP\\\"},\\\"ACTHROR\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"mm\\\",\\\"attrs\\\":{\\\"units\\\":\\\"mm\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Accumulated\n        canopy rain throughfall, accumulated over prior 60 minutes\\\",\\\"description\\\":\\\"acccumlated\n        QTHROR\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"acccumlated\n        QTHROR\\\"},\\\"ACTHROS\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"mm\\\",\\\"attrs\\\":{\\\"units\\\":\\\"mm\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Accumulated\n        canopy snow throughfall, accumulated over prior 60 minutes\\\",\\\"description\\\":\\\"acccumlated\n        QTHROS\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"acccumlated\n        QTHROS\\\"},\\\"RAINNCV\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"mm\\\",\\\"attrs\\\":{\\\"units\\\":\\\"mm\\\",\\\"stagger\\\":\\\"\\\",\\\"description\\\":\\\"TIME-STEP\n        NONCONVECTIVE PRECIPITATION\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"TIME-STEP\n        NONCONVECTIVE PRECIPITATION\\\"},\\\"ACGHFLSM\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"kJ/m2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"kJ/m2\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Accumulated\n        total ground heat flux into soil or snowpack, accumulated over prior 60 minutes\\\",\\\"description\\\":\\\"acccumlated\n        total ground heat flux\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"acccumlated\n        total ground heat flux\\\"},\\\"ACLHFLSM\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"kJ/m2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"kJ/m2\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Accumulated\n        total latent heat flux, accumulated over prior 60 minutes\\\",\\\"description\\\":\\\"acccumlated\n        total latent heat flux\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"acccumlated\n        total latent heat flux\\\"},\\\"ACLWDNBC\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"J m-2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"J\n        m-2\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Accumulated downwelling clear sky longwave\n        radiation flux at bottom, accumulated since last bucket_J (1.0e9 J m-2) reset\\\",\\\"description\\\":\\\"ACCUMULATED\n        DOWNWELLING CLEAR SKY LONGWAVE FLUX AT BOTTOM\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"ACCUMULATED\n        DOWNWELLING CLEAR SKY LONGWAVE FLUX AT BOTTOM\\\"},\\\"ACLWDNTC\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"J\n        m-2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"J m-2\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Accumulated\n        downwelling clear sky longwave radiation flux at top, accumulated since last\n        bucket_J (1.0e9 J m-2) reset\\\",\\\"description\\\":\\\"ACCUMULATED DOWNWELLING CLEAR\n        SKY LONGWAVE FLUX AT TOP\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"ACCUMULATED\n        DOWNWELLING CLEAR SKY LONGWAVE FLUX AT TOP\\\"},\\\"ACLWUPBC\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"J\n        m-2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"J m-2\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Accumulated\n        upwelling clear sky longwave radiation flux at bottom, accumulated since last\n        bucket_J (1.0e9 J m-2) reset\\\",\\\"description\\\":\\\"ACCUMULATED UPWELLING CLEAR\n        SKY LONGWAVE FLUX AT BOTTOM\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"ACCUMULATED\n        UPWELLING CLEAR SKY LONGWAVE FLUX AT BOTTOM\\\"},\\\"ACLWUPTC\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"J\n        m-2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"J m-2\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Accumulated\n        upwelling clear sky longwave radiation flux at top, accumulated since last\n        bucket_J (1.0e9 J m-2) reset\\\",\\\"description\\\":\\\"ACCUMULATED UPWELLING CLEAR\n        SKY LONGWAVE FLUX AT TOP\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"ACCUMULATED\n        UPWELLING CLEAR SKY LONGWAVE FLUX AT TOP\\\"},\\\"ACPAHLSM\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"kJ/m2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"kJ/m2\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Accumulated\n        total precipitation heat flux advected to surface, accumulated over prior\n        60 minutes\\\",\\\"description\\\":\\\"acccumlated total precip heat flux\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"acccumlated\n        total precip heat flux\\\"},\\\"ACSHFLSM\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"kJ/m2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"kJ/m2\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Acccumlated\n        total sensible heat flux, accumulated over prior 60 minutes\\\",\\\"description\\\":\\\"acccumlated\n        total sensible heat flux\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"acccumlated\n        total sensible heat flux\\\"},\\\"ACSWDNBC\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"J m-2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"J\n        m-2\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Accumulated downwelling clear sky shortwave\n        radiation flux at bottom, accumulated since last bucket_J (1.0e9 J m-2) reset\\\",\\\"description\\\":\\\"ACCUMULATED\n        DOWNWELLING CLEAR SKY SHORTWAVE FLUX AT BOTTOM\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"ACCUMULATED\n        DOWNWELLING CLEAR SKY SHORTWAVE FLUX AT BOTTOM\\\"},\\\"ACSWDNTC\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"J\n        m-2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"J m-2\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Accumulated\n        downwelling clear sky shortwave radiation flux at top, accumulated since last\n        bucket_J (1.0e9 J m-2) reset\\\",\\\"description\\\":\\\"ACCUMULATED DOWNWELLING CLEAR\n        SKY SHORTWAVE FLUX AT TOP\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"ACCUMULATED\n        DOWNWELLING CLEAR SKY SHORTWAVE FLUX AT TOP\\\"},\\\"ACSWUPBC\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"J\n        m-2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"J m-2\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Accumulated\n        upwelling clear sky shortwave radiation flux at bottom, accumulated since\n        last bucket_J (1.0e9 J m-2) reset\\\",\\\"description\\\":\\\"ACCUMULATED UPWELLING\n        CLEAR SKY SHORTWAVE FLUX AT BOTTOM\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"ACCUMULATED\n        UPWELLING CLEAR SKY SHORTWAVE FLUX AT BOTTOM\\\"},\\\"ACSWUPTC\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"J\n        m-2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"J m-2\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Accumulated\n        upwelling clear sky shortwave radiation flux at top accumulated since last\n        bucket_J (1.0e9 J m-2) reset\\\",\\\"description\\\":\\\"ACCUMULATED UPWELLING CLEAR\n        SKY SHORTWAVE FLUX AT TOP\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"ACCUMULATED\n        UPWELLING CLEAR SKY SHORTWAVE FLUX AT TOP\\\"},\\\"FORCPLSM\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"Pa\\\",\\\"attrs\\\":{\\\"units\\\":\\\"Pa\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Lowest\n        model pressure into land surface model\\\",\\\"description\\\":\\\"lowest model P\n        into LSM\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"lowest\n        model P into LSM\\\"},\\\"FORCQLSM\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"kg/kg\\\",\\\"attrs\\\":{\\\"units\\\":\\\"kg/kg\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Lowest\n        model mixing ratio into land surface model\\\",\\\"description\\\":\\\"lowest model\n        Q into LSM\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"lowest\n        model Q into LSM\\\"},\\\"FORCTLSM\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"K\\\",\\\"attrs\\\":{\\\"units\\\":\\\"K\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Lowest\n        model temperature into land surface model\\\",\\\"description\\\":\\\"lowest model\n        T into LSM\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"lowest\n        model T into LSM\\\"},\\\"FORCWLSM\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"m/s\\\",\\\"attrs\\\":{\\\"units\\\":\\\"m/s\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Lowest\n        model wind speed into land surface model\\\",\\\"description\\\":\\\"lowest model\n        wind speed into LSM\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"lowest\n        model wind speed into LSM\\\"},\\\"FORCZLSM\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"m\\\",\\\"attrs\\\":{\\\"units\\\":\\\"m\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Lowest\n        model height above ground level into land surface model\\\",\\\"description\\\":\\\"lowest\n        model Z into LSM\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"lowest\n        model Z into LSM\\\"},\\\"QSPRINGS\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"mm\\\",\\\"attrs\\\":{\\\"units\\\":\\\"mm\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Accumulated\n        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\n        seeping water\\\"},\\\"REFL_COM\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"dbZ\\\",\\\"attrs\\\":{\\\"units\\\":\\\"dbZ\\\",\\\"stagger\\\":\\\"\\\",\\\"description\\\":\\\"COMPOSITE\n        REFLECTIVITY\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"COMPOSITE\n        REFLECTIVITY\\\"},\\\"totalIce\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"kg kg-1\\\",\\\"attrs\\\":{\\\"units\\\":\\\"kg\n        kg-1\\\",\\\"stagger\\\":\\\"\\\",\\\"sum_op_ncl\\\":\\\"dim_sum_n over dimension(s): bottom_top\\\",\\\"description\\\":\\\"Ice\n        mixing ratio\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"Ice\n        mixing ratio\\\"},\\\"totalLiq\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"kg kg-1\\\",\\\"attrs\\\":{\\\"units\\\":\\\"kg\n        kg-1\\\",\\\"stagger\\\":\\\"\\\",\\\"sum_op_ncl\\\":\\\"dim_sum_n over dimension(s): bottom_top\\\",\\\"description\\\":\\\"Cloud\n        water mixing ratio\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"Cloud\n        water mixing ratio\\\"},\\\"totalVap\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"kg kg-1\\\",\\\"attrs\\\":{\\\"units\\\":\\\"kg\n        kg-1\\\",\\\"stagger\\\":\\\"\\\",\\\"sum_op_ncl\\\":\\\"dim_sum_n over dimension(s): bottom_top\\\",\\\"description\\\":\\\"Water\n        vapor mixing ratio\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"Water\n        vapor mixing ratio\\\"},\\\"ACLWDNLSM\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"kJ/m2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"kJ/m2\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Accumulated\n        longwave downwelling radiation at land surface model, accumulated over prior\n        60 minutes\\\",\\\"description\\\":\\\"acccumlated LWDN\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"acccumlated\n        LWDN\\\"},\\\"ACLWUPLSM\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"kJ/m2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"kJ/m2\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Accumulated\n        longwave upwelling radiation at land surface model, accumulated over prior\n        60 minutes\\\",\\\"description\\\":\\\"acccumlated LWUP\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"acccumlated\n        LWUP\\\"},\\\"ACPONDING\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"mm\\\",\\\"attrs\\\":{\\\"units\\\":\\\"mm\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Accumulated\n        surface ponding from complete pack melt, accumulated over prior 60 minutes\\\",\\\"description\\\":\\\"acccumlated\n        PONDING\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"acccumlated\n        PONDING\\\"},\\\"ACRAINLSM\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"mm\\\",\\\"attrs\\\":{\\\"units\\\":\\\"mm\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Accumulated\n        liquid precipitation into land surface model, accumulated over prior 60 minutes\\\",\\\"description\\\":\\\"acccumlated\n        RAINLSM\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"acccumlated\n        RAINLSM\\\"},\\\"ACSNOWLSM\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"mm\\\",\\\"attrs\\\":{\\\"units\\\":\\\"mm\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Accumulated\n        frozen precipitation into land surface model, accumulated over prior 60 minutes\\\",\\\"description\\\":\\\"acccumlated\n        SNOWLSM\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"acccumlated\n        SNOWLSM\\\"},\\\"ACSWDNLSM\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"kJ/m2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"kJ/m2\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Accumulated\n        shortwave radiation down at land surface model, accumulated over prior 60\n        minutes\\\",\\\"description\\\":\\\"acccumlated SWDN\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"acccumlated\n        SWDN\\\"},\\\"ACSWUPLSM\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"kJ/m2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"kJ/m2\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Accumulated\n        shortwave radiation up at land surface model, accumulated over prior 60 minutes\\\",\\\"description\\\":\\\"acccumlated\n        SWUP\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"acccumlated\n        SWUP\\\"},\\\"I_ACLWDNB\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"J m-2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"J\n        m-2\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Bucket for downwelling longwave flux\n        at bottom accumulated since model start time\\\",\\\"description\\\":\\\"BUCKET FOR\n        DOWNWELLING LONGWAVE FLUX AT BOTTOM\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"BUCKET\n        FOR DOWNWELLING LONGWAVE FLUX AT BOTTOM\\\"},\\\"I_ACLWDNT\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"J\n        m-2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"J m-2\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Bucket\n        for downwelling longwave flux at top accumulated since model start time\\\",\\\"description\\\":\\\"BUCKET\n        FOR DOWNWELLING LONGWAVE FLUX AT TOP\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"BUCKET\n        FOR DOWNWELLING LONGWAVE FLUX AT TOP\\\"},\\\"I_ACLWUPB\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"J\n        m-2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"J m-2\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Bucket\n        for upwelling longwave flux at bottom accumulated since model start time\\\",\\\"description\\\":\\\"BUCKET\n        FOR UPWELLING LONGWAVE FLUX AT BOTTOM\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"BUCKET\n        FOR UPWELLING LONGWAVE FLUX AT BOTTOM\\\"},\\\"I_ACLWUPT\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"J\n        m-2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"J m-2\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Bucket\n        for upwelling longwave flux at top accumulated since model start time\\\",\\\"description\\\":\\\"BUCKET\n        FOR UPWELLING LONGWAVE FLUX AT TOP\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"BUCKET\n        FOR UPWELLING LONGWAVE FLUX AT TOP\\\"},\\\"I_ACSWDNB\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"J\n        m-2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"J m-2\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Bucket\n        for downwelling shortwave flux at bottom accumulated since model start time\\\",\\\"description\\\":\\\"BUCKET\n        FOR DOWNWELLING SHORTWAVE FLUX AT BOTTOM\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"BUCKET\n        FOR DOWNWELLING SHORTWAVE FLUX AT BOTTOM\\\"},\\\"I_ACSWDNT\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"J\n        m-2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"J m-2\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Bucket\n        for downwelling shortwave flux at top accumulated since model start time\\\",\\\"description\\\":\\\"BUCKET\n        FOR DOWNWELLING SHORTWAVE FLUX AT TOP\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"BUCKET\n        FOR DOWNWELLING SHORTWAVE FLUX AT TOP\\\"},\\\"I_ACSWUPB\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"J\n        m-2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"J m-2\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Bucket\n        for upwelling shortwave flux at bottom accumulated since model start time\\\",\\\"description\\\":\\\"BUCKET\n        FOR UPWELLING SHORTWAVE FLUX AT BOTTOM\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"BUCKET\n        FOR UPWELLING SHORTWAVE FLUX AT BOTTOM\\\"},\\\"I_ACSWUPT\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"J\n        m-2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"J m-2\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Bucket\n        for upwelling shortwave flux at top accumulated since model start time\\\",\\\"description\\\":\\\"BUCKET\n        FOR UPWELLING SHORTWAVE FLUX AT TOP\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"BUCKET\n        FOR UPWELLING SHORTWAVE FLUX AT TOP\\\"},\\\"REFL_10CM\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"dBZ\\\",\\\"attrs\\\":{\\\"units\\\":\\\"dBZ\\\",\\\"stagger\\\":\\\"\\\",\\\"description\\\":\\\"Radar\n        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\n        reflectivity (lamda = 10 cm)\\\"},\\\"ACRAINSNOW\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"mm\\\",\\\"attrs\\\":{\\\"units\\\":\\\"mm\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Acccumlated\n        rain on snow pack, accumulated over prior 60 minutes\\\",\\\"description\\\":\\\"acccumlated\n        rain on snow pack\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"acccumlated\n        rain on snow pack\\\"},\\\"I_ACLWDNBC\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"J m-2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"J\n        m-2\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Bucket for downwelling clear sky longwave\n        flux at bottom accumulated since model start time\\\",\\\"description\\\":\\\"BUCKET\n        FOR DOWNWELLING CLEAR SKY LONGWAVE FLUX AT BOTTOM\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"BUCKET\n        FOR DOWNWELLING CLEAR SKY LONGWAVE FLUX AT BOTTOM\\\"},\\\"I_ACLWDNTC\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"J\n        m-2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"J m-2\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Bucket\n        for downwelling clear sky longwave flux at top accumulated since model start\n        time\\\",\\\"description\\\":\\\"BUCKET FOR DOWNWELLING CLEAR SKY LONGWAVE FLUX AT\n        TOP\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"BUCKET\n        FOR DOWNWELLING CLEAR SKY LONGWAVE FLUX AT TOP\\\"},\\\"I_ACLWUPBC\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"J\n        m-2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"J m-2\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Bucket\n        for upwelling clear sky longwave flux at bottom accumulated since model start\n        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\n        FOR UPWELLING CLEAR SKY LONGWAVE FLUX AT BOTTOM\\\"},\\\"I_ACLWUPTC\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"J\n        m-2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"J m-2\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Bucket\n        for upwelling clear sky longwave flux at top accumulated since model start\n        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\n        FOR UPWELLING CLEAR SKY LONGWAVE FLUX AT TOP\\\"},\\\"I_ACSWDNBC\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"J\n        m-2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"J m-2\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Bucket\n        for downwelling clear sky shortwave flux at bottom accumulated since model\n        start time\\\",\\\"description\\\":\\\"BUCKET FOR DOWNWELLING CLEAR SKY SHORTWAVE\n        FLUX AT BOTTOM\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"BUCKET\n        FOR DOWNWELLING CLEAR SKY SHORTWAVE FLUX AT BOTTOM\\\"},\\\"I_ACSWDNTC\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"J\n        m-2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"J m-2\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Bucket\n        for downwelling clear sky shortwave flux at top accumulated since model start\n        time\\\",\\\"description\\\":\\\"BUCKET FOR DOWNWELLING CLEAR SKY SHORTWAVE FLUX AT\n        TOP\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"BUCKET\n        FOR DOWNWELLING CLEAR SKY SHORTWAVE FLUX AT TOP\\\"},\\\"I_ACSWUPBC\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"J\n        m-2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"J m-2\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Bucket\n        for upwelling clear sky shortwave flux at bottom accumulated since model start\n        time\\\",\\\"description\\\":\\\"BUCKET FOR UPWELLING CLEAR SKY SHORTWAVE FLUX AT\n        BOTTOM\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"BUCKET\n        FOR UPWELLING CLEAR SKY SHORTWAVE FLUX AT BOTTOM\\\"},\\\"I_ACSWUPTC\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"J\n        m-2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"J m-2\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Bucket\n        for upwelling clear sky shortwave flux at top accumulated since model start\n        time\\\",\\\"description\\\":\\\"BUCKET FOR UPWELLING CLEAR SKY SHORTWAVE FLUX AT\n        TOP\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"BUCKET\n        FOR UPWELLING CLEAR SKY SHORTWAVE FLUX AT TOP\\\"},\\\"SNOWENERGY\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"kJ/m2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"kJ/m2\\\",\\\"stagger\\\":\\\"\\\",\\\"description\\\":\\\"energy\n        content in snow relative to 273.16\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"energy\n        content in snow relative to 273.16\\\"},\\\"SOILENERGY\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"kJ/m2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"kJ/m2\\\",\\\"stagger\\\":\\\"\\\",\\\"description\\\":\\\"energy\n        content in soil relative to 273.16\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"energy\n        content in soil relative to 273.16\\\"},\\\"PREC_ACC_NC\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"mm\\\",\\\"attrs\\\":{\\\"units\\\":\\\"mm\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Accumulated\n        grid scale  precipitation , accumulated over prior 60 minutes\\\",\\\"description\\\":\\\"ACCUMULATED\n        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\n        GRID SCALE  PRECIPITATION OVER prec_acc_dt PERIODS OF TIME\\\"},\\\"SNOW_ACC_NC\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"mm\\\",\\\"attrs\\\":{\\\"units\\\":\\\"mm\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Accumulated\n        snow water equivalent, accumulated over prior 60 minutes\\\",\\\"description\\\":\\\"ACCUMULATED\n        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\n        SNOW WATER EQUIVALENT OVER prec_acc_dt PERIODS OF TIME\\\"},\\\"REFL_1KM_AGL\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"dbZ\\\",\\\"attrs\\\":{\\\"units\\\":\\\"dbZ\\\",\\\"stagger\\\":\\\"\\\",\\\"description\\\":\\\"1KM\n        AGL REFLECTIVITY\\\"},\\\"shape\\\":[376944,1015,1367],\\\"chunks\\\":[1,1015,1367],\\\"dimensions\\\":[\\\"time\\\",\\\"south_north\\\",\\\"west_east\\\"],\\\"description\\\":\\\"1KM\n        AGL REFLECTIVITY\\\"},\\\"GRAUPEL_ACC_NC\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"mm\\\",\\\"attrs\\\":{\\\"units\\\":\\\"mm\\\",\\\"stagger\\\":\\\"\\\",\\\"long_name\\\":\\\"Accumulated\n        graupel water equivalent, accumulated over prior 60 minutes\\\",\\\"description\\\":\\\"ACCUMULATED\n        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\n        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\n        index\\\"},\\\"bottom_top\\\":{\\\"type\\\":\\\"count\\\",\\\"extent\\\":[0,49],\\\"description\\\":\\\"bottom_top\n        index\\\"},\\\"south_north\\\":{\\\"type\\\":\\\"count\\\",\\\"extent\\\":[0,1014],\\\"description\\\":\\\"south_north\n        index\\\"},\\\"west_east_stag\\\":{\\\"type\\\":\\\"count\\\",\\\"extent\\\":[0,1367],\\\"description\\\":\\\"west_east_stag\n        index.\\\"},\\\"bottom_top_stag\\\":{\\\"type\\\":\\\"count\\\",\\\"extent\\\":[0,50],\\\"description\\\":\\\"bottom_top_stag\n        index\\\"},\\\"snow_layers_stag\\\":{\\\"type\\\":\\\"count\\\",\\\"extent\\\":[0,2],\\\"description\\\":\\\"snow\n        layer index.\\\"},\\\"snso_layers_stag\\\":{\\\"type\\\":\\\"count\\\",\\\"extent\\\":[0,6],\\\"description\\\":\\\"snso\n        layer index.\\\"},\\\"soil_layers_stag\\\":{\\\"type\\\":\\\"count\\\",\\\"extent\\\":[0,4],\\\"description\\\":\\\"soil\n        layer index.\\\"},\\\"south_north_stag\\\":{\\\"type\\\":\\\"count\\\",\\\"extent\\\":[0,1015],\\\"description\\\":\\\"south_north_stag\n        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\n        hydro-climate dataset for forcing hydrological models and meteorological analysis\n        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\n        BY 4.0\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/sentinel-1-rtc\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"Sentinel\n        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\n        1 RTC\\\"},\\\"geoparquet-items\\\":{\\\"href\\\":\\\"abfs://items/sentinel-1-rtc.parquet\\\",\\\"type\\\":\\\"application/x-parquet\\\",\\\"roles\\\":[\\\"stac-items\\\"],\\\"title\\\":\\\"GeoParquet\n        STAC items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        [Sentinel-1](https://sentinel.esa.int/web/sentinel/missions/sentinel-1) mission\n        is a constellation of two polar-orbiting satellites, operating day and night\n        performing C-band synthetic aperture radar imaging. The Sentinel-1 Radiometrically\n        Terrain Corrected (RTC) data in this collection is a radiometrically terrain\n        corrected product derived from the [Ground Range Detected (GRD) Level-1](https://planetarycomputer.microsoft.com/dataset/sentinel-1-grd)\n        products produced by the European Space Agency. The RTC processing is performed\n        by [Catalyst](https://catalyst.earth/).\\\\n\\\\nRadiometric Terrain Correction\n        accounts for terrain variations that affect both the position of a given point\n        on the Earth's surface and the brightness of the radar return, as expressed\n        in radar geometry. Without treatment, the hill-slope modulations of the radiometry\n        threaten to overwhelm weaker thematic land cover-induced backscatter differences.\n        Additionally, comparison of backscatter from multiple satellites, modes, or\n        tracks loses meaning.\\\\n\\\\nA Planetary Computer account is required to retrieve\n        SAS tokens to read the RTC data. See the [documentation](http://planetarycomputer.microsoft.com/docs/concepts/sas/#when-an-account-is-needed)\n        for more information.\\\\n\\\\n### Methodology\\\\n\\\\nThe Sentinel-1 GRD product\n        is converted to calibrated intensity using the conversion algorithm described\n        in the ESA technical note ESA-EOPG-CSCOP-TN-0002, [Radiometric Calibration\n        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).\n        The flat earth calibration values for gamma correction (i.e. perpendicular\n        to the radar line of sight) are extracted from the GRD metadata. The calibration\n        coefficients are applied as a two-dimensional correction in range (by sample\n        number) and azimuth (by time). All available polarizations are calibrated\n        and written as separate layers of a single file. The calibrated SAR output\n        is reprojected to nominal map orientation with north at the top and west to\n        the left.\\\\n\\\\nThe data is then radiometrically terrain corrected using PlanetDEM\n        as the elevation source. The correction algorithm is nominally based upon\n        D. Small, [\\u201CFlattening Gamma: Radiometric Terrain Correction for SAR\n        Imagery\\u201D](https://ai4edatasetspublicassets.blob.core.windows.net/assets/pdfs/sentinel-1/2011_Flattening_Gamma.pdf),\n        IEEE Transactions on Geoscience and Remote Sensing, Vol 49, No 8., August\n        2011, pp 3081-3093. For each image scan line, the digital elevation model\n        is interpolated to determine the elevation corresponding to the position associated\n        with the known near slant range distance and arc length for each input pixel.\n        The elevations at the four corners of each pixel are estimated using bilinear\n        resampling. The four elevations are divided into two triangular facets and\n        reprojected onto the plane perpendicular to the radar line of sight to provide\n        an estimate of the area illuminated by the radar for each earth flattened\n        pixel. The uncalibrated sum at each earth flattened pixel is normalized by\n        dividing by the flat earth surface area. The adjustment for gamma intensity\n        is given by dividing the normalized result by the cosine of the incident angle.\n        Pixels which are not illuminated by the radar due to the viewing geometry\n        are flagged as shadow.\\\\n\\\\nCalibrated data is then orthorectified to the\n        appropriate UTM projection. The orthorectified output maintains the original\n        sample sizes (in range and azimuth) and was not shifted to any specific grid.\\\\n\\\\nRTC\n        data is processed only for the Interferometric Wide Swath (IW) mode, which\n        is the main acquisition mode over land and satisfies the majority of service\n        requirements.\\\\n\\\",\\\"item_assets\\\":{\\\"hh\\\":{\\\"type\\\":\\\"image/tiff; application=geotiff;\n        profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"HH: horizontal\n        transmit, horizontal receive\\\",\\\"description\\\":\\\"Terrain-corrected gamma naught\n        values of signal transmitted with horizontal polarization and received with\n        horizontal polarization with radiometric terrain correction applied.\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":-32768,\\\"data_type\\\":\\\"float32\\\",\\\"spatial_resolution\\\":10}]},\\\"hv\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"HV:\n        horizontal transmit, vertical receive\\\",\\\"description\\\":\\\"Terrain-corrected\n        gamma naught values of signal transmitted with horizontal polarization and\n        received with vertical polarization with radiometric terrain correction applied.\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":-32768,\\\"data_type\\\":\\\"float32\\\",\\\"spatial_resolution\\\":10}]},\\\"vh\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"VH:\n        vertical transmit, horizontal receive\\\",\\\"description\\\":\\\"Terrain-corrected\n        gamma naught values of signal transmitted with vertical polarization and received\n        with horizontal polarization with radiometric terrain correction applied.\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":-32768,\\\"data_type\\\":\\\"float32\\\",\\\"spatial_resolution\\\":10}]},\\\"vv\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"VV:\n        vertical transmit, vertical receive\\\",\\\"description\\\":\\\"Terrain-corrected\n        gamma naught values of signal transmitted with vertical polarization and received\n        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\n        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\n        3DEP Products & Services\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/3dep-lidar-intensity\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"USGS\n        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\n        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\n        collection is derived from the [USGS 3DEP COPC collection](https://planetarycomputer.microsoft.com/dataset/3dep-lidar-copc).\n        It is a collection of Cloud Optimized GeoTIFFs representing the pulse return\n        magnitude.\\\\n\\\\nThe values are based on the Intensity [PDAL dimension](https://pdal.io/dimensions.html)\n        and uses [`pdal.filters.outlier`](https://pdal.io/stages/filters.outlier.html#filters-outlier)\n        and [`pdal.filters.range`](https://pdal.io/stages/filters.range.html#filters-range)\n        to remove outliers and noise.\\\",\\\"item_assets\\\":{\\\"data\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"COG\n        data\\\",\\\"raster:bands\\\":[{\\\"name\\\":\\\"Intensity\\\",\\\"unit\\\":\\\"metre\\\",\\\"sampling\\\":\\\"point\\\",\\\"data_type\\\":\\\"uint16\\\",\\\"description\\\":\\\"Intensity\n        PDAL dimension\\\"}]},\\\"thumbnail\\\":{\\\"type\\\":\\\"image/png\\\",\\\"roles\\\":[\\\"thumbnail\\\"],\\\"title\\\":\\\"3DEP\n        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\n        Lidar collection for the Cloud Optimized Geotiffs (COGs) based on the Intensity\n        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\n        3DEP Products & Services\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/3dep-lidar-pointsourceid\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"USGS\n        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\n        Lidar COG\\\"},\\\"geoparquet-items\\\":{\\\"href\\\":\\\"abfs://items/3dep-lidar-pointsourceid.parquet\\\",\\\"type\\\":\\\"application/x-parquet\\\",\\\"roles\\\":[\\\"stac-items\\\"],\\\"title\\\":\\\"GeoParquet\n        STAC items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        collection is derived from the [USGS 3DEP COPC collection](https://planetarycomputer.microsoft.com/dataset/3dep-lidar-copc).\n        It is a collection of Cloud Optimized GeoTIFFs representing the file source\n        ID from which the point originated. Zero indicates that the point originated\n        in the current file.\\\\n\\\\nThis values are based on the PointSourceId [PDAL\n        dimension](https://pdal.io/dimensions.html) and uses [`pdal.filters.outlier`](https://pdal.io/stages/filters.outlier.html#filters-outlier)\n        and [`pdal.filters.range`](https://pdal.io/stages/filters.range.html#filters-range)\n        to remove outliers and noise.\\\",\\\"item_assets\\\":{\\\"data\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"COG\n        data\\\",\\\"raster:bands\\\":[{\\\"name\\\":\\\"PointSourceId\\\",\\\"unit\\\":\\\"metre\\\",\\\"sampling\\\":\\\"point\\\",\\\"data_type\\\":\\\"int32\\\",\\\"description\\\":\\\"PointSourceId\n        PDAL dimension\\\"}]},\\\"thumbnail\\\":{\\\"type\\\":\\\"image/png\\\",\\\"roles\\\":[\\\"thumbnail\\\"],\\\"title\\\":\\\"3DEP\n        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\n        Lidar collection for Cloud Optimized Geotiffs (COGs) using PDAL's PointSourceId\n        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\n        BY\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/mtbs\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"MTBS:\n        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\n        STAC items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        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\n        Trends in Burn Severity](https://www.mtbs.gov/) (MTBS) is an inter-agency\n        program whose goal is to consistently map the burn severity and extent of\n        large fires across the United States from 1984 to the present. This includes\n        all fires 1000 acres or greater in the Western United States and 500 acres\n        or greater in the Eastern United States.  The burn severity mosaics in this\n        dataset consist of thematic raster images of MTBS burn severity classes for\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Burn\n        severity\\\",\\\"file:values\\\":[{\\\"values\\\":[0],\\\"summary\\\":\\\"No Data\\\"},{\\\"values\\\":[1],\\\"summary\\\":\\\"Unburned\n        to low\\\"},{\\\"values\\\":[2],\\\"summary\\\":\\\"Low\\\"},{\\\"values\\\":[3],\\\"summary\\\":\\\"Moderate\\\"},{\\\"values\\\":[4],\\\"summary\\\":\\\"High\\\"},{\\\"values\\\":[5],\\\"summary\\\":\\\"Increased\n        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\n        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\n        - C-CAP Products\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://coast.noaa.gov/data/digitalcoast/pdf/ccap-faq-regional.pdf\\\",\\\"type\\\":\\\"application/pdf\\\",\\\"title\\\":\\\"Frequently\n        Asked Questions\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://coast.noaa.gov/data/digitalcoast/pdf/ccap-class-scheme-regional.pdf\\\",\\\"type\\\":\\\"application/pdf\\\",\\\"title\\\":\\\"C-CAP\n        Classification Scheme and Class Definitions\\\"},{\\\"rel\\\":\\\"license\\\",\\\"href\\\":\\\"https://coast.noaa.gov/digitalcoast/data/ccapregional.html\\\",\\\"type\\\":\\\"text/html\\\",\\\"title\\\":\\\"C-CAP\n        Regional Land Cover and Change\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/noaa-c-cap\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"C-CAP\n        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\n        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\n        C-CAP\\\"},\\\"geoparquet-items\\\":{\\\"href\\\":\\\"abfs://items/noaa-c-cap.parquet\\\",\\\"type\\\":\\\"application/x-parquet\\\",\\\"roles\\\":[\\\"stac-items\\\"],\\\"title\\\":\\\"GeoParquet\n        STAC items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        Cover\\\",\\\"Land Use\\\",\\\"NOAA\\\",\\\"Coastal\\\"],\\\"providers\\\":[{\\\"url\\\":\\\"https://coast.noaa.gov/digitalcoast/data/ccapregional.html\\\",\\\"name\\\":\\\"National\n        Oceanic and Atmospheric Administration, Office for Coastal Management\\\",\\\"roles\\\":[\\\"licensor\\\",\\\"producer\\\",\\\"processor\\\"]},{\\\"url\\\":\\\"https//planetarycomputer.microsoft.com\\\",\\\"name\\\":\\\"Microsoft\\\",\\\"roles\\\":[\\\"host\\\"]}],\\\"description\\\":\\\"Nationally\n        standardized, raster-based inventories of land cover for the coastal areas\n        of the U.S.  Data are derived, through the Coastal Change Analysis Program,\n        from the analysis of multiple dates of remotely sensed imagery.  Two file\n        types are available: individual dates that supply a wall-to-wall map, and\n        change files that compare one date to another.  The use of standardized data\n        and procedures assures consistency through time and across geographies.  C-CAP\n        data forms the coastal expression of the National Land Cover Database (NLCD)\n        and the A-16 land cover theme of the National Spatial Data Infrastructure.\n        \\ The data are updated every 5 years.\\\",\\\"item_assets\\\":{\\\"data\\\":{\\\"type\\\":\\\"image/tiff;\n        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\n        (Cloud, Shadow, etc)\\\"},{\\\"value\\\":2,\\\"color-hint\\\":\\\"FFFFFF\\\",\\\"description\\\":\\\"High\n        Intensity Developed\\\"},{\\\"value\\\":3,\\\"color-hint\\\":\\\"C1C1C1\\\",\\\"description\\\":\\\"Medium\n        Intensity Developed\\\"},{\\\"value\\\":4,\\\"color-hint\\\":\\\"979797\\\",\\\"description\\\":\\\"Low\n        Intensity Developed\\\"},{\\\"value\\\":5,\\\"color-hint\\\":\\\"CCCA42\\\",\\\"description\\\":\\\"Developed\n        Open Space\\\"},{\\\"value\\\":6,\\\"color-hint\\\":\\\"4E2409\\\",\\\"description\\\":\\\"Cultivated\n        Crops\\\"},{\\\"value\\\":7,\\\"color-hint\\\":\\\"BCA05B\\\",\\\"description\\\":\\\"Pasture/Hay\\\"},{\\\"value\\\":8,\\\"color-hint\\\":\\\"EABB8E\\\",\\\"description\\\":\\\"Grassland/Herbaceous\\\"},{\\\"value\\\":9,\\\"color-hint\\\":\\\"6FEC48\\\",\\\"description\\\":\\\"Deciduous\n        Forest\\\"},{\\\"value\\\":10,\\\"color-hint\\\":\\\"15380A\\\",\\\"description\\\":\\\"Evergreen\n        Forest\\\"},{\\\"value\\\":11,\\\"color-hint\\\":\\\"489D48\\\",\\\"description\\\":\\\"Mixed\n        Forest\\\"},{\\\"value\\\":12,\\\"color-hint\\\":\\\"6D6C1F\\\",\\\"description\\\":\\\"Scrub/Shrub\\\"},{\\\"value\\\":13,\\\"color-hint\\\":\\\"245A5A\\\",\\\"description\\\":\\\"Palustrine\n        Forested Wetland\\\"},{\\\"value\\\":14,\\\"color-hint\\\":\\\"E2742D\\\",\\\"description\\\":\\\"Palustrine\n        Scrub/Shrub Wetland\\\"},{\\\"value\\\":15,\\\"color-hint\\\":\\\"DE3BEA\\\",\\\"description\\\":\\\"Palustrine\n        Emergent Wetland (Persistent)\\\"},{\\\"value\\\":16,\\\"color-hint\\\":\\\"37083B\\\",\\\"description\\\":\\\"Estuarine\n        Forested Wetland\\\"},{\\\"value\\\":17,\\\"color-hint\\\":\\\"631569\\\",\\\"description\\\":\\\"Estuarine\n        Scrub/Shrub Wetland\\\"},{\\\"value\\\":18,\\\"color-hint\\\":\\\"A028A9\\\",\\\"description\\\":\\\"Estuarine\n        Emergent Wetland\\\"},{\\\"value\\\":19,\\\"color-hint\\\":\\\"6DEEF0\\\",\\\"description\\\":\\\"Unconsolidated\n        Shore\\\"},{\\\"value\\\":20,\\\"color-hint\\\":\\\"F3F050\\\",\\\"description\\\":\\\"Bare Land\\\"},{\\\"value\\\":21,\\\"color-hint\\\":\\\"000A72\\\",\\\"description\\\":\\\"Open\n        Water\\\"},{\\\"value\\\":22,\\\"color-hint\\\":\\\"0021E8\\\",\\\"description\\\":\\\"Palustrine\n        Aquatic Bed\\\"},{\\\"value\\\":23,\\\"color-hint\\\":\\\"6777D4\\\",\\\"description\\\":\\\"Estuarine\n        Aquatic Bed\\\"},{\\\"value\\\":24,\\\"color-hint\\\":\\\"F3D147\\\",\\\"description\\\":\\\"Tundra\\\"},{\\\"value\\\":25,\\\"color-hint\\\":\\\"BBF7EF\\\",\\\"description\\\":\\\"Perennial\n        Ice/Snow\\\"}]},\\\"metadata\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"]}},\\\"sci:citation\\\":\\\"National\n        Oceanic and Atmospheric Administration, Office for Coastal Management. Name\n        of Data Set: Coastal Change Analysis Program (C-CAP) Regional Land Cover.\n        Charleston, SC: NOAA Office for Coastal Management. Accessed April 2022 at\n        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\n        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\n        3DEP Products & Services\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/3dep-lidar-copc\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"USGS\n        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\n        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\n        collection contains source data from the [USGS 3DEP program](https://www.usgs.gov/3d-elevation-program)\n        reformatted into the [COPC](https://copc.io) format. A COPC file is a LAZ\n        1.4 file that stores point data organized in a clustered octree. It contains\n        a VLR that describes the octree organization of data that are stored in LAZ\n        1.4 chunks. The end product is a one-to-one mapping of LAZ to UTM-reprojected\n        COPC files.\\\\n\\\\nLAZ data is geospatial [LiDAR point cloud](https://en.wikipedia.org/wiki/Point_cloud)\n        (LPC) content stored in the compressed [LASzip](https://laszip.org?) format.\n        Data were reorganized and stored in LAZ-compatible [COPC](https://copc.io)\n        organization for use in Planetary Computer, which supports incremental spatial\n        access and cloud streaming.\\\\n\\\\nLPC can be summarized for construction of\n        digital terrain models (DTM), filtered for extraction of features like vegetation\n        and buildings, and visualized to provide a point cloud map of the physical\n        spaces the laser scanner interacted with. LPC content from 3DEP is used to\n        compute and extract a variety of landscape characterization products, and\n        some of them are provided by Planetary Computer, including Height Above Ground,\n        Relative Intensity Image, and DTM and Digital Surface Models.\\\\n\\\\nThe LAZ\n        tiles represent a one-to-one mapping of original tiled content as provided\n        by the [USGS 3DEP program](https://www.usgs.gov/3d-elevation-program), with\n        the exception that the data were reprojected and normalized into appropriate\n        UTM zones for their location without adjustment to the vertical datum. In\n        some cases, vertical datum description may not match actual data values, especially\n        for pre-2010 USGS 3DEP point cloud data.\\\\n\\\\nIn addition to these COPC files,\n        various higher-level derived products are available as Cloud Optimized GeoTIFFs\n        in [other collections](https://planetarycomputer.microsoft.com/dataset/group/3dep-lidar).\\\",\\\"item_assets\\\":{\\\"data\\\":{\\\"type\\\":\\\"application/vnd.laszip+copc\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"COPC\n        data\\\",\\\"pc:type\\\":\\\"lidar\\\",\\\"pc:encoding\\\":\\\"application/vnd.laszip+copc\\\"},\\\"thumbnail\\\":{\\\"type\\\":\\\"image/png\\\",\\\"roles\\\":[\\\"thumbnail\\\"],\\\"title\\\":\\\"3DEP\n        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\n        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\n        User Guide\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MCD64A1\\\",\\\"title\\\":\\\"MCD64A1\n        file specification\\\"},{\\\"rel\\\":\\\"cite-as\\\",\\\"href\\\":\\\"https://doi.org/10.5067/MODIS/MCD64A1.061\\\",\\\"title\\\":\\\"LP\n        DAAC - MCD64A1\\\"},{\\\"rel\\\":\\\"license\\\",\\\"href\\\":\\\"https://lpdaac.usgs.gov/data/data-citation-and-policies/\\\",\\\"title\\\":\\\"LP\n        DAAC - Data Citation and Policies\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/modis-64A1-061\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"MODIS\n        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\n        Burned Area Monthly thumbnail\\\"},\\\"geoparquet-items\\\":{\\\"href\\\":\\\"abfs://items/modis-64A1-061.parquet\\\",\\\"type\\\":\\\"application/x-parquet\\\",\\\"roles\\\":[\\\"stac-items\\\"],\\\"title\\\":\\\"GeoParquet\n        STAC items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        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\n        Terra and Aqua combined MCD64A1 Version 6.1 Burned Area data product is a\n        monthly, global gridded 500 meter (m) product containing per-pixel burned-area\n        and quality information. The MCD64A1 burned-area mapping approach employs\n        500 m Moderate Resolution Imaging Spectroradiometer (MODIS) Surface Reflectance\n        imagery coupled with 1 kilometer (km) MODIS active fire observations. The\n        algorithm uses a burn sensitive Vegetation Index (VI) to create dynamic thresholds\n        that are applied to the composite data. The VI is derived from MODIS shortwave\n        infrared atmospherically corrected surface reflectance bands 5 and 7 with\n        a measure of temporal texture. The algorithm identifies the date of burn for\n        the 500 m grid cells within each individual MODIS tile. The date is encoded\n        in a single data layer as the ordinal day of the calendar year on which the\n        burn occurred with values assigned to unburned land pixels and additional\n        special values reserved for missing data and water grid cells. The data layers\n        provided in the MCD64A1 product include Burn Date, Burn Data Uncertainty,\n        Quality Assurance, along with First Day and Last Day of reliable change detection\n        of the year.\\\",\\\"item_assets\\\":{\\\"QA\\\":{\\\"type\\\":\\\"image/tiff; application=geotiff;\n        profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Quality Assurance\n        Indicators\\\",\\\"raster:bands\\\":[{\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":500}]},\\\"hdf\\\":{\\\"type\\\":\\\"application/x-hdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Source\n        data containing all bands\\\"},\\\"Last_Day\\\":{\\\"type\\\":\\\"image/tiff; application=geotiff;\n        profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Last day of the\n        year of reliable change detection\\\",\\\"raster:bands\\\":[{\\\"unit\\\":\\\"Day\\\",\\\"data_type\\\":\\\"int16\\\",\\\"spatial_resolution\\\":500}]},\\\"metadata\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"Federal\n        Geographic Data Committee (FGDC) Metadata\\\"},\\\"Burn_Date\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Burn\n        day of year\\\",\\\"raster:bands\\\":[{\\\"unit\\\":\\\"Day\\\",\\\"data_type\\\":\\\"int16\\\",\\\"spatial_resolution\\\":500}]},\\\"First_Day\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"First\n        day of the year of reliable change detection\\\",\\\"raster:bands\\\":[{\\\"unit\\\":\\\"Day\\\",\\\"data_type\\\":\\\"int16\\\",\\\"spatial_resolution\\\":500}]},\\\"Burn_Date_Uncertainty\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Estimated\n        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,\n        L., Justice, C., Boschetti, L., &amp; Roy, D. (2021). <i>MODIS/Terra+Aqua\n        Burned Area Monthly L3 Global 500m SIN Grid V061</i> [Data set]. NASA EOSDIS\n        Land Processes DAAC. https://doi.org/10.5067/MODIS/MCD64A1.061\\\"}],\\\"msft:storage_account\\\":\\\"modiseuwest\\\",\\\"msft:short_description\\\":\\\"MODIS\n        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\n        25 m Resolution PALSAR-2/PALSAR Forest/Non-Forest Map (FNF)\\\",\\\"description\\\":\\\"Also\n        includes data usage information\\\"},{\\\"rel\\\":\\\"license\\\",\\\"href\\\":\\\"https://earth.jaxa.jp/policy/en.html\\\",\\\"type\\\":\\\"text/html\\\",\\\"title\\\":\\\"JAXA\n        Terms of Use of Research Data\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/alos-fnf-mosaic\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"ALOS\n        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\n        PALSAR MOSAIC\\\"},\\\"geoparquet-items\\\":{\\\"href\\\":\\\"abfs://items/alos-fnf-mosaic.parquet\\\",\\\"type\\\":\\\"application/x-parquet\\\",\\\"roles\\\":[\\\"stac-items\\\"],\\\"title\\\":\\\"GeoParquet\n        STAC items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        Cover\\\",\\\"Global\\\"],\\\"providers\\\":[{\\\"url\\\":\\\"https://www.eorc.jaxa.jp/ALOS/en/dataset/fnf_e.htm\\\",\\\"name\\\":\\\"Japan\n        Aerospace Exploration Agency\\\",\\\"roles\\\":[\\\"producer\\\",\\\"processor\\\",\\\"licensor\\\"]},{\\\"url\\\":\\\"https://developmentseed.org\\\",\\\"name\\\":\\\"Development\n        Seed\\\",\\\"roles\\\":[\\\"processor\\\"]},{\\\"url\\\":\\\"https://planetarycomputer.microsoft.com\\\",\\\"name\\\":\\\"Microsoft\n        Planetary Computer\\\",\\\"roles\\\":[\\\"host\\\",\\\"processor\\\"]}],\\\"summaries\\\":{\\\"platform\\\":[\\\"ALOS\\\",\\\"ALOS-2\\\"],\\\"instruments\\\":[\\\"PALSAR\\\",\\\"PALSAR-2\\\"]},\\\"description\\\":\\\"The\n        global 25m resolution SAR mosaics and forest/non-forest maps are free and\n        open annual datasets generated by [JAXA](https://www.eorc.jaxa.jp/ALOS/en/dataset/fnf_e.htm)\n        using the L-band Synthetic Aperture Radar sensors on the Advanced Land Observing\n        Satellite-2 (ALOS-2 PALSAR-2), the Advanced Land Observing Satellite (ALOS\n        PALSAR) and the Japanese Earth Resources Satellite-1 (JERS-1 SAR).\\\\n\\\\nThe\n        global forest/non-forest maps (FNF) were generated by a Random Forest machine\n        learning-based classification method, with the re-processed global 25m resolution\n        [PALSAR-2 mosaic dataset](https://planetarycomputer.microsoft.com/dataset/alos-palsar-mosaic)\n        (Ver. 2.0.0) as input. Here, the \\\\\\\"forest\\\\\\\" is defined as the tree covered\n        land with an area larger than 0.5 ha and a canopy cover of over 10 %, in accordance\n        with the FAO definition of forest. The classification results are presented\n        in four categories, with two categories of forest areas: forests with a canopy\n        cover of 90 % or more and forests with a canopy cover of 10 % to 90 %, depending\n        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)\n        for more details.\\\\n\\\",\\\"item_assets\\\":{\\\"C\\\":{\\\"role\\\":\\\"data\\\",\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"C\\\",\\\"description\\\":\\\"Forest\n        vs Non-Forest classification\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint8\\\"}],\\\"classification:classes\\\":[{\\\"name\\\":\\\"no_data\\\",\\\"value\\\":0,\\\"description\\\":\\\"No\n        data\\\"},{\\\"name\\\":\\\"forest (>90%)\\\",\\\"value\\\":1,\\\"description\\\":\\\"Forest (>90%\n        canopy cover)\\\"},{\\\"name\\\":\\\"forest (10-90%)\\\",\\\"value\\\":2,\\\"description\\\":\\\"Forest\n        (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\n        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\n        3DEP Products & Services\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/3dep-lidar-returns\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"USGS\n        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\n        Lidar COG\\\"},\\\"geoparquet-items\\\":{\\\"href\\\":\\\"abfs://items/3dep-lidar-returns.parquet\\\",\\\"type\\\":\\\"application/x-parquet\\\",\\\"roles\\\":[\\\"stac-items\\\"],\\\"title\\\":\\\"GeoParquet\n        STAC items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        collection is derived from the [USGS 3DEP COPC collection](https://planetarycomputer.microsoft.com/dataset/3dep-lidar-copc).\n        It is a collection of Cloud Optimized GeoTIFFs representing the number of\n        returns for a given pulse.\\\\n\\\\nThis values are based on the PointSourceId\n        [PDAL dimension](https://pdal.io/dimensions.html) and uses [`pdal.filters.outlier`](https://pdal.io/stages/filters.outlier.html#filters-outlier)\n        and [`pdal.filters.range`](https://pdal.io/stages/filters.range.html#filters-range)\n        to remove outliers and noise.\\\\n\\\\nThe values are based on the NumberOfReturns\n        [PDAL dimension](https://pdal.io/dimensions.html) and uses [`pdal.filters.outlier`](https://pdal.io/stages/filters.outlier.html#filters-outlier)\n        and [`pdal.filters.range`](https://pdal.io/stages/filters.range.html#filters-range)\n        to remove outliers and noise.\\\",\\\"item_assets\\\":{\\\"data\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"COG\n        data\\\",\\\"raster:bands\\\":[{\\\"name\\\":\\\"ReturnNumber\\\",\\\"unit\\\":\\\"metre\\\",\\\"sampling\\\":\\\"point\\\",\\\"data_type\\\":\\\"int16\\\",\\\"description\\\":\\\"Raster\n        for ReturnNumber PDAL dimension\\\"}]},\\\"thumbnail\\\":{\\\"type\\\":\\\"image/png\\\",\\\"roles\\\":[\\\"thumbnail\\\"],\\\"title\\\":\\\"3DEP\n        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\n        Lidar collection for the Cloud Optimized Geotiffs (COGs) based on the ReturnNumber\n        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\n        MoBI license\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/mobi\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"MoBI:\n        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\n        STAC items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        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\n        [Map of Biodiversity Importance](https://www.natureserve.org/conservation-tools/projects/map-biodiversity-importance)\n        (MoBI) consists of raster maps that combine habitat information for 2,216\n        imperiled species occurring in the conterminous United States, using weightings\n        based on range size and degree of protection to identify areas of high importance\n        for biodiversity conservation. Species included in the project are those which,\n        as of September 2018, had a global conservation status of G1 (critical imperiled)\n        or G2 (imperiled) or which are listed as threatened or endangered at the full\n        species level under the United States Endangered Species Act. Taxonomic groups\n        included in the project are vertebrates (birds, mammals, amphibians, reptiles,\n        turtles, crocodilians, and freshwater and anadromous fishes), vascular plants,\n        selected aquatic invertebrates (freshwater mussels and crayfish) and selected\n        pollinators (bumblebees, butterflies, and skippers).\\\\n\\\\nThere are three\n        types of spatial data provided, described in more detail below: species richness,\n        range-size rarity, and protection-weighted range-size rarity.  For each type,\n        this data set includes five different layers &ndash; one for all species combined,\n        and four additional layers that break the data down by taxonomic group (vertebrates,\n        plants, freshwater invertebrates, and pollinators) &ndash; for a total of\n        fifteen layers.\\\\n\\\\nThese data layers are intended to identify areas of high\n        potential value for on-the-ground biodiversity protection efforts. As a synthesis\n        of predictive models, they cannot guarantee either the presence or absence\n        of imperiled species at a given location. For site-specific decision-making,\n        these data should be used in conjunction with field surveys and/or documented\n        occurrence data, such as is available from the [NatureServe Network](https://www.natureserve.org/natureserve-network).\\\\n\\\",\\\"item_assets\\\":{\\\"RSR_All\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Range-size\n        rarity for all species\\\"},\\\"RSR_Plants\\\":{\\\"type\\\":\\\"image/tiff; application=geotiff;\n        profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Range-size rarity\n        for vascular plants\\\"},\\\"RSR_Vertebrates\\\":{\\\"type\\\":\\\"image/tiff; application=geotiff;\n        profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Range-size rarity\n        for vertebrates\\\"},\\\"RSR_AquaticInverts\\\":{\\\"type\\\":\\\"image/tiff; application=geotiff;\n        profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Range-size rarity\n        for aquatic invertebrates\\\"},\\\"PWRSR_GAP12_SUM_All\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Protection-weighted\n        range-size rarity for all species\\\"},\\\"SpeciesRichness_All\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Species\n        richness for all species\\\"},\\\"RSR_PollinatorInverts\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Range-size\n        rarity for pollinators\\\"},\\\"PWRSR_GAP12_SUM_Plants\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Protection-weighted\n        range-size rarity for vascular plants\\\"},\\\"SpeciesRichness_Plants\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Species\n        richness for vascular plants\\\"},\\\"PWRSR_GAP12_SUM_Vertebrates\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Protection-weighted\n        range-size rarity for vertebrates\\\"},\\\"SpeciesRichness_Vertebrates\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Species\n        richness for vertebrates\\\"},\\\"PWRSR_GAP12_SUM_AquaticInverts\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Protection-weighted\n        range-size rarity for aquatic invertebrates\\\"},\\\"SpeciesRichness_AquaticInverts\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Species\n        richness for aquatic invertebrates\\\"},\\\"PWRSR_GAP12_SUM_PollinatorInverts\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Protection-weighted\n        range-size rarity for pollinators\\\"},\\\"SpeciesRichness_PollinatorInverts\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Species\n        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\n        information for 2,216 imperiled species occurring in the continental United\n        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\n        4-5 TM Collection 2 Level-2\\\"},{\\\"rel\\\":\\\"cite-as\\\",\\\"href\\\":\\\"https://doi.org/10.5066/P9C7I13B\\\",\\\"title\\\":\\\"Landsat\n        7 ETM+ Collection 2 Level-2\\\"},{\\\"rel\\\":\\\"cite-as\\\",\\\"href\\\":\\\"https://doi.org/10.5066/P9OGBGM6\\\",\\\"title\\\":\\\"Landsat\n        8-9 OLI/TIRS Collection 2 Level-2\\\"},{\\\"rel\\\":\\\"license\\\",\\\"href\\\":\\\"https://www.usgs.gov/core-science-systems/hdds/data-policy\\\",\\\"title\\\":\\\"Public\n        Domain\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/landsat-c2-l2\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"Landsat\n        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\n        Collection 2 Level-2 thumbnail\\\"},\\\"geoparquet-items\\\":{\\\"href\\\":\\\"abfs://items/landsat-c2-l2.parquet\\\",\\\"type\\\":\\\"application/x-parquet\\\",\\\"roles\\\":[\\\"stac-items\\\"],\\\"title\\\":\\\"GeoParquet\n        STAC items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        blue (Thematic Mapper)\\\",\\\"center_wavelength\\\":0.49,\\\"full_width_half_max\\\":0.07},{\\\"name\\\":\\\"TM_B2\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Visible\n        green (Thematic Mapper)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.08},{\\\"name\\\":\\\"TM_B3\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Visible\n        red (Thematic Mapper)\\\",\\\"center_wavelength\\\":0.66,\\\"full_width_half_max\\\":0.06},{\\\"name\\\":\\\"TM_B4\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"Near\n        infrared (Thematic Mapper)\\\",\\\"center_wavelength\\\":0.83,\\\"full_width_half_max\\\":0.14},{\\\"name\\\":\\\"TM_B5\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"Short-wave\n        infrared (Thematic Mapper)\\\",\\\"center_wavelength\\\":1.65,\\\"full_width_half_max\\\":0.2},{\\\"name\\\":\\\"TM_B6\\\",\\\"common_name\\\":\\\"lwir\\\",\\\"description\\\":\\\"Long-wave\n        infrared (Thematic Mapper)\\\",\\\"center_wavelength\\\":11.45,\\\"full_width_half_max\\\":2.1},{\\\"name\\\":\\\"TM_B7\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"Short-wave\n        infrared (Thematic Mapper)\\\",\\\"center_wavelength\\\":2.22,\\\"full_width_half_max\\\":0.27},{\\\"name\\\":\\\"ETM_B1\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Visible\n        blue (Enhanced Thematic Mapper Plus)\\\",\\\"center_wavelength\\\":0.48,\\\"full_width_half_max\\\":0.07},{\\\"name\\\":\\\"ETM_B2\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Visible\n        green (Enhanced Thematic Mapper Plus)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.08},{\\\"name\\\":\\\"ETM_B3\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Visible\n        red (Enhanced Thematic Mapper Plus)\\\",\\\"center_wavelength\\\":0.66,\\\"full_width_half_max\\\":0.06},{\\\"name\\\":\\\"ETM_B4\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"Near\n        infrared (Enhanced Thematic Mapper Plus)\\\",\\\"center_wavelength\\\":0.84,\\\"full_width_half_max\\\":0.13},{\\\"name\\\":\\\"ETM_B5\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"Short-wave\n        infrared (Enhanced Thematic Mapper Plus)\\\",\\\"center_wavelength\\\":1.65,\\\"full_width_half_max\\\":0.2},{\\\"name\\\":\\\"ETM_B6\\\",\\\"common_name\\\":\\\"lwir\\\",\\\"description\\\":\\\"Long-wave\n        infrared (Enhanced Thematic Mapper Plus)\\\",\\\"center_wavelength\\\":11.34,\\\"full_width_half_max\\\":2.05},{\\\"name\\\":\\\"ETM_B7\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"Short-wave\n        infrared (Enhanced Thematic Mapper Plus)\\\",\\\"center_wavelength\\\":2.2,\\\"full_width_half_max\\\":0.28},{\\\"name\\\":\\\"OLI_B1\\\",\\\"common_name\\\":\\\"coastal\\\",\\\"description\\\":\\\"Coastal/Aerosol\n        (Operational Land Imager)\\\",\\\"center_wavelength\\\":0.44,\\\"full_width_half_max\\\":0.02},{\\\"name\\\":\\\"OLI_B2\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Visible\n        blue (Operational Land Imager)\\\",\\\"center_wavelength\\\":0.48,\\\"full_width_half_max\\\":0.06},{\\\"name\\\":\\\"OLI_B3\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Visible\n        green (Operational Land Imager)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.06},{\\\"name\\\":\\\"OLI_B4\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Visible\n        red (Operational Land Imager)\\\",\\\"center_wavelength\\\":0.65,\\\"full_width_half_max\\\":0.04},{\\\"name\\\":\\\"OLI_B5\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"Near\n        infrared (Operational Land Imager)\\\",\\\"center_wavelength\\\":0.87,\\\"full_width_half_max\\\":0.03},{\\\"name\\\":\\\"OLI_B6\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"Short-wave\n        infrared (Operational Land Imager)\\\",\\\"center_wavelength\\\":1.61,\\\"full_width_half_max\\\":0.09},{\\\"name\\\":\\\"OLI_B7\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"Short-wave\n        infrared (Operational Land Imager)\\\",\\\"center_wavelength\\\":2.2,\\\"full_width_half_max\\\":0.19},{\\\"name\\\":\\\"TIRS_B10\\\",\\\"common_name\\\":\\\"lwir11\\\",\\\"description\\\":\\\"Long-wave\n        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\n        Collection 2 Level-2 [Science Products](https://www.usgs.gov/landsat-missions/landsat-collection-2-level-2-science-products),\n        consisting of atmospherically corrected [surface reflectance](https://www.usgs.gov/landsat-missions/landsat-collection-2-surface-reflectance)\n        and [surface temperature](https://www.usgs.gov/landsat-missions/landsat-collection-2-surface-temperature)\n        image data. Collection 2 Level-2 Science Products are available from August\n        22, 1982 to present.\\\\n\\\\nThis dataset represents the global archive of Level-2\n        data from [Landsat Collection 2](https://www.usgs.gov/core-science-systems/nli/landsat/landsat-collection-2)\n        acquired by the [Thematic Mapper](https://landsat.gsfc.nasa.gov/thematic-mapper/)\n        onboard Landsat 4 and 5, the [Enhanced Thematic Mapper](https://landsat.gsfc.nasa.gov/the-enhanced-thematic-mapper-plus-etm/)\n        onboard Landsat 7, and the [Operatational Land Imager](https://landsat.gsfc.nasa.gov/satellites/landsat-8/spacecraft-instruments/operational-land-imager/)\n        and [Thermal Infrared Sensor](https://landsat.gsfc.nasa.gov/satellites/landsat-8/spacecraft-instruments/thermal-infrared-sensor/)\n        onboard Landsat 8 and 9. Images are stored in [cloud-optimized GeoTIFF](https://www.cogeo.org/)\n        format.\\\\n\\\",\\\"item_assets\\\":{\\\"qa\\\":{\\\"type\\\":\\\"image/tiff; application=geotiff;\n        profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Surface Temperature\n        Quality Assessment Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Quality Assessment\n        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\n        Coefficients File\\\",\\\"description\\\":\\\"Collection 2 Level-1 Angle Coefficients\n        File\\\"},\\\"red\\\":{\\\"type\\\":\\\"image/tiff; application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"],\\\"title\\\":\\\"Red\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"],\\\"title\\\":\\\"Blue\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Downwelled\n        Radiance Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Downwelled Radiance\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Emissivity\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Emissivity Band (ST_EMIS) Surface\n        Temperature Product\\\",\\\"raster:bands\\\":[{\\\"unit\\\":\\\"emissivity coefficient\\\",\\\"scale\\\":0.0001,\\\"nodata\\\":-9999,\\\"data_type\\\":\\\"int16\\\",\\\"spatial_resolution\\\":30}]},\\\"emsd\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Emissivity\n        Standard Deviation Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Emissivity\n        Standard Deviation Band (ST_EMSD) Surface Temperature Product\\\",\\\"raster:bands\\\":[{\\\"unit\\\":\\\"emissivity\n        coefficient\\\",\\\"scale\\\":0.0001,\\\"nodata\\\":-9999,\\\"data_type\\\":\\\"int16\\\",\\\"spatial_resolution\\\":30}]},\\\"lwir\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\",\\\"temperature\\\"],\\\"title\\\":\\\"Surface\n        Temperature Band\\\",\\\"eo:bands\\\":[{\\\"common_name\\\":\\\"lwir\\\",\\\"description\\\":\\\"Long-wave\n        infrared\\\"}],\\\"description\\\":\\\"Collection 2 Level-2 Thermal Infrared Band\n        (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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Thermal\n        Radiance Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Thermal Radiance Band\n        (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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Upwelled\n        Radiance Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Upwelled Radiance Band\n        (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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Atmospheric\n        Transmittance Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Atmospheric Transmittance\n        Band (ST_ATRAN) Surface Temperature Product\\\",\\\"raster:bands\\\":[{\\\"scale\\\":0.0001,\\\"nodata\\\":-9999,\\\"data_type\\\":\\\"int16\\\",\\\"spatial_resolution\\\":30}]},\\\"cdist\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Cloud\n        Distance Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Cloud Distance Band\n        (ST_CDIST) Surface Temperature Product\\\",\\\"raster:bands\\\":[{\\\"unit\\\":\\\"kilometer\\\",\\\"scale\\\":0.01,\\\"nodata\\\":-9999,\\\"data_type\\\":\\\"int16\\\",\\\"spatial_resolution\\\":30}]},\\\"green\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"],\\\"title\\\":\\\"Green\n        Band\\\",\\\"eo:bands\\\":[{\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Visible\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"],\\\"title\\\":\\\"Near\n        Infrared Band 0.8\\\",\\\"eo:bands\\\":[{\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"Near\n        infrared\\\"}],\\\"raster:bands\\\":[{\\\"scale\\\":0.0000275,\\\"nodata\\\":0,\\\"offset\\\":-0.2,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":30}]},\\\"lwir11\\\":{\\\"gsd\\\":100,\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\",\\\"temperature\\\"],\\\"title\\\":\\\"Surface\n        Temperature Band\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"TIRS_B10\\\",\\\"common_name\\\":\\\"lwir11\\\",\\\"description\\\":\\\"Long-wave\n        infrared\\\",\\\"center_wavelength\\\":10.9,\\\"full_width_half_max\\\":0.59}],\\\"description\\\":\\\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"],\\\"title\\\":\\\"Short-wave\n        Infrared Band 1.6\\\",\\\"eo:bands\\\":[{\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"Short-wave\n        infrared\\\"}],\\\"raster:bands\\\":[{\\\"scale\\\":0.0000275,\\\"nodata\\\":0,\\\"offset\\\":-0.2,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":30}]},\\\"swir22\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"],\\\"title\\\":\\\"Short-wave\n        Infrared Band 2.2\\\",\\\"eo:bands\\\":[{\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"Short-wave\n        infrared\\\"}],\\\"description\\\":\\\"Collection 2 Level-2 Short-wave Infrared Band\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"],\\\"title\\\":\\\"Coastal/Aerosol\n        Band\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"OLI_B1\\\",\\\"common_name\\\":\\\"coastal\\\",\\\"description\\\":\\\"Coastal/Aerosol\\\",\\\"center_wavelength\\\":0.44,\\\"full_width_half_max\\\":0.02}],\\\"description\\\":\\\"Collection\n        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\n        Metadata File (txt)\\\",\\\"description\\\":\\\"Collection 2 Level-2 Product Metadata\n        File (txt)\\\"},\\\"mtl.xml\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"Product\n        Metadata File (xml)\\\",\\\"description\\\":\\\"Collection 2 Level-2 Product Metadata\n        File (xml)\\\"},\\\"cloud_qa\\\":{\\\"type\\\":\\\"image/tiff; application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"cloud\\\",\\\"cloud-shadow\\\",\\\"snow-ice\\\",\\\"water-mask\\\"],\\\"title\\\":\\\"Cloud\n        Quality Assessment Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Cloud Quality\n        Assessment Band (SR_CLOUD_QA) Surface Reflectance Product\\\",\\\"raster:bands\\\":[{\\\"unit\\\":\\\"bit\n        index\\\",\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":30}],\\\"classification:bitfields\\\":[{\\\"name\\\":\\\"ddv\\\",\\\"length\\\":1,\\\"offset\\\":0,\\\"classes\\\":[{\\\"name\\\":\\\"not_ddv\\\",\\\"value\\\":0,\\\"description\\\":\\\"Pixel\n        has no DDV\\\"},{\\\"name\\\":\\\"ddv\\\",\\\"value\\\":1,\\\"description\\\":\\\"Pixel has DDV\\\"}],\\\"description\\\":\\\"Dense\n        Dark Vegetation (DDV)\\\"},{\\\"name\\\":\\\"cloud\\\",\\\"length\\\":1,\\\"offset\\\":1,\\\"classes\\\":[{\\\"name\\\":\\\"not_cloud\\\",\\\"value\\\":0,\\\"description\\\":\\\"Pixel\n        has no cloud\\\"},{\\\"name\\\":\\\"cloud\\\",\\\"value\\\":1,\\\"description\\\":\\\"Pixel has\n        cloud\\\"}],\\\"description\\\":\\\"Cloud mask\\\"},{\\\"name\\\":\\\"cloud_shadow\\\",\\\"length\\\":1,\\\"offset\\\":2,\\\"classes\\\":[{\\\"name\\\":\\\"not_shadow\\\",\\\"value\\\":0,\\\"description\\\":\\\"Pixel\n        has no cloud shadow\\\"},{\\\"name\\\":\\\"shadow\\\",\\\"value\\\":1,\\\"description\\\":\\\"Pixel\n        has cloud shadow\\\"}],\\\"description\\\":\\\"Cloud shadow mask\\\"},{\\\"name\\\":\\\"cloud_adjacent\\\",\\\"length\\\":1,\\\"offset\\\":3,\\\"classes\\\":[{\\\"name\\\":\\\"not_adjacent\\\",\\\"value\\\":0,\\\"description\\\":\\\"Pixel\n        is not adjacent to cloud\\\"},{\\\"name\\\":\\\"adjacent\\\",\\\"value\\\":1,\\\"description\\\":\\\"Pixel\n        is adjacent to cloud\\\"}],\\\"description\\\":\\\"Cloud adjacency\\\"},{\\\"name\\\":\\\"snow\\\",\\\"length\\\":1,\\\"offset\\\":4,\\\"classes\\\":[{\\\"name\\\":\\\"not_snow\\\",\\\"value\\\":0,\\\"description\\\":\\\"Pixel\n        is not snow\\\"},{\\\"name\\\":\\\"shadow\\\",\\\"value\\\":1,\\\"description\\\":\\\"Pixel is\n        snow\\\"}],\\\"description\\\":\\\"Snow mask\\\"},{\\\"name\\\":\\\"water\\\",\\\"length\\\":1,\\\"offset\\\":5,\\\"classes\\\":[{\\\"name\\\":\\\"not_water\\\",\\\"value\\\":0,\\\"description\\\":\\\"Pixel\n        is not water\\\"},{\\\"name\\\":\\\"water\\\",\\\"value\\\":1,\\\"description\\\":\\\"Pixel is\n        water\\\"}],\\\"description\\\":\\\"Water mask\\\"}]},\\\"mtl.json\\\":{\\\"type\\\":\\\"application/json\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"Product\n        Metadata File (json)\\\",\\\"description\\\":\\\"Collection 2 Level-2 Product Metadata\n        File (json)\\\"},\\\"qa_pixel\\\":{\\\"type\\\":\\\"image/tiff; application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"cloud\\\",\\\"cloud-shadow\\\",\\\"snow-ice\\\",\\\"water-mask\\\"],\\\"title\\\":\\\"Pixel\n        Quality Assessment Band\\\",\\\"description\\\":\\\"Collection 2 Level-1 Pixel Quality\n        Assessment Band (QA_PIXEL)\\\",\\\"raster:bands\\\":[{\\\"unit\\\":\\\"bit index\\\",\\\"nodata\\\":1,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":30}]},\\\"qa_radsat\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"saturation\\\"],\\\"raster:bands\\\":[{\\\"unit\\\":\\\"bit\n        index\\\",\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":30}]},\\\"qa_aerosol\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data-mask\\\",\\\"water-mask\\\"],\\\"title\\\":\\\"Aerosol\n        Quality Assessment Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Aerosol Quality\n        Assessment Band (SR_QA_AEROSOL) Surface Reflectance Product\\\",\\\"raster:bands\\\":[{\\\"unit\\\":\\\"bit\n        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\n        is not fill\\\"},{\\\"name\\\":\\\"fill\\\",\\\"value\\\":1,\\\"description\\\":\\\"Pixel is fill\\\"}],\\\"description\\\":\\\"Image\n        or fill data\\\"},{\\\"name\\\":\\\"retrieval\\\",\\\"length\\\":1,\\\"offset\\\":1,\\\"classes\\\":[{\\\"name\\\":\\\"not_valid\\\",\\\"value\\\":0,\\\"description\\\":\\\"Pixel\n        retrieval is not valid\\\"},{\\\"name\\\":\\\"valid\\\",\\\"value\\\":1,\\\"description\\\":\\\"Pixel\n        retrieval is valid\\\"}],\\\"description\\\":\\\"Valid aerosol retrieval\\\"},{\\\"name\\\":\\\"water\\\",\\\"length\\\":1,\\\"offset\\\":2,\\\"classes\\\":[{\\\"name\\\":\\\"not_water\\\",\\\"value\\\":0,\\\"description\\\":\\\"Pixel\n        is not water\\\"},{\\\"name\\\":\\\"water\\\",\\\"value\\\":1,\\\"description\\\":\\\"Pixel is\n        water\\\"}],\\\"description\\\":\\\"Water mask\\\"},{\\\"name\\\":\\\"interpolated\\\",\\\"length\\\":1,\\\"offset\\\":5,\\\"classes\\\":[{\\\"name\\\":\\\"not_interpolated\\\",\\\"value\\\":0,\\\"description\\\":\\\"Pixel\n        is not interpolated aerosol\\\"},{\\\"name\\\":\\\"interpolated\\\",\\\"value\\\":1,\\\"description\\\":\\\"Pixel\n        is interpolated aerosol\\\"}],\\\"description\\\":\\\"Aerosol interpolation\\\"},{\\\"name\\\":\\\"level\\\",\\\"length\\\":2,\\\"offset\\\":6,\\\"classes\\\":[{\\\"name\\\":\\\"climatology\\\",\\\"value\\\":0,\\\"description\\\":\\\"No\n        aerosol correction applied\\\"},{\\\"name\\\":\\\"low\\\",\\\"value\\\":1,\\\"description\\\":\\\"Low\n        aerosol level\\\"},{\\\"name\\\":\\\"medium\\\",\\\"value\\\":2,\\\"description\\\":\\\"Medium\n        aerosol level\\\"},{\\\"name\\\":\\\"high\\\",\\\"value\\\":3,\\\"description\\\":\\\"High aerosol\n        level\\\"}],\\\"description\\\":\\\"Aerosol level\\\"}]},\\\"atmos_opacity\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Atmospheric\n        Opacity Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Atmospheric Opacity\n        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\n        Collection 2 Level-2 data from the Thematic Mapper (TM) onboard Landsat 4\n        and 5, the Enhanced Thematic Mapper Plus (ETM+) onboard Landsat 7, and the\n        Operational Land Imager (OLI) and Thermal Infrared Sensor (TIRS) onboard Landsat\n        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\n        to Use Copernicus Products\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://confluence.ecmwf.int/display/CKB/ERA5\\\",\\\"type\\\":\\\"text/html\\\",\\\"title\\\":\\\"Project\n        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\n        to cite\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/era5-pds\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"ERA5\n        - 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\n        STAC items\\\",\\\"media_type\\\":\\\"application/x-parquet\\\",\\\"description\\\":\\\"Snapshot\n        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\n        OS\\\",\\\"roles\\\":[\\\"processor\\\"]},{\\\"url\\\":\\\"https://planetarycomputer.microsoft.com\\\",\\\"name\\\":\\\"Microsoft\\\",\\\"roles\\\":[\\\"host\\\"]}],\\\"summaries\\\":{\\\"era5:kind\\\":[\\\"fc\\\",\\\"an\\\"]},\\\"description\\\":\\\"ERA5\n        is the fifth generation ECMWF atmospheric reanalysis of the global climate\\\\ncovering\n        the period from January 1950 to present. ERA5 is produced by the\\\\nCopernicus\n        Climate Change Service (C3S) at ECMWF.\\\\n\\\\nReanalysis combines model data\n        with observations from across the world into a\\\\nglobally complete and consistent\n        dataset using the laws of physics. This\\\\nprinciple, called data assimilation,\n        is based on the method used by numerical\\\\nweather prediction centres, where\n        every so many hours (12 hours at ECMWF) a\\\\nprevious forecast is combined\n        with newly available observations in an optimal\\\\nway to produce a new best\n        estimate of the state of the atmosphere, called\\\\nanalysis, from which an\n        updated, improved forecast is issued. Reanalysis works\\\\nin the same way,\n        but at reduced resolution to allow for the provision of a\\\\ndataset spanning\n        back several decades. Reanalysis does not have the constraint\\\\nof issuing\n        timely forecasts, so there is more time to collect observations, and\\\\nwhen\n        going further back in time, to allow for the ingestion of improved versions\\\\nof\n        the original observations, which all benefit the quality of the reanalysis\\\\nproduct.\\\\n\\\\nThis\n        dataset was converted to Zarr by [Planet OS](https://planetos.com/).\\\\nSee\n        [their documentation](https://github.com/planet-os/notebooks/blob/master/aws/era5-pds.md)\\\\nfor\n        more.\\\\n\\\\n## STAC Metadata\\\\n\\\\nTwo types of data variables are provided:\n        \\\\\\\"forecast\\\\\\\" (`fc`) and \\\\\\\"analysis\\\\\\\" (`an`).\\\\n\\\\n* An **analysis**,\n        of the atmospheric conditions, is a blend of observations\\\\n  with a previous\n        forecast. An analysis can only provide\\\\n  [instantaneous](https://confluence.ecmwf.int/display/CKB/Model+grid+box+and+time+step)\\\\n\n        \\ parameters (parameters valid at a specific time, e.g temperature at 12:00),\\\\n\n        \\ but not accumulated parameters, mean rates or min/max parameters.\\\\n* A\n        **forecast** starts with an analysis at a specific time (the 'initialization\\\\n\n        \\ time'), and a model computes the atmospheric conditions for a number of\\\\n\n        \\ 'forecast steps', at increasing 'validity times', into the future. A forecast\\\\n\n        \\ can provide\\\\n  [instantaneous](https://confluence.ecmwf.int/display/CKB/Model+grid+box+and+time+step)\\\\n\n        \\ parameters, accumulated parameters, mean rates, and min/max parameters.\\\\n\\\\nEach\n        [STAC](https://stacspec.org/) item in this collection covers a single month\\\\nand\n        the entire globe. There are two STAC items per month, one for each type of\n        data\\\\nvariable (`fc` and `an`). The STAC items include an `ecmwf:kind` properties\n        to\\\\nindicate which kind of variables that STAC item catalogs.\\\\n\\\\n## How\n        to acknowledge, cite and refer to ERA5\\\\n\\\\nAll users of data on the Climate\n        Data Store (CDS) disks (using either the web interface or the CDS API) must\n        provide clear and visible attribution to the Copernicus programme and are\n        asked to cite and reference the dataset provider:\\\\n\\\\nAcknowledge according\n        to the [licence to use Copernicus Products](https://cds.climate.copernicus.eu/api/v2/terms/static/licence-to-use-copernicus-products.pdf).\\\\n\\\\nCite\n        each dataset used as indicated on the relevant CDS entries (see link to \\\\\\\"Citation\\\\\\\"\n        under References on the Overview page of the dataset entry).\\\\n\\\\nThroughout\n        the content of your publication, the dataset used is referred to as Author\n        (YYYY).\\\\n\\\\nThe 3-steps procedure above is illustrated with this example:\n        [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\n        complete details, please refer to [How to acknowledge and cite a Climate Data\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        pressure\\\",\\\"nameECMWF\\\":\\\"Surface pressure\\\",\\\"product_type\\\":\\\"analysis\\\",\\\"standard_name\\\":\\\"surface_air_pressure\\\",\\\"shortNameECMWF\\\":\\\"sp\\\"},\\\"shape\\\":[null,721,1440],\\\"dimensions\\\":[\\\"time\\\",\\\"lat\\\",\\\"lon\\\"],\\\"description\\\":\\\"Surface\n        pressure\\\"},\\\"sea_surface_temperature\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"K\\\",\\\"attrs\\\":{\\\"units\\\":\\\"K\\\",\\\"nameCDM\\\":\\\"Sea_surface_temperature_surface\\\",\\\"long_name\\\":\\\"Sea\n        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\n        surface temperature\\\"},\\\"eastward_wind_at_10_metres\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"m\n        s**-1\\\",\\\"attrs\\\":{\\\"units\\\":\\\"m s**-1\\\",\\\"nameCDM\\\":\\\"10_metre_U_wind_component_surface\\\",\\\"long_name\\\":\\\"10\n        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\n        metre U wind component\\\"},\\\"air_temperature_at_2_metres\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"K\\\",\\\"attrs\\\":{\\\"units\\\":\\\"K\\\",\\\"nameCDM\\\":\\\"2_metre_temperature_surface\\\",\\\"long_name\\\":\\\"2\n        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\n        metre temperature\\\"},\\\"eastward_wind_at_100_metres\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"m\n        s**-1\\\",\\\"attrs\\\":{\\\"units\\\":\\\"m s**-1\\\",\\\"nameCDM\\\":\\\"100_metre_U_wind_component_surface\\\",\\\"long_name\\\":\\\"100\n        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\n        metre U wind component\\\"},\\\"northward_wind_at_10_metres\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"m\n        s**-1\\\",\\\"attrs\\\":{\\\"units\\\":\\\"m s**-1\\\",\\\"nameCDM\\\":\\\"10_metre_V_wind_component_surface\\\",\\\"long_name\\\":\\\"10\n        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\n        metre V wind component\\\"},\\\"northward_wind_at_100_metres\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"m\n        s**-1\\\",\\\"attrs\\\":{\\\"units\\\":\\\"m s**-1\\\",\\\"nameCDM\\\":\\\"100_metre_V_wind_component_surface\\\",\\\"long_name\\\":\\\"100\n        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\n        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\n        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\n        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\n        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\n        metre dewpoint temperature\\\"},\\\"precipitation_amount_1hour_Accumulation\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"m\\\",\\\"attrs\\\":{\\\"units\\\":\\\"m\\\",\\\"nameCDM\\\":\\\"Total_precipitation_1hour_Accumulation\\\",\\\"long_name\\\":\\\"Total\n        precipitation\\\",\\\"nameECMWF\\\":\\\"Total precipitation\\\",\\\"product_type\\\":\\\"forecast\\\",\\\"standard_name\\\":\\\"precipitation_amount\\\",\\\"shortNameECMWF\\\":\\\"tp\\\"},\\\"shape\\\":[null,721,1440],\\\"dimensions\\\":[\\\"time\\\",\\\"lat\\\",\\\"lon\\\"],\\\"description\\\":\\\"Total\n        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\n        temperature at 2 metres since previous post-processing\\\",\\\"nameECMWF\\\":\\\"Maximum\n        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\n        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\n        temperature at 2 metres since previous post-processing\\\",\\\"nameECMWF\\\":\\\"Minimum\n        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\n        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\n        m**-2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"J m**-2\\\",\\\"nameCDM\\\":\\\"Surface_solar_radiation_downwards_surface_1_Hour_Accumulation\\\",\\\"long_name\\\":\\\"Surface\n        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\n        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\n        comprehensive reanalysis, which assimilates as many observations as possible\n        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\n        Commons Attribution Non Commercial Share Alike 4.0 International\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/chloris-biomass\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"Chloris\n        Biomass\\\",\\\"assets\\\":{\\\"thumbnail\\\":{\\\"href\\\":\\\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/chloris-biomass.jpg\\\",\\\"type\\\":\\\"image/jpg\\\",\\\"roles\\\":[\\\"thumbnail\\\"],\\\"title\\\":\\\"Chloris\n        Biomass\\\"},\\\"geoparquet-items\\\":{\\\"href\\\":\\\"abfs://items/chloris-biomass.parquet\\\",\\\"type\\\":\\\"application/x-parquet\\\",\\\"roles\\\":[\\\"stac-items\\\"],\\\"title\\\":\\\"GeoParquet\n        STAC items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        Chloris Global Biomass 2003 - 2019 dataset provides estimates of stock and\n        change in aboveground biomass for Earth's terrestrial woody vegetation ecosystems.\n        It covers the period 2003 - 2019, at annual time steps. The global dataset\n        has a circa 4.6 km spatial resolution.\\\\n\\\\nThe maps and data sets were generated\n        by combining multiple remote sensing measurements from space borne satellites,\n        processed using state-of-the-art machine learning and statistical methods,\n        validated with field data from multiple countries. The dataset provides direct\n        estimates of aboveground stock and change, and are not based on land use or\n        land cover area change, and as such they include gains and losses of carbon\n        stock in all types of woody vegetation - whether natural or plantations.\\\\n\\\\nAnnual\n        stocks are expressed in units of tons of biomass. Annual changes in stocks\n        are expressed in units of CO2 equivalent, i.e., the amount of CO2 released\n        from or taken up by terrestrial ecosystems for that specific pixel.\\\\n\\\\nThe\n        spatial data sets are available on [Microsoft\\u2019s Planetary Computer](https://planetarycomputer.microsoft.com/dataset/chloris-biomass)\n        under a Creative Common license of the type Attribution-Non Commercial-Share\n        Alike [CC BY-NC-SA](https://spdx.org/licenses/CC-BY-NC-SA-4.0.html).\\\\n\\\\n[Chloris\n        Geospatial](https://chloris.earth/) is a mission-driven technology company\n        that develops software and data products on the state of natural capital for\n        use by business, governments, and the social sector.\\\\n\\\",\\\"item_assets\\\":{\\\"biomass\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Annual\n        estimates of aboveground woody biomass.\\\",\\\"raster:bands\\\":[{\\\"unit\\\":\\\"tonnes\\\",\\\"nodata\\\":2147483647,\\\"data_type\\\":\\\"uint32\\\"}]},\\\"biomass_wm\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Annual\n        estimates of aboveground woody biomass (Web Mercator).\\\",\\\"raster:bands\\\":[{\\\"unit\\\":\\\"tonnes\\\",\\\"nodata\\\":2147483647,\\\"data_type\\\":\\\"uint32\\\"}]},\\\"biomass_change\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Annual\n        estimates of changes (gains and losses) in aboveground woody biomass from\n        the previous year.\\\",\\\"raster:bands\\\":[{\\\"unit\\\":\\\"tonnes\\\",\\\"nodata\\\":-32768,\\\"data_type\\\":\\\"int16\\\"}]},\\\"biomass_change_wm\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Annual\n        estimates of changes (gains and losses) in aboveground woody biomass from\n        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\n        Chloris Global Biomass 2003 - 2019 dataset provides estimates of stock and\n        change in aboveground biomass for Earth's terrestrial woody vegetation ecosystems\n        during the period 2003 - 2019, at annual time steps. The global dataset has\n        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\n        Data License Agreement \\u2013 Sharing, Version 1.0\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/kaza-hydroforecast\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"HydroForecast\n        - 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\n        Tech\\\"],\\\"providers\\\":[{\\\"url\\\":\\\"https://www.upstream.tech\\\",\\\"name\\\":\\\"Upstream\n        Tech\\\",\\\"roles\\\":[\\\"producer\\\",\\\"processor\\\",\\\"licensor\\\"]},{\\\"url\\\":\\\"https://planetarycomputer.microsoft.com\\\",\\\"name\\\":\\\"Microsoft\\\",\\\"roles\\\":[\\\"host\\\"]}],\\\"description\\\":\\\"This\n        dataset is a daily updated set of HydroForecast seasonal river flow forecasts\n        at six locations in the Kwando and Upper Zambezi river basins. More details\n        about the locations, project context, and to interactively view current and\n        previous forecasts, visit our [public website](https://dashboard.hydroforecast.com/public/wwf-kaza).\\\\n\\\\n##\n        Flow forecast dataset and model description\\\\n\\\\n[HydroForecast](https://www.upstream.tech/hydroforecast)\n        is a theory-guided machine learning hydrologic model that predicts streamflow\n        in basins across the world. For the Kwando and Upper Zambezi, HydroForecast\n        makes daily predictions of streamflow rates using a [seasonal analog approach](https://support.upstream.tech/article/125-seasonal-analog-model-a-technical-overview).\n        The model's output is probabilistic and the mean, median and a range of quantiles\n        are available at each forecast step.\\\\n\\\\nThe underlying model has the following\n        attributes: \\\\n\\\\n* Timestep: 10 days\\\\n* Horizon: 10 to 180 days \\\\n* Update\n        frequency: daily\\\\n* Units: cubic meters per second (m\\xB3/s)\\\\n    \\\\n##\n        Site details\\\\n\\\\nThe model produces output for six locations in the Kwando\n        and Upper Zambezi river basins.\\\\n\\\\n* Upper Zambezi sites\\\\n    * Zambezi\n        at Chavuma\\\\n    * Luanginga at Kalabo\\\\n* Kwando basin sites\\\\n    * Kwando\n        at Kongola -- total basin flows\\\\n    * Kwando Sub-basin 1\\\\n    * Kwando\n        Sub-basin 2 \\\\n    * Kwando Sub-basin 3\\\\n    * Kwando Sub-basin 4\\\\n    *\n        Kwando Kongola Sub-basin\\\\n\\\\n## STAC metadata\\\\n\\\\nThere is one STAC item\n        per location. Each STAC item has a single asset linking to a Parquet file\n        in Azure Blob Storage.\\\",\\\"item_assets\\\":{\\\"data\\\":{\\\"type\\\":\\\"application/x-parquet\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Forecast\n        Data\\\",\\\"description\\\":\\\"All seasonal river flow forecasts for a specific\n        forecast site, produced by Upstream Tech's HydroForecast model\\\"}},\\\"stac_version\\\":\\\"1.0.0\\\",\\\"table:columns\\\":[{\\\"name\\\":\\\"initialization_time\\\",\\\"type\\\":\\\"timestamp\\\",\\\"description\\\":\\\"The\n        initial timestamp in the forecast model which created this forecast step.\n        All rows with the same initialization time are part of the same \\\\\\\"forecast\\\\\\\"\n        and are produced at the same time.\\\"},{\\\"name\\\":\\\"valid_time\\\",\\\"type\\\":\\\"timestamp\\\",\\\"description\\\":\\\"The\n        point in time this forecast step is predicting. valid_time = initialization_time\n        + lead_time_hours. The discharge values in this row are the average rate from\n        this time (inclusive) until the next valid time (exclusive).\\\"},{\\\"name\\\":\\\"lead_time_hours\\\",\\\"type\\\":\\\"int64\\\",\\\"description\\\":\\\"The\n        number of hours ahead of the initialization time this forecast step is predicting.\\\"},{\\\"name\\\":\\\"discharge_mean\\\",\\\"type\\\":\\\"double\\\",\\\"description\\\":\\\"The\n        mean of the probabilistic streamflow prediction, as an average rate across\n        the forecast step in m\\xB3/s.\\\"},{\\\"name\\\":\\\"discharge_median\\\",\\\"type\\\":\\\"double\\\",\\\"description\\\":\\\"The\n        median of the probabilistic streamflow prediction, as an average rate across\n        the forecast step in m\\xB3/s.\\\"},{\\\"name\\\":\\\"discharge_q0.01\\\",\\\"type\\\":\\\"double\\\",\\\"description\\\":\\\"The\n        quantile 0.01 of the probabilistic streamflow prediction, as an average rate\n        across the forecast step in m\\xB3/s.\\\"},{\\\"name\\\":\\\"discharge_q0.025\\\",\\\"type\\\":\\\"double\\\",\\\"description\\\":\\\"The\n        quantile 0.025 of the probabilistic streamflow prediction, as an average rate\n        across the forecast step in m\\xB3/s.\\\"},{\\\"name\\\":\\\"discharge_q0.05\\\",\\\"type\\\":\\\"double\\\",\\\"description\\\":\\\"The\n        quantile 0.05 of the probabilistic streamflow prediction, as an average rate\n        across the forecast step in m\\xB3/s.\\\"},{\\\"name\\\":\\\"discharge_q0.1\\\",\\\"type\\\":\\\"double\\\",\\\"description\\\":\\\"The\n        quantile 0.1 of the probabilistic streamflow prediction, as an average rate\n        across the forecast step in m\\xB3/s.\\\"},{\\\"name\\\":\\\"discharge_q0.25\\\",\\\"type\\\":\\\"double\\\",\\\"description\\\":\\\"The\n        quantile 0.25 of the probabilistic streamflow prediction, as an average rate\n        across the forecast step in m\\xB3/s.\\\"},{\\\"name\\\":\\\"discharge_q0.5\\\",\\\"type\\\":\\\"double\\\",\\\"description\\\":\\\"The\n        quantile 0.5 of the probabilistic streamflow prediction, as an average rate\n        across the forecast step in m\\xB3/s.\\\"},{\\\"name\\\":\\\"discharge_q0.75\\\",\\\"type\\\":\\\"double\\\",\\\"description\\\":\\\"The\n        quantile 0.75 of the probabilistic streamflow prediction, as an average rate\n        across the forecast step in m\\xB3/s.\\\"},{\\\"name\\\":\\\"discharge_q0.9\\\",\\\"type\\\":\\\"double\\\",\\\"description\\\":\\\"The\n        quantile 0.9 of the probabilistic streamflow prediction, as an average rate\n        across the forecast step in m\\xB3/s.\\\"},{\\\"name\\\":\\\"discharge_q0.95\\\",\\\"type\\\":\\\"double\\\",\\\"description\\\":\\\"The\n        quantile 0.95 of the probabilistic streamflow prediction, as an average rate\n        across the forecast step in m\\xB3/s.\\\"},{\\\"name\\\":\\\"discharge_q0.975\\\",\\\"type\\\":\\\"double\\\",\\\"description\\\":\\\"The\n        quantile 0.975 of the probabilistic streamflow prediction, as an average rate\n        across the forecast step in m\\xB3/s.\\\"},{\\\"name\\\":\\\"discharge_q0.99\\\",\\\"type\\\":\\\"double\\\",\\\"description\\\":\\\"The\n        quantile 0.99 of the probabilistic streamflow prediction, as an average rate\n        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\n        river flow forecasts for the Kwando and Upper Zambezi rivers in the KAZA region\n        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\n        License Agreement.\\\"},{\\\"rel\\\":\\\"documentation\\\",\\\"href\\\":\\\"https://assets.planet.com/docs/NICFI_UserGuidesFAQ.pdf\\\",\\\"type\\\":\\\"application/pdf\\\",\\\"title\\\":\\\"Participant\n        License Agreement.\\\"},{\\\"rel\\\":\\\"documentation\\\",\\\"href\\\":\\\"https://www.planet.com/nicfi/\\\",\\\"type\\\":\\\"text/html\\\",\\\"title\\\":\\\"NICFI\n        Program - Satellite Imagery and Monitoring | Planet\\\"},{\\\"rel\\\":\\\"documentation\\\",\\\"href\\\":\\\"https://developers.planet.com/nicfi/\\\",\\\"type\\\":\\\"text/html\\\",\\\"title\\\":\\\"NICFI\n        Program Resource Center\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/planet-nicfi-analytic\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"Planet-NICFI\n        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\n        STAC items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        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\n        blue\\\"},{\\\"name\\\":\\\"Green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"visible\n        green\\\"},{\\\"name\\\":\\\"Red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"visible\n        red\\\"},{\\\"name\\\":\\\"NIR\\\",\\\"common_name\\\":\\\"nir\\\",\\\"description\\\":\\\"near-infrared\\\"}],\\\"planet-nicfi:cadence\\\":[\\\"biannual\\\",\\\"monthly\\\"],\\\"planet-nicfi:percent_covered\\\":{\\\"maximum\\\":100,\\\"minimum\\\":0}},\\\"description\\\":\\\"*Note:\n        Assets in this collection are only available to winners of the [GEO-Microsoft\n        Planetary Computer RFP](https://www.earthobservations.org/geo_blog_obs.php?id=528).\n        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/)\n        and email [planetarycomputer@microsoft.com](mailto:planetarycomputer@microsoft.com).*\\\\n\\\\nThrough\n        Norway\\u2019s International Climate & Forests Initiative (NICFI), users can\n        access Planet\\u2019s high-resolution, analysis-ready mosaics of the world\\u2019s\n        tropics in order to help reduce and reverse the loss of tropical forests,\n        combat climate change, conserve biodiversity, and facilitate sustainable development.\\\\n\\\\nIn\n        support of NICFI\\u2019s mission, you can use this data for a number of projects\n        including, but not limited to:\\\\n\\\\n* Advance scientific research about the\n        world\\u2019s tropical forests and the critical services they provide.\\\\n*\n        Implement and improve policies for sustainable forest management and land\n        use in developing tropical forest countries and jurisdictions.\\\\n* Increase\n        transparency and accountability in the tropics.\\\\n* Protect and improve the\n        rights of indigenous peoples and local communities in tropical forest countries.\\\\n*\n        Innovate solutions towards reducing pressure on forests from global commodities\n        and financial markets.\\\\n* In short, the primary purpose of the NICFI Program\n        is to support reducing and reversing the loss of tropical forests, contributing\n        to combating climate change, conserving biodiversity, contributing to forest\n        regrowth, restoration, and enhancement, and facilitating sustainable development,\n        all of which must be Non-Commercial Use.\\\\n\\\\nTo learn how more about the\n        NICFI program, streaming and downloading basemaps please read the [NICFI Data\n        Program User Guide](https://assets.planet.com/docs/NICFI_UserGuidesFAQ.pdf).\\\\n\\\\nThis\n        collection contains both monthly and biannual mosaics. Biannual mosaics are\n        available from December 2015 - August 2020. Monthly mosaics are available\n        from September 2020. The STAC items include a `planet-nicfi:cadence` field\n        indicating the type of mosaic.\\\",\\\"item_assets\\\":{\\\"data\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Data\\\",\\\"description\\\":\\\"a\n        'ground truth' representation of spatially accurate data with minimized effects\n        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\n        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\n        User Guide\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MOD17A2H\\\",\\\"title\\\":\\\"MOD17A2H\n        file specification\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MYD17A2H\\\",\\\"title\\\":\\\"MYD17A2H\n        file specification\\\"},{\\\"rel\\\":\\\"cite-as\\\",\\\"href\\\":\\\"https://doi.org/10.5067/MODIS/MOD17A2H.061\\\",\\\"title\\\":\\\"LP\n        DAAC - MOD17A2H\\\"},{\\\"rel\\\":\\\"cite-as\\\",\\\"href\\\":\\\"https://doi.org/10.5067/MODIS/MYD17A2H.061\\\",\\\"title\\\":\\\"LP\n        DAAC - MYD17A2H\\\"},{\\\"rel\\\":\\\"license\\\",\\\"href\\\":\\\"https://lpdaac.usgs.gov/data/data-citation-and-policies/\\\",\\\"title\\\":\\\"LP\n        DAAC - Data Citation and Policies\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/modis-17A2H-061\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"MODIS\n        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\n        Gross Primary Productivity 8-Day thumbnail\\\"},\\\"geoparquet-items\\\":{\\\"href\\\":\\\"abfs://items/modis-17A2H-061.parquet\\\",\\\"type\\\":\\\"application/x-parquet\\\",\\\"roles\\\":[\\\"stac-items\\\"],\\\"title\\\":\\\"GeoParquet\n        STAC items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        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\n        Version 6.1 Gross Primary Productivity (GPP) product is a cumulative 8-day\n        composite of values with 500 meter (m) pixel size based on the radiation use\n        efficiency concept that can be potentially used as inputs to data models to\n        calculate terrestrial energy, carbon, water cycle processes, and biogeochemistry\n        of vegetation. The Moderate Resolution Imaging Spectroradiometer (MODIS) data\n        product includes information about GPP and Net Photosynthesis (PSN). The PSN\n        band values are the GPP less the Maintenance Respiration (MR). The data product\n        also contains a PSN Quality Control (QC) layer. The quality layer contains\n        quality information for both the GPP and the PSN.\\\",\\\"item_assets\\\":{\\\"hdf\\\":{\\\"type\\\":\\\"application/x-hdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Source\n        data containing all bands\\\"},\\\"Gpp_500m\\\":{\\\"type\\\":\\\"image/tiff; application=geotiff;\n        profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Gross Primary Productivity\\\",\\\"raster:bands\\\":[{\\\"unit\\\":\\\"kg\n        C/m^2\\\",\\\"scale\\\":0.0001,\\\"data_type\\\":\\\"int16\\\",\\\"spatial_resolution\\\":500}]},\\\"metadata\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"Federal\n        Geographic Data Committee (FGDC) Metadata\\\"},\\\"PsnNet_500m\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Net\n        Photosynthesis\\\",\\\"raster:bands\\\":[{\\\"unit\\\":\\\"kg C/m^2\\\",\\\"scale\\\":0.0001,\\\"data_type\\\":\\\"int16\\\",\\\"spatial_resolution\\\":500}]},\\\"Psn_QC_500m\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Quality\n        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,\n        S., Mu, Q., &amp; Zhao, M. (2021). <i>MODIS/Terra Gross Primary Productivity\n        8-Day L4 Global 500m SIN Grid V061</i> [Data set]. NASA EOSDIS Land Processes\n        DAAC. https://doi.org/10.5067/MODIS/MOD17A2H.061\\\"},{\\\"doi\\\":\\\"10.5067/MODIS/MYD17A2H.061\\\",\\\"citation\\\":\\\"Running,\n        S., Mu, Q., &amp; Zhao, M. (2021). <i>MODIS/Aqua Gross Primary Productivity\n        8-Day L4 Global 500m SIN Grid V061</i> [Data set]. NASA EOSDIS Land Processes\n        DAAC. https://doi.org/10.5067/MODIS/MYD17A2H.061\\\"}],\\\"msft:storage_account\\\":\\\"modiseuwest\\\",\\\"msft:short_description\\\":\\\"MODIS\n        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\n        User Guide\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MOD11A2\\\",\\\"title\\\":\\\"MOD11A2\n        file specification\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MYD11A2\\\",\\\"title\\\":\\\"MYD11A2\n        file specification\\\"},{\\\"rel\\\":\\\"cite-as\\\",\\\"href\\\":\\\"https://doi.org/10.5067/MODIS/MOD11A2.061\\\",\\\"title\\\":\\\"LP\n        DAAC - MOD11A2\\\"},{\\\"rel\\\":\\\"cite-as\\\",\\\"href\\\":\\\"https://doi.org/10.5067/MODIS/MYD11A2.061\\\",\\\"title\\\":\\\"LP\n        DAAC - MYD11A2\\\"},{\\\"rel\\\":\\\"license\\\",\\\"href\\\":\\\"https://lpdaac.usgs.gov/data/data-citation-and-policies/\\\",\\\"title\\\":\\\"LP\n        DAAC - Data Citation and Policies\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/modis-11A2-061\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"MODIS\n        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\n        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\n        STAC items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        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\n        Moderate Resolution Imaging Spectroradiometer (MODIS) Land Surface Temperature/Emissivity\n        8-Day Version 6.1 product provides an average 8-day per-pixel Land Surface\n        Temperature and Emissivity (LST&E) with a 1 kilometer (km) spatial resolution\n        in a 1,200 by 1,200 km grid. Each pixel value in the MOD11A2 is a simple average\n        of all the corresponding MOD11A1 LST pixels collected within that 8-day period.\n        The 8-day compositing period was chosen because twice that period is the exact\n        ground track repeat period of the Terra and Aqua platforms. Provided along\n        with the daytime and nighttime surface temperature bands are associated quality\n        control assessments, observation times, view zenith angles, and clear-sky\n        coverages along with bands 31 and 32 emissivities from land cover types.\\\",\\\"item_assets\\\":{\\\"hdf\\\":{\\\"type\\\":\\\"application/x-hdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Source\n        data containing all bands\\\"},\\\"QC_Day\\\":{\\\"type\\\":\\\"image/tiff; application=geotiff;\n        profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Quality control\n        for daytime LST and emissivity\\\",\\\"raster:bands\\\":[{\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":1000}]},\\\"Emis_31\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Band\n        31 emissivity\\\",\\\"raster:bands\\\":[{\\\"scale\\\":0.002,\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":1000}]},\\\"Emis_32\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Band\n        32 emissivity\\\",\\\"raster:bands\\\":[{\\\"scale\\\":0.002,\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":1000}]},\\\"QC_Night\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Quality\n        control for nighttime LST and emissivity\\\",\\\"raster:bands\\\":[{\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":1000}]},\\\"metadata\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"Federal\n        Geographic Data Committee (FGDC) Metadata\\\"},\\\"LST_Day_1km\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\",\\\"temperature\\\"],\\\"title\\\":\\\"8-day\n        daytime 1km grid Landsurface Temperature\\\",\\\"raster:bands\\\":[{\\\"unit\\\":\\\"Kelvin\\\",\\\"scale\\\":0.02,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":1000}]},\\\"Day_view_angl\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Average\n        view zenith angle of daytime Land-surface Temperature\\\",\\\"raster:bands\\\":[{\\\"unit\\\":\\\"Degree\\\",\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":1000}]},\\\"Day_view_time\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Average\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\",\\\"temperature\\\"],\\\"title\\\":\\\"8-day\n        nighttime 1km grid Landsurface Temperature\\\",\\\"raster:bands\\\":[{\\\"unit\\\":\\\"Kelvin\\\",\\\"scale\\\":0.02,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":1000}]},\\\"Clear_sky_days\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"the\n        days in clear-sky conditions and with validate LSTs\\\",\\\"raster:bands\\\":[{\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":1000}]},\\\"Night_view_angl\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"View\n        zenith angle of nighttime Land-surface Temperature \\\",\\\"raster:bands\\\":[{\\\"unit\\\":\\\"Degree\\\",\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":1000}]},\\\"Night_view_time\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Average\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"the\n        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,\n        Z., Hook, S., &amp; Hulley, G. (2021). <i>MODIS/Terra Land Surface Temperature/Emissivity\n        8-Day L3 Global 1km SIN Grid V061</i> [Data set]. NASA EOSDIS Land Processes\n        DAAC. https://doi.org/10.5067/MODIS/MOD11A2.061\\\"},{\\\"doi\\\":\\\"10.5067/MODIS/MYD11A2.061\\\",\\\"citation\\\":\\\"Wan,\n        Z., Hook, S., &amp; Hulley, G. (2021). <i>MODIS/Aqua Land Surface Temperature/Emissivity\n        8-Day L3 Global 1km SIN Grid V061</i> [Data set]. NASA EOSDIS Land Processes\n        DAAC. https://doi.org/10.5067/MODIS/MYD11A2.061\\\"}],\\\"msft:storage_account\\\":\\\"modiseuwest\\\",\\\"msft:short_description\\\":\\\"MODIS\n        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\n        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\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"Daymet\n        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\n        daily Puerto Rico map thumbnail\\\"},\\\"zarr-abfs\\\":{\\\"href\\\":\\\"abfs://daymet-zarr/daily/pr.zarr\\\",\\\"type\\\":\\\"application/vnd+zarr\\\",\\\"roles\\\":[\\\"data\\\",\\\"zarr\\\",\\\"abfs\\\"],\\\"title\\\":\\\"Daily\n        Puerto Rico Daymet Azure Blob File System Zarr root\\\",\\\"description\\\":\\\"Azure\n        Blob File System of the daily Puerto Rico Daymet Zarr Group on Azure Blob\n        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\n        Puerto Rico Daymet HTTPS Zarr root\\\",\\\"description\\\":\\\"HTTPS URI of the daily\n        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\n        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\n        DAAC\\\",\\\"roles\\\":[\\\"producer\\\"]}],\\\"description\\\":\\\"Gridded estimates of daily\n        weather parameters. [Daymet](https://daymet.ornl.gov) Version 4 variables\n        include the following parameters: minimum temperature, maximum temperature,\n        precipitation, shortwave radiation, vapor pressure, snow water equivalent,\n        and day length.\\\\n\\\\n[Daymet](https://daymet.ornl.gov/) provides measurements\n        of near-surface meteorological conditions; the main purpose is to provide\n        data estimates where no instrumentation exists. The dataset covers the period\n        from January 1, 1980 to the present. Each year is processed individually at\n        the close of a calendar year. Data are in a Lambert conformal conic projection\n        for North America and are distributed in Zarr and NetCDF formats, compliant\n        with the [Climate and Forecast (CF) metadata conventions (version 1.6)](http://cfconventions.org/).\\\\n\\\\nUse\n        the DOI at [https://doi.org/10.3334/ORNLDAAC/1840](https://doi.org/10.3334/ORNLDAAC/1840)\n        to cite your usage of the data.\\\\n\\\\nThis dataset provides coverage for Hawaii;\n        North America and Puerto Rico are provided in [separate datasets](https://planetarycomputer.microsoft.com/dataset/group/daymet#daily).\\\\n\\\\n\\\",\\\"sci:citation\\\":\\\"Thornton,\n        M.M., R. Shrestha, P.E. Thornton, S. Kao, Y. Wei, and B.E. Wilson. 2021. Daymet\n        Version 4 Monthly Latency: Daily Surface Weather Data. ORNL DAAC, Oak Ridge,\n        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\n        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\n        average vapor pressure\\\"},\\\"lat\\\":{\\\"type\\\":\\\"auxiliary\\\",\\\"unit\\\":\\\"degrees_north\\\",\\\"attrs\\\":{\\\"units\\\":\\\"degrees_north\\\",\\\"long_name\\\":\\\"latitude\n        coordinate\\\",\\\"standard_name\\\":\\\"latitude\\\"},\\\"shape\\\":[231,364],\\\"chunks\\\":[231,364],\\\"dimensions\\\":[\\\"y\\\",\\\"x\\\"],\\\"description\\\":\\\"latitude\n        coordinate\\\"},\\\"lon\\\":{\\\"type\\\":\\\"auxiliary\\\",\\\"unit\\\":\\\"degrees_east\\\",\\\"attrs\\\":{\\\"units\\\":\\\"degrees_east\\\",\\\"long_name\\\":\\\"longitude\n        coordinate\\\",\\\"standard_name\\\":\\\"longitude\\\"},\\\"shape\\\":[231,364],\\\"chunks\\\":[231,364],\\\"dimensions\\\":[\\\"y\\\",\\\"x\\\"],\\\"description\\\":\\\"longitude\n        coordinate\\\"},\\\"swe\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"kg/m2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"kg/m2\\\",\\\"long_name\\\":\\\"snow\n        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\n        water equivalent\\\"},\\\"dayl\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"s\\\",\\\"attrs\\\":{\\\"units\\\":\\\"s\\\",\\\"long_name\\\":\\\"daylength\\\",\\\"cell_methods\\\":\\\"area:\n        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\n        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\n        total precipitation\\\"},\\\"srad\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"W/m2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"W/m2\\\",\\\"long_name\\\":\\\"daylight\n        average incident shortwave radiation\\\",\\\"cell_methods\\\":\\\"area: mean time:\n        mean\\\",\\\"grid_mapping\\\":\\\"lambert_conformal_conic\\\"},\\\"shape\\\":[14965,231,364],\\\"chunks\\\":[365,231,364],\\\"dimensions\\\":[\\\"time\\\",\\\"y\\\",\\\"x\\\"],\\\"description\\\":\\\"daylight\n        average incident shortwave radiation\\\"},\\\"tmax\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"degrees\n        C\\\",\\\"attrs\\\":{\\\"units\\\":\\\"degrees C\\\",\\\"long_name\\\":\\\"daily maximum temperature\\\",\\\"cell_methods\\\":\\\"area:\n        mean time: maximum\\\",\\\"grid_mapping\\\":\\\"lambert_conformal_conic\\\"},\\\"shape\\\":[14965,231,364],\\\"chunks\\\":[365,231,364],\\\"dimensions\\\":[\\\"time\\\",\\\"y\\\",\\\"x\\\"],\\\"description\\\":\\\"daily\n        maximum temperature\\\"},\\\"tmin\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"degrees C\\\",\\\"attrs\\\":{\\\"units\\\":\\\"degrees\n        C\\\",\\\"long_name\\\":\\\"daily minimum temperature\\\",\\\"cell_methods\\\":\\\"area: mean\n        time: minimum\\\",\\\"grid_mapping\\\":\\\"lambert_conformal_conic\\\"},\\\"shape\\\":[14965,231,364],\\\"chunks\\\":[365,231,364],\\\"dimensions\\\":[\\\"time\\\",\\\"y\\\",\\\"x\\\"],\\\"description\\\":\\\"daily\n        minimum temperature\\\"},\\\"yearday\\\":{\\\"type\\\":\\\"data\\\",\\\"attrs\\\":{\\\"long_name\\\":\\\"yearday\n        base 1\\\"},\\\"shape\\\":[14965],\\\"chunks\\\":[365],\\\"dimensions\\\":[\\\"time\\\"],\\\"description\\\":\\\"yearday\n        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\n        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\n        Conic Conformal (2SP)\\\"},\\\"parameters\\\":[{\\\"id\\\":{\\\"code\\\":8823,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Latitude\n        of 1st standard parallel\\\",\\\"unit\\\":\\\"degree\\\",\\\"value\\\":25},{\\\"id\\\":{\\\"code\\\":8824,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Latitude\n        of 2nd standard parallel\\\",\\\"unit\\\":\\\"degree\\\",\\\"value\\\":60},{\\\"id\\\":{\\\"code\\\":8821,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Latitude\n        of false origin\\\",\\\"unit\\\":\\\"degree\\\",\\\"value\\\":42.5},{\\\"id\\\":{\\\"code\\\":8822,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Longitude\n        of false origin\\\",\\\"unit\\\":\\\"degree\\\",\\\"value\\\":-100},{\\\"id\\\":{\\\"code\\\":8826,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Easting\n        at false origin\\\",\\\"unit\\\":\\\"metre\\\",\\\"value\\\":0},{\\\"id\\\":{\\\"code\\\":8827,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Northing\n        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\n        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\n        Conic Conformal (2SP)\\\"},\\\"parameters\\\":[{\\\"id\\\":{\\\"code\\\":8823,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Latitude\n        of 1st standard parallel\\\",\\\"unit\\\":\\\"degree\\\",\\\"value\\\":25},{\\\"id\\\":{\\\"code\\\":8824,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Latitude\n        of 2nd standard parallel\\\",\\\"unit\\\":\\\"degree\\\",\\\"value\\\":60},{\\\"id\\\":{\\\"code\\\":8821,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Latitude\n        of false origin\\\",\\\"unit\\\":\\\"degree\\\",\\\"value\\\":42.5},{\\\"id\\\":{\\\"code\\\":8822,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Longitude\n        of false origin\\\",\\\"unit\\\":\\\"degree\\\",\\\"value\\\":-100},{\\\"id\\\":{\\\"code\\\":8826,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Easting\n        at false origin\\\",\\\"unit\\\":\\\"metre\\\",\\\"value\\\":0},{\\\"id\\\":{\\\"code\\\":8827,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Northing\n        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\n        of the 'time_bnds' variable.\\\"},\\\"time\\\":{\\\"type\\\":\\\"temporal\\\",\\\"extent\\\":[\\\"1980-01-01T12:00:00Z\\\",\\\"2020-12-30T12:00:00Z\\\"],\\\"description\\\":\\\"24-hour\n        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\n        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\n        3DEP Products & Services\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/3dep-lidar-dtm-native\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"USGS\n        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\n        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\n        collection is derived from the [USGS 3DEP COPC collection](https://planetarycomputer.microsoft.com/dataset/3dep-lidar-copc).\n        It creates a Digital Terrain Model (DTM) using the vendor provided (native)\n        ground classification and [`pdal.filters.range`](https://pdal.io/stages/filters.range.html#filters-range)\n        to output a collection of Cloud Optimized GeoTIFFs, removing all points that\n        have been classified as noise.\\\",\\\"item_assets\\\":{\\\"data\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"COG\n        data\\\",\\\"raster:bands\\\":[{\\\"name\\\":\\\"Z\\\",\\\"unit\\\":\\\"metre\\\",\\\"sampling\\\":\\\"point\\\",\\\"data_type\\\":\\\"float32\\\",\\\"description\\\":\\\"Raster\n        for Z PDAL Dimension\\\"}]},\\\"thumbnail\\\":{\\\"type\\\":\\\"image/png\\\",\\\"roles\\\":[\\\"thumbnail\\\"],\\\"title\\\":\\\"3DEP\n        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\n        Lidar collection for the Digital Terrain Model (DTM) Cloud Optimized Geotiffs\n        (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\n        3DEP Products & Services\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/3dep-lidar-classification\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"USGS\n        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\n        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\n        collection is derived from the [USGS 3DEP COPC collection](https://planetarycomputer.microsoft.com/dataset/3dep-lidar-copc).\n        It uses the [ASPRS](https://www.asprs.org/) (American Society for Photogrammetry\n        and Remote Sensing) [Lidar point classification](https://desktop.arcgis.com/en/arcmap/latest/manage-data/las-dataset/lidar-point-classification.htm).\n        See [LAS specification](https://www.ogc.org/standards/LAS) for details.\\\\n\\\\nThis\n        COG type is based on the Classification [PDAL dimension](https://pdal.io/dimensions.html)\n        and uses [`pdal.filters.range`](https://pdal.io/stages/filters.range.html)\n        to select a subset of interesting classifications. Do note that not all LiDAR\n        collections contain a full compliment of classification labels.\\\\nTo remove\n        outliers, the PDAL pipeline uses a noise filter and then outputs the Classification\n        dimension.\\\\n\\\\nThe STAC collection implements the [`item_assets`](https://github.com/stac-extensions/item-assets)\n        and [`classification`](https://github.com/stac-extensions/classification)\n        extensions. These classes are displayed in the \\\\\\\"Item assets\\\\\\\" below.\n        You can programmatically access the full list of class values and descriptions\n        using the `classification:classes` field form the `data` asset on the STAC\n        collection.\\\\n\\\\nClassification rasters were produced as a subset of LiDAR\n        classification categories:\\\\n\\\\n```\\\\n0, Never Classified\\\\n1, Unclassified\\\\n2,\n        Ground\\\\n3, Low Vegetation\\\\n4, Medium Vegetation\\\\n5, High Vegetation\\\\n6,\n        Building\\\\n9, Water\\\\n10, Rail\\\\n11, Road\\\\n17, Bridge Deck\\\\n```\\\\n\\\",\\\"item_assets\\\":{\\\"data\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"COG\n        data\\\",\\\"raster:bands\\\":[{\\\"name\\\":\\\"Classification\\\",\\\"unit\\\":\\\"metre\\\",\\\"sampling\\\":\\\"point\\\",\\\"data_type\\\":\\\"int16\\\",\\\"description\\\":\\\"Raster\n        for Classification PDAL dimension, ASPRS Lidar Point Classification Standard\\\"}],\\\"classification:classes\\\":[{\\\"value\\\":0,\\\"description\\\":\\\"Never\n        Classified\\\"},{\\\"value\\\":1,\\\"description\\\":\\\"Unclassified\\\"},{\\\"value\\\":2,\\\"description\\\":\\\"Ground\\\"},{\\\"value\\\":3,\\\"description\\\":\\\"Low\n        Vegetation\\\"},{\\\"value\\\":4,\\\"description\\\":\\\"Medium Vegetation\\\"},{\\\"value\\\":5,\\\"description\\\":\\\"High\n        Vegetation\\\"},{\\\"value\\\":6,\\\"description\\\":\\\"Building\\\"},{\\\"value\\\":9,\\\"description\\\":\\\"Water\\\"},{\\\"value\\\":10,\\\"description\\\":\\\"Rail\\\"},{\\\"value\\\":11,\\\"description\\\":\\\"Road\\\"},{\\\"value\\\":17,\\\"description\\\":\\\"Bridge\n        Deck\\\"}]},\\\"thumbnail\\\":{\\\"type\\\":\\\"image/png\\\",\\\"roles\\\":[\\\"thumbnail\\\"],\\\"title\\\":\\\"3DEP\n        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\n        Lidar collection for Cloud Optimized Geotiffs (COGs) created according to\n        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\n        3DEP Products & Services\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/3dep-lidar-dtm\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"USGS\n        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\n        Lidar COG\\\"},\\\"geoparquet-items\\\":{\\\"href\\\":\\\"abfs://items/3dep-lidar-dtm.parquet\\\",\\\"type\\\":\\\"application/x-parquet\\\",\\\"roles\\\":[\\\"stac-items\\\"],\\\"title\\\":\\\"GeoParquet\n        STAC items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        collection is derived from the [USGS 3DEP COPC collection](https://planetarycomputer.microsoft.com/dataset/3dep-lidar-copc).\n        It creates a Digital Terrain Model (DTM) using [`pdal.filters.smrf`](https://pdal.io/stages/filters.smrf.html#filters-smrf)\n        to output a collection of Cloud Optimized GeoTIFFs.\\\\n\\\\nThe Simple Morphological\n        Filter (SMRF) classifies ground points based on the approach outlined in [Pingel2013](https://pdal.io/references.html#pingel2013).\\\",\\\"item_assets\\\":{\\\"data\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"COG\n        data\\\",\\\"raster:bands\\\":[{\\\"type\\\":\\\"Z\\\",\\\"unit\\\":\\\"metre\\\",\\\"sampling\\\":\\\"point\\\",\\\"data_type\\\":\\\"float32\\\",\\\"description\\\":\\\"Z\n        PDAL Dimension\\\"}]},\\\"thumbnail\\\":{\\\"type\\\":\\\"image/png\\\",\\\"roles\\\":[\\\"thumbnail\\\"],\\\"title\\\":\\\"3DEP\n        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\n        Lidar collection for the Digital Terrain Model (DTM) Cloud Optimized Geotiffs\n        (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\n        Domain\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/gap\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"USGS\n        Gap Land Cover\\\",\\\"assets\\\":{\\\"thumbnail\\\":{\\\"href\\\":\\\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/gap.png\\\",\\\"type\\\":\\\"image/png\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"USGS\n        GAP\\\"},\\\"geoparquet-items\\\":{\\\"href\\\":\\\"abfs://items/gap.parquet\\\",\\\"type\\\":\\\"application/x-parquet\\\",\\\"roles\\\":[\\\"stac-items\\\"],\\\"title\\\":\\\"GeoParquet\n        STAC items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        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\n        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\n        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\n        source data\\\",\\\"description\\\":\\\"Original source data for the continental United\n        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\n        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\n        Florida Bayhead Swamp\\\",\\\"South Florida Cypress Dome\\\",\\\"South Florida Dwarf\n        Cypress Savanna\\\",\\\"South Florida Mangrove Swamp\\\",\\\"South Florida Hardwood\n        Hammock\\\",\\\"Southeast Florida Coastal Strand and Maritime Hammock\\\",\\\"Southwest\n        Florida Coastal Strand and Maritime Hammock\\\",\\\"South Florida Pine Rockland\\\",\\\"Atlantic\n        Coastal Plain Fall-line Sandhills Longleaf Pine Woodland - Open Understory\\\",\\\"Atlantic\n        Coastal Plain Fall-line Sandhills Longleaf Pine Woodland - Scrub/Shrub Understory\\\",\\\"Atlantic\n        Coastal Plain Upland Longleaf Pine Woodland\\\",\\\"Atlantic Coastal Plain Xeric\n        River Dune\\\",\\\"East Gulf Coastal Plain Interior Upland Longleaf Pine Woodland\n        - Open Understory Modifier\\\",\\\"East Gulf Coastal Plain Interior Upland Longleaf\n        Pine Woodland - Scrub/Shrub Modifier\\\",\\\"Florida Longleaf Pine Sandhill -\n        Scrub/Shrub Understory Modifier\\\",\\\"Florida Longleaf Pine Sandhill- Open Understory\n        Modifier\\\",\\\"West Gulf Coastal Plain Upland Longleaf Pine Forest and Woodland\\\",\\\"Atlantic\n        Coastal Plain Central Maritime Forest\\\",\\\"Atlantic Coastal Plain Southern\n        Maritime Forest\\\",\\\"Central and South Texas Coastal Fringe Forest and Woodland\\\",\\\"East\n        Gulf Coastal Plain Limestone Forest\\\",\\\"East Gulf Coastal Plain Maritime Forest\\\",\\\"East\n        Gulf Coastal Plain Southern Loess Bluff Forest\\\",\\\"East Gulf Coastal Plain\n        Southern Mesic Slope Forest\\\",\\\"Mississippi Delta Maritime Forest\\\",\\\"Southern\n        Coastal Plain Dry Upland Hardwood Forest\\\",\\\"Southern Coastal Plain Oak Dome\n        and Hammock\\\",\\\"West Gulf Coastal Plain Chenier and Upper Texas Coastal Fringe\n        Forest and Woodland\\\",\\\"West Gulf Coastal Plain Mesic Hardwood Forest\\\",\\\"East-Central\n        Texas Plains Pine Forest and Woodland\\\",\\\"West Gulf Coastal Plain Pine-Hardwood\n        Forest\\\",\\\"West Gulf Coastal Plain Sandhill Oak and Shortleaf Pine Forest\n        and Woodland\\\",\\\"Atlantic Coastal Plain Fall-Line Sandhills Longleaf Pine\n        Woodland - Loblolly Modifier\\\",\\\"Deciduous Plantations\\\",\\\"East Gulf Coastal\n        Plain Interior Upland Longleaf Pine Woodland - Loblolly Modifier\\\",\\\"East\n        Gulf Coastal Plain Interior Upland Longleaf Pine Woodland - Offsite Hardwood\n        Modifier\\\",\\\"East Gulf Coastal Plain Near-Coast Pine Flatwoods - Offsite Hardwood\n        Modifier\\\",\\\"Evergreen Plantation or Managed Pine\\\",\\\"California Central Valley\n        Mixed Oak Savanna\\\",\\\"California Coastal Closed-Cone Conifer Forest and Woodland\\\",\\\"California\n        Coastal Live Oak Woodland and Savanna\\\",\\\"California Lower Montane Blue Oak-Foothill\n        Pine Woodland and Savanna\\\",\\\"Central and Southern California Mixed Evergreen\n        Woodland\\\",\\\"Mediterranean California Lower Montane Black Oak-Conifer Forest\n        and Woodland\\\",\\\"Southern California Oak Woodland and Savanna\\\",\\\"Madrean\n        Encinal\\\",\\\"Madrean Pinyon-Juniper Woodland\\\",\\\"Madrean Pine-Oak Forest and\n        Woodland\\\",\\\"Madrean Upper Montane Conifer-Oak Forest and Woodland\\\",\\\"Edwards\n        Plateau Dry-Mesic Slope Forest and Woodland\\\",\\\"Edwards Plateau Limestone\n        Savanna and Woodland\\\",\\\"Edwards Plateau Mesic Canyon\\\",\\\"Llano Uplift Acidic\n        Forest, Woodland and Glade\\\",\\\"East Cascades Oak-Ponderosa Pine Forest and\n        Woodland\\\",\\\"Mediterranean California Mixed Evergreen Forest\\\",\\\"Mediterranean\n        California Mixed Oak Woodland\\\",\\\"North Pacific Dry Douglas-fir-(Madrone)\n        Forest and Woodland\\\",\\\"North Pacific Oak Woodland\\\",\\\"Edwards Plateau Limestone\n        Shrubland\\\",\\\"Allegheny-Cumberland Dry Oak Forest and Woodland - Hardwood\\\",\\\"Allegheny-Cumberland\n        Dry Oak Forest and Woodland - Pine Modifier\\\",\\\"Central and Southern Appalachian\n        Montane Oak Forest\\\",\\\"Central and Southern Appalachian Northern Hardwood\n        Forest\\\",\\\"Central Appalachian Oak and Pine Forest\\\",\\\"Crosstimbers Oak Forest\n        and Woodland\\\",\\\"East Gulf Coastal Plain Black Belt Calcareous Prairie and\n        Woodland - Woodland Modifier\\\",\\\"East Gulf Coastal Plain Northern Dry Upland\n        Hardwood Forest\\\",\\\"East Gulf Coastal Plain Northern Loess Plain Oak-Hickory\n        Upland - Hardwood Modifier\\\",\\\"East Gulf Coastal Plain Northern Loess Plain\n        Oak-Hickory Upland - Juniper Modifier\\\",\\\"East-Central Texas Plains Post Oak\n        Savanna and Woodland\\\",\\\"Lower Mississippi River Dune Woodland and Forest\\\",\\\"Mississippi\n        River Alluvial Plain Dry-Mesic Loess Slope Forest\\\",\\\"North-Central Interior\n        Dry Oak Forest and Woodland\\\",\\\"North-Central Interior Dry-Mesic Oak Forest\n        and Woodland\\\",\\\"Northeastern Interior Dry Oak Forest - Mixed Modifier\\\",\\\"Northeastern\n        Interior Dry Oak Forest - Virginia/Pitch Pine Modifier\\\",\\\"Northeastern Interior\n        Dry Oak Forest-Hardwood Modifier\\\",\\\"Northeastern Interior Dry-Mesic Oak Forest\\\",\\\"Northern\n        Atlantic Coastal Plain Dry Hardwood Forest\\\",\\\"Crowley's Ridge Sand Forest\\\",\\\"Ouachita\n        Montane Oak Forest\\\",\\\"Ozark-Ouachita Dry Oak Woodland\\\",\\\"Ozark-Ouachita\n        Dry-Mesic Oak Forest\\\",\\\"Southern and Central Appalachian Oak Forest\\\",\\\"Southern\n        and Central Appalachian Oak Forest - Xeric\\\",\\\"Southern Interior Low Plateau\n        Dry-Mesic Oak Forest\\\",\\\"Southern Ridge and Valley Dry Calcareous Forest\\\",\\\"Southern\n        Ridge and Valley Dry Calcareous Forest - Pine modifier\\\",\\\"East Gulf Coastal\n        Plain Northern Dry Upland Hardwood Forest - Offsite Pine Modifier\\\",\\\"Managed\n        Tree Plantation\\\",\\\"Ruderal forest\\\",\\\"Southern Piedmont Dry Oak-(Pine) Forest\n        - Loblolly Pine Modifier\\\",\\\"Acadian Low-Elevation Spruce-Fir-Hardwood Forest\\\",\\\"Acadian-Appalachian\n        Montane Spruce-Fir Forest\\\",\\\"Appalachian Hemlock-Hardwood Forest\\\",\\\"Central\n        and Southern Appalachian Spruce-Fir Forest\\\",\\\"0\\\",\\\"Laurentian-Acadian Northern\n        Hardwoods Forest\\\",\\\"Laurentian-Acadian Northern Pine-(Oak) Forest\\\",\\\"Laurentian-Acadian\n        Pine-Hemlock-Hardwood Forest\\\",\\\"Paleozoic Plateau Bluff and Talus\\\",\\\"Southern\n        Appalachian Northern Hardwood Forest\\\",\\\"Atlantic Coastal Plain Dry and Dry-Mesic\n        Oak Forest\\\",\\\"Atlantic Coastal Plain Fall-line Sandhills Longleaf Pine Woodland\n        - Offsite Hardwood\\\",\\\"East Gulf Coastal Plain Interior Shortleaf Pine-Oak\n        Forest - Hardwood Modifier\\\",\\\"East Gulf Coastal Plain Interior Shortleaf\n        Pine-Oak Forest - Mixed Modifier\\\",\\\"Ozark-Ouachita Shortleaf Pine-Bluestem\n        Woodland\\\",\\\"Ozark-Ouachita Shortleaf Pine-Oak Forest and Woodland\\\",\\\"Southeastern\n        Interior Longleaf Pine Woodland\\\",\\\"Southern Appalachian Low Mountain Pine\n        Forest\\\",\\\"Southern Piedmont Dry Oak-(Pine) Forest\\\",\\\"Southern Piedmont Dry\n        Oak-(Pine) Forest - Hardwood Modifier\\\",\\\"Southern Piedmont Dry Oak-(Pine)\n        Forest - Mixed Modifier\\\",\\\"Southern Piedmont Dry Oak-Heath Forest - Mixed\n        Modifier\\\",\\\"Eastern Great Plains Tallgrass Aspen Parkland\\\",\\\"Northwestern\n        Great Plains Aspen Forest and Parkland\\\",\\\"Northwestern Great Plains Shrubland\\\",\\\"Western\n        Great Plains Dry Bur Oak Forest and Woodland\\\",\\\"Western Great Plains Wooded\n        Draw and Ravine\\\",\\\"Southern Atlantic Coastal Plain Mesic Hardwood Forest\\\",\\\"East\n        Gulf Coastal Plain Northern Loess Bluff Forest\\\",\\\"East Gulf Coastal Plain\n        Northern Mesic Hardwood Forest\\\",\\\"North-Central Interior Beech-Maple Forest\\\",\\\"North-Central\n        Interior Maple-Basswood Forest\\\",\\\"Ozark-Ouachita Mesic Hardwood Forest\\\",\\\"South-Central\n        Interior Mesophytic Forest\\\",\\\"Southern and Central Appalachian Cove Forest\\\",\\\"Crowley's\n        Ridge Mesic Loess Slope Forest\\\",\\\"Southern Piedmont Mesic Forest\\\",\\\"Appalachian\n        Shale Barrens\\\",\\\"Atlantic Coastal Plain Northern Maritime Forest\\\",\\\"Laurentian\n        Pine-Oak Barrens\\\",\\\"Northeastern Interior Pine Barrens\\\",\\\"Northern Atlantic\n        Coastal Plain Pitch Pine Barrens\\\",\\\"Southern Appalachian Montane Pine Forest\n        and Woodland\\\",\\\"East Cascades Mesic Montane Mixed-Conifer Forest and Woodland\\\",\\\"Middle\n        Rocky Mountain Montane Douglas-fir Forest and Woodland\\\",\\\"Northern Rocky\n        Mountain Dry-Mesic Montane Mixed Conifer Forest\\\",\\\"Northern Rocky Mountain\n        Foothill Conifer Wooded Steppe\\\",\\\"Northern Rocky Mountain Mesic Montane Mixed\n        Conifer Forest\\\",\\\"Northern Rocky Mountain Ponderosa Pine Woodland and Savanna\\\",\\\"Northern\n        Rocky Mountain Western Larch Savanna\\\",\\\"Northwestern Great Plains - Black\n        Hills Ponderosa Pine Woodland and Savanna\\\",\\\"Rocky Mountain Foothill Limber\n        Pine-Juniper Woodland\\\",\\\"Inter-Mountain Basins Aspen-Mixed Conifer Forest\n        and Woodland\\\",\\\"Inter-Mountain Basins Subalpine Limber-Bristlecone Pine Woodland\\\",\\\"Northern\n        Rocky Mountain Subalpine Woodland and Parkland\\\",\\\"Rocky Mountain Aspen Forest\n        and Woodland\\\",\\\"Rocky Mountain Lodgepole Pine Forest\\\",\\\"Rocky Mountain Poor-Site\n        Lodgepole Pine Forest\\\",\\\"Rocky Mountain Subalpine Dry-Mesic Spruce-Fir Forest\n        and Woodland\\\",\\\"Rocky Mountain Subalpine Mesic Spruce-Fir Forest and Woodland\\\",\\\"Rocky\n        Mountain Subalpine-Montane Limber-Bristlecone Pine Woodland\\\",\\\"Rocky Mountain\n        Bigtooth Maple Ravine Woodland\\\",\\\"Southern Rocky Mountain Dry-Mesic Montane\n        Mixed Conifer Forest and Woodland\\\",\\\"Southern Rocky Mountain Mesic Montane\n        Mixed Conifer Forest and Woodland\\\",\\\"Southern Rocky Mountain Ponderosa Pine\n        Savanna\\\",\\\"Southern Rocky Mountain Ponderosa Pine Woodland\\\",\\\"California\n        Montane Jeffrey Pine-(Ponderosa Pine) Woodland\\\",\\\"Klamath-Siskiyou Lower\n        Montane Serpentine Mixed Conifer Woodland\\\",\\\"Klamath-Siskiyou Upper Montane\n        Serpentine Mixed Conifer Woodland\\\",\\\"Mediterranean California Dry-Mesic Mixed\n        Conifer Forest and Woodland\\\",\\\"Mediterranean California Mesic Mixed Conifer\n        Forest and Woodland\\\",\\\"Sierran-Intermontane Desert Western White Pine-White\n        Fir Woodland\\\",\\\"California Coastal Redwood Forest\\\",\\\"North Pacific Broadleaf\n        Landslide Forest and Shrubland\\\",\\\"North Pacific Dry-Mesic Silver Fir-Western\n        Hemlock-Douglas-fir Forest\\\",\\\"North Pacific Hypermaritime Sitka Spruce Forest\\\",\\\"North\n        Pacific Hypermaritime Western Red-cedar-Western Hemlock Forest\\\",\\\"North Pacific\n        Lowland Mixed Hardwood-Conifer Forest and Woodland\\\",\\\"North Pacific Maritime\n        Dry-Mesic Douglas-fir-Western Hemlock Forest\\\",\\\"North Pacific Maritime Mesic-Wet\n        Douglas-fir-Western Hemlock Forest\\\",\\\"North Pacific Mesic Western Hemlock-Silver\n        Fir Forest\\\",\\\"North Pacific Wooded Volcanic Flowage\\\",\\\"Mediterranean California\n        Red Fir Forest\\\",\\\"Mediterranean California Subalpine Woodland\\\",\\\"North Pacific\n        Maritime Mesic Subalpine Parkland\\\",\\\"North Pacific Mountain Hemlock Forest\\\",\\\"Northern\n        California Mesic Subalpine Woodland\\\",\\\"Northern Pacific Mesic Subalpine Woodland\\\",\\\"Sierra\n        Nevada Subalpine Lodgepole Pine Forest and Woodland\\\",\\\"Columbia Plateau Western\n        Juniper Woodland and Savanna\\\",\\\"Great Basin Pinyon-Juniper Woodland\\\",\\\"Inter-Mountain\n        Basins Curl-leaf Mountain Mahogany Woodland and Shrubland\\\",\\\"Inter-Mountain\n        Basins Juniper Savanna\\\",\\\"Colorado Plateau Pinyon-Juniper Shrubland\\\",\\\"Colorado\n        Plateau Pinyon-Juniper Woodland\\\",\\\"Southern Rocky Mountain Juniper Woodland\n        and Savanna\\\",\\\"Southern Rocky Mountain Pinyon-Juniper Woodland\\\",\\\"Northwestern\n        Great Plains Floodplain\\\",\\\"Northwestern Great Plains Riparian\\\",\\\"Western\n        Great Plains Floodplain\\\",\\\"Western Great Plains Floodplain Systems\\\",\\\"Western\n        Great Plains Riparian Woodland and Shrubland\\\",\\\"Central Appalachian Floodplain\n        - Forest Modifier\\\",\\\"Central Appalachian Riparian - Forest Modifier\\\",\\\"Central\n        Interior and Appalachian Floodplain Systems\\\",\\\"Central Interior and Appalachian\n        Riparian Systems\\\",\\\"Laurentian-Acadian Floodplain Systems\\\",\\\"Ozark-Ouachita\n        Riparian\\\",\\\"South-Central Interior Large Floodplain\\\",\\\"South-Central Interior\n        Large Floodplain - Forest Modifier\\\",\\\"South-Central Interior Small Stream\n        and Riparian\\\",\\\"North-Central Interior and Appalachian Rich Swamp\\\",\\\"0\\\",\\\"0\\\",\\\"Laurentian-Acadian\n        Swamp Systems\\\",\\\"North-Central Interior Wet Flatwoods\\\",\\\"0\\\",\\\"South-Central\n        Interior / Upper Coastal Plain Wet Flatwoods\\\",\\\"0\\\",\\\"Southern Piedmont/Ridge\n        and Valley Upland Depression Swamp\\\",\\\"Atlantic Coastal Plain Blackwater Stream\n        Floodplain Forest - Forest Modifier\\\",\\\"Atlantic Coastal Plain Brownwater\n        Stream Floodplain Forest\\\",\\\"Atlantic Coastal Plain Northern Tidal Wooded\n        Swamp\\\",\\\"Atlantic Coastal Plain Small Blackwater River Floodplain Forest\\\",\\\"Atlantic\n        Coastal Plain Small Brownwater River Floodplain Forest\\\",\\\"Atlantic Coastal\n        Plain Southern Tidal Wooded Swamp\\\",\\\"East Gulf Coastal Plain Large River\n        Floodplain Forest - Forest Modifier\\\",\\\"East Gulf Coastal Plain Small Stream\n        and River Floodplain Forest\\\",\\\"East Gulf Coastal Plain Tidal Wooded Swamp\\\",\\\"0\\\",\\\"Southeastern\n        Great Plains Riparian Forest\\\",\\\"Southeastern Great Plains Floodplain Forest\\\",\\\"Mississippi\n        River Bottomland Depression\\\",\\\"Mississippi River Floodplain and Riparian\n        Forest\\\",\\\"Mississippi River Low Floodplain (Bottomland) Forest\\\",\\\"Mississippi\n        River Riparian Forest\\\",\\\"Red River Large Floodplain Forest\\\",\\\"Southern Coastal\n        Plain Blackwater River Floodplain Forest\\\",\\\"Southern Piedmont Large Floodplain\n        Forest - Forest Modifier\\\",\\\"Southern Piedmont Small Floodplain and Riparian\n        Forest\\\",\\\"West Gulf Coastal Plain Large River Floodplain Forest\\\",\\\"West\n        Gulf Coastal Plain Near-Coast Large River Swamp\\\",\\\"West Gulf Coastal Plain\n        Small Stream and River Forest\\\",\\\"Atlantic Coastal Plain Streamhead Seepage\n        Swamp -  Pocosin -  and Baygall\\\",\\\"Gulf and Atlantic Coastal Plain Swamp\n        Systems\\\",\\\"Southern Coastal Plain Hydric Hammock\\\",\\\"Southern Coastal Plain\n        Seepage Swamp and Baygall\\\",\\\"West Gulf Coastal Plain Seepage Swamp and Baygall\\\",\\\"Atlantic\n        Coastal Plain Nonriverine Swamp and Wet Hardwood Forest  - Taxodium/Nyssa\n        Modifier\\\",\\\"Atlantic Coastal Plain Nonriverine Swamp and Wet Hardwood Forest\n        - Oak Dominated Modifier\\\",\\\"East Gulf Coastal Plain Southern Loblolly-Hardwood\n        Flatwoods\\\",\\\"Lower Mississippi River Bottomland Depressions - Forest Modifier\\\",\\\"Lower\n        Mississippi River Flatwoods\\\",\\\"Northern Atlantic Coastal Plain Basin Swamp\n        and Wet Hardwood Forest\\\",\\\"Southern Coastal Plain Nonriverine Basin Swamp\\\",\\\"Southern\n        Coastal Plain Nonriverine Basin Swamp - Okefenokee Bay/Gum Modifier\\\",\\\"Southern\n        Coastal Plain Nonriverine Basin Swamp - Okefenokee Pine Modifier\\\",\\\"Southern\n        Coastal Plain Nonriverine Basin Swamp - Okefenokee Taxodium Modifier\\\",\\\"West\n        Gulf Coastal Plain Nonriverine Wet Hardwood Flatwoods\\\",\\\"West Gulf Coastal\n        Plain Pine-Hardwood Flatwoods\\\",\\\"Edwards Plateau Riparian\\\",\\\"Atlantic Coastal\n        Plain Clay-Based Carolina Bay Forested Wetland\\\",\\\"Atlantic Coastal Plain\n        Clay-Based Carolina Bay Herbaceous Wetland\\\",\\\"Atlantic Coastal Plain Southern\n        Wet Pine Savanna and Flatwoods\\\",\\\"Central Atlantic Coastal Plain Wet Longleaf\n        Pine Savanna and Flatwoods\\\",\\\"Central Florida Pine Flatwoods\\\",\\\"East Gulf\n        Coastal Plain Near-Coast Pine Flatwoods\\\",\\\"East Gulf Coastal Plain Near-Coast\n        Pine Flatwoods - Open Understory Modifier\\\",\\\"East Gulf Coastal Plain Near-Coast\n        Pine Flatwoods - Scrub/Shrub Understory Modifier\\\",\\\"South Florida Pine Flatwoods\\\",\\\"Southern\n        Coastal Plain Nonriverine Cypress Dome\\\",\\\"West Gulf Coastal Plain Wet Longleaf\n        Pine Savanna and Flatwoods\\\",\\\"Columbia Basin Foothill Riparian Woodland and\n        Shrubland\\\",\\\"Great Basin Foothill and Lower Montane Riparian Woodland and\n        Shrubland\\\",\\\"0\\\",\\\"Northern Rocky Mountain Conifer Swamp\\\",\\\"Northern Rocky\n        Mountain Lower Montane Riparian Woodland and Shrubland\\\",\\\"Rocky Mountain\n        Lower Montane Riparian Woodland and Shrubland\\\",\\\"Rocky Mountain Montane Riparian\n        Systems\\\",\\\"Rocky Mountain Subalpine-Montane Riparian Woodland\\\",\\\"North Pacific\n        Hardwood-Conifer Swamp\\\",\\\"North Pacific Lowland Riparian Forest and Shrubland\\\",\\\"North\n        Pacific Montane Riparian Woodland and Shrubland\\\",\\\"North Pacific Shrub Swamp\\\",\\\"California\n        Central Valley Riparian Woodland and Shrubland\\\",\\\"Mediterranean California\n        Foothill and Lower Montane Riparian Woodland\\\",\\\"Mediterranean California\n        Serpentine Foothill and Lower Montane Riparian Woodland and Seep\\\",\\\"North\n        American Warm Desert Lower Montane Riparian Woodland and Shrubland\\\",\\\"North\n        American Warm Desert Riparian Systems\\\",\\\"North American Warm Desert Riparian\n        Woodland and Shrubland\\\",\\\"Tamaulipan Floodplain\\\",\\\"Tamaulipan Riparian Systems\\\",\\\"Boreal\n        Aspen-Birch Forest\\\",\\\"Boreal Jack Pine-Black Spruce Forest\\\",\\\"Boreal White\n        Spruce-Fir-Hardwood Forest\\\",\\\"Boreal-Laurentian Conifer Acidic Swamp and\n        Treed Poor Fen\\\",\\\"Eastern Boreal Floodplain\\\",\\\"South Florida Shell Hash\n        Beach\\\",\\\"Southeast Florida Beach\\\",\\\"Southwest Florida Beach\\\",\\\"South Florida\n        Everglades Sawgrass Marsh\\\",\\\"South Florida Freshwater Slough and Gator Hole\\\",\\\"South\n        Florida Wet Marl Prairie\\\",\\\"California Maritime Chaparral\\\",\\\"California\n        Mesic Chaparral\\\",\\\"California Xeric Serpentine Chaparral\\\",\\\"Klamath-Siskiyou\n        Xeromorphic Serpentine Savanna and Chaparral\\\",\\\"Mediterranean California\n        Mesic Serpentine Woodland and Chaparral\\\",\\\"Northern and Central California\n        Dry-Mesic Chaparral\\\",\\\"Southern California Dry-Mesic Chaparral\\\",\\\"Southern\n        California Coastal Scrub\\\",\\\"California Central Valley and Southern Coastal\n        Grassland\\\",\\\"California Mesic Serpentine Grassland\\\",\\\"Columbia Basin Foothill\n        and Canyon Dry Grassland\\\",\\\"Columbia Basin Palouse Prairie\\\",\\\"North Pacific\n        Alpine and Subalpine Dry Grassland\\\",\\\"North Pacific Montane Grassland\\\",\\\"North\n        Pacific Montane Shrubland\\\",\\\"Northern Rocky Mountain Lower Montane, Foothill\n        and Valley Grassland\\\",\\\"Northern Rocky Mountain Montane-Foothill Deciduous\n        Shrubland\\\",\\\"Northern Rocky Mountain Subalpine Deciduous Shrubland\\\",\\\"Northern\n        Rocky Mountain Subalpine-Upper Montane Grassland\\\",\\\"Southern Rocky Mountain\n        Montane-Subalpine Grassland\\\",\\\"Rocky Mountain Gambel Oak-Mixed Montane Shrubland\\\",\\\"Rocky\n        Mountain Lower Montane-Foothill Shrubland\\\",\\\"California Northern Coastal\n        Grassland\\\",\\\"North Pacific Herbaceous Bald and Bluff\\\",\\\"North Pacific Hypermaritime\n        Shrub and Herbaceous Headland\\\",\\\"Willamette Valley Upland Prairie and Savanna\\\",\\\"Mediterranean\n        California Subalpine Meadow\\\",\\\"Rocky Mountain Subalpine-Montane Mesic Meadow\\\",\\\"Central\n        Mixedgrass Prairie\\\",\\\"Northwestern Great Plains Mixedgrass Prairie\\\",\\\"Western\n        Great Plains Foothill and Piedmont Grassland\\\",\\\"Western Great Plains Tallgrass\n        Prairie\\\",\\\"Western Great Plains Sand Prairie\\\",\\\"Western Great Plains Sandhill\n        Steppe\\\",\\\"Western Great Plains Mesquite Woodland and Shrubland\\\",\\\"Western\n        Great Plains Shortgrass Prairie\\\",\\\"Arkansas Valley Prairie and Woodland\\\",\\\"Central\n        Tallgrass Prairie\\\",\\\"North-Central Interior Oak Savanna\\\",\\\"North-Central\n        Interior Sand and Gravel Tallgrass Prairie\\\",\\\"North-Central Oak Barrens\\\",\\\"Northern\n        Tallgrass Prairie\\\",\\\"Southeastern Great Plains Tallgrass Prairie\\\",\\\"Texas\n        Blackland Tallgrass Prairie\\\",\\\"Texas-Louisiana Coastal Prairie\\\",\\\"Central\n        Appalachian Pine-Oak Rocky Woodland\\\",\\\"Southern Appalachian Grass and Shrub\n        Bald\\\",\\\"Southern Appalachian Grass and Shrub Bald - Herbaceous Modifier\\\",\\\"Southern\n        Appalachian Grass and Shrub Bald - Shrub Modifier\\\",\\\"Central Appalachian\n        Alkaline Glade and Woodland\\\",\\\"Central Interior Highlands Calcareous Glade\n        and Barrens\\\",\\\"Central Interior Highlands Dry Acidic Glade and Barrens\\\",\\\"Cumberland\n        Sandstone Glade and Barrens\\\",\\\"Great Lakes Alvar\\\",\\\"Nashville Basin Limestone\n        Glade\\\",\\\"Southern Ridge and Valley / Cumberland Dry Calcareous Forest\\\",\\\"Southern\n        Piedmont Glade and Barrens\\\",\\\"East Gulf Coastal Plain Black Belt Calcareous\n        Prairie and Woodland - Herbaceous Modifier\\\",\\\"East Gulf Coastal Plain Jackson\n        Prairie and Woodland\\\",\\\"Eastern Highland Rim Prairie and Barrens - Dry Modifier\\\",\\\"Coahuilan\n        Chaparral\\\",\\\"Madrean Oriental Chaparral\\\",\\\"Mogollon Chaparral\\\",\\\"Sonora-Mojave\n        Semi-Desert Chaparral\\\",\\\"California Montane Woodland and Chaparral\\\",\\\"Great\n        Basin Semi-Desert Chaparral\\\",\\\"Florida Dry Prairie\\\",\\\"Florida Peninsula\n        Inland Scrub\\\",\\\"West Gulf Coastal Plain Catahoula Barrens\\\",\\\"West Gulf Coastal\n        Plain Nepheline Syenite Glade\\\",\\\"East Gulf Coastal Plain Jackson Plain Dry\n        Flatwoods - Open Understory Modifier\\\",\\\"West Gulf Coastal Plain Northern\n        Calcareous Prairie\\\",\\\"West Gulf Coastal Plain Southern Calcareous Prairie\\\",\\\"Acadian-Appalachian\n        Subalpine Woodland and Heath-Krummholz\\\",\\\"Atlantic and Gulf Coastal Plain\n        Interdunal Wetland\\\",\\\"Atlantic Coastal Plain Southern Dune and Maritime Grassland\\\",\\\"Central\n        and Upper Texas Coast Dune and Coastal Grassland\\\",\\\"East Gulf Coastal Plain\n        Dune and Coastal Grassland\\\",\\\"Great Lakes Dune\\\",\\\"Northern Atlantic Coastal\n        Plain Dune and Swale\\\",\\\"Northern Atlantic Coastal Plain Heathland and Grassland\\\",\\\"South\n        Texas Dune and Coastal Grassland\\\",\\\"South Texas Sand Sheet Grassland\\\",\\\"Southwest\n        Florida Dune and Coastal Grassland\\\",\\\"North Pacific Coastal Cliff and Bluff\\\",\\\"North\n        Pacific Maritime Coastal Sand Dune and Strand\\\",\\\"Northern California Coastal\n        Scrub\\\",\\\"Mediterranean California Coastal Bluff\\\",\\\"Mediterranean California\n        Northern Coastal Dune\\\",\\\"Mediterranean California Southern Coastal Dune\\\",\\\"Atlantic\n        Coastal Plain Northern Sandy Beach\\\",\\\"Atlantic Coastal Plain Sea Island Beach\\\",\\\"Atlantic\n        Coastal Plain Southern Beach\\\",\\\"Florida Panhandle Beach Vegetation\\\",\\\"Louisiana\n        Beach\\\",\\\"Northern Atlantic Coastal Plain Sandy Beach\\\",\\\"Texas Coastal Bend\n        Beach\\\",\\\"Upper Texas Coast Beach\\\",\\\"0\\\",\\\"Mediterranean California Serpentine\n        Fen\\\",\\\"Mediterranean California Subalpine-Montane Fen\\\",\\\"North Pacific Bog\n        and Fen\\\",\\\"Rocky Mountain Subalpine-Montane Fen\\\",\\\"Atlantic Coastal Plain\n        Peatland Pocosin\\\",\\\"Southern and Central Appalachian Bog and Fen\\\",\\\"Atlantic\n        Coastal Plain Central Fresh-Oligohaline Tidal Marsh\\\",\\\"Atlantic Coastal Plain\n        Embayed Region Tidal Freshwater Marsh\\\",\\\"Atlantic Coastal Plain Northern\n        Fresh and Oligohaline Tidal Marsh\\\",\\\"Florida Big Bend Fresh-Oligohaline Tidal\n        Marsh\\\",\\\"Atlantic Coastal Plain Depression Pondshore\\\",\\\"Atlantic Coastal\n        Plain Large Natural Lakeshore\\\",\\\"Central Florida Herbaceous Pondshore\\\",\\\"Central\n        Florida Herbaceous Seep\\\",\\\"East Gulf Coastal Plain Savanna and Wet Prairie\\\",\\\"East\n        Gulf Coastal Plain Depression Pondshore\\\",\\\"Floridian Highlands Freshwater\n        Marsh\\\",\\\"Southern Coastal Plain Herbaceous Seepage Bog\\\",\\\"Southern Coastal\n        Plain Nonriverine Basin Swamp - Okefenokee Clethra Modifier\\\",\\\"Southern Coastal\n        Plain Nonriverine Basin Swamp - Okefenokee Nupea Modifier\\\",\\\"Texas-Louisiana\n        Coastal Prairie Slough\\\",\\\"Central Interior and Appalachian Shrub-Herbaceous\n        Wetland Systems\\\",\\\"Great Lakes Coastal Marsh Systems\\\",\\\"0\\\",\\\"0\\\",\\\"Laurentian-Acadian\n        Shrub-Herbaceous Wetland Systems\\\",\\\"0\\\",\\\"Eastern Great Plains Wet Meadow,\n        Prairie  and Marsh\\\",\\\"Great Lakes Wet-Mesic Lakeplain Prairie\\\",\\\"Great Plains\n        Prairie Pothole\\\",\\\"Western Great Plains Closed Depression Wetland\\\",\\\"Western\n        Great Plains Depressional Wetland Systems\\\",\\\"Western Great Plains Open Freshwater\n        Depression Wetland\\\",\\\"Cumberland Riverscour\\\",\\\"Inter-Mountain Basins Interdunal\n        Swale Wetland\\\",\\\"North Pacific Avalanche Chute Shrubland\\\",\\\"North Pacific\n        Intertidal Freshwater Wetland\\\",\\\"Temperate Pacific Freshwater Emergent Marsh\\\",\\\"Temperate\n        Pacific Freshwater Mudflat\\\",\\\"Columbia Plateau Vernal Pool\\\",\\\"Northern California\n        Claypan Vernal Pool\\\",\\\"Northern Rocky Mountain Wooded Vernal Pool\\\",\\\"Columbia\n        Plateau Silver Sagebrush Seasonally Flooded Shrub-Steppe\\\",\\\"Rocky Mountain\n        Alpine-Montane Wet Meadow\\\",\\\"Rocky Mountain Subalpine-Montane Riparian Shrubland\\\",\\\"Temperate\n        Pacific Montane Wet Meadow\\\",\\\"Willamette Valley Wet Prairie\\\",\\\"Chihuahuan-Sonoran\n        Desert Bottomland and Swale Grassland\\\",\\\"North American Arid West Emergent\n        Marsh\\\",\\\"North American Warm Desert Riparian Mesquite Bosque\\\",\\\"Western\n        Great Plains Saline Depression Wetland\\\",\\\"Acadian Salt Marsh and Estuary\n        Systems\\\",\\\"Atlantic Coastal Plain Central Salt and Brackish Tidal Marsh\\\",\\\"Atlantic\n        Coastal Plain Embayed Region Tidal Salt and Brackish Marsh\\\",\\\"Atlantic Coastal\n        Plain Indian River Lagoon Tidal Marsh\\\",\\\"Atlantic Coastal Plain Northern\n        Tidal Salt Marsh\\\",\\\"Florida Big Bend Salt-Brackish Tidal Marsh\\\",\\\"Gulf and\n        Atlantic Coastal Plain Tidal Marsh Systems\\\",\\\"Mississippi Sound Salt and\n        Brackish Tidal Marsh\\\",\\\"Texas Saline Coastal Prairie\\\",\\\"Temperate Pacific\n        Tidal Salt and Brackish Marsh\\\",\\\"Inter-Mountain Basins Alkaline Closed Depression\\\",\\\"Inter-Mountain\n        Basins Greasewood Flat\\\",\\\"Inter-Mountain Basins Playa\\\",\\\"North American\n        Warm Desert Playa\\\",\\\"Apacherian-Chihuahuan Mesquite Upland Scrub\\\",\\\"Apacherian-Chihuahuan\n        Semi-Desert Grassland and Steppe\\\",\\\"Chihuahuan Creosotebush, Mixed Desert\n        and Thorn Scrub\\\",\\\"Chihuahuan Gypsophilous Grassland and Steppe\\\",\\\"Chihuahuan\n        Loamy Plains Desert Grassland\\\",\\\"Chihuahuan Mixed Desert and Thorn Scrub\\\",\\\"Chihuahuan\n        Sandy Plains Semi-Desert Grassland\\\",\\\"Chihuahuan Stabilized Coppice Dune\n        and Sand Flat Scrub\\\",\\\"Chihuahuan Succulent Desert Scrub\\\",\\\"Madrean Juniper\n        Savanna\\\",\\\"Mojave Mid-Elevation Mixed Desert Scrub\\\",\\\"North American Warm\n        Desert Active and Stabilized Dune\\\",\\\"Sonora-Mojave Creosotebush-White Bursage\n        Desert Scrub\\\",\\\"Sonoran Mid-Elevation Desert Scrub\\\",\\\"Sonoran Paloverde-Mixed\n        Cacti Desert Scrub\\\",\\\"Chihuahuan Mixed Salt Desert Scrub\\\",\\\"Sonora-Mojave\n        Mixed Salt Desert Scrub\\\",\\\"North American Warm Desert Wash\\\",\\\"South Texas\n        Lomas\\\",\\\"Tamaulipan Calcareous Thornscrub\\\",\\\"Tamaulipan Clay Grassland\\\",\\\"Tamaulipan\n        Mesquite Upland Scrub\\\",\\\"Tamaulipan Mixed Deciduous Thornscrub\\\",\\\"Tamaulipan\n        Savanna Grassland\\\",\\\"Inter-Mountain Basins Mat Saltbush Shrubland\\\",\\\"Inter-Mountain\n        Basins Mixed Salt Desert Scrub\\\",\\\"Inter-Mountain Basins Wash\\\",\\\"Columbia\n        Plateau Steppe and Grassland\\\",\\\"Great Basin Xeric Mixed Sagebrush Shrubland\\\",\\\"Inter-Mountain\n        Basins Big Sagebrush Shrubland\\\",\\\"Inter-Mountain Basins Big Sagebrush Steppe\\\",\\\"Inter-Mountain\n        Basins Montane Sagebrush Steppe\\\",\\\"Colorado Plateau Mixed Low Sagebrush Shrubland\\\",\\\"Columbia\n        Plateau Low Sagebrush Steppe\\\",\\\"Columbia Plateau Scabland Shrubland\\\",\\\"Wyoming\n        Basins Dwarf Sagebrush Shrubland and Steppe\\\",\\\"Colorado Plateau Blackbrush-Mormon-tea\n        Shrubland\\\",\\\"Inter-Mountain Basins Semi-Desert Grassland\\\",\\\"Inter-Mountain\n        Basins Semi-Desert Shrub Steppe\\\",\\\"Southern Colorado Plateau Sand Shrubland\\\",\\\"Acadian-Appalachian\n        Alpine Tundra\\\",\\\"Rocky Mountain Alpine Dwarf-Shrubland\\\",\\\"Rocky Mountain\n        Alpine Fell-Field\\\",\\\"Rocky Mountain Alpine Turf\\\",\\\"Mediterranean California\n        Alpine Dry Tundra\\\",\\\"Mediterranean California Alpine Fell-Field\\\",\\\"North\n        Pacific Dry and Mesic Alpine Dwarf-Shrubland, Fell-field and Meadow\\\",\\\"Rocky\n        Mountain Alpine Tundra/Fell-field/Dwarf-shrub Map Unit\\\",\\\"Temperate Pacific\n        Intertidal Mudflat\\\",\\\"Mediterranean California Eelgrass Bed\\\",\\\"North Pacific\n        Maritime Eelgrass Bed\\\",\\\"South-Central Interior Large Floodplain - Herbaceous\n        Modifier\\\",\\\"East Gulf Coastal Plain Large River Floodplain Forest - Herbaceous\n        Modifier\\\",\\\"Temperate Pacific Freshwater Aquatic Bed\\\",\\\"Central California\n        Coast Ranges Cliff and Canyon\\\",\\\"Mediterranean California Serpentine Barrens\\\",\\\"Southern\n        California Coast Ranges Cliff and Canyon\\\",\\\"Central Interior Acidic Cliff\n        and Talus\\\",\\\"Central Interior Calcareous Cliff and Talus\\\",\\\"East Gulf Coastal\n        Plain Dry Chalk Bluff\\\",\\\"North-Central Appalachian Acidic Cliff and Talus\\\",\\\"North-Central\n        Appalachian Circumneutral Cliff and Talus\\\",\\\"Southern Appalachian Montane\n        Cliff\\\",\\\"Southern Interior Acid Cliff\\\",\\\"Southern Interior Calcareous Cliff\\\",\\\"Southern\n        Piedmont Cliff\\\",\\\"Southern Appalachian Granitic Dome\\\",\\\"Southern Appalachian\n        Rocky Summit\\\",\\\"Southern Piedmont Granite Flatrock\\\",\\\"Rocky Mountain Cliff,\n        Canyon and Massive Bedrock\\\",\\\"Klamath-Siskiyou Cliff and Outcrop\\\",\\\"North\n        Pacific Montane Massive Bedrock, Cliff and Talus\\\",\\\"North Pacific Serpentine\n        Barren\\\",\\\"North Pacific Active Volcanic Rock and Cinder Land\\\",\\\"Sierra Nevada\n        Cliff and Canyon\\\",\\\"Western Great Plains Badland\\\",\\\"Southwestern Great Plains\n        Canyon\\\",\\\"Western Great Plains Cliff and Outcrop\\\",\\\"North American Warm\n        Desert Badland\\\",\\\"North American Warm Desert Bedrock Cliff and Outcrop\\\",\\\"North\n        American Warm Desert Pavement\\\",\\\"North American Warm Desert Volcanic Rockland\\\",\\\"Colorado\n        Plateau Mixed Bedrock Canyon and Tableland\\\",\\\"Columbia Plateau Ash and Tuff\n        Badland\\\",\\\"Geysers and Hot Springs\\\",\\\"Inter-Mountain Basins Active and Stabilized\n        Dune\\\",\\\"Inter-Mountain Basins Cliff and Canyon\\\",\\\"Inter-Mountain Basins\n        Shale Badland\\\",\\\"Inter-Mountain Basins Volcanic Rock and Cinder Land\\\",\\\"Rocky\n        Mountain Alpine Bedrock and Scree\\\",\\\"Mediterranean California Alpine Bedrock\n        and Scree\\\",\\\"North Pacific Alpine and Subalpine Bedrock and Scree\\\",\\\"Unconsolidated\n        Shore\\\",\\\"Undifferentiated Barren Land\\\",\\\"North American Alpine Ice Field\\\",\\\"Orchards\n        Vineyards and Other High Structure Agriculture\\\",\\\"Cultivated Cropland\\\",\\\"Pasture/Hay\\\",\\\"Introduced\n        Upland Vegetation - Annual Grassland\\\",\\\"Introduced Upland Vegetation - Perennial\n        Grassland and Forbland\\\",\\\"Modified/Managed Southern Tall Grassland\\\",\\\"Introduced\n        Upland Vegetation - Shrub\\\",\\\"Introduced Riparian and Wetland Vegetation\\\",\\\"Introduced\n        Upland Vegetation - Treed\\\",\\\"0\\\",\\\"Disturbed, Non-specific\\\",\\\"Recently Logged\n        Areas\\\",\\\"Harvested Forest - Grass/Forb Regeneration\\\",\\\"Harvested Forest-Shrub\n        Regeneration\\\",\\\"Harvested Forest - Northwestern Conifer Regeneration\\\",\\\"Recently\n        Burned\\\",\\\"Recently burned grassland\\\",\\\"Recently burned shrubland\\\",\\\"Recently\n        burned forest\\\",\\\"Disturbed/Successional - Grass/Forb Regeneration\\\",\\\"Disturbed/Successional\n        - Shrub Regeneration\\\",\\\"Disturbed/Successional - Recently Chained Pinyon-Juniper\\\",\\\"Open\n        Water (Aquaculture)\\\",\\\"Open Water (Brackish/Salt)\\\",\\\"Open Water (Fresh)\\\",\\\"Quarries,\n        Mines, Gravel Pits and Oil Wells\\\",\\\"Developed, Open Space\\\",\\\"Developed,\n        Low Intensity\\\",\\\"Developed, Medium Intensity\\\",\\\"Developed, High Intensity\\\"]}]},\\\"description\\\":\\\"The\n        [USGS GAP/LANDFIRE National Terrestrial Ecosystems data](https://www.sciencebase.gov/catalog/item/573cc51be4b0dae0d5e4b0c5),\n        based on the [NatureServe Terrestrial Ecological Systems](https://www.natureserve.org/products/terrestrial-ecological-systems-united-states),\n        are the foundation of the most detailed, consistent map of vegetation available\n        for the United States.  These data facilitate planning and management for\n        biological diversity on a regional and national scale.\\\\n\\\\nThis dataset includes\n        the [land cover](https://www.usgs.gov/core-science-systems/science-analytics-and-synthesis/gap/science/land-cover)\n        component of the GAP/LANDFIRE project.\\\\n\\\\n\\\",\\\"item_assets\\\":{\\\"data\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"GeoTIFF\n        data\\\",\\\"file:values\\\":[{\\\"values\\\":[0],\\\"summary\\\":\\\"0\\\"},{\\\"values\\\":[1],\\\"summary\\\":\\\"South\n        Florida Bayhead Swamp\\\"},{\\\"values\\\":[2],\\\"summary\\\":\\\"South Florida Cypress\n        Dome\\\"},{\\\"values\\\":[3],\\\"summary\\\":\\\"South Florida Dwarf Cypress Savanna\\\"},{\\\"values\\\":[4],\\\"summary\\\":\\\"South\n        Florida Mangrove Swamp\\\"},{\\\"values\\\":[5],\\\"summary\\\":\\\"South Florida Hardwood\n        Hammock\\\"},{\\\"values\\\":[6],\\\"summary\\\":\\\"Southeast Florida Coastal Strand\n        and Maritime Hammock\\\"},{\\\"values\\\":[7],\\\"summary\\\":\\\"Southwest Florida Coastal\n        Strand and Maritime Hammock\\\"},{\\\"values\\\":[8],\\\"summary\\\":\\\"South Florida\n        Pine Rockland\\\"},{\\\"values\\\":[9],\\\"summary\\\":\\\"Atlantic Coastal Plain Fall-line\n        Sandhills Longleaf Pine Woodland - Open Understory\\\"},{\\\"values\\\":[10],\\\"summary\\\":\\\"Atlantic\n        Coastal Plain Fall-line Sandhills Longleaf Pine Woodland - Scrub/Shrub Understory\\\"},{\\\"values\\\":[11],\\\"summary\\\":\\\"Atlantic\n        Coastal Plain Upland Longleaf Pine Woodland\\\"},{\\\"values\\\":[12],\\\"summary\\\":\\\"Atlantic\n        Coastal Plain Xeric River Dune\\\"},{\\\"values\\\":[13],\\\"summary\\\":\\\"East Gulf\n        Coastal Plain Interior Upland Longleaf Pine Woodland - Open Understory Modifier\\\"},{\\\"values\\\":[14],\\\"summary\\\":\\\"East\n        Gulf Coastal Plain Interior Upland Longleaf Pine Woodland - Scrub/Shrub Modifier\\\"},{\\\"values\\\":[15],\\\"summary\\\":\\\"Florida\n        Longleaf Pine Sandhill - Scrub/Shrub Understory Modifier\\\"},{\\\"values\\\":[16],\\\"summary\\\":\\\"Florida\n        Longleaf Pine Sandhill- Open Understory Modifier\\\"},{\\\"values\\\":[17],\\\"summary\\\":\\\"West\n        Gulf Coastal Plain Upland Longleaf Pine Forest and Woodland\\\"},{\\\"values\\\":[18],\\\"summary\\\":\\\"Atlantic\n        Coastal Plain Central Maritime Forest\\\"},{\\\"values\\\":[19],\\\"summary\\\":\\\"Atlantic\n        Coastal Plain Southern Maritime Forest\\\"},{\\\"values\\\":[20],\\\"summary\\\":\\\"Central\n        and South Texas Coastal Fringe Forest and Woodland\\\"},{\\\"values\\\":[21],\\\"summary\\\":\\\"East\n        Gulf Coastal Plain Limestone Forest\\\"},{\\\"values\\\":[22],\\\"summary\\\":\\\"East\n        Gulf Coastal Plain Maritime Forest\\\"},{\\\"values\\\":[23],\\\"summary\\\":\\\"East\n        Gulf Coastal Plain Southern Loess Bluff Forest\\\"},{\\\"values\\\":[24],\\\"summary\\\":\\\"East\n        Gulf Coastal Plain Southern Mesic Slope Forest\\\"},{\\\"values\\\":[25],\\\"summary\\\":\\\"Mississippi\n        Delta Maritime Forest\\\"},{\\\"values\\\":[26],\\\"summary\\\":\\\"Southern Coastal Plain\n        Dry Upland Hardwood Forest\\\"},{\\\"values\\\":[27],\\\"summary\\\":\\\"Southern Coastal\n        Plain Oak Dome and Hammock\\\"},{\\\"values\\\":[28],\\\"summary\\\":\\\"West Gulf Coastal\n        Plain Chenier and Upper Texas Coastal Fringe Forest and Woodland\\\"},{\\\"values\\\":[29],\\\"summary\\\":\\\"West\n        Gulf Coastal Plain Mesic Hardwood Forest\\\"},{\\\"values\\\":[30],\\\"summary\\\":\\\"East-Central\n        Texas Plains Pine Forest and Woodland\\\"},{\\\"values\\\":[31],\\\"summary\\\":\\\"West\n        Gulf Coastal Plain Pine-Hardwood Forest\\\"},{\\\"values\\\":[32],\\\"summary\\\":\\\"West\n        Gulf Coastal Plain Sandhill Oak and Shortleaf Pine Forest and Woodland\\\"},{\\\"values\\\":[33],\\\"summary\\\":\\\"Atlantic\n        Coastal Plain Fall-Line Sandhills Longleaf Pine Woodland - Loblolly Modifier\\\"},{\\\"values\\\":[34],\\\"summary\\\":\\\"Deciduous\n        Plantations\\\"},{\\\"values\\\":[35],\\\"summary\\\":\\\"East Gulf Coastal Plain Interior\n        Upland Longleaf Pine Woodland - Loblolly Modifier\\\"},{\\\"values\\\":[36],\\\"summary\\\":\\\"East\n        Gulf Coastal Plain Interior Upland Longleaf Pine Woodland - Offsite Hardwood\n        Modifier\\\"},{\\\"values\\\":[37],\\\"summary\\\":\\\"East Gulf Coastal Plain Near-Coast\n        Pine Flatwoods - Offsite Hardwood Modifier\\\"},{\\\"values\\\":[38],\\\"summary\\\":\\\"Evergreen\n        Plantation or Managed Pine\\\"},{\\\"values\\\":[39],\\\"summary\\\":\\\"California Central\n        Valley Mixed Oak Savanna\\\"},{\\\"values\\\":[40],\\\"summary\\\":\\\"California Coastal\n        Closed-Cone Conifer Forest and Woodland\\\"},{\\\"values\\\":[41],\\\"summary\\\":\\\"California\n        Coastal Live Oak Woodland and Savanna\\\"},{\\\"values\\\":[42],\\\"summary\\\":\\\"California\n        Lower Montane Blue Oak-Foothill Pine Woodland and Savanna\\\"},{\\\"values\\\":[43],\\\"summary\\\":\\\"Central\n        and Southern California Mixed Evergreen Woodland\\\"},{\\\"values\\\":[44],\\\"summary\\\":\\\"Mediterranean\n        California Lower Montane Black Oak-Conifer Forest and Woodland\\\"},{\\\"values\\\":[45],\\\"summary\\\":\\\"Southern\n        California Oak Woodland and Savanna\\\"},{\\\"values\\\":[46],\\\"summary\\\":\\\"Madrean\n        Encinal\\\"},{\\\"values\\\":[47],\\\"summary\\\":\\\"Madrean Pinyon-Juniper Woodland\\\"},{\\\"values\\\":[48],\\\"summary\\\":\\\"Madrean\n        Pine-Oak Forest and Woodland\\\"},{\\\"values\\\":[49],\\\"summary\\\":\\\"Madrean Upper\n        Montane Conifer-Oak Forest and Woodland\\\"},{\\\"values\\\":[50],\\\"summary\\\":\\\"Edwards\n        Plateau Dry-Mesic Slope Forest and Woodland\\\"},{\\\"values\\\":[51],\\\"summary\\\":\\\"Edwards\n        Plateau Limestone Savanna and Woodland\\\"},{\\\"values\\\":[52],\\\"summary\\\":\\\"Edwards\n        Plateau Mesic Canyon\\\"},{\\\"values\\\":[53],\\\"summary\\\":\\\"Llano Uplift Acidic\n        Forest, Woodland and Glade\\\"},{\\\"values\\\":[54],\\\"summary\\\":\\\"East Cascades\n        Oak-Ponderosa Pine Forest and Woodland\\\"},{\\\"values\\\":[55],\\\"summary\\\":\\\"Mediterranean\n        California Mixed Evergreen Forest\\\"},{\\\"values\\\":[56],\\\"summary\\\":\\\"Mediterranean\n        California Mixed Oak Woodland\\\"},{\\\"values\\\":[57],\\\"summary\\\":\\\"North Pacific\n        Dry Douglas-fir-(Madrone) Forest and Woodland\\\"},{\\\"values\\\":[58],\\\"summary\\\":\\\"North\n        Pacific Oak Woodland\\\"},{\\\"values\\\":[59],\\\"summary\\\":\\\"Edwards Plateau Limestone\n        Shrubland\\\"},{\\\"values\\\":[60],\\\"summary\\\":\\\"Allegheny-Cumberland Dry Oak Forest\n        and Woodland - Hardwood\\\"},{\\\"values\\\":[61],\\\"summary\\\":\\\"Allegheny-Cumberland\n        Dry Oak Forest and Woodland - Pine Modifier\\\"},{\\\"values\\\":[62],\\\"summary\\\":\\\"Central\n        and Southern Appalachian Montane Oak Forest\\\"},{\\\"values\\\":[63],\\\"summary\\\":\\\"Central\n        and Southern Appalachian Northern Hardwood Forest\\\"},{\\\"values\\\":[64],\\\"summary\\\":\\\"Central\n        Appalachian Oak and Pine Forest\\\"},{\\\"values\\\":[65],\\\"summary\\\":\\\"Crosstimbers\n        Oak Forest and Woodland\\\"},{\\\"values\\\":[66],\\\"summary\\\":\\\"East Gulf Coastal\n        Plain Black Belt Calcareous Prairie and Woodland - Woodland Modifier\\\"},{\\\"values\\\":[67],\\\"summary\\\":\\\"East\n        Gulf Coastal Plain Northern Dry Upland Hardwood Forest\\\"},{\\\"values\\\":[68],\\\"summary\\\":\\\"East\n        Gulf Coastal Plain Northern Loess Plain Oak-Hickory Upland - Hardwood Modifier\\\"},{\\\"values\\\":[69],\\\"summary\\\":\\\"East\n        Gulf Coastal Plain Northern Loess Plain Oak-Hickory Upland - Juniper Modifier\\\"},{\\\"values\\\":[70],\\\"summary\\\":\\\"East-Central\n        Texas Plains Post Oak Savanna and Woodland\\\"},{\\\"values\\\":[71],\\\"summary\\\":\\\"Lower\n        Mississippi River Dune Woodland and Forest\\\"},{\\\"values\\\":[72],\\\"summary\\\":\\\"Mississippi\n        River Alluvial Plain Dry-Mesic Loess Slope Forest\\\"},{\\\"values\\\":[73],\\\"summary\\\":\\\"North-Central\n        Interior Dry Oak Forest and Woodland\\\"},{\\\"values\\\":[74],\\\"summary\\\":\\\"North-Central\n        Interior Dry-Mesic Oak Forest and Woodland\\\"},{\\\"values\\\":[75],\\\"summary\\\":\\\"Northeastern\n        Interior Dry Oak Forest - Mixed Modifier\\\"},{\\\"values\\\":[76],\\\"summary\\\":\\\"Northeastern\n        Interior Dry Oak Forest - Virginia/Pitch Pine Modifier\\\"},{\\\"values\\\":[77],\\\"summary\\\":\\\"Northeastern\n        Interior Dry Oak Forest-Hardwood Modifier\\\"},{\\\"values\\\":[78],\\\"summary\\\":\\\"Northeastern\n        Interior Dry-Mesic Oak Forest\\\"},{\\\"values\\\":[79],\\\"summary\\\":\\\"Northern Atlantic\n        Coastal Plain Dry Hardwood Forest\\\"},{\\\"values\\\":[80],\\\"summary\\\":\\\"Crowley's\n        Ridge Sand Forest\\\"},{\\\"values\\\":[81],\\\"summary\\\":\\\"Ouachita Montane Oak Forest\\\"},{\\\"values\\\":[82],\\\"summary\\\":\\\"Ozark-Ouachita\n        Dry Oak Woodland\\\"},{\\\"values\\\":[83],\\\"summary\\\":\\\"Ozark-Ouachita Dry-Mesic\n        Oak Forest\\\"},{\\\"values\\\":[84],\\\"summary\\\":\\\"Southern and Central Appalachian\n        Oak Forest\\\"},{\\\"values\\\":[85],\\\"summary\\\":\\\"Southern and Central Appalachian\n        Oak Forest - Xeric\\\"},{\\\"values\\\":[86],\\\"summary\\\":\\\"Southern Interior Low\n        Plateau Dry-Mesic Oak Forest\\\"},{\\\"values\\\":[87],\\\"summary\\\":\\\"Southern Ridge\n        and Valley Dry Calcareous Forest\\\"},{\\\"values\\\":[88],\\\"summary\\\":\\\"Southern\n        Ridge and Valley Dry Calcareous Forest - Pine modifier\\\"},{\\\"values\\\":[89],\\\"summary\\\":\\\"East\n        Gulf Coastal Plain Northern Dry Upland Hardwood Forest - Offsite Pine Modifier\\\"},{\\\"values\\\":[90],\\\"summary\\\":\\\"Managed\n        Tree Plantation\\\"},{\\\"values\\\":[91],\\\"summary\\\":\\\"Ruderal forest\\\"},{\\\"values\\\":[92],\\\"summary\\\":\\\"Southern\n        Piedmont Dry Oak-(Pine) Forest - Loblolly Pine Modifier\\\"},{\\\"values\\\":[93],\\\"summary\\\":\\\"Acadian\n        Low-Elevation Spruce-Fir-Hardwood Forest\\\"},{\\\"values\\\":[94],\\\"summary\\\":\\\"Acadian-Appalachian\n        Montane Spruce-Fir Forest\\\"},{\\\"values\\\":[95],\\\"summary\\\":\\\"Appalachian Hemlock-Hardwood\n        Forest\\\"},{\\\"values\\\":[96],\\\"summary\\\":\\\"Central and Southern Appalachian\n        Spruce-Fir Forest\\\"},{\\\"values\\\":[97],\\\"summary\\\":\\\"0\\\"},{\\\"values\\\":[98],\\\"summary\\\":\\\"Laurentian-Acadian\n        Northern Hardwoods Forest\\\"},{\\\"values\\\":[99],\\\"summary\\\":\\\"Laurentian-Acadian\n        Northern Pine-(Oak) Forest\\\"},{\\\"values\\\":[100],\\\"summary\\\":\\\"Laurentian-Acadian\n        Pine-Hemlock-Hardwood Forest\\\"},{\\\"values\\\":[101],\\\"summary\\\":\\\"Paleozoic\n        Plateau Bluff and Talus\\\"},{\\\"values\\\":[102],\\\"summary\\\":\\\"Southern Appalachian\n        Northern Hardwood Forest\\\"},{\\\"values\\\":[103],\\\"summary\\\":\\\"Atlantic Coastal\n        Plain Dry and Dry-Mesic Oak Forest\\\"},{\\\"values\\\":[104],\\\"summary\\\":\\\"Atlantic\n        Coastal Plain Fall-line Sandhills Longleaf Pine Woodland - Offsite Hardwood\\\"},{\\\"values\\\":[105],\\\"summary\\\":\\\"East\n        Gulf Coastal Plain Interior Shortleaf Pine-Oak Forest - Hardwood Modifier\\\"},{\\\"values\\\":[106],\\\"summary\\\":\\\"East\n        Gulf Coastal Plain Interior Shortleaf Pine-Oak Forest - Mixed Modifier\\\"},{\\\"values\\\":[107],\\\"summary\\\":\\\"Ozark-Ouachita\n        Shortleaf Pine-Bluestem Woodland\\\"},{\\\"values\\\":[108],\\\"summary\\\":\\\"Ozark-Ouachita\n        Shortleaf Pine-Oak Forest and Woodland\\\"},{\\\"values\\\":[109],\\\"summary\\\":\\\"Southeastern\n        Interior Longleaf Pine Woodland\\\"},{\\\"values\\\":[110],\\\"summary\\\":\\\"Southern\n        Appalachian Low Mountain Pine Forest\\\"},{\\\"values\\\":[111],\\\"summary\\\":\\\"Southern\n        Piedmont Dry Oak-(Pine) Forest\\\"},{\\\"values\\\":[112],\\\"summary\\\":\\\"Southern\n        Piedmont Dry Oak-(Pine) Forest - Hardwood Modifier\\\"},{\\\"values\\\":[113],\\\"summary\\\":\\\"Southern\n        Piedmont Dry Oak-(Pine) Forest - Mixed Modifier\\\"},{\\\"values\\\":[114],\\\"summary\\\":\\\"Southern\n        Piedmont Dry Oak-Heath Forest - Mixed Modifier\\\"},{\\\"values\\\":[115],\\\"summary\\\":\\\"Eastern\n        Great Plains Tallgrass Aspen Parkland\\\"},{\\\"values\\\":[116],\\\"summary\\\":\\\"Northwestern\n        Great Plains Aspen Forest and Parkland\\\"},{\\\"values\\\":[117],\\\"summary\\\":\\\"Northwestern\n        Great Plains Shrubland\\\"},{\\\"values\\\":[118],\\\"summary\\\":\\\"Western Great Plains\n        Dry Bur Oak Forest and Woodland\\\"},{\\\"values\\\":[119],\\\"summary\\\":\\\"Western\n        Great Plains Wooded Draw and Ravine\\\"},{\\\"values\\\":[120],\\\"summary\\\":\\\"Southern\n        Atlantic Coastal Plain Mesic Hardwood Forest\\\"},{\\\"values\\\":[121],\\\"summary\\\":\\\"East\n        Gulf Coastal Plain Northern Loess Bluff Forest\\\"},{\\\"values\\\":[122],\\\"summary\\\":\\\"East\n        Gulf Coastal Plain Northern Mesic Hardwood Forest\\\"},{\\\"values\\\":[123],\\\"summary\\\":\\\"North-Central\n        Interior Beech-Maple Forest\\\"},{\\\"values\\\":[124],\\\"summary\\\":\\\"North-Central\n        Interior Maple-Basswood Forest\\\"},{\\\"values\\\":[125],\\\"summary\\\":\\\"Ozark-Ouachita\n        Mesic Hardwood Forest\\\"},{\\\"values\\\":[126],\\\"summary\\\":\\\"South-Central Interior\n        Mesophytic Forest\\\"},{\\\"values\\\":[127],\\\"summary\\\":\\\"Southern and Central\n        Appalachian Cove Forest\\\"},{\\\"values\\\":[128],\\\"summary\\\":\\\"Crowley's Ridge\n        Mesic Loess Slope Forest\\\"},{\\\"values\\\":[129],\\\"summary\\\":\\\"Southern Piedmont\n        Mesic Forest\\\"},{\\\"values\\\":[130],\\\"summary\\\":\\\"Appalachian Shale Barrens\\\"},{\\\"values\\\":[131],\\\"summary\\\":\\\"Atlantic\n        Coastal Plain Northern Maritime Forest\\\"},{\\\"values\\\":[132],\\\"summary\\\":\\\"Laurentian\n        Pine-Oak Barrens\\\"},{\\\"values\\\":[133],\\\"summary\\\":\\\"Northeastern Interior\n        Pine Barrens\\\"},{\\\"values\\\":[134],\\\"summary\\\":\\\"Northern Atlantic Coastal\n        Plain Pitch Pine Barrens\\\"},{\\\"values\\\":[135],\\\"summary\\\":\\\"Southern Appalachian\n        Montane Pine Forest and Woodland\\\"},{\\\"values\\\":[136],\\\"summary\\\":\\\"East Cascades\n        Mesic Montane Mixed-Conifer Forest and Woodland\\\"},{\\\"values\\\":[137],\\\"summary\\\":\\\"Middle\n        Rocky Mountain Montane Douglas-fir Forest and Woodland\\\"},{\\\"values\\\":[138],\\\"summary\\\":\\\"Northern\n        Rocky Mountain Dry-Mesic Montane Mixed Conifer Forest\\\"},{\\\"values\\\":[139],\\\"summary\\\":\\\"Northern\n        Rocky Mountain Foothill Conifer Wooded Steppe\\\"},{\\\"values\\\":[140],\\\"summary\\\":\\\"Northern\n        Rocky Mountain Mesic Montane Mixed Conifer Forest\\\"},{\\\"values\\\":[141],\\\"summary\\\":\\\"Northern\n        Rocky Mountain Ponderosa Pine Woodland and Savanna\\\"},{\\\"values\\\":[142],\\\"summary\\\":\\\"Northern\n        Rocky Mountain Western Larch Savanna\\\"},{\\\"values\\\":[143],\\\"summary\\\":\\\"Northwestern\n        Great Plains - Black Hills Ponderosa Pine Woodland and Savanna\\\"},{\\\"values\\\":[144],\\\"summary\\\":\\\"Rocky\n        Mountain Foothill Limber Pine-Juniper Woodland\\\"},{\\\"values\\\":[145],\\\"summary\\\":\\\"Inter-Mountain\n        Basins Aspen-Mixed Conifer Forest and Woodland\\\"},{\\\"values\\\":[146],\\\"summary\\\":\\\"Inter-Mountain\n        Basins Subalpine Limber-Bristlecone Pine Woodland\\\"},{\\\"values\\\":[147],\\\"summary\\\":\\\"Northern\n        Rocky Mountain Subalpine Woodland and Parkland\\\"},{\\\"values\\\":[148],\\\"summary\\\":\\\"Rocky\n        Mountain Aspen Forest and Woodland\\\"},{\\\"values\\\":[149],\\\"summary\\\":\\\"Rocky\n        Mountain Lodgepole Pine Forest\\\"},{\\\"values\\\":[150],\\\"summary\\\":\\\"Rocky Mountain\n        Poor-Site Lodgepole Pine Forest\\\"},{\\\"values\\\":[151],\\\"summary\\\":\\\"Rocky Mountain\n        Subalpine Dry-Mesic Spruce-Fir Forest and Woodland\\\"},{\\\"values\\\":[152],\\\"summary\\\":\\\"Rocky\n        Mountain Subalpine Mesic Spruce-Fir Forest and Woodland\\\"},{\\\"values\\\":[153],\\\"summary\\\":\\\"Rocky\n        Mountain Subalpine-Montane Limber-Bristlecone Pine Woodland\\\"},{\\\"values\\\":[154],\\\"summary\\\":\\\"Rocky\n        Mountain Bigtooth Maple Ravine Woodland\\\"},{\\\"values\\\":[155],\\\"summary\\\":\\\"Southern\n        Rocky Mountain Dry-Mesic Montane Mixed Conifer Forest and Woodland\\\"},{\\\"values\\\":[156],\\\"summary\\\":\\\"Southern\n        Rocky Mountain Mesic Montane Mixed Conifer Forest and Woodland\\\"},{\\\"values\\\":[157],\\\"summary\\\":\\\"Southern\n        Rocky Mountain Ponderosa Pine Savanna\\\"},{\\\"values\\\":[158],\\\"summary\\\":\\\"Southern\n        Rocky Mountain Ponderosa Pine Woodland\\\"},{\\\"values\\\":[159],\\\"summary\\\":\\\"California\n        Montane Jeffrey Pine-(Ponderosa Pine) Woodland\\\"},{\\\"values\\\":[160],\\\"summary\\\":\\\"Klamath-Siskiyou\n        Lower Montane Serpentine Mixed Conifer Woodland\\\"},{\\\"values\\\":[161],\\\"summary\\\":\\\"Klamath-Siskiyou\n        Upper Montane Serpentine Mixed Conifer Woodland\\\"},{\\\"values\\\":[162],\\\"summary\\\":\\\"Mediterranean\n        California Dry-Mesic Mixed Conifer Forest and Woodland\\\"},{\\\"values\\\":[163],\\\"summary\\\":\\\"Mediterranean\n        California Mesic Mixed Conifer Forest and Woodland\\\"},{\\\"values\\\":[164],\\\"summary\\\":\\\"Sierran-Intermontane\n        Desert Western White Pine-White Fir Woodland\\\"},{\\\"values\\\":[165],\\\"summary\\\":\\\"California\n        Coastal Redwood Forest\\\"},{\\\"values\\\":[166],\\\"summary\\\":\\\"North Pacific Broadleaf\n        Landslide Forest and Shrubland\\\"},{\\\"values\\\":[167],\\\"summary\\\":\\\"North Pacific\n        Dry-Mesic Silver Fir-Western Hemlock-Douglas-fir Forest\\\"},{\\\"values\\\":[168],\\\"summary\\\":\\\"North\n        Pacific Hypermaritime Sitka Spruce Forest\\\"},{\\\"values\\\":[169],\\\"summary\\\":\\\"North\n        Pacific Hypermaritime Western Red-cedar-Western Hemlock Forest\\\"},{\\\"values\\\":[170],\\\"summary\\\":\\\"North\n        Pacific Lowland Mixed Hardwood-Conifer Forest and Woodland\\\"},{\\\"values\\\":[171],\\\"summary\\\":\\\"North\n        Pacific Maritime Dry-Mesic Douglas-fir-Western Hemlock Forest\\\"},{\\\"values\\\":[172],\\\"summary\\\":\\\"North\n        Pacific Maritime Mesic-Wet Douglas-fir-Western Hemlock Forest\\\"},{\\\"values\\\":[173],\\\"summary\\\":\\\"North\n        Pacific Mesic Western Hemlock-Silver Fir Forest\\\"},{\\\"values\\\":[174],\\\"summary\\\":\\\"North\n        Pacific Wooded Volcanic Flowage\\\"},{\\\"values\\\":[175],\\\"summary\\\":\\\"Mediterranean\n        California Red Fir Forest\\\"},{\\\"values\\\":[176],\\\"summary\\\":\\\"Mediterranean\n        California Subalpine Woodland\\\"},{\\\"values\\\":[177],\\\"summary\\\":\\\"North Pacific\n        Maritime Mesic Subalpine Parkland\\\"},{\\\"values\\\":[178],\\\"summary\\\":\\\"North\n        Pacific Mountain Hemlock Forest\\\"},{\\\"values\\\":[179],\\\"summary\\\":\\\"Northern\n        California Mesic Subalpine Woodland\\\"},{\\\"values\\\":[180],\\\"summary\\\":\\\"Northern\n        Pacific Mesic Subalpine Woodland\\\"},{\\\"values\\\":[181],\\\"summary\\\":\\\"Sierra\n        Nevada Subalpine Lodgepole Pine Forest and Woodland\\\"},{\\\"values\\\":[182],\\\"summary\\\":\\\"Columbia\n        Plateau Western Juniper Woodland and Savanna\\\"},{\\\"values\\\":[183],\\\"summary\\\":\\\"Great\n        Basin Pinyon-Juniper Woodland\\\"},{\\\"values\\\":[184],\\\"summary\\\":\\\"Inter-Mountain\n        Basins Curl-leaf Mountain Mahogany Woodland and Shrubland\\\"},{\\\"values\\\":[185],\\\"summary\\\":\\\"Inter-Mountain\n        Basins Juniper Savanna\\\"},{\\\"values\\\":[186],\\\"summary\\\":\\\"Colorado Plateau\n        Pinyon-Juniper Shrubland\\\"},{\\\"values\\\":[187],\\\"summary\\\":\\\"Colorado Plateau\n        Pinyon-Juniper Woodland\\\"},{\\\"values\\\":[188],\\\"summary\\\":\\\"Southern Rocky\n        Mountain Juniper Woodland and Savanna\\\"},{\\\"values\\\":[189],\\\"summary\\\":\\\"Southern\n        Rocky Mountain Pinyon-Juniper Woodland\\\"},{\\\"values\\\":[190],\\\"summary\\\":\\\"Northwestern\n        Great Plains Floodplain\\\"},{\\\"values\\\":[191],\\\"summary\\\":\\\"Northwestern Great\n        Plains Riparian\\\"},{\\\"values\\\":[192],\\\"summary\\\":\\\"Western Great Plains Floodplain\\\"},{\\\"values\\\":[193],\\\"summary\\\":\\\"Western\n        Great Plains Floodplain Systems\\\"},{\\\"values\\\":[194],\\\"summary\\\":\\\"Western\n        Great Plains Riparian Woodland and Shrubland\\\"},{\\\"values\\\":[195],\\\"summary\\\":\\\"Central\n        Appalachian Floodplain - Forest Modifier\\\"},{\\\"values\\\":[196],\\\"summary\\\":\\\"Central\n        Appalachian Riparian - Forest Modifier\\\"},{\\\"values\\\":[197],\\\"summary\\\":\\\"Central\n        Interior and Appalachian Floodplain Systems\\\"},{\\\"values\\\":[198],\\\"summary\\\":\\\"Central\n        Interior and Appalachian Riparian Systems\\\"},{\\\"values\\\":[199],\\\"summary\\\":\\\"Laurentian-Acadian\n        Floodplain Systems\\\"},{\\\"values\\\":[200],\\\"summary\\\":\\\"Ozark-Ouachita Riparian\\\"},{\\\"values\\\":[201],\\\"summary\\\":\\\"South-Central\n        Interior Large Floodplain\\\"},{\\\"values\\\":[202],\\\"summary\\\":\\\"South-Central\n        Interior Large Floodplain - Forest Modifier\\\"},{\\\"values\\\":[203],\\\"summary\\\":\\\"South-Central\n        Interior Small Stream and Riparian\\\"},{\\\"values\\\":[204],\\\"summary\\\":\\\"North-Central\n        Interior and Appalachian Rich Swamp\\\"},{\\\"values\\\":[205],\\\"summary\\\":\\\"0\\\"},{\\\"values\\\":[206],\\\"summary\\\":\\\"0\\\"},{\\\"values\\\":[207],\\\"summary\\\":\\\"Laurentian-Acadian\n        Swamp Systems\\\"},{\\\"values\\\":[208],\\\"summary\\\":\\\"North-Central Interior Wet\n        Flatwoods\\\"},{\\\"values\\\":[209],\\\"summary\\\":\\\"0\\\"},{\\\"values\\\":[210],\\\"summary\\\":\\\"South-Central\n        Interior / Upper Coastal Plain Wet Flatwoods\\\"},{\\\"values\\\":[211],\\\"summary\\\":\\\"0\\\"},{\\\"values\\\":[212],\\\"summary\\\":\\\"Southern\n        Piedmont/Ridge and Valley Upland Depression Swamp\\\"},{\\\"values\\\":[213],\\\"summary\\\":\\\"Atlantic\n        Coastal Plain Blackwater Stream Floodplain Forest - Forest Modifier\\\"},{\\\"values\\\":[214],\\\"summary\\\":\\\"Atlantic\n        Coastal Plain Brownwater Stream Floodplain Forest\\\"},{\\\"values\\\":[215],\\\"summary\\\":\\\"Atlantic\n        Coastal Plain Northern Tidal Wooded Swamp\\\"},{\\\"values\\\":[216],\\\"summary\\\":\\\"Atlantic\n        Coastal Plain Small Blackwater River Floodplain Forest\\\"},{\\\"values\\\":[217],\\\"summary\\\":\\\"Atlantic\n        Coastal Plain Small Brownwater River Floodplain Forest\\\"},{\\\"values\\\":[218],\\\"summary\\\":\\\"Atlantic\n        Coastal Plain Southern Tidal Wooded Swamp\\\"},{\\\"values\\\":[219],\\\"summary\\\":\\\"East\n        Gulf Coastal Plain Large River Floodplain Forest - Forest Modifier\\\"},{\\\"values\\\":[220],\\\"summary\\\":\\\"East\n        Gulf Coastal Plain Small Stream and River Floodplain Forest\\\"},{\\\"values\\\":[221],\\\"summary\\\":\\\"East\n        Gulf Coastal Plain Tidal Wooded Swamp\\\"},{\\\"values\\\":[222],\\\"summary\\\":\\\"0\\\"},{\\\"values\\\":[223],\\\"summary\\\":\\\"Southeastern\n        Great Plains Riparian Forest\\\"},{\\\"values\\\":[224],\\\"summary\\\":\\\"Southeastern\n        Great Plains Floodplain Forest\\\"},{\\\"values\\\":[225],\\\"summary\\\":\\\"Mississippi\n        River Bottomland Depression\\\"},{\\\"values\\\":[226],\\\"summary\\\":\\\"Mississippi\n        River Floodplain and Riparian Forest\\\"},{\\\"values\\\":[227],\\\"summary\\\":\\\"Mississippi\n        River Low Floodplain (Bottomland) Forest\\\"},{\\\"values\\\":[228],\\\"summary\\\":\\\"Mississippi\n        River Riparian Forest\\\"},{\\\"values\\\":[229],\\\"summary\\\":\\\"Red River Large Floodplain\n        Forest\\\"},{\\\"values\\\":[230],\\\"summary\\\":\\\"Southern Coastal Plain Blackwater\n        River Floodplain Forest\\\"},{\\\"values\\\":[231],\\\"summary\\\":\\\"Southern Piedmont\n        Large Floodplain Forest - Forest Modifier\\\"},{\\\"values\\\":[232],\\\"summary\\\":\\\"Southern\n        Piedmont Small Floodplain and Riparian Forest\\\"},{\\\"values\\\":[233],\\\"summary\\\":\\\"West\n        Gulf Coastal Plain Large River Floodplain Forest\\\"},{\\\"values\\\":[234],\\\"summary\\\":\\\"West\n        Gulf Coastal Plain Near-Coast Large River Swamp\\\"},{\\\"values\\\":[235],\\\"summary\\\":\\\"West\n        Gulf Coastal Plain Small Stream and River Forest\\\"},{\\\"values\\\":[236],\\\"summary\\\":\\\"Atlantic\n        Coastal Plain Streamhead Seepage Swamp -  Pocosin -  and Baygall\\\"},{\\\"values\\\":[237],\\\"summary\\\":\\\"Gulf\n        and Atlantic Coastal Plain Swamp Systems\\\"},{\\\"values\\\":[238],\\\"summary\\\":\\\"Southern\n        Coastal Plain Hydric Hammock\\\"},{\\\"values\\\":[239],\\\"summary\\\":\\\"Southern Coastal\n        Plain Seepage Swamp and Baygall\\\"},{\\\"values\\\":[240],\\\"summary\\\":\\\"West Gulf\n        Coastal Plain Seepage Swamp and Baygall\\\"},{\\\"values\\\":[241],\\\"summary\\\":\\\"Atlantic\n        Coastal Plain Nonriverine Swamp and Wet Hardwood Forest  - Taxodium/Nyssa\n        Modifier\\\"},{\\\"values\\\":[242],\\\"summary\\\":\\\"Atlantic Coastal Plain Nonriverine\n        Swamp and Wet Hardwood Forest - Oak Dominated Modifier\\\"},{\\\"values\\\":[243],\\\"summary\\\":\\\"East\n        Gulf Coastal Plain Southern Loblolly-Hardwood Flatwoods\\\"},{\\\"values\\\":[244],\\\"summary\\\":\\\"Lower\n        Mississippi River Bottomland Depressions - Forest Modifier\\\"},{\\\"values\\\":[245],\\\"summary\\\":\\\"Lower\n        Mississippi River Flatwoods\\\"},{\\\"values\\\":[246],\\\"summary\\\":\\\"Northern Atlantic\n        Coastal Plain Basin Swamp and Wet Hardwood Forest\\\"},{\\\"values\\\":[247],\\\"summary\\\":\\\"Southern\n        Coastal Plain Nonriverine Basin Swamp\\\"},{\\\"values\\\":[248],\\\"summary\\\":\\\"Southern\n        Coastal Plain Nonriverine Basin Swamp - Okefenokee Bay/Gum Modifier\\\"},{\\\"values\\\":[249],\\\"summary\\\":\\\"Southern\n        Coastal Plain Nonriverine Basin Swamp - Okefenokee Pine Modifier\\\"},{\\\"values\\\":[250],\\\"summary\\\":\\\"Southern\n        Coastal Plain Nonriverine Basin Swamp - Okefenokee Taxodium Modifier\\\"},{\\\"values\\\":[251],\\\"summary\\\":\\\"West\n        Gulf Coastal Plain Nonriverine Wet Hardwood Flatwoods\\\"},{\\\"values\\\":[252],\\\"summary\\\":\\\"West\n        Gulf Coastal Plain Pine-Hardwood Flatwoods\\\"},{\\\"values\\\":[253],\\\"summary\\\":\\\"Edwards\n        Plateau Riparian\\\"},{\\\"values\\\":[254],\\\"summary\\\":\\\"Atlantic Coastal Plain\n        Clay-Based Carolina Bay Forested Wetland\\\"},{\\\"values\\\":[255],\\\"summary\\\":\\\"Atlantic\n        Coastal Plain Clay-Based Carolina Bay Herbaceous Wetland\\\"},{\\\"values\\\":[256],\\\"summary\\\":\\\"Atlantic\n        Coastal Plain Southern Wet Pine Savanna and Flatwoods\\\"},{\\\"values\\\":[257],\\\"summary\\\":\\\"Central\n        Atlantic Coastal Plain Wet Longleaf Pine Savanna and Flatwoods\\\"},{\\\"values\\\":[258],\\\"summary\\\":\\\"Central\n        Florida Pine Flatwoods\\\"},{\\\"values\\\":[259],\\\"summary\\\":\\\"East Gulf Coastal\n        Plain Near-Coast Pine Flatwoods\\\"},{\\\"values\\\":[260],\\\"summary\\\":\\\"East Gulf\n        Coastal Plain Near-Coast Pine Flatwoods - Open Understory Modifier\\\"},{\\\"values\\\":[261],\\\"summary\\\":\\\"East\n        Gulf Coastal Plain Near-Coast Pine Flatwoods - Scrub/Shrub Understory Modifier\\\"},{\\\"values\\\":[262],\\\"summary\\\":\\\"South\n        Florida Pine Flatwoods\\\"},{\\\"values\\\":[263],\\\"summary\\\":\\\"Southern Coastal\n        Plain Nonriverine Cypress Dome\\\"},{\\\"values\\\":[264],\\\"summary\\\":\\\"West Gulf\n        Coastal Plain Wet Longleaf Pine Savanna and Flatwoods\\\"},{\\\"values\\\":[265],\\\"summary\\\":\\\"Columbia\n        Basin Foothill Riparian Woodland and Shrubland\\\"},{\\\"values\\\":[266],\\\"summary\\\":\\\"Great\n        Basin Foothill and Lower Montane Riparian Woodland and Shrubland\\\"},{\\\"values\\\":[267],\\\"summary\\\":\\\"0\\\"},{\\\"values\\\":[268],\\\"summary\\\":\\\"Northern\n        Rocky Mountain Conifer Swamp\\\"},{\\\"values\\\":[269],\\\"summary\\\":\\\"Northern Rocky\n        Mountain Lower Montane Riparian Woodland and Shrubland\\\"},{\\\"values\\\":[270],\\\"summary\\\":\\\"Rocky\n        Mountain Lower Montane Riparian Woodland and Shrubland\\\"},{\\\"values\\\":[271],\\\"summary\\\":\\\"Rocky\n        Mountain Montane Riparian Systems\\\"},{\\\"values\\\":[272],\\\"summary\\\":\\\"Rocky\n        Mountain Subalpine-Montane Riparian Woodland\\\"},{\\\"values\\\":[273],\\\"summary\\\":\\\"North\n        Pacific Hardwood-Conifer Swamp\\\"},{\\\"values\\\":[274],\\\"summary\\\":\\\"North Pacific\n        Lowland Riparian Forest and Shrubland\\\"},{\\\"values\\\":[275],\\\"summary\\\":\\\"North\n        Pacific Montane Riparian Woodland and Shrubland\\\"},{\\\"values\\\":[276],\\\"summary\\\":\\\"North\n        Pacific Shrub Swamp\\\"},{\\\"values\\\":[277],\\\"summary\\\":\\\"California Central\n        Valley Riparian Woodland and Shrubland\\\"},{\\\"values\\\":[278],\\\"summary\\\":\\\"Mediterranean\n        California Foothill and Lower Montane Riparian Woodland\\\"},{\\\"values\\\":[279],\\\"summary\\\":\\\"Mediterranean\n        California Serpentine Foothill and Lower Montane Riparian Woodland and Seep\\\"},{\\\"values\\\":[280],\\\"summary\\\":\\\"North\n        American Warm Desert Lower Montane Riparian Woodland and Shrubland\\\"},{\\\"values\\\":[281],\\\"summary\\\":\\\"North\n        American Warm Desert Riparian Systems\\\"},{\\\"values\\\":[282],\\\"summary\\\":\\\"North\n        American Warm Desert Riparian Woodland and Shrubland\\\"},{\\\"values\\\":[283],\\\"summary\\\":\\\"Tamaulipan\n        Floodplain\\\"},{\\\"values\\\":[284],\\\"summary\\\":\\\"Tamaulipan Riparian Systems\\\"},{\\\"values\\\":[285],\\\"summary\\\":\\\"Boreal\n        Aspen-Birch Forest\\\"},{\\\"values\\\":[286],\\\"summary\\\":\\\"Boreal Jack Pine-Black\n        Spruce Forest\\\"},{\\\"values\\\":[287],\\\"summary\\\":\\\"Boreal White Spruce-Fir-Hardwood\n        Forest\\\"},{\\\"values\\\":[288],\\\"summary\\\":\\\"Boreal-Laurentian Conifer Acidic\n        Swamp and Treed Poor Fen\\\"},{\\\"values\\\":[289],\\\"summary\\\":\\\"Eastern Boreal\n        Floodplain\\\"},{\\\"values\\\":[290],\\\"summary\\\":\\\"South Florida Shell Hash Beach\\\"},{\\\"values\\\":[291],\\\"summary\\\":\\\"Southeast\n        Florida Beach\\\"},{\\\"values\\\":[292],\\\"summary\\\":\\\"Southwest Florida Beach\\\"},{\\\"values\\\":[293],\\\"summary\\\":\\\"South\n        Florida Everglades Sawgrass Marsh\\\"},{\\\"values\\\":[294],\\\"summary\\\":\\\"South\n        Florida Freshwater Slough and Gator Hole\\\"},{\\\"values\\\":[295],\\\"summary\\\":\\\"South\n        Florida Wet Marl Prairie\\\"},{\\\"values\\\":[296],\\\"summary\\\":\\\"California Maritime\n        Chaparral\\\"},{\\\"values\\\":[297],\\\"summary\\\":\\\"California Mesic Chaparral\\\"},{\\\"values\\\":[298],\\\"summary\\\":\\\"California\n        Xeric Serpentine Chaparral\\\"},{\\\"values\\\":[299],\\\"summary\\\":\\\"Klamath-Siskiyou\n        Xeromorphic Serpentine Savanna and Chaparral\\\"},{\\\"values\\\":[300],\\\"summary\\\":\\\"Mediterranean\n        California Mesic Serpentine Woodland and Chaparral\\\"},{\\\"values\\\":[301],\\\"summary\\\":\\\"Northern\n        and Central California Dry-Mesic Chaparral\\\"},{\\\"values\\\":[302],\\\"summary\\\":\\\"Southern\n        California Dry-Mesic Chaparral\\\"},{\\\"values\\\":[303],\\\"summary\\\":\\\"Southern\n        California Coastal Scrub\\\"},{\\\"values\\\":[304],\\\"summary\\\":\\\"California Central\n        Valley and Southern Coastal Grassland\\\"},{\\\"values\\\":[305],\\\"summary\\\":\\\"California\n        Mesic Serpentine Grassland\\\"},{\\\"values\\\":[306],\\\"summary\\\":\\\"Columbia Basin\n        Foothill and Canyon Dry Grassland\\\"},{\\\"values\\\":[307],\\\"summary\\\":\\\"Columbia\n        Basin Palouse Prairie\\\"},{\\\"values\\\":[308],\\\"summary\\\":\\\"North Pacific Alpine\n        and Subalpine Dry Grassland\\\"},{\\\"values\\\":[309],\\\"summary\\\":\\\"North Pacific\n        Montane Grassland\\\"},{\\\"values\\\":[310],\\\"summary\\\":\\\"North Pacific Montane\n        Shrubland\\\"},{\\\"values\\\":[311],\\\"summary\\\":\\\"Northern Rocky Mountain Lower\n        Montane, Foothill and Valley Grassland\\\"},{\\\"values\\\":[312],\\\"summary\\\":\\\"Northern\n        Rocky Mountain Montane-Foothill Deciduous Shrubland\\\"},{\\\"values\\\":[313],\\\"summary\\\":\\\"Northern\n        Rocky Mountain Subalpine Deciduous Shrubland\\\"},{\\\"values\\\":[314],\\\"summary\\\":\\\"Northern\n        Rocky Mountain Subalpine-Upper Montane Grassland\\\"},{\\\"values\\\":[315],\\\"summary\\\":\\\"Southern\n        Rocky Mountain Montane-Subalpine Grassland\\\"},{\\\"values\\\":[316],\\\"summary\\\":\\\"Rocky\n        Mountain Gambel Oak-Mixed Montane Shrubland\\\"},{\\\"values\\\":[317],\\\"summary\\\":\\\"Rocky\n        Mountain Lower Montane-Foothill Shrubland\\\"},{\\\"values\\\":[318],\\\"summary\\\":\\\"California\n        Northern Coastal Grassland\\\"},{\\\"values\\\":[319],\\\"summary\\\":\\\"North Pacific\n        Herbaceous Bald and Bluff\\\"},{\\\"values\\\":[320],\\\"summary\\\":\\\"North Pacific\n        Hypermaritime Shrub and Herbaceous Headland\\\"},{\\\"values\\\":[321],\\\"summary\\\":\\\"Willamette\n        Valley Upland Prairie and Savanna\\\"},{\\\"values\\\":[322],\\\"summary\\\":\\\"Mediterranean\n        California Subalpine Meadow\\\"},{\\\"values\\\":[323],\\\"summary\\\":\\\"Rocky Mountain\n        Subalpine-Montane Mesic Meadow\\\"},{\\\"values\\\":[324],\\\"summary\\\":\\\"Central\n        Mixedgrass Prairie\\\"},{\\\"values\\\":[325],\\\"summary\\\":\\\"Northwestern Great Plains\n        Mixedgrass Prairie\\\"},{\\\"values\\\":[326],\\\"summary\\\":\\\"Western Great Plains\n        Foothill and Piedmont Grassland\\\"},{\\\"values\\\":[327],\\\"summary\\\":\\\"Western\n        Great Plains Tallgrass Prairie\\\"},{\\\"values\\\":[328],\\\"summary\\\":\\\"Western\n        Great Plains Sand Prairie\\\"},{\\\"values\\\":[329],\\\"summary\\\":\\\"Western Great\n        Plains Sandhill Steppe\\\"},{\\\"values\\\":[330],\\\"summary\\\":\\\"Western Great Plains\n        Mesquite Woodland and Shrubland\\\"},{\\\"values\\\":[331],\\\"summary\\\":\\\"Western\n        Great Plains Shortgrass Prairie\\\"},{\\\"values\\\":[332],\\\"summary\\\":\\\"Arkansas\n        Valley Prairie and Woodland\\\"},{\\\"values\\\":[333],\\\"summary\\\":\\\"Central Tallgrass\n        Prairie\\\"},{\\\"values\\\":[334],\\\"summary\\\":\\\"North-Central Interior Oak Savanna\\\"},{\\\"values\\\":[335],\\\"summary\\\":\\\"North-Central\n        Interior Sand and Gravel Tallgrass Prairie\\\"},{\\\"values\\\":[336],\\\"summary\\\":\\\"North-Central\n        Oak Barrens\\\"},{\\\"values\\\":[337],\\\"summary\\\":\\\"Northern Tallgrass Prairie\\\"},{\\\"values\\\":[338],\\\"summary\\\":\\\"Southeastern\n        Great Plains Tallgrass Prairie\\\"},{\\\"values\\\":[339],\\\"summary\\\":\\\"Texas Blackland\n        Tallgrass Prairie\\\"},{\\\"values\\\":[340],\\\"summary\\\":\\\"Texas-Louisiana Coastal\n        Prairie\\\"},{\\\"values\\\":[341],\\\"summary\\\":\\\"Central Appalachian Pine-Oak Rocky\n        Woodland\\\"},{\\\"values\\\":[342],\\\"summary\\\":\\\"Southern Appalachian Grass and\n        Shrub Bald\\\"},{\\\"values\\\":[343],\\\"summary\\\":\\\"Southern Appalachian Grass and\n        Shrub Bald - Herbaceous Modifier\\\"},{\\\"values\\\":[344],\\\"summary\\\":\\\"Southern\n        Appalachian Grass and Shrub Bald - Shrub Modifier\\\"},{\\\"values\\\":[345],\\\"summary\\\":\\\"Central\n        Appalachian Alkaline Glade and Woodland\\\"},{\\\"values\\\":[346],\\\"summary\\\":\\\"Central\n        Interior Highlands Calcareous Glade and Barrens\\\"},{\\\"values\\\":[347],\\\"summary\\\":\\\"Central\n        Interior Highlands Dry Acidic Glade and Barrens\\\"},{\\\"values\\\":[348],\\\"summary\\\":\\\"Cumberland\n        Sandstone Glade and Barrens\\\"},{\\\"values\\\":[349],\\\"summary\\\":\\\"Great Lakes\n        Alvar\\\"},{\\\"values\\\":[350],\\\"summary\\\":\\\"Nashville Basin Limestone Glade\\\"},{\\\"values\\\":[351],\\\"summary\\\":\\\"Southern\n        Ridge and Valley / Cumberland Dry Calcareous Forest\\\"},{\\\"values\\\":[352],\\\"summary\\\":\\\"Southern\n        Piedmont Glade and Barrens\\\"},{\\\"values\\\":[353],\\\"summary\\\":\\\"East Gulf Coastal\n        Plain Black Belt Calcareous Prairie and Woodland - Herbaceous Modifier\\\"},{\\\"values\\\":[354],\\\"summary\\\":\\\"East\n        Gulf Coastal Plain Jackson Prairie and Woodland\\\"},{\\\"values\\\":[355],\\\"summary\\\":\\\"Eastern\n        Highland Rim Prairie and Barrens - Dry Modifier\\\"},{\\\"values\\\":[356],\\\"summary\\\":\\\"Coahuilan\n        Chaparral\\\"},{\\\"values\\\":[357],\\\"summary\\\":\\\"Madrean Oriental Chaparral\\\"},{\\\"values\\\":[358],\\\"summary\\\":\\\"Mogollon\n        Chaparral\\\"},{\\\"values\\\":[359],\\\"summary\\\":\\\"Sonora-Mojave Semi-Desert Chaparral\\\"},{\\\"values\\\":[360],\\\"summary\\\":\\\"California\n        Montane Woodland and Chaparral\\\"},{\\\"values\\\":[361],\\\"summary\\\":\\\"Great Basin\n        Semi-Desert Chaparral\\\"},{\\\"values\\\":[362],\\\"summary\\\":\\\"Florida Dry Prairie\\\"},{\\\"values\\\":[363],\\\"summary\\\":\\\"Florida\n        Peninsula Inland Scrub\\\"},{\\\"values\\\":[364],\\\"summary\\\":\\\"West Gulf Coastal\n        Plain Catahoula Barrens\\\"},{\\\"values\\\":[365],\\\"summary\\\":\\\"West Gulf Coastal\n        Plain Nepheline Syenite Glade\\\"},{\\\"values\\\":[366],\\\"summary\\\":\\\"East Gulf\n        Coastal Plain Jackson Plain Dry Flatwoods - Open Understory Modifier\\\"},{\\\"values\\\":[367],\\\"summary\\\":\\\"West\n        Gulf Coastal Plain Northern Calcareous Prairie\\\"},{\\\"values\\\":[368],\\\"summary\\\":\\\"West\n        Gulf Coastal Plain Southern Calcareous Prairie\\\"},{\\\"values\\\":[369],\\\"summary\\\":\\\"Acadian-Appalachian\n        Subalpine Woodland and Heath-Krummholz\\\"},{\\\"values\\\":[370],\\\"summary\\\":\\\"Atlantic\n        and Gulf Coastal Plain Interdunal Wetland\\\"},{\\\"values\\\":[371],\\\"summary\\\":\\\"Atlantic\n        Coastal Plain Southern Dune and Maritime Grassland\\\"},{\\\"values\\\":[372],\\\"summary\\\":\\\"Central\n        and Upper Texas Coast Dune and Coastal Grassland\\\"},{\\\"values\\\":[373],\\\"summary\\\":\\\"East\n        Gulf Coastal Plain Dune and Coastal Grassland\\\"},{\\\"values\\\":[374],\\\"summary\\\":\\\"Great\n        Lakes Dune\\\"},{\\\"values\\\":[375],\\\"summary\\\":\\\"Northern Atlantic Coastal Plain\n        Dune and Swale\\\"},{\\\"values\\\":[376],\\\"summary\\\":\\\"Northern Atlantic Coastal\n        Plain Heathland and Grassland\\\"},{\\\"values\\\":[377],\\\"summary\\\":\\\"South Texas\n        Dune and Coastal Grassland\\\"},{\\\"values\\\":[378],\\\"summary\\\":\\\"South Texas\n        Sand Sheet Grassland\\\"},{\\\"values\\\":[379],\\\"summary\\\":\\\"Southwest Florida\n        Dune and Coastal Grassland\\\"},{\\\"values\\\":[380],\\\"summary\\\":\\\"North Pacific\n        Coastal Cliff and Bluff\\\"},{\\\"values\\\":[381],\\\"summary\\\":\\\"North Pacific Maritime\n        Coastal Sand Dune and Strand\\\"},{\\\"values\\\":[382],\\\"summary\\\":\\\"Northern California\n        Coastal Scrub\\\"},{\\\"values\\\":[383],\\\"summary\\\":\\\"Mediterranean California\n        Coastal Bluff\\\"},{\\\"values\\\":[384],\\\"summary\\\":\\\"Mediterranean California\n        Northern Coastal Dune\\\"},{\\\"values\\\":[385],\\\"summary\\\":\\\"Mediterranean California\n        Southern Coastal Dune\\\"},{\\\"values\\\":[386],\\\"summary\\\":\\\"Atlantic Coastal\n        Plain Northern Sandy Beach\\\"},{\\\"values\\\":[387],\\\"summary\\\":\\\"Atlantic Coastal\n        Plain Sea Island Beach\\\"},{\\\"values\\\":[388],\\\"summary\\\":\\\"Atlantic Coastal\n        Plain Southern Beach\\\"},{\\\"values\\\":[389],\\\"summary\\\":\\\"Florida Panhandle\n        Beach Vegetation\\\"},{\\\"values\\\":[390],\\\"summary\\\":\\\"Louisiana Beach\\\"},{\\\"values\\\":[391],\\\"summary\\\":\\\"Northern\n        Atlantic Coastal Plain Sandy Beach\\\"},{\\\"values\\\":[392],\\\"summary\\\":\\\"Texas\n        Coastal Bend Beach\\\"},{\\\"values\\\":[393],\\\"summary\\\":\\\"Upper Texas Coast Beach\\\"},{\\\"values\\\":[394],\\\"summary\\\":\\\"0\\\"},{\\\"values\\\":[395],\\\"summary\\\":\\\"Mediterranean\n        California Serpentine Fen\\\"},{\\\"values\\\":[396],\\\"summary\\\":\\\"Mediterranean\n        California Subalpine-Montane Fen\\\"},{\\\"values\\\":[397],\\\"summary\\\":\\\"North\n        Pacific Bog and Fen\\\"},{\\\"values\\\":[398],\\\"summary\\\":\\\"Rocky Mountain Subalpine-Montane\n        Fen\\\"},{\\\"values\\\":[399],\\\"summary\\\":\\\"Atlantic Coastal Plain Peatland Pocosin\\\"},{\\\"values\\\":[400],\\\"summary\\\":\\\"Southern\n        and Central Appalachian Bog and Fen\\\"},{\\\"values\\\":[401],\\\"summary\\\":\\\"Atlantic\n        Coastal Plain Central Fresh-Oligohaline Tidal Marsh\\\"},{\\\"values\\\":[402],\\\"summary\\\":\\\"Atlantic\n        Coastal Plain Embayed Region Tidal Freshwater Marsh\\\"},{\\\"values\\\":[403],\\\"summary\\\":\\\"Atlantic\n        Coastal Plain Northern Fresh and Oligohaline Tidal Marsh\\\"},{\\\"values\\\":[404],\\\"summary\\\":\\\"Florida\n        Big Bend Fresh-Oligohaline Tidal Marsh\\\"},{\\\"values\\\":[405],\\\"summary\\\":\\\"Atlantic\n        Coastal Plain Depression Pondshore\\\"},{\\\"values\\\":[406],\\\"summary\\\":\\\"Atlantic\n        Coastal Plain Large Natural Lakeshore\\\"},{\\\"values\\\":[407],\\\"summary\\\":\\\"Central\n        Florida Herbaceous Pondshore\\\"},{\\\"values\\\":[408],\\\"summary\\\":\\\"Central Florida\n        Herbaceous Seep\\\"},{\\\"values\\\":[409],\\\"summary\\\":\\\"East Gulf Coastal Plain\n        Savanna and Wet Prairie\\\"},{\\\"values\\\":[410],\\\"summary\\\":\\\"East Gulf Coastal\n        Plain Depression Pondshore\\\"},{\\\"values\\\":[411],\\\"summary\\\":\\\"Floridian Highlands\n        Freshwater Marsh\\\"},{\\\"values\\\":[412],\\\"summary\\\":\\\"Southern Coastal Plain\n        Herbaceous Seepage Bog\\\"},{\\\"values\\\":[413],\\\"summary\\\":\\\"Southern Coastal\n        Plain Nonriverine Basin Swamp - Okefenokee Clethra Modifier\\\"},{\\\"values\\\":[414],\\\"summary\\\":\\\"Southern\n        Coastal Plain Nonriverine Basin Swamp - Okefenokee Nupea Modifier\\\"},{\\\"values\\\":[415],\\\"summary\\\":\\\"Texas-Louisiana\n        Coastal Prairie Slough\\\"},{\\\"values\\\":[416],\\\"summary\\\":\\\"Central Interior\n        and Appalachian Shrub-Herbaceous Wetland Systems\\\"},{\\\"values\\\":[417],\\\"summary\\\":\\\"Great\n        Lakes Coastal Marsh Systems\\\"},{\\\"values\\\":[418],\\\"summary\\\":\\\"0\\\"},{\\\"values\\\":[419],\\\"summary\\\":\\\"0\\\"},{\\\"values\\\":[420],\\\"summary\\\":\\\"Laurentian-Acadian\n        Shrub-Herbaceous Wetland Systems\\\"},{\\\"values\\\":[421],\\\"summary\\\":\\\"0\\\"},{\\\"values\\\":[422],\\\"summary\\\":\\\"Eastern\n        Great Plains Wet Meadow, Prairie  and Marsh\\\"},{\\\"values\\\":[423],\\\"summary\\\":\\\"Great\n        Lakes Wet-Mesic Lakeplain Prairie\\\"},{\\\"values\\\":[424],\\\"summary\\\":\\\"Great\n        Plains Prairie Pothole\\\"},{\\\"values\\\":[425],\\\"summary\\\":\\\"Western Great Plains\n        Closed Depression Wetland\\\"},{\\\"values\\\":[426],\\\"summary\\\":\\\"Western Great\n        Plains Depressional Wetland Systems\\\"},{\\\"values\\\":[427],\\\"summary\\\":\\\"Western\n        Great Plains Open Freshwater Depression Wetland\\\"},{\\\"values\\\":[428],\\\"summary\\\":\\\"Cumberland\n        Riverscour\\\"},{\\\"values\\\":[429],\\\"summary\\\":\\\"Inter-Mountain Basins Interdunal\n        Swale Wetland\\\"},{\\\"values\\\":[430],\\\"summary\\\":\\\"North Pacific Avalanche Chute\n        Shrubland\\\"},{\\\"values\\\":[431],\\\"summary\\\":\\\"North Pacific Intertidal Freshwater\n        Wetland\\\"},{\\\"values\\\":[432],\\\"summary\\\":\\\"Temperate Pacific Freshwater Emergent\n        Marsh\\\"},{\\\"values\\\":[433],\\\"summary\\\":\\\"Temperate Pacific Freshwater Mudflat\\\"},{\\\"values\\\":[434],\\\"summary\\\":\\\"Columbia\n        Plateau Vernal Pool\\\"},{\\\"values\\\":[435],\\\"summary\\\":\\\"Northern California\n        Claypan Vernal Pool\\\"},{\\\"values\\\":[436],\\\"summary\\\":\\\"Northern Rocky Mountain\n        Wooded Vernal Pool\\\"},{\\\"values\\\":[437],\\\"summary\\\":\\\"Columbia Plateau Silver\n        Sagebrush Seasonally Flooded Shrub-Steppe\\\"},{\\\"values\\\":[438],\\\"summary\\\":\\\"Rocky\n        Mountain Alpine-Montane Wet Meadow\\\"},{\\\"values\\\":[439],\\\"summary\\\":\\\"Rocky\n        Mountain Subalpine-Montane Riparian Shrubland\\\"},{\\\"values\\\":[440],\\\"summary\\\":\\\"Temperate\n        Pacific Montane Wet Meadow\\\"},{\\\"values\\\":[441],\\\"summary\\\":\\\"Willamette Valley\n        Wet Prairie\\\"},{\\\"values\\\":[442],\\\"summary\\\":\\\"Chihuahuan-Sonoran Desert Bottomland\n        and Swale Grassland\\\"},{\\\"values\\\":[443],\\\"summary\\\":\\\"North American Arid\n        West Emergent Marsh\\\"},{\\\"values\\\":[444],\\\"summary\\\":\\\"North American Warm\n        Desert Riparian Mesquite Bosque\\\"},{\\\"values\\\":[445],\\\"summary\\\":\\\"Western\n        Great Plains Saline Depression Wetland\\\"},{\\\"values\\\":[446],\\\"summary\\\":\\\"Acadian\n        Salt Marsh and Estuary Systems\\\"},{\\\"values\\\":[447],\\\"summary\\\":\\\"Atlantic\n        Coastal Plain Central Salt and Brackish Tidal Marsh\\\"},{\\\"values\\\":[448],\\\"summary\\\":\\\"Atlantic\n        Coastal Plain Embayed Region Tidal Salt and Brackish Marsh\\\"},{\\\"values\\\":[449],\\\"summary\\\":\\\"Atlantic\n        Coastal Plain Indian River Lagoon Tidal Marsh\\\"},{\\\"values\\\":[450],\\\"summary\\\":\\\"Atlantic\n        Coastal Plain Northern Tidal Salt Marsh\\\"},{\\\"values\\\":[451],\\\"summary\\\":\\\"Florida\n        Big Bend Salt-Brackish Tidal Marsh\\\"},{\\\"values\\\":[452],\\\"summary\\\":\\\"Gulf\n        and Atlantic Coastal Plain Tidal Marsh Systems\\\"},{\\\"values\\\":[453],\\\"summary\\\":\\\"Mississippi\n        Sound Salt and Brackish Tidal Marsh\\\"},{\\\"values\\\":[454],\\\"summary\\\":\\\"Texas\n        Saline Coastal Prairie\\\"},{\\\"values\\\":[455],\\\"summary\\\":\\\"Temperate Pacific\n        Tidal Salt and Brackish Marsh\\\"},{\\\"values\\\":[456],\\\"summary\\\":\\\"Inter-Mountain\n        Basins Alkaline Closed Depression\\\"},{\\\"values\\\":[457],\\\"summary\\\":\\\"Inter-Mountain\n        Basins Greasewood Flat\\\"},{\\\"values\\\":[458],\\\"summary\\\":\\\"Inter-Mountain Basins\n        Playa\\\"},{\\\"values\\\":[459],\\\"summary\\\":\\\"North American Warm Desert Playa\\\"},{\\\"values\\\":[460],\\\"summary\\\":\\\"Apacherian-Chihuahuan\n        Mesquite Upland Scrub\\\"},{\\\"values\\\":[461],\\\"summary\\\":\\\"Apacherian-Chihuahuan\n        Semi-Desert Grassland and Steppe\\\"},{\\\"values\\\":[462],\\\"summary\\\":\\\"Chihuahuan\n        Creosotebush, Mixed Desert and Thorn Scrub\\\"},{\\\"values\\\":[463],\\\"summary\\\":\\\"Chihuahuan\n        Gypsophilous Grassland and Steppe\\\"},{\\\"values\\\":[464],\\\"summary\\\":\\\"Chihuahuan\n        Loamy Plains Desert Grassland\\\"},{\\\"values\\\":[465],\\\"summary\\\":\\\"Chihuahuan\n        Mixed Desert and Thorn Scrub\\\"},{\\\"values\\\":[466],\\\"summary\\\":\\\"Chihuahuan\n        Sandy Plains Semi-Desert Grassland\\\"},{\\\"values\\\":[467],\\\"summary\\\":\\\"Chihuahuan\n        Stabilized Coppice Dune and Sand Flat Scrub\\\"},{\\\"values\\\":[468],\\\"summary\\\":\\\"Chihuahuan\n        Succulent Desert Scrub\\\"},{\\\"values\\\":[469],\\\"summary\\\":\\\"Madrean Juniper\n        Savanna\\\"},{\\\"values\\\":[470],\\\"summary\\\":\\\"Mojave Mid-Elevation Mixed Desert\n        Scrub\\\"},{\\\"values\\\":[471],\\\"summary\\\":\\\"North American Warm Desert Active\n        and Stabilized Dune\\\"},{\\\"values\\\":[472],\\\"summary\\\":\\\"Sonora-Mojave Creosotebush-White\n        Bursage Desert Scrub\\\"},{\\\"values\\\":[473],\\\"summary\\\":\\\"Sonoran Mid-Elevation\n        Desert Scrub\\\"},{\\\"values\\\":[474],\\\"summary\\\":\\\"Sonoran Paloverde-Mixed Cacti\n        Desert Scrub\\\"},{\\\"values\\\":[475],\\\"summary\\\":\\\"Chihuahuan Mixed Salt Desert\n        Scrub\\\"},{\\\"values\\\":[476],\\\"summary\\\":\\\"Sonora-Mojave Mixed Salt Desert Scrub\\\"},{\\\"values\\\":[477],\\\"summary\\\":\\\"North\n        American Warm Desert Wash\\\"},{\\\"values\\\":[478],\\\"summary\\\":\\\"South Texas Lomas\\\"},{\\\"values\\\":[479],\\\"summary\\\":\\\"Tamaulipan\n        Calcareous Thornscrub\\\"},{\\\"values\\\":[480],\\\"summary\\\":\\\"Tamaulipan Clay Grassland\\\"},{\\\"values\\\":[481],\\\"summary\\\":\\\"Tamaulipan\n        Mesquite Upland Scrub\\\"},{\\\"values\\\":[482],\\\"summary\\\":\\\"Tamaulipan Mixed\n        Deciduous Thornscrub\\\"},{\\\"values\\\":[483],\\\"summary\\\":\\\"Tamaulipan Savanna\n        Grassland\\\"},{\\\"values\\\":[484],\\\"summary\\\":\\\"Inter-Mountain Basins Mat Saltbush\n        Shrubland\\\"},{\\\"values\\\":[485],\\\"summary\\\":\\\"Inter-Mountain Basins Mixed Salt\n        Desert Scrub\\\"},{\\\"values\\\":[486],\\\"summary\\\":\\\"Inter-Mountain Basins Wash\\\"},{\\\"values\\\":[487],\\\"summary\\\":\\\"Columbia\n        Plateau Steppe and Grassland\\\"},{\\\"values\\\":[488],\\\"summary\\\":\\\"Great Basin\n        Xeric Mixed Sagebrush Shrubland\\\"},{\\\"values\\\":[489],\\\"summary\\\":\\\"Inter-Mountain\n        Basins Big Sagebrush Shrubland\\\"},{\\\"values\\\":[490],\\\"summary\\\":\\\"Inter-Mountain\n        Basins Big Sagebrush Steppe\\\"},{\\\"values\\\":[491],\\\"summary\\\":\\\"Inter-Mountain\n        Basins Montane Sagebrush Steppe\\\"},{\\\"values\\\":[492],\\\"summary\\\":\\\"Colorado\n        Plateau Mixed Low Sagebrush Shrubland\\\"},{\\\"values\\\":[493],\\\"summary\\\":\\\"Columbia\n        Plateau Low Sagebrush Steppe\\\"},{\\\"values\\\":[494],\\\"summary\\\":\\\"Columbia Plateau\n        Scabland Shrubland\\\"},{\\\"values\\\":[495],\\\"summary\\\":\\\"Wyoming Basins Dwarf\n        Sagebrush Shrubland and Steppe\\\"},{\\\"values\\\":[496],\\\"summary\\\":\\\"Colorado\n        Plateau Blackbrush-Mormon-tea Shrubland\\\"},{\\\"values\\\":[497],\\\"summary\\\":\\\"Inter-Mountain\n        Basins Semi-Desert Grassland\\\"},{\\\"values\\\":[498],\\\"summary\\\":\\\"Inter-Mountain\n        Basins Semi-Desert Shrub Steppe\\\"},{\\\"values\\\":[499],\\\"summary\\\":\\\"Southern\n        Colorado Plateau Sand Shrubland\\\"},{\\\"values\\\":[500],\\\"summary\\\":\\\"Acadian-Appalachian\n        Alpine Tundra\\\"},{\\\"values\\\":[501],\\\"summary\\\":\\\"Rocky Mountain Alpine Dwarf-Shrubland\\\"},{\\\"values\\\":[502],\\\"summary\\\":\\\"Rocky\n        Mountain Alpine Fell-Field\\\"},{\\\"values\\\":[503],\\\"summary\\\":\\\"Rocky Mountain\n        Alpine Turf\\\"},{\\\"values\\\":[504],\\\"summary\\\":\\\"Mediterranean California Alpine\n        Dry Tundra\\\"},{\\\"values\\\":[505],\\\"summary\\\":\\\"Mediterranean California Alpine\n        Fell-Field\\\"},{\\\"values\\\":[506],\\\"summary\\\":\\\"North Pacific Dry and Mesic\n        Alpine Dwarf-Shrubland, Fell-field and Meadow\\\"},{\\\"values\\\":[507],\\\"summary\\\":\\\"Rocky\n        Mountain Alpine Tundra/Fell-field/Dwarf-shrub Map Unit\\\"},{\\\"values\\\":[508],\\\"summary\\\":\\\"Temperate\n        Pacific Intertidal Mudflat\\\"},{\\\"values\\\":[509],\\\"summary\\\":\\\"Mediterranean\n        California Eelgrass Bed\\\"},{\\\"values\\\":[510],\\\"summary\\\":\\\"North Pacific Maritime\n        Eelgrass Bed\\\"},{\\\"values\\\":[511],\\\"summary\\\":\\\"South-Central Interior Large\n        Floodplain - Herbaceous Modifier\\\"},{\\\"values\\\":[512],\\\"summary\\\":\\\"East Gulf\n        Coastal Plain Large River Floodplain Forest - Herbaceous Modifier\\\"},{\\\"values\\\":[513],\\\"summary\\\":\\\"Temperate\n        Pacific Freshwater Aquatic Bed\\\"},{\\\"values\\\":[514],\\\"summary\\\":\\\"Central\n        California Coast Ranges Cliff and Canyon\\\"},{\\\"values\\\":[515],\\\"summary\\\":\\\"Mediterranean\n        California Serpentine Barrens\\\"},{\\\"values\\\":[516],\\\"summary\\\":\\\"Southern\n        California Coast Ranges Cliff and Canyon\\\"},{\\\"values\\\":[517],\\\"summary\\\":\\\"Central\n        Interior Acidic Cliff and Talus\\\"},{\\\"values\\\":[518],\\\"summary\\\":\\\"Central\n        Interior Calcareous Cliff and Talus\\\"},{\\\"values\\\":[519],\\\"summary\\\":\\\"East\n        Gulf Coastal Plain Dry Chalk Bluff\\\"},{\\\"values\\\":[520],\\\"summary\\\":\\\"North-Central\n        Appalachian Acidic Cliff and Talus\\\"},{\\\"values\\\":[521],\\\"summary\\\":\\\"North-Central\n        Appalachian Circumneutral Cliff and Talus\\\"},{\\\"values\\\":[522],\\\"summary\\\":\\\"Southern\n        Appalachian Montane Cliff\\\"},{\\\"values\\\":[523],\\\"summary\\\":\\\"Southern Interior\n        Acid Cliff\\\"},{\\\"values\\\":[524],\\\"summary\\\":\\\"Southern Interior Calcareous\n        Cliff\\\"},{\\\"values\\\":[525],\\\"summary\\\":\\\"Southern Piedmont Cliff\\\"},{\\\"values\\\":[526],\\\"summary\\\":\\\"Southern\n        Appalachian Granitic Dome\\\"},{\\\"values\\\":[527],\\\"summary\\\":\\\"Southern Appalachian\n        Rocky Summit\\\"},{\\\"values\\\":[528],\\\"summary\\\":\\\"Southern Piedmont Granite\n        Flatrock\\\"},{\\\"values\\\":[529],\\\"summary\\\":\\\"Rocky Mountain Cliff, Canyon and\n        Massive Bedrock\\\"},{\\\"values\\\":[530],\\\"summary\\\":\\\"Klamath-Siskiyou Cliff\n        and Outcrop\\\"},{\\\"values\\\":[531],\\\"summary\\\":\\\"North Pacific Montane Massive\n        Bedrock, Cliff and Talus\\\"},{\\\"values\\\":[532],\\\"summary\\\":\\\"North Pacific\n        Serpentine Barren\\\"},{\\\"values\\\":[533],\\\"summary\\\":\\\"North Pacific Active\n        Volcanic Rock and Cinder Land\\\"},{\\\"values\\\":[534],\\\"summary\\\":\\\"Sierra Nevada\n        Cliff and Canyon\\\"},{\\\"values\\\":[535],\\\"summary\\\":\\\"Western Great Plains Badland\\\"},{\\\"values\\\":[536],\\\"summary\\\":\\\"Southwestern\n        Great Plains Canyon\\\"},{\\\"values\\\":[537],\\\"summary\\\":\\\"Western Great Plains\n        Cliff and Outcrop\\\"},{\\\"values\\\":[538],\\\"summary\\\":\\\"North American Warm Desert\n        Badland\\\"},{\\\"values\\\":[539],\\\"summary\\\":\\\"North American Warm Desert Bedrock\n        Cliff and Outcrop\\\"},{\\\"values\\\":[540],\\\"summary\\\":\\\"North American Warm Desert\n        Pavement\\\"},{\\\"values\\\":[541],\\\"summary\\\":\\\"North American Warm Desert Volcanic\n        Rockland\\\"},{\\\"values\\\":[542],\\\"summary\\\":\\\"Colorado Plateau Mixed Bedrock\n        Canyon and Tableland\\\"},{\\\"values\\\":[543],\\\"summary\\\":\\\"Columbia Plateau Ash\n        and Tuff Badland\\\"},{\\\"values\\\":[544],\\\"summary\\\":\\\"Geysers and Hot Springs\\\"},{\\\"values\\\":[545],\\\"summary\\\":\\\"Inter-Mountain\n        Basins Active and Stabilized Dune\\\"},{\\\"values\\\":[546],\\\"summary\\\":\\\"Inter-Mountain\n        Basins Cliff and Canyon\\\"},{\\\"values\\\":[547],\\\"summary\\\":\\\"Inter-Mountain\n        Basins Shale Badland\\\"},{\\\"values\\\":[548],\\\"summary\\\":\\\"Inter-Mountain Basins\n        Volcanic Rock and Cinder Land\\\"},{\\\"values\\\":[549],\\\"summary\\\":\\\"Rocky Mountain\n        Alpine Bedrock and Scree\\\"},{\\\"values\\\":[550],\\\"summary\\\":\\\"Mediterranean\n        California Alpine Bedrock and Scree\\\"},{\\\"values\\\":[551],\\\"summary\\\":\\\"North\n        Pacific Alpine and Subalpine Bedrock and Scree\\\"},{\\\"values\\\":[552],\\\"summary\\\":\\\"Unconsolidated\n        Shore\\\"},{\\\"values\\\":[553],\\\"summary\\\":\\\"Undifferentiated Barren Land\\\"},{\\\"values\\\":[554],\\\"summary\\\":\\\"North\n        American Alpine Ice Field\\\"},{\\\"values\\\":[555],\\\"summary\\\":\\\"Orchards Vineyards\n        and Other High Structure Agriculture\\\"},{\\\"values\\\":[556],\\\"summary\\\":\\\"Cultivated\n        Cropland\\\"},{\\\"values\\\":[557],\\\"summary\\\":\\\"Pasture/Hay\\\"},{\\\"values\\\":[558],\\\"summary\\\":\\\"Introduced\n        Upland Vegetation - Annual Grassland\\\"},{\\\"values\\\":[559],\\\"summary\\\":\\\"Introduced\n        Upland Vegetation - Perennial Grassland and Forbland\\\"},{\\\"values\\\":[560],\\\"summary\\\":\\\"Modified/Managed\n        Southern Tall Grassland\\\"},{\\\"values\\\":[561],\\\"summary\\\":\\\"Introduced Upland\n        Vegetation - Shrub\\\"},{\\\"values\\\":[562],\\\"summary\\\":\\\"Introduced Riparian\n        and Wetland Vegetation\\\"},{\\\"values\\\":[563],\\\"summary\\\":\\\"Introduced Upland\n        Vegetation - Treed\\\"},{\\\"values\\\":[564],\\\"summary\\\":\\\"0\\\"},{\\\"values\\\":[565],\\\"summary\\\":\\\"Disturbed,\n        Non-specific\\\"},{\\\"values\\\":[566],\\\"summary\\\":\\\"Recently Logged Areas\\\"},{\\\"values\\\":[567],\\\"summary\\\":\\\"Harvested\n        Forest - Grass/Forb Regeneration\\\"},{\\\"values\\\":[568],\\\"summary\\\":\\\"Harvested\n        Forest-Shrub Regeneration\\\"},{\\\"values\\\":[569],\\\"summary\\\":\\\"Harvested Forest\n        - Northwestern Conifer Regeneration\\\"},{\\\"values\\\":[570],\\\"summary\\\":\\\"Recently\n        Burned\\\"},{\\\"values\\\":[571],\\\"summary\\\":\\\"Recently burned grassland\\\"},{\\\"values\\\":[572],\\\"summary\\\":\\\"Recently\n        burned shrubland\\\"},{\\\"values\\\":[573],\\\"summary\\\":\\\"Recently burned forest\\\"},{\\\"values\\\":[574],\\\"summary\\\":\\\"Disturbed/Successional\n        - Grass/Forb Regeneration\\\"},{\\\"values\\\":[575],\\\"summary\\\":\\\"Disturbed/Successional\n        - Shrub Regeneration\\\"},{\\\"values\\\":[576],\\\"summary\\\":\\\"Disturbed/Successional\n        - Recently Chained Pinyon-Juniper\\\"},{\\\"values\\\":[577],\\\"summary\\\":\\\"Open\n        Water (Aquaculture)\\\"},{\\\"values\\\":[578],\\\"summary\\\":\\\"Open Water (Brackish/Salt)\\\"},{\\\"values\\\":[579],\\\"summary\\\":\\\"Open\n        Water (Fresh)\\\"},{\\\"values\\\":[580],\\\"summary\\\":\\\"Quarries, Mines, Gravel Pits\n        and Oil Wells\\\"},{\\\"values\\\":[581],\\\"summary\\\":\\\"Developed, Open Space\\\"},{\\\"values\\\":[582],\\\"summary\\\":\\\"Developed,\n        Low Intensity\\\"},{\\\"values\\\":[583],\\\"summary\\\":\\\"Developed, Medium Intensity\\\"},{\\\"values\\\":[584],\\\"summary\\\":\\\"Developed,\n        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\n        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\n        User Guide\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MOD17A2HGF\\\",\\\"title\\\":\\\"MOD17A2HGF\n        file specification\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MYD17A2HGF\\\",\\\"title\\\":\\\"MYD17A2HGF\n        file specification\\\"},{\\\"rel\\\":\\\"cite-as\\\",\\\"href\\\":\\\"https://doi.org/10.5067/MODIS/MOD17A2HGF.061\\\",\\\"title\\\":\\\"LP\n        DAAC - MOD17A2HGF\\\"},{\\\"rel\\\":\\\"cite-as\\\",\\\"href\\\":\\\"https://doi.org/10.5067/MODIS/MYD17A2HGF.061\\\",\\\"title\\\":\\\"LP\n        DAAC - MYD17A2HGF\\\"},{\\\"rel\\\":\\\"license\\\",\\\"href\\\":\\\"https://lpdaac.usgs.gov/data/data-citation-and-policies/\\\",\\\"title\\\":\\\"LP\n        DAAC - Data Citation and Policies\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/modis-17A2HGF-061\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"MODIS\n        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\n        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\n        STAC items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        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\n        Version 6.1 Gross Primary Productivity (GPP) product is a cumulative 8-day\n        composite of values with 500 meter (m) pixel size based on the radiation use\n        efficiency concept that can be potentially used as inputs to data models to\n        calculate terrestrial energy, carbon, water cycle processes, and biogeochemistry\n        of vegetation. The Moderate Resolution Imaging Spectroradiometer (MODIS) data\n        product includes information about GPP and Net Photosynthesis (PSN). The PSN\n        band values are the GPP less the Maintenance Respiration (MR). The data product\n        also contains a PSN Quality Control (QC) layer. The quality layer contains\n        quality information for both the GPP and the PSN. This product will be generated\n        at the end of each year when the entire yearly 8-day 15A2H is available. Hence,\n        the gap-filled A2HGF is the improved 17, which has cleaned the poor-quality\n        inputs from 8-day Leaf Area Index and Fraction of Photosynthetically Active\n        Radiation (FPAR/LAI) based on the Quality Control (QC) label for every pixel.\n        If any LAI/FPAR pixel did not meet the quality screening criteria, its value\n        is determined through linear interpolation. However, users cannot get this\n        product in near-real time because it will be generated only at the end of\n        a given year.\\\",\\\"item_assets\\\":{\\\"hdf\\\":{\\\"type\\\":\\\"application/x-hdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Source\n        data containing all bands\\\"},\\\"Gpp_500m\\\":{\\\"type\\\":\\\"image/tiff; application=geotiff;\n        profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Gross Primary Productivity\\\",\\\"raster:bands\\\":[{\\\"unit\\\":\\\"kg\n        C/m^2\\\",\\\"scale\\\":0.0001,\\\"data_type\\\":\\\"int16\\\",\\\"spatial_resolution\\\":500}]},\\\"metadata\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"Federal\n        Geographic Data Committee (FGDC) Metadata\\\"},\\\"PsnNet_500m\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Net\n        Photosynthesis\\\",\\\"raster:bands\\\":[{\\\"unit\\\":\\\"kg C/m^2\\\",\\\"scale\\\":0.0001,\\\"data_type\\\":\\\"int16\\\",\\\"spatial_resolution\\\":500}]},\\\"Psn_QC_500m\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Quality\n        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,\n        S., &amp; Zhao, M. (2021). <i>MODIS/Terra Gross Primary Productivity Gap-Filled\n        8-Day L4 Global 500m SIN Grid V061</i> [Data set]. NASA EOSDIS Land Processes\n        DAAC. https://doi.org/10.5067/MODIS/MOD17A2HGF.061\\\"},{\\\"doi\\\":\\\"10.5067/MODIS/MYD17A2HGF.061\\\",\\\"citation\\\":\\\"Running,\n        S., &amp; Zhao, M. (2021). <i>MODIS/Aqua Gross Primary Productivity Gap-Filled\n        8-Day L4 Global 500m SIN Grid V061</i> [Data set]. NASA EOSDIS Land Processes\n        DAAC. https://doi.org/10.5067/MODIS/MYD17A2HGF.061\\\"}],\\\"msft:storage_account\\\":\\\"modiseuwest\\\",\\\"msft:short_description\\\":\\\"MODIS\n        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\n        License Agreement.\\\"},{\\\"rel\\\":\\\"documentation\\\",\\\"href\\\":\\\"https://assets.planet.com/docs/NICFI_UserGuidesFAQ.pdf\\\",\\\"type\\\":\\\"application/pdf\\\",\\\"title\\\":\\\"Participant\n        License Agreement.\\\"},{\\\"rel\\\":\\\"documentation\\\",\\\"href\\\":\\\"https://www.planet.com/nicfi/\\\",\\\"type\\\":\\\"text/html\\\",\\\"title\\\":\\\"NICFI\n        Program - Satellite Imagery and Monitoring | Planet\\\"},{\\\"rel\\\":\\\"documentation\\\",\\\"href\\\":\\\"https://developers.planet.com/nicfi/\\\",\\\"type\\\":\\\"text/html\\\",\\\"title\\\":\\\"NICFI\n        Program Resource Center\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/planet-nicfi-visual\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"Planet-NICFI\n        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\n        STAC items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        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\n        red\\\"},{\\\"name\\\":\\\"Green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"visible\n        green\\\"},{\\\"name\\\":\\\"Blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"visible\n        blue\\\"}],\\\"planet-nicfi:cadence\\\":[\\\"biannual\\\",\\\"monthly\\\"],\\\"planet-nicfi:percent_covered\\\":{\\\"maximum\\\":100,\\\"minimum\\\":0}},\\\"description\\\":\\\"*Note:\n        Assets in this collection are only available to winners of the [GEO-Microsoft\n        Planetary Computer RFP](https://www.earthobservations.org/geo_blog_obs.php?id=528).\n        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/)\n        and email [planetarycomputer@microsoft.com](mailto:planetarycomputer@microsoft.com).*\\\\n\\\\nThrough\n        Norway\\u2019s International Climate & Forests Initiative (NICFI), users can\n        access Planet\\u2019s high-resolution, analysis-ready mosaics of the world\\u2019s\n        tropics in order to help reduce and reverse the loss of tropical forests,\n        combat climate change, conserve biodiversity, and facilitate sustainable development.\\\\n\\\\nIn\n        support of NICFI\\u2019s mission, you can use this data for a number of projects\n        including, but not limited to:\\\\n\\\\n* Advance scientific research about the\n        world\\u2019s tropical forests and the critical services they provide.\\\\n*\n        Implement and improve policies for sustainable forest management and land\n        use in developing tropical forest countries and jurisdictions.\\\\n* Increase\n        transparency and accountability in the tropics.\\\\n* Protect and improve the\n        rights of indigenous peoples and local communities in tropical forest countries.\\\\n*\n        Innovate solutions towards reducing pressure on forests from global commodities\n        and financial markets.\\\\n* In short, the primary purpose of the NICFI Program\n        is to support reducing and reversing the loss of tropical forests, contributing\n        to combating climate change, conserving biodiversity, contributing to forest\n        regrowth, restoration, and enhancement, and facilitating sustainable development,\n        all of which must be Non-Commercial Use.\\\\n\\\\nTo learn how more about the\n        NICFI program, streaming and downloading basemaps please read the [NICFI Data\n        Program User Guide](https://assets.planet.com/docs/NICFI_UserGuidesFAQ.pdf).\\\\n\\\\nThis\n        collection contains both monthly and biannual mosaics. Biannual mosaics are\n        available from December 2015 - August 2020. Monthly mosaics are available\n        from September 2020. The STAC items include a `planet-nicfi:cadence` field\n        indicating the type of mosaic.\\\",\\\"item_assets\\\":{\\\"data\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Data\\\",\\\"description\\\":\\\"a\n        'true-colour' representation of spatially accurate data with minimized haze,\n        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\n        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\n        Terms of Use\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/gbif\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"Global\n        Biodiversity Information Facility (GBIF)\\\",\\\"assets\\\":{\\\"thumbnail\\\":{\\\"href\\\":\\\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/gbif.png\\\",\\\"type\\\":\\\"image/png\\\",\\\"title\\\":\\\"Forest\n        Inventory and Analysis\\\"},\\\"geoparquet-items\\\":{\\\"href\\\":\\\"abfs://items/gbif.parquet\\\",\\\"type\\\":\\\"application/x-parquet\\\",\\\"roles\\\":[\\\"stac-items\\\"],\\\"title\\\":\\\"GeoParquet\n        STAC items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        Biodiversity Information Facility\\\",\\\"roles\\\":[\\\"producer\\\",\\\"licensor\\\",\\\"processor\\\"]},{\\\"url\\\":\\\"https://planetarycomputer.microsoft.com\\\",\\\"name\\\":\\\"Microsoft\\\",\\\"roles\\\":[\\\"host\\\"]}],\\\"description\\\":\\\"The\n        [Global Biodiversity Information Facility](https://www.gbif.org) (GBIF) is\n        an international network and data infrastructure funded by the world's governments,\n        providing global data that document the occurrence of species. GBIF currently\n        integrates datasets documenting over 1.6 billion species occurrences.\\\\n\\\\nThe\n        GBIF occurrence dataset combines data from a wide array of sources, including\n        specimen-related data from natural history museums, observations from citizen\n        science networks, and automated environmental surveys. While these data are\n        constantly changing at [GBIF.org](https://www.gbif.org), periodic snapshots\n        are taken and made available here. \\\\n\\\\nData are stored in [Parquet](https://parquet.apache.org/)\n        format; the Parquet file schema is described below.  Most field names correspond\n        to [terms from the Darwin Core standard](https://dwc.tdwg.org/terms/), and\n        have been interpreted by GBIF's systems to align taxonomy, location, dates,\n        etc.  Additional information may be retrieved using the [GBIF API](https://www.gbif.org/developer/summary).\\\\n\\\\nPlease\n        refer to the GBIF [citation guidelines](https://www.gbif.org/citation-guidelines)\n        for information about how to cite GBIF data in publications.. For analyses\n        using the whole dataset, please use the following citation:\\\\n\\\\n> GBIF.org\n        ([Date]) GBIF Occurrence Data [DOI of dataset]\\\\n\\\\nFor analyses where data\n        are significantly filtered, please track the datasetKeys used and use a \\\\\\\"[derived\n        dataset](https://www.gbif.org/citation-guidelines#derivedDatasets)\\\\\\\" record\n        for citing the data.\\\\n\\\\nThe [GBIF data blog](https://data-blog.gbif.org/categories/gbif/)\n        contains a number of articles that can help you analyze GBIF data.\\\\n\\\",\\\"item_assets\\\":{\\\"data\\\":{\\\"type\\\":\\\"application/x-parquet\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Dataset\n        root\\\",\\\"table:storage_options\\\":{\\\"account_name\\\":\\\"ai4edataeuwest\\\"}}},\\\"stac_version\\\":\\\"1.0.0\\\",\\\"table:columns\\\":[{\\\"name\\\":\\\"gbifid\\\",\\\"type\\\":\\\"int64\\\",\\\"description\\\":\\\"GBIF's\n        identifier for the occurrence\\\"},{\\\"name\\\":\\\"datasetkey\\\",\\\"type\\\":\\\"byte_array\\\",\\\"description\\\":\\\"GBIF's\n        UUID for the [dataset](https://www.gbif.org/developer/registry#datasets) containing\n        this occurrence\\\"},{\\\"name\\\":\\\"occurrenceid\\\",\\\"type\\\":\\\"byte_array\\\",\\\"description\\\":\\\"See\n        [dwc:occurrenceID](https://dwc.tdwg.org/terms/#occurrenceID).\\\"},{\\\"name\\\":\\\"kingdom\\\",\\\"type\\\":\\\"byte_array\\\",\\\"description\\\":\\\"See\n        [dwc:kingdom](https://dwc.tdwg.org/terms/#kingdom).  This field has been aligned\n        with the [GBIF backbone taxonomy](https://doi.org/10.15468/39omei).\\\"},{\\\"name\\\":\\\"phylum\\\",\\\"type\\\":\\\"byte_array\\\",\\\"description\\\":\\\"See\n        [dwc:phylum](https://dwc.tdwg.org/terms/#phylum).  This field has been aligned\n        with the GBIF backbone taxonomy.\\\"},{\\\"name\\\":\\\"class\\\",\\\"type\\\":\\\"byte_array\\\",\\\"description\\\":\\\"See\n        [dwc:class](https://dwc.tdwg.org/terms/#class).  This field has been aligned\n        with the GBIF backbone taxonomy.\\\"},{\\\"name\\\":\\\"order\\\",\\\"type\\\":\\\"byte_array\\\",\\\"description\\\":\\\"See\n        [dwc:order](https://dwc.tdwg.org/terms/#order).  This field has been aligned\n        with the GBIF backbone taxonomy.\\\"},{\\\"name\\\":\\\"family\\\",\\\"type\\\":\\\"byte_array\\\",\\\"description\\\":\\\"See\n        [dwc:family](https://dwc.tdwg.org/terms/#family).  This field has been aligned\n        with the GBIF backbone taxonomy.\\\"},{\\\"name\\\":\\\"genus\\\",\\\"type\\\":\\\"byte_array\\\",\\\"description\\\":\\\"See\n        [dwc:genus](https://dwc.tdwg.org/terms/#genus).  This field has been aligned\n        with the GBIF backbone taxonomy.\\\"},{\\\"name\\\":\\\"species\\\",\\\"type\\\":\\\"byte_array\\\",\\\"description\\\":\\\"See\n        [dwc:species](https://dwc.tdwg.org/terms/#species).  This field has been aligned\n        with the GBIF backbone taxonomy.\\\"},{\\\"name\\\":\\\"infraspecificepithet\\\",\\\"type\\\":\\\"byte_array\\\",\\\"description\\\":\\\"See\n        [dwc:infraspecificEpithet](https://dwc.tdwg.org/terms/#infraspecificEpithet).\n        \\ This field has been aligned with the GBIF backbone taxonomy.\\\"},{\\\"name\\\":\\\"taxonrank\\\",\\\"type\\\":\\\"byte_array\\\",\\\"description\\\":\\\"See\n        [dwc:taxonRank](https://dwc.tdwg.org/terms/#taxonRank).  This field has been\n        aligned with the GBIF backbone taxonomy.\\\"},{\\\"name\\\":\\\"scientificname\\\",\\\"type\\\":\\\"byte_array\\\",\\\"description\\\":\\\"See\n        [dwc:scientificName](https://dwc.tdwg.org/terms/#scientificName).  This field\n        has been aligned with the GBIF backbone taxonomy.\\\"},{\\\"name\\\":\\\"verbatimscientificname\\\",\\\"type\\\":\\\"byte_array\\\",\\\"description\\\":\\\"The\n        scientific name as provided by the data publisher\\\"},{\\\"name\\\":\\\"verbatimscientificnameauthorship\\\",\\\"type\\\":\\\"byte_array\\\",\\\"description\\\":\\\"The\n        scientific name authorship provided by the data publisher.\\\"},{\\\"name\\\":\\\"countrycode\\\",\\\"type\\\":\\\"byte_array\\\",\\\"description\\\":\\\"See\n        [dwc:countryCode](https://dwc.tdwg.org/terms/#countryCode).  GBIF's interpretation\n        has set this to an ISO 3166-2 code.\\\"},{\\\"name\\\":\\\"locality\\\",\\\"type\\\":\\\"byte_array\\\",\\\"description\\\":\\\"See\n        [dwc:locality](https://dwc.tdwg.org/terms/#locality).\\\"},{\\\"name\\\":\\\"stateprovince\\\",\\\"type\\\":\\\"byte_array\\\",\\\"description\\\":\\\"See\n        [dwc:stateProvince](https://dwc.tdwg.org/terms/#stateProvince).\\\"},{\\\"name\\\":\\\"occurrencestatus\\\",\\\"type\\\":\\\"byte_array\\\",\\\"description\\\":\\\"See\n        [dwc:occurrenceStatus](https://dwc.tdwg.org/terms/#occurrenceStatus). Either\n        the value `PRESENT` or `ABSENT`.  **Many users will wish to filter for `PRESENT`\n        data.**\\\"},{\\\"name\\\":\\\"individualcount\\\",\\\"type\\\":\\\"int32\\\",\\\"description\\\":\\\"See\n        [dwc:individualCount](https://dwc.tdwg.org/terms/#individualCount).\\\"},{\\\"name\\\":\\\"publishingorgkey\\\",\\\"type\\\":\\\"byte_array\\\",\\\"description\\\":\\\"GBIF's\n        UUID for the [organization](https://www.gbif.org/developer/registry#organizations)\n        publishing this occurrence.\\\"},{\\\"name\\\":\\\"decimallatitude\\\",\\\"type\\\":\\\"double\\\",\\\"description\\\":\\\"See\n        [dwc:decimalLatitude](https://dwc.tdwg.org/terms/#decimalLatitude).  GBIF's\n        interpretation has normalized this to a WGS84 coordinate.\\\"},{\\\"name\\\":\\\"decimallongitude\\\",\\\"type\\\":\\\"double\\\",\\\"description\\\":\\\"See\n        [dwc:decimalLongitude](https://dwc.tdwg.org/terms/#decimalLongitude).  GBIF's\n        interpretation has normalized this to a WGS84 coordinate.\\\"},{\\\"name\\\":\\\"coordinateuncertaintyinmeters\\\",\\\"type\\\":\\\"double\\\",\\\"description\\\":\\\"See\n        [dwc:coordinateUncertaintyInMeters](https://dwc.tdwg.org/terms/#coordinateUncertaintyInMeters).\\\"},{\\\"name\\\":\\\"coordinateprecision\\\",\\\"type\\\":\\\"double\\\",\\\"description\\\":\\\"See\n        [dwc:coordinatePrecision](https://dwc.tdwg.org/terms/#coordinatePrecision).\\\"},{\\\"name\\\":\\\"elevation\\\",\\\"type\\\":\\\"double\\\",\\\"description\\\":\\\"See\n        [dwc:elevation](https://dwc.tdwg.org/terms/#elevation).  If provided by the\n        data publisher, GBIF's interpretation has normalized this value to metres.\\\"},{\\\"name\\\":\\\"elevationaccuracy\\\",\\\"type\\\":\\\"double\\\",\\\"description\\\":\\\"See\n        [dwc:elevationAccuracy](https://dwc.tdwg.org/terms/#elevationAccuracy).  If\n        provided by the data publisher, GBIF's interpretation has normalized this\n        value to metres.\\\"},{\\\"name\\\":\\\"depth\\\",\\\"type\\\":\\\"double\\\",\\\"description\\\":\\\"See\n        [dwc:depth](https://dwc.tdwg.org/terms/#depth).  If provided by the data publisher,\n        GBIF's interpretation has normalized this value to metres.\\\"},{\\\"name\\\":\\\"depthaccuracy\\\",\\\"type\\\":\\\"double\\\",\\\"description\\\":\\\"See\n        [dwc:depthAccuracy](https://dwc.tdwg.org/terms/#depthAccuracy).  If provided\n        by the data publisher, GBIF's interpretation has normalized this value to\n        metres.\\\"},{\\\"name\\\":\\\"eventdate\\\",\\\"type\\\":\\\"byte_array\\\",\\\"description\\\":\\\"See\n        [dwc:eventDate](https://dwc.tdwg.org/terms/#eventDate).  GBIF's interpretation\n        has normalized this value to an ISO 8601 date with a local time.\\\"},{\\\"name\\\":\\\"day\\\",\\\"type\\\":\\\"int32\\\",\\\"description\\\":\\\"See\n        [dwc:day](https://dwc.tdwg.org/terms/#day).\\\"},{\\\"name\\\":\\\"month\\\",\\\"type\\\":\\\"int32\\\",\\\"description\\\":\\\"See\n        [dwc:month](https://dwc.tdwg.org/terms/#month).\\\"},{\\\"name\\\":\\\"year\\\",\\\"type\\\":\\\"int32\\\",\\\"description\\\":\\\"See\n        [dwc:year](https://dwc.tdwg.org/terms/#year).\\\"},{\\\"name\\\":\\\"taxonkey\\\",\\\"type\\\":\\\"int32\\\",\\\"description\\\":\\\"The\n        numeric identifier for the [taxon](https://www.gbif.org/developer/species#nameUsages)\n        in GBIF's backbone taxonomy corresponding to `scientificname`.\\\"},{\\\"name\\\":\\\"specieskey\\\",\\\"type\\\":\\\"int32\\\",\\\"description\\\":\\\"The\n        numeric identifier for the taxon in GBIF's backbone taxonomy corresponding\n        to `species`.\\\"},{\\\"name\\\":\\\"basisofrecord\\\",\\\"type\\\":\\\"byte_array\\\",\\\"description\\\":\\\"See\n        [dwc:basisOfRecord](https://dwc.tdwg.org/terms/#basisOfRecord).  One of `PRESERVED_SPECIMEN`,\n        `FOSSIL_SPECIMEN`, `LIVING_SPECIMEN`, `OBSERVATION`, `HUMAN_OBSERVATION`,\n        `MACHINE_OBSERVATION`, `MATERIAL_SAMPLE`, `LITERATURE`, `UNKNOWN`.\\\"},{\\\"name\\\":\\\"institutioncode\\\",\\\"type\\\":\\\"byte_array\\\",\\\"description\\\":\\\"See\n        [dwc:institutionCode](https://dwc.tdwg.org/terms/#institutionCode).\\\"},{\\\"name\\\":\\\"collectioncode\\\",\\\"type\\\":\\\"byte_array\\\",\\\"description\\\":\\\"See\n        [dwc:collectionCode](https://dwc.tdwg.org/terms/#collectionCode).\\\"},{\\\"name\\\":\\\"catalognumber\\\",\\\"type\\\":\\\"byte_array\\\",\\\"description\\\":\\\"See\n        [dwc:catalogNumber](https://dwc.tdwg.org/terms/#catalogNumber).\\\"},{\\\"name\\\":\\\"recordnumber\\\",\\\"type\\\":\\\"byte_array\\\",\\\"description\\\":\\\"See\n        [dwc:recordNumber](https://dwc.tdwg.org/terms/#recordNumber).\\\"},{\\\"name\\\":\\\"identifiedby\\\",\\\"type\\\":\\\"byte_array\\\",\\\"description\\\":\\\"See\n        [dwc:identifiedBy](https://dwc.tdwg.org/terms/#identifiedBy).\\\"},{\\\"name\\\":\\\"dateidentified\\\",\\\"type\\\":\\\"byte_array\\\",\\\"description\\\":\\\"See\n        [dwc:dateIdentified](https://dwc.tdwg.org/terms/#dateIdentified). An ISO 8601\n        date.\\\"},{\\\"name\\\":\\\"license\\\",\\\"type\\\":\\\"byte_array\\\",\\\"description\\\":\\\"See\n        [dwc:license](https://dwc.tdwg.org/terms/#license). Either [`CC0_1_0`](https://creativecommons.org/publicdomain/zero/1.0/)\n        or [`CC_BY_4_0`](https://creativecommons.org/licenses/by/4.0/).  `CC_BY_NC_4_0`\n        records are not present in this snapshot.\\\"},{\\\"name\\\":\\\"rightsholder\\\",\\\"type\\\":\\\"byte_array\\\",\\\"description\\\":\\\"See\n        [dwc:rightsHolder](https://dwc.tdwg.org/terms/#rightsHolder).\\\"},{\\\"name\\\":\\\"recordedby\\\",\\\"type\\\":\\\"byte_array\\\",\\\"description\\\":\\\"See\n        [dwc:recordedBy](https://dwc.tdwg.org/terms/#recordedBy).\\\"},{\\\"name\\\":\\\"typestatus\\\",\\\"type\\\":\\\"byte_array\\\",\\\"description\\\":\\\"See\n        [dwc:typeStatus](https://dwc.tdwg.org/terms/#typeStatus).\\\"},{\\\"name\\\":\\\"establishmentmeans\\\",\\\"type\\\":\\\"byte_array\\\",\\\"description\\\":\\\"See\n        [dwc:establishmentMeans](https://dwc.tdwg.org/terms/#establishmentMeans).\\\"},{\\\"name\\\":\\\"lastinterpreted\\\",\\\"type\\\":\\\"byte_array\\\",\\\"description\\\":\\\"The\n        ISO 8601 date when the record was last processed by GBIF. Data are reprocessed\n        for several reasons, including changes to the backbone taxonomy, so this date\n        is not necessarily the date the occurrence record last changed.\\\"},{\\\"name\\\":\\\"mediatype\\\",\\\"type\\\":\\\"byte_array\\\",\\\"description\\\":\\\"See\n        [dwc:mediaType](https://dwc.tdwg.org/terms/#mediaType).  May contain `StillImage`,\n        `MovingImage` or `Sound` (from [enumeration](http://api.gbif.org/v1/enumeration/basic/MediaType),\n        detailing whether the occurrence has this media available.\\\"},{\\\"name\\\":\\\"issue\\\",\\\"type\\\":\\\"byte_array\\\",\\\"description\\\":\\\"A\n        list of [issues](https://gbif.github.io/gbif-api/apidocs/org/gbif/api/vocabulary/OccurrenceIssue.html)\n        encountered by GBIF in processing this record. More details are available\n        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\n        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\n        User Guide\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MOD17A3HGF\\\",\\\"title\\\":\\\"MOD17A3HGF\n        file specification\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MYD17A3HGF\\\",\\\"title\\\":\\\"MYD17A3HGF\n        file specification\\\"},{\\\"rel\\\":\\\"cite-as\\\",\\\"href\\\":\\\"https://doi.org/10.5067/MODIS/MOD17A3HGF.061\\\",\\\"title\\\":\\\"LP\n        DAAC - MOD17A3HGF\\\"},{\\\"rel\\\":\\\"cite-as\\\",\\\"href\\\":\\\"https://doi.org/10.5067/MODIS/MYD17A3HGF.061\\\",\\\"title\\\":\\\"LP\n        DAAC - MYD17A3HGF\\\"},{\\\"rel\\\":\\\"license\\\",\\\"href\\\":\\\"https://lpdaac.usgs.gov/data/data-citation-and-policies/\\\",\\\"title\\\":\\\"LP\n        DAAC - Data Citation and Policies\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/modis-17A3HGF-061\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"MODIS\n        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\n        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\n        STAC items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        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\n        Version 6.1 product provides information about annual Net Primary Production\n        (NPP) at 500 meter (m) pixel resolution. Annual Moderate Resolution Imaging\n        Spectroradiometer (MODIS) NPP is derived from the sum of all 8-day Net Photosynthesis\n        (PSN) products (MOD17A2H) from the given year. The PSN value is the difference\n        of the Gross Primary Productivity (GPP) and the Maintenance Respiration (MR).\n        The product will be generated at the end of each year when the entire yearly\n        8-day 15A2H is available. Hence, the gap-filled product is the improved 17,\n        which has cleaned the poor-quality inputs from 8-day Leaf Area Index and Fraction\n        of Photosynthetically Active Radiation (LAI/FPAR) based on the Quality Control\n        (QC) label for every pixel. If any LAI/FPAR pixel did not meet the quality\n        screening criteria, its value is determined through linear interpolation.\n        However, users cannot get this product in near-real time because it will be\n        generated only at the end of a given year.\\\",\\\"item_assets\\\":{\\\"hdf\\\":{\\\"type\\\":\\\"application/x-hdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Source\n        data containing all bands\\\"},\\\"Gpp_500m\\\":{\\\"type\\\":\\\"image/tiff; application=geotiff;\n        profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Gross Primary Productivity\\\",\\\"raster:bands\\\":[{\\\"unit\\\":\\\"kg\n        C/m^2\\\",\\\"scale\\\":0.0001,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":500}]},\\\"Npp_500m\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Net\n        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\n        Geographic Data Committee (FGDC) Metadata\\\"},\\\"Npp_QC_500m\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Quality\n        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,\n        S., &amp; Zhao, M. (2021). <i>MODIS/Terra Net Primary Production Gap-Filled\n        Yearly L4 Global 500 m SIN Grid V061</i> [Data set]. NASA EOSDIS Land Processes\n        DAAC. https://doi.org/10.5067/MODIS/MOD17A3HGF.061\\\"},{\\\"doi\\\":\\\"10.5067/MODIS/MYD17A3HGF.061\\\",\\\"citation\\\":\\\"Running,\n        S., &amp; Zhao, M. (2021). <i>MODIS/Aqua Net Primary Production Gap-Filled\n        Yearly L4 Global 500m SIN Grid V061</i> [Data set]. NASA EOSDIS Land Processes\n        DAAC. https://doi.org/10.5067/MODIS/MYD17A3HGF.061\\\"}],\\\"msft:storage_account\\\":\\\"modiseuwest\\\",\\\"msft:short_description\\\":\\\"MODIS\n        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\n        User Guide\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MOD09A1\\\",\\\"title\\\":\\\"MOD09A1\n        file specification\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MYD09A1\\\",\\\"title\\\":\\\"MYD09A1\n        file specification\\\"},{\\\"rel\\\":\\\"cite-as\\\",\\\"href\\\":\\\"https://doi.org/10.5067/MODIS/MOD09A1.061\\\",\\\"title\\\":\\\"LP\n        DAAC - MOD09A1\\\"},{\\\"rel\\\":\\\"cite-as\\\",\\\"href\\\":\\\"https://doi.org/10.5067/MODIS/MYD09A1.061\\\",\\\"title\\\":\\\"LP\n        DAAC - MYD09A1\\\"},{\\\"rel\\\":\\\"license\\\",\\\"href\\\":\\\"https://lpdaac.usgs.gov/data/data-citation-and-policies/\\\",\\\"title\\\":\\\"LP\n        DAAC - Data Citation and Policies\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/modis-09A1-061\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"MODIS\n        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\n        Surface Reflectance 8-Day (500m) thumbnail\\\"},\\\"geoparquet-items\\\":{\\\"href\\\":\\\"abfs://items/modis-09A1-061.parquet\\\",\\\"type\\\":\\\"application/x-parquet\\\",\\\"roles\\\":[\\\"stac-items\\\"],\\\"title\\\":\\\"GeoParquet\n        STAC items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        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\n        Moderate Resolution Imaging Spectroradiometer (MODIS) 09A1 Version 6.1 product\n        provides an estimate of the surface spectral reflectance of MODIS Bands 1\n        through 7 corrected for atmospheric conditions such as gasses, aerosols, and\n        Rayleigh scattering. Along with the seven 500 meter (m) reflectance bands\n        are two quality layers and four observation bands. For each pixel, a value\n        is selected from all the acquisitions within the 8-day composite period. The\n        criteria for the pixel choice include cloud and solar zenith. When several\n        acquisitions meet the criteria the pixel with the minimum channel 3 (blue)\n        value is used.\\\",\\\"item_assets\\\":{\\\"hdf\\\":{\\\"type\\\":\\\"application/x-hdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Source\n        data containing all bands\\\"},\\\"metadata\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"Federal\n        Geographic Data Committee (FGDC) Metadata\\\"},\\\"sur_refl_b01\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"],\\\"title\\\":\\\"Surface\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"],\\\"title\\\":\\\"Surface\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"],\\\"title\\\":\\\"Surface\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"],\\\"title\\\":\\\"Surface\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"],\\\"title\\\":\\\"Surface\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"],\\\"title\\\":\\\"Surface\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"],\\\"title\\\":\\\"Surface\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"MODIS\n        relative azimuth angle\\\",\\\"raster:bands\\\":[{\\\"unit\\\":\\\"Degree\\\",\\\"scale\\\":0.01,\\\"data_type\\\":\\\"int16\\\",\\\"spatial_resolution\\\":500}]},\\\"sur_refl_szen\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"MODIS\n        solar zenith angle\\\",\\\"raster:bands\\\":[{\\\"unit\\\":\\\"Degree\\\",\\\"scale\\\":0.01,\\\"data_type\\\":\\\"int16\\\",\\\"spatial_resolution\\\":500}]},\\\"sur_refl_vzen\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"MODIS\n        view zenith angle\\\",\\\"raster:bands\\\":[{\\\"unit\\\":\\\"Degree\\\",\\\"scale\\\":0.01,\\\"data_type\\\":\\\"int16\\\",\\\"spatial_resolution\\\":500}]},\\\"sur_refl_qc_500m\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Surface\n        reflectance 500m band quality control flags\\\",\\\"raster:bands\\\":[{\\\"data_type\\\":\\\"uint32\\\",\\\"spatial_resolution\\\":500}]},\\\"sur_refl_state_500m\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Surface\n        reflectance 500m state flags\\\",\\\"raster:bands\\\":[{\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":500}]},\\\"sur_refl_day_of_year\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Day\n        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,\n        E. (2021). <i>MODIS/Terra Surface Reflectance 8-Day L3 Global 500m SIN Grid\n        V061</i> [Data set]. NASA EOSDIS Land Processes DAAC. https://doi.org/10.5067/MODIS/MOD09A1.061\\\"},{\\\"doi\\\":\\\"10.5067/MODIS/MYD09A1.061\\\",\\\"citation\\\":\\\"Vermote,\n        E. (2021). <i>MODIS/Aqua Surface Reflectance 8-Day L3 Global 500m SIN Grid\n        V061</i> [Data set]. NASA EOSDIS Land Processes DAAC. https://doi.org/10.5067/MODIS/MYD09A1.061\\\"}],\\\"msft:storage_account\\\":\\\"modiseuwest\\\",\\\"msft:short_description\\\":\\\"MODIS\n        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\n        Terms of Use of Research Data\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/alos-dem\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"ALOS\n        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\n        DEM\\\"},\\\"geoparquet-items\\\":{\\\"href\\\":\\\"abfs://items/alos-dem.parquet\\\",\\\"type\\\":\\\"application/x-parquet\\\",\\\"roles\\\":[\\\"stac-items\\\"],\\\"title\\\":\\\"GeoParquet\n        STAC items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        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\n        \\\\\\\"ALOS World 3D-30m\\\\\\\" (AW3D30) dataset is a 30 meter resolution global\n        digital surface model (DSM), developed by the Japan Aerospace Exploration\n        Agency (JAXA). AWD30 was constructed from the Panchromatic Remote-sensing\n        Instrument for Stereo Mapping (PRISM) on board Advanced Land Observing Satellite\n        (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)\n        for more details.\\\\n\\\",\\\"item_assets\\\":{\\\"data\\\":{\\\"type\\\":\\\"image/tiff; application=geotiff;\n        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\n        World 3D is a global digital surface model (DSM) with a horizontal resolution\n        of approximately 30 meters, constructed from the Panchromatic Remote-sensing\n        Instrument for Stereo Mapping (PRISM) on board Advanced Land Observing Satellite\n        (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\n        25 m Resolution PALSAR-2/PALSAR Mosaic (MOS)\\\",\\\"description\\\":\\\"Also includes\n        data usage information\\\"},{\\\"rel\\\":\\\"license\\\",\\\"href\\\":\\\"https://earth.jaxa.jp/policy/en.html\\\",\\\"type\\\":\\\"text/html\\\",\\\"title\\\":\\\"JAXA\n        Terms of Use of Research Data\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/alos-palsar-mosaic\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"ALOS\n        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\n        PALSAR MOSAIC\\\"},\\\"geoparquet-items\\\":{\\\"href\\\":\\\"abfs://items/alos-palsar-mosaic.parquet\\\",\\\"type\\\":\\\"application/x-parquet\\\",\\\"roles\\\":[\\\"stac-items\\\"],\\\"title\\\":\\\"GeoParquet\n        STAC items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        Sensing\\\",\\\"Global\\\"],\\\"providers\\\":[{\\\"url\\\":\\\"https://www.eorc.jaxa.jp/ALOS/en/dataset/fnf_e.htm\\\",\\\"name\\\":\\\"Japan\n        Aerospace Exploration Agency\\\",\\\"roles\\\":[\\\"producer\\\",\\\"processor\\\",\\\"licensor\\\"]},{\\\"url\\\":\\\"https://developmentseed.org\\\",\\\"name\\\":\\\"Development\n        Seed\\\",\\\"roles\\\":[\\\"processor\\\"]},{\\\"url\\\":\\\"https://planetarycomputer.microsoft.com/\\\",\\\"name\\\":\\\"Microsoft\n        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\n        25 m Resolution PALSAR-2/PALSAR Mosaic (MOS)\\\",\\\"item_assets\\\":{\\\"HH\\\":{\\\"role\\\":\\\"data\\\",\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"HH\\\",\\\"description\\\":\\\"HH\n        polarization backscattering coefficient, 16-bit DN.\\\"},\\\"HV\\\":{\\\"role\\\":\\\"data\\\",\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"HV\\\",\\\"description\\\":\\\"HV\n        polarization backscattering coefficient, 16-bit DN.\\\"},\\\"VH\\\":{\\\"role\\\":\\\"data\\\",\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"VH\\\",\\\"description\\\":\\\"VH\n        polarization backscattering coefficient, 16-bit DN (high-sensitive beam quad-mode\n        only).\\\"},\\\"VV\\\":{\\\"role\\\":\\\"data\\\",\\\"type\\\":\\\"image/tiff; application=geotiff;\n        profile=cloud-optimized\\\",\\\"title\\\":\\\"VV\\\",\\\"description\\\":\\\"VV polarization\n        backscattering coefficient, 16-bit DN (high-sensitive beam quad-mode only).\\\"},\\\"date\\\":{\\\"role\\\":\\\"date\\\",\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"date\\\",\\\"description\\\":\\\"Observation\n        date (days since Jan 1, 1970).\\\"},\\\"mask\\\":{\\\"role\\\":\\\"data-mask\\\",\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"mask\\\",\\\"description\\\":\\\"Quality\n        Mask\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint8\\\"}],\\\"classification:classes\\\":[{\\\"name\\\":\\\"no_data\\\",\\\"value\\\":0,\\\"description\\\":\\\"No\n        data\\\"},{\\\"name\\\":\\\"water\\\",\\\"value\\\":50,\\\"description\\\":\\\"Water\\\"},{\\\"name\\\":\\\"lay_over\\\",\\\"value\\\":100,\\\"description\\\":\\\"Lay\n        over\\\"},{\\\"name\\\":\\\"shadowing\\\",\\\"value\\\":150,\\\"description\\\":\\\"Shadowing\\\"},{\\\"name\\\":\\\"land\\\",\\\"value\\\":255,\\\"description\\\":\\\"Land\\\"}]},\\\"linci\\\":{\\\"role\\\":\\\"local-incidence-angle\\\",\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"linci\\\",\\\"description\\\":\\\"Local\n        incidence angle (degrees).\\\"},\\\"metadata\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"title\\\":\\\"metadata\\\",\\\"description\\\":\\\"Product\n        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\n        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\n        Guide\\\"},{\\\"rel\\\":\\\"license\\\",\\\"href\\\":\\\"https://cdla.dev/permissive-1-0/\\\",\\\"type\\\":\\\"text/html\\\",\\\"title\\\":\\\"Community\n        Data License Agreement - Permissive, Version 1.0\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/deltares-water-availability\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"Deltares\n        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\n        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/)\n        has produced a hydrological model approach to simulate historical daily reservoir\n        variations for 3,236 locations across the globe for the period 1970-2020 using\n        the distributed [wflow_sbm](https://deltares.github.io/Wflow.jl/stable/model_docs/model_configurations/)\n        model. The model outputs long-term daily information on reservoir volume,\n        inflow and outflow dynamics, as well as information on upstream hydrological\n        forcing.\\\\n\\\\nThey hydrological model was forced with 5 different precipitation\n        products. Two products (ERA5 and CHIRPS) are available at the global scale,\n        while for Europe, USA and Australia a regional product was use (i.e. EOBS,\n        NLDAS and BOM, respectively). Using these different precipitation products,\n        it becomes possible to assess the impact of uncertainty in the model forcing.\n        A different number of basins upstream of reservoirs are simulated, given the\n        spatial coverage of each precipitation product.\\\\n\\\\nSee the complete [methodology\n        documentation](https://ai4edatasetspublicassets.blob.core.windows.net/assets/aod_docs/pc-deltares-water-availability-documentation.pdf)\n        for more information.\\\\n\\\\n## Dataset coverages\\\\n\\\\n| Name   | Scale                    |\n        Period    | Number of basins |\\\\n|--------|--------------------------|-----------|------------------|\\\\n|\n        ERA5   | Global                   | 1967-2020 | 3236             |\\\\n| CHIRPS\n        | Global (+/- 50 latitude) | 1981-2020 | 2951             |\\\\n| EOBS   | Europe/North\n        Africa      | 1979-2020 | 682              |\\\\n| NLDAS  | USA                      |\n        1979-2020 | 1090             |\\\\n| BOM    | Australia                | 1979-2020\n        | 116              |\\\\n\\\\n## STAC Metadata\\\\n\\\\nThis STAC collection includes\n        one STAC item per dataset. The item includes a `deltares:reservoir` property\n        that can be used to query for the URL of a specific dataset.\\\\n\\\\n## Contact\\\\n\\\\nFor\n        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\n        Map\\\",\\\"description\\\":\\\"Inundation maps of flood depth using a model that\n        takes into account water level attenuation and is forced by sea level.\\\"},\\\"index\\\":{\\\"type\\\":\\\"application/json\\\",\\\"roles\\\":[\\\"index\\\"],\\\"title\\\":\\\"Index\n        file\\\",\\\"description\\\":\\\"Kerchunk index file.\\\"}},\\\"stac_version\\\":\\\"1.0.0\\\",\\\"cube:variables\\\":{\\\"P\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"mm\n        per day\\\",\\\"attrs\\\":{\\\"units\\\":\\\"mm per day\\\",\\\"description\\\":\\\"Average precipitation\n        upstream of reservoir\\\"},\\\"dimensions\\\":[\\\"time\\\",\\\"GrandID\\\",\\\"ksathorfrac\\\"],\\\"description\\\":\\\"Average\n        precipitation upstream of reservoir\\\"},\\\"ETa\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"mm\n        per day\\\",\\\"attrs\\\":{\\\"units\\\":\\\"mm per day\\\",\\\"description\\\":\\\"Average simulated\n        actual evapotransporation upstream of reservoir\\\"},\\\"dimensions\\\":[\\\"time\\\",\\\"GrandID\\\",\\\"ksathorfrac\\\"],\\\"description\\\":\\\"Average\n        simulated actual evapotransporation upstream of reservoir\\\"},\\\"PET\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"mm\n        per day\\\",\\\"attrs\\\":{\\\"units\\\":\\\"mm per day\\\",\\\"description\\\":\\\"Average potential\n        evapotranspiration upstream of reservoir\\\"},\\\"dimensions\\\":[\\\"time\\\",\\\"GrandID\\\",\\\"ksathorfrac\\\"],\\\"description\\\":\\\"Average\n        potential evapotranspiration upstream of reservoir\\\"},\\\"Melt\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"mm\n        per day\\\",\\\"attrs\\\":{\\\"units\\\":\\\"mm per day\\\",\\\"description\\\":\\\"Average simulated\n        snow melt upstream of reservoir\\\"},\\\"dimensions\\\":[\\\"time\\\",\\\"GrandID\\\",\\\"ksathorfrac\\\"],\\\"description\\\":\\\"Average\n        simulated snow melt upstream of reservoir\\\"},\\\"Snow\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"mm\\\",\\\"attrs\\\":{\\\"units\\\":\\\"mm\\\",\\\"description\\\":\\\"Average\n        simulated snow depth upstream of reservoir\\\"},\\\"dimensions\\\":[\\\"time\\\",\\\"GrandID\\\",\\\"ksathorfrac\\\"],\\\"description\\\":\\\"Average\n        simulated snow depth upstream of reservoir\\\"},\\\"Temp\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"degrees\n        C\\\",\\\"attrs\\\":{\\\"units\\\":\\\"degrees C\\\",\\\"description\\\":\\\"Average surface temperature\n        upstream of reservoir\\\"},\\\"dimensions\\\":[\\\"time\\\",\\\"GrandID\\\",\\\"ksathorfrac\\\"],\\\"description\\\":\\\"Average\n        surface temperature upstream of reservoir\\\"},\\\"P_res\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"mm\n        per day\\\",\\\"attrs\\\":{\\\"units\\\":\\\"mm per day\\\",\\\"description\\\":\\\"Precipitation\n        reservoir\\\"},\\\"dimensions\\\":[\\\"time\\\",\\\"GrandID\\\",\\\"ksathorfrac\\\"],\\\"description\\\":\\\"Precipitation\n        reservoir\\\"},\\\"S_res\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"m3\\\",\\\"attrs\\\":{\\\"units\\\":\\\"m3\\\",\\\"description\\\":\\\"Simulated\n        reservoir volume\\\"},\\\"dimensions\\\":[\\\"time\\\",\\\"GrandID\\\",\\\"ksathorfrac\\\"],\\\"description\\\":\\\"Simulated\n        reservoir volume\\\"},\\\"Ea_res\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"mm per day\\\",\\\"attrs\\\":{\\\"units\\\":\\\"mm\n        per day\\\",\\\"description\\\":\\\"Simulated actual evaporation reservoir\\\"},\\\"dimensions\\\":[\\\"time\\\",\\\"GrandID\\\",\\\"ksathorfrac\\\"],\\\"description\\\":\\\"Simulated\n        actual evaporation reservoir\\\"},\\\"Qin_res\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"m3\n        per s\\\",\\\"attrs\\\":{\\\"units\\\":\\\"m3 per s\\\",\\\"description\\\":\\\"Simulated reservoir\n        inflow (surface+subsurface)\\\"},\\\"dimensions\\\":[\\\"time\\\",\\\"GrandID\\\",\\\"ksathorfrac\\\"],\\\"description\\\":\\\"Simulated\n        reservoir inflow (surface+subsurface)\\\"},\\\"FracFull\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"m3\\\",\\\"attrs\\\":{\\\"units\\\":\\\"m3\\\",\\\"description\\\":\\\"Simulated\n        reservoir volume\\\"},\\\"dimensions\\\":[\\\"time\\\",\\\"GrandID\\\",\\\"ksathorfrac\\\"],\\\"description\\\":\\\"Simulated\n        reservoir volume\\\"},\\\"Qout_res\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"m3 per s\\\",\\\"attrs\\\":{\\\"units\\\":\\\"m3\n        per s\\\",\\\"description\\\":\\\"Simulated reservoir outflow\\\"},\\\"dimensions\\\":[\\\"time\\\",\\\"GrandID\\\",\\\"ksathorfrac\\\"],\\\"description\\\":\\\"Simulated\n        reservoir outflow\\\"},\\\"latitude\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"degrees\\\",\\\"attrs\\\":{\\\"units\\\":\\\"degrees\\\",\\\"description\\\":\\\"Latitude\n        of reservoir\\\"},\\\"dimensions\\\":[\\\"GrandID\\\"],\\\"description\\\":\\\"Latitude of\n        reservoir\\\"},\\\"longitude\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"degrees\\\",\\\"attrs\\\":{\\\"units\\\":\\\"degrees\\\",\\\"description\\\":\\\"Longitude\n        of reservoir\\\"},\\\"dimensions\\\":[\\\"GrandID\\\"],\\\"description\\\":\\\"Longitude of\n        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\n        number of the reservoir of interest\\\"},\\\"ksathorfrac\\\":{\\\"type\\\":\\\"level\\\",\\\"values\\\":[5,20,50,100,250],\\\"description\\\":\\\"Five\n        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\n        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\n        User Guide\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MOD16A3GF\\\",\\\"title\\\":\\\"MOD16A3GF\n        file specification\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MYD16A3GF\\\",\\\"title\\\":\\\"MYD16A3GF\n        file specification\\\"},{\\\"rel\\\":\\\"cite-as\\\",\\\"href\\\":\\\"https://doi.org/10.5067/MODIS/MOD16A3GF.061\\\",\\\"title\\\":\\\"LP\n        DAAC - MOD16A3GF\\\"},{\\\"rel\\\":\\\"cite-as\\\",\\\"href\\\":\\\"https://doi.org/10.5067/MODIS/MYD16A3GF.061\\\",\\\"title\\\":\\\"LP\n        DAAC - MYD16A3GF\\\"},{\\\"rel\\\":\\\"license\\\",\\\"href\\\":\\\"https://lpdaac.usgs.gov/data/data-citation-and-policies/\\\",\\\"title\\\":\\\"LP\n        DAAC - Data Citation and Policies\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/modis-16A3GF-061\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"MODIS\n        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\n        Net Evapotranspiration Yearly Gap-Filled thumbnail\\\"},\\\"geoparquet-items\\\":{\\\"href\\\":\\\"abfs://items/modis-16A3GF-061.parquet\\\",\\\"type\\\":\\\"application/x-parquet\\\",\\\"roles\\\":[\\\"stac-items\\\"],\\\"title\\\":\\\"GeoParquet\n        STAC items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        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\n        Moderate Resolution Imaging Spectroradiometer (MODIS) MOD16A3GF Version 6.1\n        Evapotranspiration/Latent Heat Flux (ET/LE) product is a year-end gap-filled\n        yearly composite dataset produced at 500 meter (m) pixel resolution. The algorithm\n        used for the MOD16 data product collection is based on the logic of the Penman-Monteith\n        equation, which includes inputs of daily meteorological reanalysis data along\n        with MODIS remotely sensed data products such as vegetation property dynamics,\n        albedo, and land cover. The product will be generated at the end of each year\n        when the entire yearly 8-day MOD15A2H/MYD15A2H is available. Hence, the gap-filled\n        product is the improved 16, which has cleaned the poor-quality inputs from\n        yearly Leaf Area Index and Fraction of Photosynthetically Active Radiation\n        (LAI/FPAR) based on the Quality Control (QC) label for every pixel. If any\n        LAI/FPAR pixel did not meet the quality screening criteria, its value is determined\n        through linear interpolation. However, users cannot get this product in near-real\n        time because it will be generated only at the end of a given year. Provided\n        in the product are layers for composited ET, LE, Potential ET (PET), and Potential\n        LE (PLE) along with a quality control layer. Two low resolution browse images,\n        ET and LE, are also available for each granule. The pixel values for the two\n        Evapotranspiration layers (ET and PET) are the sum for all days within the\n        defined year, and the pixel values for the two Latent Heat layers (LE and\n        PLE) are the average of all days within the defined year.\\\",\\\"item_assets\\\":{\\\"hdf\\\":{\\\"type\\\":\\\"application/x-hdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Source\n        data containing all bands\\\"},\\\"ET_500m\\\":{\\\"type\\\":\\\"image/tiff; application=geotiff;\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Average\n        of Latent Heat Flux\\\",\\\"raster:bands\\\":[{\\\"unit\\\":\\\"J/m^2/day\\\",\\\"scale\\\":10000,\\\"data_type\\\":\\\"int16\\\",\\\"spatial_resolution\\\":500}]},\\\"PET_500m\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Total\n        Potential Evapotranspiration\\\",\\\"raster:bands\\\":[{\\\"unit\\\":\\\"kg/m^2/year\\\",\\\"scale\\\":0.1,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":500}]},\\\"PLE_500m\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Average\n        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\n        Geographic Data Committee (FGDC) Metadata\\\"},\\\"ET_QC_500m\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Evapotranspiration\n        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,\n        S., Mu, Q., Zhao, M., &amp; Moreno, A. (2021). <i>MODIS/Terra Net Evapotranspiration\n        Gap-Filled Yearly L4 Global 500m SIN Grid V061</i> [Data set]. NASA EOSDIS\n        Land Processes DAAC. https://doi.org/10.5067/MODIS/MOD16A3GF.061\\\"},{\\\"doi\\\":\\\"10.5067/MODIS/MYD16A3GF.061\\\",\\\"citation\\\":\\\"Running,\n        S., Mu, Q., Zhao, M., &amp; Moreno, A. (2021). <i>MODIS/Aqua Net Evapotranspiration\n        Gap-Filled Yearly L4 Global 500m SIN Grid V061</i> [Data set]. NASA EOSDIS\n        Land Processes DAAC. https://doi.org/10.5067/MODIS/MYD16A3GF.061\\\"}],\\\"msft:storage_account\\\":\\\"modiseuwest\\\",\\\"msft:short_description\\\":\\\"MODIS\n        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\n        User Guide\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MOD21A2\\\",\\\"title\\\":\\\"MOD21A2\n        file specification\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MYD21A2\\\",\\\"title\\\":\\\"MYD21A2\n        file specification\\\"},{\\\"rel\\\":\\\"cite-as\\\",\\\"href\\\":\\\"https://doi.org/10.5067/MODIS/MOD21A2.061\\\",\\\"title\\\":\\\"LP\n        DAAC - MOD21A2\\\"},{\\\"rel\\\":\\\"cite-as\\\",\\\"href\\\":\\\"https://doi.org/10.5067/MODIS/MYD21A2.061\\\",\\\"title\\\":\\\"LP\n        DAAC - MYD21A2\\\"},{\\\"rel\\\":\\\"license\\\",\\\"href\\\":\\\"https://lpdaac.usgs.gov/data/data-citation-and-policies/\\\",\\\"title\\\":\\\"LP\n        DAAC - Data Citation and Policies\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/modis-21A2-061\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"MODIS\n        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\n        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\n        STAC items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        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\n        suite of Moderate Resolution Imaging Spectroradiometer (MODIS) Land Surface\n        Temperature and Emissivity (LST&E) products are available in Collection 6.1.\n        The MOD21 Land Surface Temperatuer (LST) algorithm differs from the algorithm\n        of the MOD11 LST products, in that the MOD21 algorithm is based on the ASTER\n        Temperature/Emissivity Separation (TES) technique, whereas the MOD11 uses\n        the split-window technique. The MOD21 TES algorithm uses a physics-based algorithm\n        to dynamically retrieve both the LST and spectral emissivity simultaneously\n        from the MODIS thermal infrared bands 29, 31, and 32. The TES algorithm is\n        combined with an improved Water Vapor Scaling (WVS) atmospheric correction\n        scheme to stabilize the retrieval during very warm and humid conditions. This\n        dataset is an 8-day composite LST product at 1,000 meter spatial resolution\n        that uses an algorithm based on a simple averaging method. The algorithm calculates\n        the average from all the cloud free 21A1D and 21A1N daily acquisitions from\n        the 8-day period. Unlike the 21A1 data sets where the daytime and nighttime\n        acquisitions are separate products, the 21A2 contains both daytime and nighttime\n        acquisitions as separate Science Dataset (SDS) layers within a single Hierarchical\n        Data Format (HDF) file. The LST, Quality Control (QC), view zenith angle,\n        and viewing time have separate day and night SDS layers, while the values\n        for the MODIS emissivity bands 29, 31, and 32 are the average of both the\n        nighttime and daytime acquisitions. Additional details regarding the method\n        used to create this Level 3 (L3) product are available in the Algorithm Theoretical\n        Basis Document (ATBD).\\\",\\\"item_assets\\\":{\\\"hdf\\\":{\\\"type\\\":\\\"application/x-hdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Source\n        data containing all bands\\\"},\\\"QC_Day\\\":{\\\"type\\\":\\\"image/tiff; application=geotiff;\n        profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Day Quality Control\\\",\\\"raster:bands\\\":[{\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":1000}]},\\\"Emis_29\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Average\n        Day/Night Band 29 emissivity\\\",\\\"raster:bands\\\":[{\\\"scale\\\":0.002,\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":1000}]},\\\"Emis_31\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Average\n        Day/Night Band 31 emissivity\\\",\\\"raster:bands\\\":[{\\\"scale\\\":0.002,\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":1000}]},\\\"Emis_32\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Average\n        Day/Night Band 32 emissivity\\\",\\\"raster:bands\\\":[{\\\"scale\\\":0.002,\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":1000}]},\\\"QC_Night\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Night\n        Quality Control\\\",\\\"raster:bands\\\":[{\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":1000}]},\\\"metadata\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"Federal\n        Geographic Data Committee (FGDC) Metadata\\\"},\\\"LST_Day_1KM\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Day\n        Land Surface Temperature\\\",\\\"raster:bands\\\":[{\\\"unit\\\":\\\"Kelvin\\\",\\\"scale\\\":0.02,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":1000}]},\\\"LST_Night_1KM\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Night\n        Land Surface Temperature\\\",\\\"raster:bands\\\":[{\\\"unit\\\":\\\"Kelvin\\\",\\\"scale\\\":0.02,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":1000}]},\\\"View_Time_Day\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Day\n        Time of Observation\\\",\\\"raster:bands\\\":[{\\\"unit\\\":\\\"Hours\\\",\\\"scale\\\":0.1,\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":1000}]},\\\"View_Angle_Day\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Day\n        view zenith angle\\\",\\\"raster:bands\\\":[{\\\"unit\\\":\\\"Degree\\\",\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":1000}]},\\\"View_Time_Night\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Night\n        Time of Observation\\\",\\\"raster:bands\\\":[{\\\"unit\\\":\\\"Hours\\\",\\\"scale\\\":0.1,\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":1000}]},\\\"View_Angle_Night\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Night\n        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,\n        G., &amp; Hook, S. (2021). <i>MODIS/Terra Land Surface Temperature/3-Band\n        Emissivity 8-Day L3 Global 1km SIN Grid V061</i> [Data set]. NASA EOSDIS Land\n        Processes DAAC. https://doi.org/10.5067/MODIS/MOD21A2.061\\\"},{\\\"doi\\\":\\\"10.5067/MODIS/MYD21A2.061\\\",\\\"citation\\\":\\\"Hulley,\n        G. (2021). <i>MODIS/Aqua Land Surface Temperature/3-Band Emissivity 8-Day\n        L3 Global 1km SIN Grid V061</i> [Data set]. NASA EOSDIS Land Processes DAAC.\n        https://doi.org/10.5067/MODIS/MYD21A2.061\\\"}],\\\"msft:storage_account\\\":\\\"modiseuwest\\\",\\\"msft:short_description\\\":\\\"MODIS\n        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.\n        Census Open Data Policy\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/us-census\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"US\n        Census\\\",\\\"assets\\\":{\\\"thumbnail\\\":{\\\"href\\\":\\\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/us-census.png\\\",\\\"type\\\":\\\"image/png\\\",\\\"title\\\":\\\"US\n        Census\\\"},\\\"geoparquet-items\\\":{\\\"href\\\":\\\"abfs://items/us-census.parquet\\\",\\\"type\\\":\\\"application/x-parquet\\\",\\\"roles\\\":[\\\"stac-items\\\"],\\\"title\\\":\\\"GeoParquet\n        STAC items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        Census Bureau\\\",\\\"Administrative boundaries\\\",\\\"Population\\\",\\\"Demographics\\\"],\\\"providers\\\":[{\\\"url\\\":\\\"https://www.census.gov/en.html\\\",\\\"name\\\":\\\"United\n        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\n        [2020 Census](https://www.census.gov/programs-surveys/decennial-census/decade/2020/2020-census-main.html)\n        counted every person living in the United States and the five U.S. territories.\n        It marked the 24th census in U.S. history and the first time that households\n        were invited to respond to the census online.\\\\n\\\\nThe tables included on\n        the Planetary Computer provide information on population and geographic boundaries\n        at various levels of cartographic aggregation.\\\\n\\\",\\\"item_assets\\\":{\\\"data\\\":{\\\"type\\\":\\\"application/x-parquet\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Dataset\n        root\\\",\\\"table:storage_options\\\":{\\\"account_name\\\":\\\"ai4edataeuwest\\\"}}},\\\"stac_version\\\":\\\"1.0.0\\\",\\\"table:tables\\\":[{\\\"name\\\":\\\"American\n        Indian/Alaska Native Areas/Hawaiian Home Lands (AIANNH)\\\",\\\"description\\\":\\\"This\n        file contains data for legal and statistical [American Indian/Alaska Native\n        Areas/Hawaiian Home Lands (AIANNH)](https://www.census.gov/programs-surveys/geography/about/glossary.html#par_textimage_1)\n        entities published by the US Census Bureau.\\\",\\\"msft:item_name\\\":\\\"cb_2020_us_aiannh_500k\\\"},{\\\"name\\\":\\\"American\n        Indian Tribal Subdivisions (AITSN)\\\",\\\"description\\\":\\\"This file contains\n        data on [American Indian Tribal Subdivisions](https://www.census.gov/programs-surveys/geography/about/glossary.html#par_textimage_1).\n        These areas are the legally defined subdivisions of American Indian Reservations\n        (AIR), Oklahoma Tribal Statistical Areas (OTSA), and Off-Reservation Trust\n        Land (ORTL).\\\",\\\"msft:item_name\\\":\\\"cb_2020_us_aitsn_500k\\\"},{\\\"name\\\":\\\"Alaska\n        Native Regional Corporations (ANRC)\\\",\\\"description\\\":\\\"This file contains\n        data on [Alaska Native Regional Corporations](https://www.census.gov/programs-surveys/geography/about/glossary.html#par_textimage_1),\n        which are corporations created according to the Alaska Native Claims Settlement\n        Act. \\\",\\\"msft:item_name\\\":\\\"cb_2020_02_anrc_500k\\\"},{\\\"name\\\":\\\"Tribal Block\n        Groups (TBG)\\\",\\\"description\\\":\\\"This file includes data on [Tribal Block\n        Groups](https://www.census.gov/programs-surveys/geography/about/glossary.html#par_textimage_26),\n        which are subdivisions of Tribal Census Tracts. These block groups can extend\n        over multiple AIRs and ORTLs due to areas not meeting Block Group minimum\n        population thresholds.\\\",\\\"msft:item_name\\\":\\\"cb_2020_us_tbg_500k\\\"},{\\\"name\\\":\\\"Tribal\n        Census Tracts (TTRACT)\\\",\\\"description\\\":\\\"This file includes data on [Tribal\n        Census Tracts](https://www.census.gov/programs-surveys/geography/about/glossary.html#par_textimage_27)\n        which are relatively small statistical subdivisions of AIRs and ORTLs defined\n        by federally recognized tribal government officials in partnership with the\n        Census Bureau. Due to population thresholds, the Tracts may consist of multiple\n        non-contiguous areas.\\\",\\\"msft:item_name\\\":\\\"cb_2020_us_ttract_500k\\\"},{\\\"name\\\":\\\"Census\n        Block Groups (BG)\\\",\\\"description\\\":\\\"This file contains data on [Census Block\n        Groups](https://www.census.gov/programs-surveys/geography/about/glossary.html#par_textimage_4).\n        These groups are the second smallest geographic grouping. They consist of\n        clusters of blocks within the same census tract that share the same first\n        digit of their 4-character census block number. Census Block Groups generally\n        contain between 600 and 3,000 people and generally cover contiguous areas.\\\",\\\"msft:item_name\\\":\\\"cb_2020_us_bg_500k\\\"},{\\\"name\\\":\\\"Census\n        Tracts (TRACT)\\\",\\\"description\\\":\\\"This file contains data on [Census Tracts](https://www.census.gov/programs-surveys/geography/about/glossary.html#par_textimage_13)\n        which are small and relatively permanent statistical subdivisions of a county\n        or equivalent entity. Tract population size is generally between 1,200 and\n        8,000 people with an ideal size of 4,000. Boundaries tend to follow visible\n        and identifiable features and are usually contiguous areas.\\\",\\\"msft:item_name\\\":\\\"cb_2020_us_tract_500k\\\"},{\\\"name\\\":\\\"Congressional\n        Districts: 116th Congress (CD116)\\\",\\\"description\\\":\\\"This file contains data\n        on the [Congressional Districts](https://www.census.gov/programs-surveys/geography/about/glossary.html#par_textimage_9)\n        for the 116th Congress. \\\",\\\"msft:item_name\\\":\\\"cb_2020_us_cd116_500k\\\"},{\\\"name\\\":\\\"Consolidated\n        Cities (CONCITY)\\\",\\\"description\\\":\\\"This file contains data on [Consolidated\n        Cities](https://www.census.gov/programs-surveys/geography/about/glossary.html#par_textimage_8).\n        These are areas where one or several other incorporated places in a county\n        or Minor Civil Division are included in a consolidated government but still\n        exist as separate legal entities.\\\",\\\"msft:item_name\\\":\\\"cb_2020_us_concity_500k\\\"},{\\\"name\\\":\\\"Counties\n        (COUNTY)\\\",\\\"description\\\":\\\"This file contains data on [Counties and Equivalent\n        Entities](https://www.census.gov/programs-surveys/geography/about/glossary.html#par_textimage_12).\n        These are the primary legal divisions of states. Most states use the term\n        \\\\\\\"counties,\\\\\\\" but other terms such as \\\\\\\"Parishes,\\\\\\\" \\\\\\\"Municipios,\\\\\\\"\n        or \\\\\\\"Independent Cities\\\\\\\" may be used. \\\",\\\"msft:item_name\\\":\\\"cb_2020_us_county_500k\\\"},{\\\"name\\\":\\\"Counties\n        within Congressional Districts: 116th Congress (COUNTY_within_CD116)\\\",\\\"description\\\":\\\"This\n        file contains data on Counties within Congressional Districts.\\\",\\\"msft:item_name\\\":\\\"cb_2020_us_county_within_cd116_500k\\\"},{\\\"name\\\":\\\"County\n        Subdivisions (COUSUB)\\\",\\\"description\\\":\\\"This file contains [County Subdivisions](https://www.census.gov/programs-surveys/geography/about/glossary.html#par_textimage_11),\n        which are the primary divisions of counties and equivalent entities. These\n        divisions vary from state to state and include Barrios, Purchases, Townships,\n        and other types of legal and statistical entities. \\\",\\\"msft:item_name\\\":\\\"cb_2020_us_cousub_500k\\\"},{\\\"name\\\":\\\"Divisions\n        (DIVISION)\\\",\\\"description\\\":\\\"This file contains data on [Divisions](https://www.census.gov/programs-surveys/geography/about/glossary.html#par_textimage_10)\n        of the US. This file is similar to the Regions file but contains more divisions\n        and encompasses several states per division.\\\",\\\"msft:item_name\\\":\\\"cb_2020_us_division_500k\\\"},{\\\"name\\\":\\\"Core\n        Based Statistical Areas (CBSAs)\\\",\\\"description\\\":\\\"This file contains data\n        on [Core Based Statistical Areas (CBSAs)](https://www.census.gov/programs-surveys/geography/about/glossary.html#par_textimage_7).\n        This encompasses all metropolitan and micropolitan statistical areas.\\\",\\\"msft:item_name\\\":\\\"cb_2020_us_cbsa_500k\\\"},{\\\"name\\\":\\\"Combined\n        Statistical Areas (CSA)\\\",\\\"description\\\":\\\"This file contains data on [Combined\n        Statistical Areas](https://www.census.gov/programs-surveys/geography/about/glossary.html#par_textimage_7),\n        which are areas that consist of two or more adjacent CBSAs that have significant\n        employment interchanges.\\\",\\\"msft:item_name\\\":\\\"cb_2020_us_csa_500k\\\"},{\\\"name\\\":\\\"Metropolitan\n        Divisions (METDIV)\\\",\\\"description\\\":\\\"This file contains data on [Metropolitan\n        Divisions](https://www.census.gov/programs-surveys/geography/about/glossary.html#par_textimage_7).\n        These areas are groupings of counties or equivalent entities within a metropolitan\n        statistical area with a core of 2.5 million inhabitants and one or more main\n        counties that represent employment centers, plus adjacent counties with commuting\n        ties.\\\",\\\"msft:item_name\\\":\\\"cb_2020_us_metdiv_500k\\\"},{\\\"name\\\":\\\"New England\n        City and Town Areas (NECTA)\\\",\\\"description\\\":\\\"This file contains [New England\n        City and Town Areas](https://www.census.gov/programs-surveys/geography/about/glossary.html#par_textimage_7),\n        which encompass metropolitan and micropolitan statistical areas and urban\n        clusters in New England.\\\",\\\"msft:item_name\\\":\\\"cb_2020_us_necta_500k\\\"},{\\\"name\\\":\\\"New\n        England City and Town Area Division (NECTADIV)\\\",\\\"description\\\":\\\"This file\n        contains [New England City and Town Areas Divisions](https://www.census.gov/programs-surveys/geography/about/glossary.html#par_textimage_7),\n        which are smaller groupings of cities and towns in New England that contain\n        a single core of 2.5 million inhabitants. Each division must have a total\n        population of 100,000 or more.\\\",\\\"msft:item_name\\\":\\\"cb_2020_us_nectadiv_500k\\\"},{\\\"name\\\":\\\"Combined\n        New England City and Town Areas (CNECTA)\\\",\\\"description\\\":\\\"This file contains\n        data on [Combined New England City and Town Areas](https://www.census.gov/programs-surveys/geography/about/glossary.html#par_textimage_7),\n        consisting of two or more adjacent NECTAs that have significant employment\n        interchanges.\\\",\\\"msft:item_name\\\":\\\"cb_2020_us_cnecta_500k\\\"},{\\\"name\\\":\\\"Places\n        (PLACE)\\\",\\\"description\\\":\\\"This file contains [Places](https://www.census.gov/programs-surveys/geography/about/glossary.html#par_textimage_14)\n        which are Incorporated Places (legal entities) and Census Designated Places\n        (CDPs, statistical entities). An incorporated place usually is a city, town,\n        village, or borough but can have other legal descriptions. CDPs are settled\n        concentrations of population that are identifiable by name but are not legally\n        incorporated.\\\",\\\"msft:item_name\\\":\\\"cb_2020_us_place_500k\\\"},{\\\"name\\\":\\\"Regions\n        (REGION)\\\",\\\"description\\\":\\\"This file contains [Regions](https://www.census.gov/programs-surveys/geography/about/glossary.html#par_textimage_10)\n        of the US and encompasses several states per division.\\\",\\\"msft:item_name\\\":\\\"cb_2020_us_region_500k\\\"},{\\\"name\\\":\\\"School\n        Districts - Elementary (ELSD)\\\",\\\"description\\\":\\\"This file contains [Elementary\n        School Districts](https://www.census.gov/programs-surveys/geography/about/glossary.html#par_textimage_23),\n        referring to districts with elementary schools.\\\",\\\"msft:item_name\\\":\\\"cb_2020_us_elsd_500k\\\"},{\\\"name\\\":\\\"School\n        Districts - Secondary (SCSD)\\\",\\\"description\\\":\\\"This file contains [Secondary\n        School Districts](https://www.census.gov/programs-surveys/geography/about/glossary.html#par_textimage_23),\n        referring to districts with secondary schools.\\\",\\\"msft:item_name\\\":\\\"cb_2020_us_scsd_500k\\\"},{\\\"name\\\":\\\"School\n        Districts - Unified (UNSD)\\\",\\\"description\\\":\\\"This file contains [Unified\n        School Districts](https://www.census.gov/programs-surveys/geography/about/glossary.html#par_textimage_23),\n        referring to districts that provide education to children of all school ages.\n        Unified school districts can have both secondary and elementary schools.\\\",\\\"msft:item_name\\\":\\\"cb_2020_us_unsd_500k\\\"},{\\\"name\\\":\\\"State\n        Legislative Districts - Lower Chamber (SLDL)\\\",\\\"description\\\":\\\"This file\n        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\n        Legislative Districts - Upper Chamber (SLDU)\\\",\\\"description\\\":\\\"This file\n        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\n        (STATE)\\\",\\\"description\\\":\\\"This file contains the [US States and State Equivalent\n        Entities](https://www.census.gov/programs-surveys/geography/about/glossary.html#par_textimage_25).\n        Within Census Bureau datasets, the District of Columbia, Puerto Rico, and\n        the Island Areas (American Samoa, the Commonwealth of the Northern Mariana\n        Islands, Guam, and the US Virgin Islands) are treated as statistical equivalents\n        of states alongside the 50 US states.\\\",\\\"msft:item_name\\\":\\\"cb_2020_us_state_500k\\\"},{\\\"name\\\":\\\"Subbarrios\n        (SUBBARRIO)\\\",\\\"description\\\":\\\"This file contains [Subbarrios](https://www.census.gov/programs-surveys/geography/about/glossary.html#pr),\n        which are legally defined subdivisions of Minor Civil Division in Puerto Rico.\n        They don\\\\\\\"t exist within every Minor Civil Division and don\\\\\\\"t always\n        cover the entire Minor Civil Division where they do exist.\\\",\\\"msft:item_name\\\":\\\"cb_2020_72_subbarrio_500k\\\"},{\\\"name\\\":\\\"United\n        States Outline\\\",\\\"description\\\":\\\"This file contains the [United States Outline](https://www.census.gov/programs-surveys/geography/about/glossary.html#par_textimage_30)\n        shapefile. This contains all 50 US states plus the District of Columbia, Puerto\n        Rico, and the Island Areas (American Samoa, the Commonwealth of the Northern\n        Mariana Islands, Guam, and the US Virgin Islands). There is only one feature\n        within this dataset.\\\",\\\"msft:item_name\\\":\\\"cb_2020_us_nation_5m\\\"},{\\\"name\\\":\\\"Voting\n        Districts (VTD)\\\",\\\"description\\\":\\\"This file contains all [US Voting Districts](https://www.census.gov/programs-surveys/geography/about/glossary.html#par_textimage_31),\n        which are geographic features established by state, local and tribal governments\n        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\n        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\n        Open Access Policy\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/jrc-gsw\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"JRC\n        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\n        Guide\\\",\\\"description\\\":\\\"Data users guide and description of the JRC GSW\n        datasets\\\"},\\\"thumbnail\\\":{\\\"href\\\":\\\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/jrc-gsw.png\\\",\\\"title\\\":\\\"European\n        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\n        STAC items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        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\n        surface water products from the European Commission Joint Research Centre,\n        based on Landsat 5, 7, and 8 imagery.  Layers in this collection describe\n        the occurrence, change, and seasonality of surface water from 1984-2020.  Complete\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Occurrence\n        Change Intensity\\\",\\\"description\\\":\\\"Change in water occurrence between the\n        two periods (1984-1999) and (2000-2020)\\\"},\\\"extent\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Maximum\n        Water Extent\\\",\\\"description\\\":\\\"Binary indicator of whether water was ever\n        present (from 1984-2020)\\\",\\\"file:values\\\":[{\\\"values\\\":[0],\\\"summary\\\":\\\"Not\n        water\\\"},{\\\"values\\\":[1],\\\"summary\\\":\\\"Water\\\"}]},\\\"occurrence\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Occurrence\\\",\\\"description\\\":\\\"Frequency\n        with which water was present from March 1984 to December 2020\\\"},\\\"recurrence\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Recurrence\\\",\\\"description\\\":\\\"Frequency\n        with which water returns from year to year\\\"},\\\"seasonality\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Seasonality\\\",\\\"description\\\":\\\"Number\n        of months that water was present from January 2020 to December 2020\\\"},\\\"transitions\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Transitions\\\",\\\"description\\\":\\\"Categorical\n        change in surface water status from 1984 to 2020\\\",\\\"file:values\\\":[{\\\"values\\\":[1],\\\"summary\\\":\\\"Permanent\\\"},{\\\"values\\\":[2],\\\"summary\\\":\\\"New\n        permanent\\\"},{\\\"values\\\":[3],\\\"summary\\\":\\\"Lost permanent\\\"},{\\\"values\\\":[4],\\\"summary\\\":\\\"Seasonal\\\"},{\\\"values\\\":[5],\\\"summary\\\":\\\"New\n        seasonal\\\"},{\\\"values\\\":[6],\\\"summary\\\":\\\"Lost seasonal\\\"},{\\\"values\\\":[7],\\\"summary\\\":\\\"Seasonal\n        to permanent\\\"},{\\\"values\\\":[8],\\\"summary\\\":\\\"Permanent to seasonal\\\"},{\\\"values\\\":[9],\\\"summary\\\":\\\"Ephemeral\n        permanent\\\"},{\\\"values\\\":[10],\\\"summary\\\":\\\"Ephemeral seasonal\\\"}]}},\\\"sci:citation\\\":\\\"Jean-Francois\n        Pekel, Andrew Cottam, Noel Gorelick, Alan S. Belward, High-resolution mapping\n        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\n        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\n        Guide\\\"},{\\\"rel\\\":\\\"license\\\",\\\"href\\\":\\\"https://cdla.dev/permissive-1-0/\\\",\\\"type\\\":\\\"text/html\\\",\\\"title\\\":\\\"Community\n        Data License Agreement - Permissive, Version 1.0\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/deltares-floods\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"Deltares\n        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\n        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/)\n        has produced inundation maps of flood depth using a model that takes into\n        account water level attenuation and is forced by sea level. At the coastline,\n        the model is forced by extreme water levels containing surge and tide from\n        GTSMip6. The water level at the coastline is extended landwards to all areas\n        that are hydrodynamically connected to the coast following a \\u2018bathtub\\u2019\n        like approach and calculates the flood depth as the difference between the\n        water level and the topography. Unlike a simple 'bathtub' model, this model\n        attenuates the water level over land with a maximum attenuation factor of\n        0.5\\u2009m\\u2009km-1. The attenuation factor simulates the dampening of the\n        flood levels due to the roughness over land.\\\\n\\\\nIn its current version,\n        the model does not account for varying roughness over land and permanent water\n        bodies such as rivers and lakes, and it does not account for the compound\n        effects of waves, rainfall, and river discharge on coastal flooding. It also\n        does not include the mitigating effect of coastal flood protection. Flood\n        extents must thus be interpreted as the area that is potentially exposed to\n        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)\n        for more information.\\\\n\\\\n## Digital elevation models (DEMs)\\\\n\\\\nThis documentation\n        will refer to three DEMs:\\\\n\\\\n* `NASADEM` is the SRTM-derived [NASADEM](https://planetarycomputer.microsoft.com/dataset/nasadem)\n        product.\\\\n* `MERITDEM` is the [Multi-Error-Removed Improved Terrain DEM](http://hydro.iis.u-tokyo.ac.jp/~yamadai/MERIT_DEM/),\n        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##\n        Global datasets\\\\n\\\\nThis collection includes multiple global flood datasets\n        derived from three different DEMs (`NASA`, `MERIT`, and `LIDAR`) and at different\n        resolutions. Not all DEMs have all resolutions:\\\\n\\\\n* `NASADEM` and `MERITDEM`\n        are available at `90m` and `1km` resolutions\\\\n* `LIDAR` is available at `5km`\n        resolution\\\\n\\\\n## Historic event datasets\\\\n\\\\nThis collection also includes\n        historical storm event data files that follow similar DEM and resolution conventions.\n        Not all storms events are available for each DEM and resolution combination,\n        but generally follow the format of:\\\\n\\\\n`events/[DEM]_[resolution]-wm_final/[storm_name]_[event_year]_masked.nc`\\\\n\\\\nFor\n        example, a flood map for the MERITDEM-derived 90m flood data for the \\\\\\\"Omar\\\\\\\"\n        storm in 2008 is available at:\\\\n\\\\n<https://deltaresfloodssa.blob.core.windows.net/floods/v2021.06/events/MERITDEM_90m-wm_final/Omar_2008_masked.nc>\\\\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\n        Map\\\",\\\"description\\\":\\\"Inundation maps of flood depth using a model that\n        takes into account water level attenuation and is forced by sea level.\\\"},\\\"index\\\":{\\\"type\\\":\\\"application/json\\\",\\\"roles\\\":[\\\"index\\\"],\\\"title\\\":\\\"Index\n        file\\\",\\\"description\\\":\\\"Kerchunk index file.\\\"}},\\\"stac_version\\\":\\\"1.0.0\\\",\\\"cube:variables\\\":{\\\"inun\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"m\\\",\\\"attrs\\\":{\\\"units\\\":\\\"m\\\",\\\"long_name\\\":\\\"Coastal\n        flooding\\\",\\\"standard_name\\\":\\\"water_surface_height_above_reference_datum\\\"},\\\"dimensions\\\":[\\\"time\\\",\\\"lat\\\",\\\"lon\\\"],\\\"description\\\":\\\"Coastal\n        flooding\\\"},\\\"projection\\\":{\\\"type\\\":\\\"data\\\",\\\"attrs\\\":{\\\"EPSG_code\\\":\\\"EPSG:4326\\\",\\\"long_name\\\":\\\"wgs84\\\",\\\"proj4_params\\\":\\\"+proj=longlat\n        +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\n        Geodetic System 1984\\\",\\\"type\\\":\\\"GeodeticReferenceFrame\\\",\\\"ellipsoid\\\":{\\\"name\\\":\\\"WGS\n        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\n        Geodetic System 1984\\\",\\\"type\\\":\\\"GeodeticReferenceFrame\\\",\\\"ellipsoid\\\":{\\\"name\\\":\\\"WGS\n        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\n        estimates of coastal inundation under various sea level rise conditions and\n        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\n        Guide\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MCD43A4\\\",\\\"title\\\":\\\"MCD43A4\n        file specification\\\"},{\\\"rel\\\":\\\"cite-as\\\",\\\"href\\\":\\\"https://doi.org/10.5067/MODIS/MCD43A4.061\\\",\\\"title\\\":\\\"LP\n        DAAC - MCD43A4\\\"},{\\\"rel\\\":\\\"license\\\",\\\"href\\\":\\\"https://lpdaac.usgs.gov/data/data-citation-and-policies/\\\",\\\"title\\\":\\\"LP\n        DAAC - Data Citation and Policies\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/modis-43A4-061\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"MODIS\n        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\n        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\n        STAC items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        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\n        Moderate Resolution Imaging Spectroradiometer (MODIS) MCD43A4 Version 6.1\n        Nadir Bidirectional Reflectance Distribution Function (BRDF)-Adjusted Reflectance\n        (NBAR) dataset is produced daily using 16 days of Terra and Aqua MODIS data\n        at 500 meter (m) resolution. The view angle effects are removed from the directional\n        reflectances, resulting in a stable and consistent NBAR product. Data are\n        temporally weighted to the ninth day which is reflected in the Julian date\n        in the file name. Users are urged to use the band specific quality flags to\n        isolate the highest quality full inversion results for their own science applications\n        as described in the User Guide. The MCD43A4 provides NBAR and simplified mandatory\n        quality layers for MODIS bands 1 through 7. Essential quality information\n        provided in the corresponding MCD43A2 data file should be consulted when using\n        this product.\\\",\\\"item_assets\\\":{\\\"hdf\\\":{\\\"type\\\":\\\"application/x-hdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Source\n        data containing all bands\\\"},\\\"metadata\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"Federal\n        Geographic Data Committee (FGDC) Metadata\\\"},\\\"Nadir_Reflectance_Band1\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"],\\\"title\\\":\\\"NBAR\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"],\\\"title\\\":\\\"NBAR\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"],\\\"title\\\":\\\"NBAR\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"],\\\"title\\\":\\\"NBAR\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"],\\\"title\\\":\\\"NBAR\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"],\\\"title\\\":\\\"NBAR\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"],\\\"title\\\":\\\"NBAR\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"BRDF\n        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,\n        good quality (full BRDF inversions)\\\"},{\\\"value\\\":1,\\\"description\\\":\\\"Processed,\n        see other QA (magnitude BRDF inversions)\\\"}]},\\\"BRDF_Albedo_Band_Mandatory_Quality_Band2\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"BRDF\n        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,\n        good quality (full BRDF inversions)\\\"},{\\\"value\\\":1,\\\"description\\\":\\\"Processed,\n        see other QA (magnitude BRDF inversions)\\\"}]},\\\"BRDF_Albedo_Band_Mandatory_Quality_Band3\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"BRDF\n        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,\n        good quality (full BRDF inversions)\\\"},{\\\"value\\\":1,\\\"description\\\":\\\"Processed,\n        see other QA (magnitude BRDF inversions)\\\"}]},\\\"BRDF_Albedo_Band_Mandatory_Quality_Band4\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"BRDF\n        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,\n        good quality (full BRDF inversions)\\\"},{\\\"value\\\":1,\\\"description\\\":\\\"Processed,\n        see other QA (magnitude BRDF inversions)\\\"}]},\\\"BRDF_Albedo_Band_Mandatory_Quality_Band5\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"BRDF\n        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,\n        good quality (full BRDF inversions)\\\"},{\\\"value\\\":1,\\\"description\\\":\\\"Processed,\n        see other QA (magnitude BRDF inversions)\\\"}]},\\\"BRDF_Albedo_Band_Mandatory_Quality_Band6\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"BRDF\n        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,\n        good quality (full BRDF inversions)\\\"},{\\\"value\\\":1,\\\"description\\\":\\\"Processed,\n        see other QA (magnitude BRDF inversions)\\\"}]},\\\"BRDF_Albedo_Band_Mandatory_Quality_Band7\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"BRDF\n        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,\n        good quality (full BRDF inversions)\\\"},{\\\"value\\\":1,\\\"description\\\":\\\"Processed,\n        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,\n        C., &amp; Wang, Z. (2021). <i>MODIS/Terra+Aqua BRDF/Albedo Nadir BRDF Adjusted\n        Ref Daily L3 Global - 500m V061</i> [Data set]. NASA EOSDIS Land Processes\n        DAAC. https://doi.org/10.5067/MODIS/MCD43A4.061\\\"}],\\\"msft:storage_account\\\":\\\"modiseuwest\\\",\\\"msft:short_description\\\":\\\"MODIS\n        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\n        User Guide\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MOD09Q1\\\",\\\"title\\\":\\\"MOD09Q1\n        file specification\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MYD09Q1\\\",\\\"title\\\":\\\"MYD09Q1\n        file specification\\\"},{\\\"rel\\\":\\\"cite-as\\\",\\\"href\\\":\\\"https://doi.org/10.5067/MODIS/MOD09Q1.061\\\",\\\"title\\\":\\\"LP\n        DAAC - MOD09Q1\\\"},{\\\"rel\\\":\\\"cite-as\\\",\\\"href\\\":\\\"https://doi.org/10.5067/MODIS/MYD09Q1.061\\\",\\\"title\\\":\\\"LP\n        DAAC - MYD09Q1\\\"},{\\\"rel\\\":\\\"license\\\",\\\"href\\\":\\\"https://lpdaac.usgs.gov/data/data-citation-and-policies/\\\",\\\"title\\\":\\\"LP\n        DAAC - Data Citation and Policies\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/modis-09Q1-061\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"MODIS\n        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\n        Surface Reflectance 8-Day (250m) thumbnail\\\"},\\\"geoparquet-items\\\":{\\\"href\\\":\\\"abfs://items/modis-09Q1-061.parquet\\\",\\\"type\\\":\\\"application/x-parquet\\\",\\\"roles\\\":[\\\"stac-items\\\"],\\\"title\\\":\\\"GeoParquet\n        STAC items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        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\n        09Q1 Version 6.1 product provides an estimate of the surface spectral reflectance\n        of Moderate Resolution Imaging Spectroradiometer (MODIS) Bands 1 and 2, corrected\n        for atmospheric conditions such as gasses, aerosols, and Rayleigh scattering.\n        Provided along with the 250 meter (m) surface reflectance bands are two quality\n        layers. For each pixel, a value is selected from all the acquisitions within\n        the 8-day composite period. The criteria for the pixel choice include cloud\n        and solar zenith. When several acquisitions meet the criteria the pixel with\n        the minimum channel 3 (blue) value is used.\\\",\\\"item_assets\\\":{\\\"hdf\\\":{\\\"type\\\":\\\"application/x-hdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Source\n        data containing all bands\\\"},\\\"metadata\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"Federal\n        Geographic Data Committee (FGDC) Metadata\\\"},\\\"sur_refl_b01\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"],\\\"title\\\":\\\"Surface\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\",\\\"reflectance\\\"],\\\"title\\\":\\\"Surface\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Surface\n        Reflectance 250m Band Quality Control flags\\\",\\\"raster:bands\\\":[{\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":250}]},\\\"sur_refl_state_250m\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Surface\n        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,\n        E. (2021). <i>MODIS/Terra Surface Reflectance 8-Day L3 Global 250m SIN Grid\n        V061</i> [Data set]. NASA EOSDIS Land Processes DAAC. https://doi.org/10.5067/MODIS/MOD09Q1.061\\\"},{\\\"doi\\\":\\\"10.5067/MODIS/MYD09Q1.061\\\",\\\"citation\\\":\\\"Vermote,\n        E. (2021). <i>MODIS/Aqua Surface Reflectance 8-Day L3 Global 250m SIN Grid\n        V061</i> [Data set]. NASA EOSDIS Land Processes DAAC. https://doi.org/10.5067/MODIS/MYD09Q1.061\\\"}],\\\"msft:storage_account\\\":\\\"modiseuwest\\\",\\\"msft:short_description\\\":\\\"MODIS\n        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\n        User Guide\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MOD14A1\\\",\\\"title\\\":\\\"MOD14A1\n        file specification\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MYD14A1\\\",\\\"title\\\":\\\"MYD14A1\n        file specification\\\"},{\\\"rel\\\":\\\"cite-as\\\",\\\"href\\\":\\\"https://doi.org/10.5067/MODIS/MOD14A1.061\\\",\\\"title\\\":\\\"LP\n        DAAC - MOD14A1\\\"},{\\\"rel\\\":\\\"cite-as\\\",\\\"href\\\":\\\"https://doi.org/10.5067/MODIS/MYD14A1.061\\\",\\\"title\\\":\\\"LP\n        DAAC - MYD14A1\\\"},{\\\"rel\\\":\\\"license\\\",\\\"href\\\":\\\"https://lpdaac.usgs.gov/data/data-citation-and-policies/\\\",\\\"title\\\":\\\"LP\n        DAAC - Data Citation and Policies\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/modis-14A1-061\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"MODIS\n        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\n        Thermal Anomalies/Fire Daily thumbnail\\\"},\\\"geoparquet-items\\\":{\\\"href\\\":\\\"abfs://items/modis-14A1-061.parquet\\\",\\\"type\\\":\\\"application/x-parquet\\\",\\\"roles\\\":[\\\"stac-items\\\"],\\\"title\\\":\\\"GeoParquet\n        STAC items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        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\n        Moderate Resolution Imaging Spectroradiometer (MODIS) Thermal Anomalies and\n        Fire Daily Version 6.1 data are generated every eight days at 1 kilometer\n        (km) spatial resolution as a Level 3 product. MOD14A1 contains eight consecutive\n        days of fire data conveniently packaged into a single file. The Science Dataset\n        (SDS) layers include the fire mask, pixel quality indicators, maximum fire\n        radiative power (MaxFRP), and the position of the fire pixel within the scan.\n        Each layer consists of daily per pixel information for each of the eight days\n        of data acquisition.\\\",\\\"item_assets\\\":{\\\"QA\\\":{\\\"type\\\":\\\"image/tiff; application=geotiff;\n        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\n        data containing all bands\\\"},\\\"MaxFRP\\\":{\\\"type\\\":\\\"image/tiff; application=geotiff;\n        profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Maximum Fire Radiative\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Position\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Confidence\n        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\n        processed (missing input data)\\\"},{\\\"value\\\":1,\\\"description\\\":\\\"Not processed\n        (obsolete; not used since Collection 1)\\\"},{\\\"value\\\":2,\\\"description\\\":\\\"Not\n        processed (other reason)\\\"},{\\\"value\\\":3,\\\"description\\\":\\\"Non-fire water\n        pixel\\\"},{\\\"value\\\":4,\\\"description\\\":\\\"Cloud (land or water)\\\"},{\\\"value\\\":5,\\\"description\\\":\\\"Non-fire\n        land pixel\\\"},{\\\"value\\\":6,\\\"description\\\":\\\"Unknown (land or water)\\\"},{\\\"value\\\":7,\\\"description\\\":\\\"Fire\n        (low confidence, land or water)\\\"},{\\\"value\\\":8,\\\"description\\\":\\\"Fire (nominal\n        confidence, land or water)\\\"},{\\\"value\\\":9,\\\"description\\\":\\\"Fire (high confidence,\n        land or water)\\\"}]},\\\"metadata\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"Federal\n        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,\n        L., &amp; Justice, C. (2021). <i>MODIS/Terra Thermal Anomalies/Fire Daily\n        L3 Global 1km SIN Grid V061</i> [Data set]. NASA EOSDIS Land Processes DAAC.\n        https://doi.org/10.5067/MODIS/MOD14A1.061\\\"},{\\\"doi\\\":\\\"10.5067/MODIS/MYD14A1.061\\\",\\\"citation\\\":\\\"Giglio,\n        L., &amp; Justice, C. (2021). <i>MODIS/Aqua Thermal Anomalies/Fire Daily L3\n        Global 1km SIN Grid V061</i> [Data set]. NASA EOSDIS Land Processes DAAC.\n        https://doi.org/10.5067/MODIS/MYD14A1.061\\\"}],\\\"msft:storage_account\\\":\\\"modiseuwest\\\",\\\"msft:short_description\\\":\\\"MODIS\n        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\n        BY 4.0\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/hrea\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"HREA:\n        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\n        STAC items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        of Michigan\\\",\\\"roles\\\":[\\\"producer\\\",\\\"licensor\\\"]},{\\\"url\\\":\\\"https://planetarycomputer.microsoft.com\\\",\\\"name\\\":\\\"Microsoft\\\",\\\"roles\\\":[\\\"host\\\",\\\"processor\\\"]}],\\\"summaries\\\":{\\\"gsd\\\":[30,460]},\\\"description\\\":\\\"The\n        [HREA](http://www-personal.umich.edu/~brianmin/HREA/index.html) project aims\n        to provide open access to new indicators of electricity access and reliability\n        across the world. Leveraging satellite imagery with computational methods,\n        these high-resolution data provide new tools to track progress toward reliable\n        and sustainable energy access across the world.\\\\n\\\\nThis dataset includes\n        settlement-level measures of electricity access, reliability, and usage for\n        89 nations, derived from nightly VIIRS satellite imagery. Specifically, this\n        dataset provides the following annual values at country-level granularity:\\\\n\\\\n1.\n        **Access**: Predicted likelihood that a settlement is electrified, based on\n        night-by-night comparisons of each settlement against matched uninhabited\n        areas over a calendar year.\\\\n\\\\n2. **Reliability**: Proportion of nights\n        a settlement is statistically brighter than matched uninhabited areas. Areas\n        with more frequent power outages or service interruptions have lower rates.\\\\n\\\\n3.\n        **Usage**: Higher levels of brightness indicate more robust usage of outdoor\n        lighting, which is highly correlated with overall energy consumption.\\\\n\\\\n4.\n        **Nighttime Lights**: Annual composites of VIIRS nighttime light output.\\\\n\\\\nFor\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Probability\n        of electrification\\\"},\\\"light-composite\\\":{\\\"type\\\":\\\"image/tiff; application=geotiff;\n        profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Nighttime light\n        annual composite\\\"},\\\"night-proportion\\\":{\\\"type\\\":\\\"image/tiff; application=geotiff;\n        profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Proportion of nights\n        a settlement is brighter than uninhabited areas\\\"},\\\"estimated-brightness\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Estimated\n        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\n        measures of electricity access, reliability, and usage derived from VIIRS\n        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\n        User Guide\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MOD13Q1\\\",\\\"title\\\":\\\"MOD13Q1\n        file specification\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MYD13Q1\\\",\\\"title\\\":\\\"MYD13Q1\n        file specification\\\"},{\\\"rel\\\":\\\"cite-as\\\",\\\"href\\\":\\\"https://doi.org/10.5067/MODIS/MOD13Q1.061\\\",\\\"title\\\":\\\"LP\n        DAAC - MOD13Q1\\\"},{\\\"rel\\\":\\\"cite-as\\\",\\\"href\\\":\\\"https://doi.org/10.5067/MODIS/MYD13Q1.061\\\",\\\"title\\\":\\\"LP\n        DAAC - MYD13Q1\\\"},{\\\"rel\\\":\\\"license\\\",\\\"href\\\":\\\"https://lpdaac.usgs.gov/data/data-citation-and-policies/\\\",\\\"title\\\":\\\"LP\n        DAAC - Data Citation and Policies\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/modis-13Q1-061\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"MODIS\n        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\n        Vegetation Indices 16-Day (250m) thumbnail\\\"},\\\"geoparquet-items\\\":{\\\"href\\\":\\\"abfs://items/modis-13Q1-061.parquet\\\",\\\"type\\\":\\\"application/x-parquet\\\",\\\"roles\\\":[\\\"stac-items\\\"],\\\"title\\\":\\\"GeoParquet\n        STAC items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        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\n        Moderate Resolution Imaging Spectroradiometer (MODIS) Vegetation Indices Version\n        6.1 data are generated every 16 days at 250 meter (m) spatial resolution as\n        a Level 3 product. The MOD13Q1 product provides two primary vegetation layers.\n        The first is the Normalized Difference Vegetation Index (NDVI) which is referred\n        to as the continuity index to the existing National Oceanic and Atmospheric\n        Administration-Advanced Very High Resolution Radiometer (NOAA-AVHRR) derived\n        NDVI. The second vegetation layer is the Enhanced Vegetation Index (EVI),\n        which has improved sensitivity over high biomass regions. The algorithm chooses\n        the best available pixel value from all the acquisitions from the 16 day period.\n        The criteria used is low clouds, low view angle, and the highest NDVI/EVI\n        value. Along with the vegetation layers and the two quality layers, the HDF\n        file will have MODIS reflectance bands 1 (red), 2 (near-infrared), 3 (blue),\n        and 7 (mid-infrared), as well as four observation layers.\\\",\\\"item_assets\\\":{\\\"hdf\\\":{\\\"type\\\":\\\"application/x-hdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Source\n        data containing all bands\\\"},\\\"metadata\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"Federal\n        Geographic Data Committee (FGDC) Metadata\\\"},\\\"250m_16_days_EVI\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"16\n        day EVI\\\",\\\"raster:bands\\\":[{\\\"unit\\\":\\\"EVI\\\",\\\"scale\\\":0.0001,\\\"data_type\\\":\\\"int16\\\",\\\"spatial_resolution\\\":250}]},\\\"250m_16_days_NDVI\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"16\n        day NDVI\\\",\\\"raster:bands\\\":[{\\\"unit\\\":\\\"NDVI\\\",\\\"scale\\\":0.0001,\\\"data_type\\\":\\\"int16\\\",\\\"spatial_resolution\\\":250}]},\\\"250m_16_days_VI_Quality\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"VI\n        quality indicators\\\",\\\"raster:bands\\\":[{\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":250}]},\\\"250m_16_days_MIR_reflectance\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Surface\n        Reflectance Band 7\\\",\\\"raster:bands\\\":[{\\\"scale\\\":0.0001,\\\"data_type\\\":\\\"int16\\\",\\\"spatial_resolution\\\":250}]},\\\"250m_16_days_NIR_reflectance\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Surface\n        Reflectance Band 2\\\",\\\"raster:bands\\\":[{\\\"scale\\\":0.0001,\\\"data_type\\\":\\\"int16\\\",\\\"spatial_resolution\\\":250}]},\\\"250m_16_days_red_reflectance\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Surface\n        Reflectance Band 1\\\",\\\"raster:bands\\\":[{\\\"scale\\\":0.0001,\\\"data_type\\\":\\\"int16\\\",\\\"spatial_resolution\\\":250}]},\\\"250m_16_days_blue_reflectance\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Surface\n        Reflectance Band 3\\\",\\\"raster:bands\\\":[{\\\"scale\\\":0.0001,\\\"data_type\\\":\\\"int16\\\",\\\"spatial_resolution\\\":250}]},\\\"250m_16_days_sun_zenith_angle\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Sun\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Quality\n        reliability of VI pixel\\\",\\\"raster:bands\\\":[{\\\"unit\\\":\\\"Rank\\\",\\\"data_type\\\":\\\"int8\\\",\\\"spatial_resolution\\\":250}],\\\"classification:classes\\\":[{\\\"value\\\":0,\\\"description\\\":\\\"Good\n        data, use with confidence\\\"},{\\\"value\\\":1,\\\"description\\\":\\\"Marginal data,\n        useful, but look at other QA information\\\"},{\\\"value\\\":2,\\\"description\\\":\\\"Snow/Ice\n        Target covered with snow/ice\\\"},{\\\"value\\\":3,\\\"description\\\":\\\"Cloudy data\\\"}]},\\\"250m_16_days_view_zenith_angle\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"View\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Relative\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Day\n        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,\n        K. (2021). <i>MODIS/Terra Vegetation Indices 16-Day L3 Global 250m SIN Grid\n        V061</i> [Data set]. NASA EOSDIS Land Processes DAAC. https://doi.org/10.5067/MODIS/MOD13Q1.061\\\"},{\\\"doi\\\":\\\"10.5067/MODIS/MYD13Q1.061\\\",\\\"citation\\\":\\\"Didan,\n        K. (2021). <i>MODIS/Aqua Vegetation Indices 16-Day L3 Global 250m SIN Grid\n        V061</i> [Data set]. NASA EOSDIS Land Processes DAAC. https://doi.org/10.5067/MODIS/MYD13Q1.061\\\"}],\\\"msft:storage_account\\\":\\\"modiseuwest\\\",\\\"msft:short_description\\\":\\\"MODIS\n        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\n        User Guide\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MOD14A2\\\",\\\"title\\\":\\\"MOD14A2\n        file specification\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MYD14A2\\\",\\\"title\\\":\\\"MYD14A2\n        file specification\\\"},{\\\"rel\\\":\\\"cite-as\\\",\\\"href\\\":\\\"https://doi.org/10.5067/MODIS/MOD14A2.061\\\",\\\"title\\\":\\\"LP\n        DAAC - MOD14A2\\\"},{\\\"rel\\\":\\\"cite-as\\\",\\\"href\\\":\\\"https://doi.org/10.5067/MODIS/MYD14A2.061\\\",\\\"title\\\":\\\"LP\n        DAAC - MYD14A2\\\"},{\\\"rel\\\":\\\"license\\\",\\\"href\\\":\\\"https://lpdaac.usgs.gov/data/data-citation-and-policies/\\\",\\\"title\\\":\\\"LP\n        DAAC - Data Citation and Policies\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/modis-14A2-061\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"MODIS\n        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\n        Thermal Anomalies/Fire 8-Day thumbnail\\\"},\\\"geoparquet-items\\\":{\\\"href\\\":\\\"abfs://items/modis-14A2-061.parquet\\\",\\\"type\\\":\\\"application/x-parquet\\\",\\\"roles\\\":[\\\"stac-items\\\"],\\\"title\\\":\\\"GeoParquet\n        STAC items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        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\n        Moderate Resolution Imaging Spectroradiometer (MODIS) Thermal Anomalies and\n        Fire 8-Day Version 6.1 data are generated at 1 kilometer (km) spatial resolution\n        as a Level 3 product. The MOD14A2 gridded composite contains the maximum value\n        of the individual fire pixel classes detected during the eight days of acquisition.\n        The Science Dataset (SDS) layers include the fire mask and pixel quality indicators.\\\",\\\"item_assets\\\":{\\\"QA\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Pixel\n        quality indicators\\\",\\\"raster:bands\\\":[{\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":1000}]},\\\"hdf\\\":{\\\"type\\\":\\\"application/x-hdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Source\n        data containing all bands\\\"},\\\"FireMask\\\":{\\\"type\\\":\\\"image/tiff; application=geotiff;\n        profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Confidence of fire\\\",\\\"raster:bands\\\":[{\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":1000}],\\\"classification:classes\\\":[{\\\"value\\\":0,\\\"description\\\":\\\"Not\n        processed (missing input data)\\\"},{\\\"value\\\":1,\\\"description\\\":\\\"Not processed\n        (obsolete; not used since Collection 1)\\\"},{\\\"value\\\":2,\\\"description\\\":\\\"Not\n        processed (other reason)\\\"},{\\\"value\\\":3,\\\"description\\\":\\\"Non-fire water\n        pixel\\\"},{\\\"value\\\":4,\\\"description\\\":\\\"Cloud (land or water)\\\"},{\\\"value\\\":5,\\\"description\\\":\\\"Non-fire\n        land pixel\\\"},{\\\"value\\\":6,\\\"description\\\":\\\"Unknown (land or water)\\\"},{\\\"value\\\":7,\\\"description\\\":\\\"Fire\n        (low confidence, land or water)\\\"},{\\\"value\\\":8,\\\"description\\\":\\\"Fire (nominal\n        confidence, land or water)\\\"},{\\\"value\\\":9,\\\"description\\\":\\\"Fire (high confidence,\n        land or water)\\\"}]},\\\"metadata\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"Federal\n        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,\n        L., &amp; Justice, C. (2021). <i>MODIS/Terra Thermal Anomalies/Fire 8-Day\n        L3 Global 1km SIN Grid V061</i> [Data set]. NASA EOSDIS Land Processes DAAC.\n        https://doi.org/10.5067/MODIS/MOD14A2.061\\\"},{\\\"doi\\\":\\\"10.5067/MODIS/MYD14A2.061\\\",\\\"citation\\\":\\\"Giglio,\n        L., &amp; Justice, C. (2021). <i>MODIS/Aqua Thermal Anomalies/Fire 8-Day L3\n        Global 1km SIN Grid V061</i> [Data set]. NASA EOSDIS Land Processes DAAC.\n        https://doi.org/10.5067/MODIS/MYD14A2.061\\\"}],\\\"msft:storage_account\\\":\\\"modiseuwest\\\",\\\"msft:short_description\\\":\\\"MODIS\n        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\n        Sentinel data terms\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/sentinel-2-l2a\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"Sentinel-2\n        Level-2A\\\",\\\"assets\\\":{\\\"thumbnail\\\":{\\\"href\\\":\\\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/sentinel-2.png\\\",\\\"type\\\":\\\"image/png\\\",\\\"roles\\\":[\\\"thumbnail\\\"],\\\"title\\\":\\\"Sentinel\n        2 L2A\\\"},\\\"geoparquet-items\\\":{\\\"href\\\":\\\"abfs://items/sentinel-2-l2a.parquet\\\",\\\"type\\\":\\\"application/x-parquet\\\",\\\"roles\\\":[\\\"stac-items\\\"],\\\"title\\\":\\\"GeoParquet\n        STAC items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        optical thickness\\\"},{\\\"gsd\\\":60,\\\"name\\\":\\\"B01\\\",\\\"common_name\\\":\\\"coastal\\\",\\\"description\\\":\\\"coastal\n        aerosol\\\",\\\"center_wavelength\\\":0.443,\\\"full_width_half_max\\\":0.027},{\\\"gsd\\\":10,\\\"name\\\":\\\"B02\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"visible\n        blue\\\",\\\"center_wavelength\\\":0.49,\\\"full_width_half_max\\\":0.098},{\\\"gsd\\\":10,\\\"name\\\":\\\"B03\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"visible\n        green\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.045},{\\\"gsd\\\":10,\\\"name\\\":\\\"B04\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"visible\n        red\\\",\\\"center_wavelength\\\":0.665,\\\"full_width_half_max\\\":0.038},{\\\"gsd\\\":20,\\\"name\\\":\\\"B05\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"vegetation\n        classification red edge\\\",\\\"center_wavelength\\\":0.704,\\\"full_width_half_max\\\":0.019},{\\\"gsd\\\":20,\\\"name\\\":\\\"B06\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"vegetation\n        classification red edge\\\",\\\"center_wavelength\\\":0.74,\\\"full_width_half_max\\\":0.018},{\\\"gsd\\\":20,\\\"name\\\":\\\"B07\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"vegetation\n        classification red edge\\\",\\\"center_wavelength\\\":0.783,\\\"full_width_half_max\\\":0.028},{\\\"gsd\\\":10,\\\"name\\\":\\\"B08\\\",\\\"common_name\\\":\\\"nir\\\",\\\"description\\\":\\\"near\n        infrared\\\",\\\"center_wavelength\\\":0.842,\\\"full_width_half_max\\\":0.145},{\\\"gsd\\\":20,\\\"name\\\":\\\"B8A\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"vegetation\n        classification red edge\\\",\\\"center_wavelength\\\":0.865,\\\"full_width_half_max\\\":0.033},{\\\"gsd\\\":60,\\\"name\\\":\\\"B09\\\",\\\"description\\\":\\\"water\n        vapor\\\",\\\"center_wavelength\\\":0.945,\\\"full_width_half_max\\\":0.026},{\\\"gsd\\\":20,\\\"name\\\":\\\"B11\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"short-wave\n        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\n        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\n        [Sentinel-2](https://sentinel.esa.int/web/sentinel/missions/sentinel-2) program\n        provides global imagery in thirteen spectral bands at 10m-60m resolution and\n        a revisit time of approximately five days.  This dataset represents the global\n        Sentinel-2 archive, from 2016 to the present, processed to L2A (bottom-of-atmosphere)\n        using [Sen2Cor](https://step.esa.int/main/snap-supported-plugins/sen2cor/)\n        and converted to [cloud-optimized GeoTIFF](https://www.cogeo.org/) format.\\\",\\\"item_assets\\\":{\\\"AOT\\\":{\\\"gsd\\\":10.0,\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Aerosol\n        optical thickness (AOT)\\\"},\\\"B01\\\":{\\\"gsd\\\":60.0,\\\"type\\\":\\\"image/tiff; application=geotiff;\n        profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Band 1 - Coastal\n        aerosol - 60m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"B01\\\",\\\"common_name\\\":\\\"coastal\\\",\\\"description\\\":\\\"Band\n        1 - Coastal aerosol\\\",\\\"center_wavelength\\\":0.443,\\\"full_width_half_max\\\":0.027}]},\\\"B02\\\":{\\\"gsd\\\":10.0,\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Band\n        2 - Blue - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"B02\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Band\n        2 - Blue\\\",\\\"center_wavelength\\\":0.49,\\\"full_width_half_max\\\":0.098}]},\\\"B03\\\":{\\\"gsd\\\":10.0,\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Band\n        3 - Green - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"B03\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Band\n        3 - Green\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.045}]},\\\"B04\\\":{\\\"gsd\\\":10.0,\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Band\n        4 - Red - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"B04\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Band\n        4 - Red\\\",\\\"center_wavelength\\\":0.665,\\\"full_width_half_max\\\":0.038}]},\\\"B05\\\":{\\\"gsd\\\":20.0,\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Band\n        5 - Vegetation red edge 1 - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"B05\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Band\n        5 - Vegetation red edge 1\\\",\\\"center_wavelength\\\":0.704,\\\"full_width_half_max\\\":0.019}]},\\\"B06\\\":{\\\"gsd\\\":20.0,\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Band\n        6 - Vegetation red edge 2 - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"B06\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Band\n        6 - Vegetation red edge 2\\\",\\\"center_wavelength\\\":0.74,\\\"full_width_half_max\\\":0.018}]},\\\"B07\\\":{\\\"gsd\\\":20.0,\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Band\n        7 - Vegetation red edge 3 - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"B07\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Band\n        7 - Vegetation red edge 3\\\",\\\"center_wavelength\\\":0.783,\\\"full_width_half_max\\\":0.028}]},\\\"B08\\\":{\\\"gsd\\\":10.0,\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Band\n        8 - NIR - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"B08\\\",\\\"common_name\\\":\\\"nir\\\",\\\"description\\\":\\\"Band\n        8 - NIR\\\",\\\"center_wavelength\\\":0.842,\\\"full_width_half_max\\\":0.145}]},\\\"B09\\\":{\\\"gsd\\\":60.0,\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Band\n        9 - Water vapor - 60m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"B09\\\",\\\"description\\\":\\\"Band\n        9 - Water vapor\\\",\\\"center_wavelength\\\":0.945,\\\"full_width_half_max\\\":0.026}]},\\\"B11\\\":{\\\"gsd\\\":20.0,\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Band\n        11 - SWIR (1.6) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"B11\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"Band\n        11 - SWIR (1.6)\\\",\\\"center_wavelength\\\":1.61,\\\"full_width_half_max\\\":0.143}]},\\\"B12\\\":{\\\"gsd\\\":20.0,\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Band\n        12 - SWIR (2.2) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"B12\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"Band\n        12 - SWIR (2.2)\\\",\\\"center_wavelength\\\":2.19,\\\"full_width_half_max\\\":0.242}]},\\\"B8A\\\":{\\\"gsd\\\":20.0,\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Band\n        8A - Vegetation red edge 4 - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"B8A\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Band\n        8A - Vegetation red edge 4\\\",\\\"center_wavelength\\\":0.865,\\\"full_width_half_max\\\":0.033}]},\\\"SCL\\\":{\\\"gsd\\\":20.0,\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Scene\n        classfication map (SCL)\\\"},\\\"WVP\\\":{\\\"gsd\\\":10.0,\\\"type\\\":\\\"image/tiff; application=geotiff;\n        profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Water vapour (WVP)\\\"},\\\"visual\\\":{\\\"gsd\\\":10.0,\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"True\n        color image\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"B04\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Band\n        4 - Red\\\",\\\"center_wavelength\\\":0.665,\\\"full_width_half_max\\\":0.038},{\\\"name\\\":\\\"B03\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Band\n        3 - Green\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.045},{\\\"name\\\":\\\"B02\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Band\n        2 - Blue\\\",\\\"center_wavelength\\\":0.49,\\\"full_width_half_max\\\":0.098}]},\\\"preview\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"thumbnail\\\"],\\\"title\\\":\\\"Thumbnail\\\"},\\\"safe-manifest\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"SAFE\n        manifest\\\"},\\\"granule-metadata\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"Granule\n        metadata\\\"},\\\"inspire-metadata\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"INSPIRE\n        metadata\\\"},\\\"product-metadata\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"Product\n        metadata\\\"},\\\"datastrip-metadata\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"Datastrip\n        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\n        Sentinel-2 program provides global imagery in thirteen spectral bands at 10m-60m\n        resolution and a revisit time of approximately five days.  This dataset contains\n        the global Sentinel-2 archive, from 2016 to the present, processed to L2A\n        (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\n        User Guide\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MCD15A2H\\\",\\\"title\\\":\\\"MCD15A2H\n        file specification\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MOD15A2H\\\",\\\"title\\\":\\\"MOD15A2H\n        file specification\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MYD15A2H\\\",\\\"title\\\":\\\"MYD15A2H\n        file specification\\\"},{\\\"rel\\\":\\\"cite-as\\\",\\\"href\\\":\\\"https://doi.org/10.5067/MODIS/MCD15A2H.061\\\",\\\"title\\\":\\\"LP\n        DAAC - MCD15A2H\\\"},{\\\"rel\\\":\\\"cite-as\\\",\\\"href\\\":\\\"https://doi.org/10.5067/MODIS/MOD15A2H.061\\\",\\\"title\\\":\\\"LP\n        DAAC - MOD15A2H\\\"},{\\\"rel\\\":\\\"cite-as\\\",\\\"href\\\":\\\"https://doi.org/10.5067/MODIS/MYD15A2H.061\\\",\\\"title\\\":\\\"LP\n        DAAC - MYD15A2H\\\"},{\\\"rel\\\":\\\"license\\\",\\\"href\\\":\\\"https://lpdaac.usgs.gov/data/data-citation-and-policies/\\\",\\\"title\\\":\\\"LP\n        DAAC - Data Citation and Policies\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/modis-15A2H-061\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"MODIS\n        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\n        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\n        STAC items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        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\n        Version 6.1 Moderate Resolution Imaging Spectroradiometer (MODIS) Level 4,\n        Combined Fraction of Photosynthetically Active Radiation (FPAR), and Leaf\n        Area Index (LAI) product is an 8-day composite dataset with 500 meter pixel\n        size. The algorithm chooses the best pixel available from within the 8-day\n        period. LAI is defined as the one-sided green leaf area per unit ground area\n        in broadleaf canopies and as one-half the total needle surface area per unit\n        ground area in coniferous canopies. FPAR is defined as the fraction of incident\n        photosynthetically active radiation (400-700 nm) absorbed by the green elements\n        of a vegetation canopy.\\\",\\\"item_assets\\\":{\\\"hdf\\\":{\\\"type\\\":\\\"application/x-hdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Source\n        data containing all bands\\\"},\\\"Lai_500m\\\":{\\\"type\\\":\\\"image/tiff; application=geotiff;\n        profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Leaf Area Index\\\",\\\"description\\\":\\\"The\n        one-sided green leaf area per unit ground area in broadleaf canopies and as\n        one-half the total needle surface area per unit ground area in coniferous\n        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\n        Geographic Data Committee (FGDC) Metadata\\\"},\\\"Fpar_500m\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Fraction\n        of Photosynthetically Active Radiation\\\",\\\"description\\\":\\\"The fraction of\n        incident photosynthetically active radiation (400-700 nm) absorbed by the\n        green elements of a vegetation canopy.\\\",\\\"raster:bands\\\":[{\\\"unit\\\":\\\"Percent\\\",\\\"scale\\\":0.01,\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":500}]},\\\"FparLai_QC\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Quality\n        for FPAR and LAI\\\",\\\"raster:bands\\\":[{\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":500}]},\\\"FparExtra_QC\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Extra\n        detail Quality for FPAR and LAI\\\",\\\"raster:bands\\\":[{\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":500}]},\\\"LaiStdDev_500m\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Standard\n        deviation of LAI\\\",\\\"raster:bands\\\":[{\\\"unit\\\":\\\"m^2/m^2\\\",\\\"scale\\\":0.1,\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":500}]},\\\"FparStdDev_500m\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Standard\n        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,\n        R., Knyazikhin, Y., &amp; Park, T. (2021). <i>MODIS/Terra+Aqua Leaf Area Index/FPAR\n        8-Day L4 Global 500m SIN Grid V061</i> [Data set]. NASA EOSDIS Land Processes\n        DAAC. https://doi.org/10.5067/MODIS/MCD15A2H.061\\\"},{\\\"doi\\\":\\\"10.5067/MODIS/MOD15A2H.061\\\",\\\"citation\\\":\\\"Myneni,\n        R., Knyazikhin, Y., &amp; Park, T. (2021). <i>MODIS/Terra Leaf Area Index/FPAR\n        8-Day L4 Global 500m SIN Grid V061</i> [Data set]. NASA EOSDIS Land Processes\n        DAAC. https://doi.org/10.5067/MODIS/MOD15A2H.061\\\"},{\\\"doi\\\":\\\"10.5067/MODIS/MYD15A2H.061\\\",\\\"citation\\\":\\\"Myneni,\n        R., Knyazikhin, Y., &amp; Park, T. (2021). <i>MODIS/Aqua Leaf Area Index/FPAR\n        8-Day L4 Global 500m SIN Grid V061</i> [Data set]. NASA EOSDIS Land Processes\n        DAAC. https://doi.org/10.5067/MODIS/MYD15A2H.061\\\"}],\\\"msft:storage_account\\\":\\\"modiseuwest\\\",\\\"msft:short_description\\\":\\\"MODIS\n        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\n        User Guide\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MOD11A1\\\",\\\"title\\\":\\\"MOD11A1\n        file specification\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MYD11A1\\\",\\\"title\\\":\\\"MYD11A1\n        file specification\\\"},{\\\"rel\\\":\\\"cite-as\\\",\\\"href\\\":\\\"https://doi.org/10.5067/MODIS/MOD11A1.061\\\",\\\"title\\\":\\\"LP\n        DAAC - MOD11A1\\\"},{\\\"rel\\\":\\\"cite-as\\\",\\\"href\\\":\\\"https://doi.org/10.5067/MODIS/MYD11A1.061\\\",\\\"title\\\":\\\"LP\n        DAAC - MYD11A1\\\"},{\\\"rel\\\":\\\"license\\\",\\\"href\\\":\\\"https://lpdaac.usgs.gov/data/data-citation-and-policies/\\\",\\\"title\\\":\\\"LP\n        DAAC - Data Citation and Policies\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/modis-11A1-061\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"MODIS\n        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\n        Land Surface Temperature/Emissivity Daily thumbnail\\\"},\\\"geoparquet-items\\\":{\\\"href\\\":\\\"abfs://items/modis-11A1-061.parquet\\\",\\\"type\\\":\\\"application/x-parquet\\\",\\\"roles\\\":[\\\"stac-items\\\"],\\\"title\\\":\\\"GeoParquet\n        STAC items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        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\n        Moderate Resolution Imaging Spectroradiometer (MODIS) Land Surface Temperature/Emissivity\n        Daily Version 6.1 product provides daily per-pixel Land Surface Temperature\n        and Emissivity (LST&E) with 1 kilometer (km) spatial resolution in a 1,200\n        by 1,200 km grid. The pixel temperature value is derived from the MOD11_L2\n        swath product. Above 30 degrees latitude, some pixels may have multiple observations\n        where the criteria for clear-sky are met. When this occurs, the pixel value\n        is a result of the average of all qualifying observations. Provided along\n        with the daytime and nighttime surface temperature bands are associated quality\n        control assessments, observation times, view zenith angles, and clear-sky\n        coverages along with bands 31 and 32 emissivities from land cover types\\\",\\\"item_assets\\\":{\\\"hdf\\\":{\\\"type\\\":\\\"application/x-hdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Source\n        data containing all bands\\\"},\\\"QC_Day\\\":{\\\"type\\\":\\\"image/tiff; application=geotiff;\n        profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Quality control\n        for daytime LST and emissivity\\\",\\\"raster:bands\\\":[{\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":1000}]},\\\"Emis_31\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Band\n        31 emissivity\\\",\\\"raster:bands\\\":[{\\\"scale\\\":0.002,\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":1000}]},\\\"Emis_32\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Band\n        32 emissivity\\\",\\\"raster:bands\\\":[{\\\"scale\\\":0.002,\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":1000}]},\\\"QC_Night\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Quality\n        control for nighttime LST and emissivity\\\",\\\"raster:bands\\\":[{\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":1000}]},\\\"metadata\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"Federal\n        Geographic Data Committee (FGDC) Metadata\\\"},\\\"LST_Day_1km\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\",\\\"temperature\\\"],\\\"title\\\":\\\"Daily\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Day\n        clear-sky coverage\\\",\\\"raster:bands\\\":[{\\\"scale\\\":0.0005,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":1000}]},\\\"Day_view_angl\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"View\n        zenith angle of daytime Landsurface Temperature\\\",\\\"raster:bands\\\":[{\\\"unit\\\":\\\"Degree\\\",\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":1000}]},\\\"Day_view_time\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"(local\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\",\\\"temperature\\\"],\\\"title\\\":\\\"Daily\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Night\n        clear-sky coverage\\\",\\\"raster:bands\\\":[{\\\"scale\\\":0.0005,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":1000}]},\\\"Night_view_angl\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"View\n        zenith angle of nighttime Landsurface Temperature\\\",\\\"raster:bands\\\":[{\\\"unit\\\":\\\"Degree\\\",\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":1000}]},\\\"Night_view_time\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"(local\n        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,\n        Z., Hook, S., &amp; Hulley, G. (2021). <i>MODIS/Terra Land Surface Temperature/Emissivity\n        Daily L3 Global 1km SIN Grid V061</i> [Data set]. NASA EOSDIS Land Processes\n        DAAC. https://doi.org/10.5067/MODIS/MOD11A1.061\\\"},{\\\"doi\\\":\\\"10.5067/MODIS/MYD11A1.061\\\",\\\"citation\\\":\\\"Wan,\n        Z., Hook, S., &amp; Hulley, G. (2021). <i>MODIS/Aqua Land Surface Temperature/Emissivity\n        Daily L3 Global 1km SIN Grid V061</i> [Data set]. NASA EOSDIS Land Processes\n        DAAC. https://doi.org/10.5067/MODIS/MYD11A1.061\\\"}],\\\"msft:storage_account\\\":\\\"modiseuwest\\\",\\\"msft:short_description\\\":\\\"MODIS\n        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\n        User Guide\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MCD15A3H\\\",\\\"title\\\":\\\"MCD15A3H\n        file specification\\\"},{\\\"rel\\\":\\\"cite-as\\\",\\\"href\\\":\\\"https://doi.org/10.5067/MODIS/MCD15A3H.061\\\",\\\"title\\\":\\\"LP\n        DAAC - MCD15A3H\\\"},{\\\"rel\\\":\\\"license\\\",\\\"href\\\":\\\"https://lpdaac.usgs.gov/data/data-citation-and-policies/\\\",\\\"title\\\":\\\"LP\n        DAAC - Data Citation and Policies\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/modis-15A3H-061\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"MODIS\n        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\n        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\n        STAC items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        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\n        MCD15A3H Version 6.1 Moderate Resolution Imaging Spectroradiometer (MODIS)\n        Level 4, Combined Fraction of Photosynthetically Active Radiation (FPAR),\n        and Leaf Area Index (LAI) product is a 4-day composite data set with 500 meter\n        pixel size. The algorithm chooses the best pixel available from all the acquisitions\n        of both MODIS sensors located on NASA's Terra and Aqua satellites from within\n        the 4-day period. LAI is defined as the one-sided green leaf area per unit\n        ground area in broadleaf canopies and as one-half the total needle surface\n        area per unit ground area in coniferous canopies. FPAR is defined as the fraction\n        of incident photosynthetically active radiation (400-700 nm) absorbed by the\n        green elements of a vegetation canopy.\\\",\\\"item_assets\\\":{\\\"hdf\\\":{\\\"type\\\":\\\"application/x-hdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Source\n        data containing all bands\\\"},\\\"Lai_500m\\\":{\\\"type\\\":\\\"image/tiff; application=geotiff;\n        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\n        Geographic Data Committee (FGDC) Metadata\\\"},\\\"Fpar_500m\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Fraction\n        of Photosynthetically Active Radiation\\\",\\\"raster:bands\\\":[{\\\"unit\\\":\\\"Percent\\\",\\\"scale\\\":0.01,\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":500}]},\\\"FparLai_QC\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Quality\n        for FPAR and LAI\\\",\\\"raster:bands\\\":[{\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":500}]},\\\"FparExtra_QC\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Extra\n        detail Quality for FPAR and LAI\\\",\\\"raster:bands\\\":[{\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":500}]},\\\"LaiStdDev_500m\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Standard\n        deviation of LAI\\\",\\\"raster:bands\\\":[{\\\"unit\\\":\\\"m^2/m^2\\\",\\\"scale\\\":0.1,\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":500}]},\\\"FparStdDev_500m\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Standard\n        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,\n        R., Knyazikhin, Y., &amp; Park, T. (2021). <i>MODIS/Terra+Aqua Leaf Area Index/FPAR\n        4-Day L4 Global 500m SIN Grid V061</i> [Data set]. NASA EOSDIS Land Processes\n        DAAC. https://doi.org/10.5067/MODIS/MCD15A3H.061\\\"}],\\\"msft:storage_account\\\":\\\"modiseuwest\\\",\\\"msft:short_description\\\":\\\"MODIS\n        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\n        User Guide\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MOD13A1\\\",\\\"title\\\":\\\"MOD13A1\n        file specification\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MYD13A1\\\",\\\"title\\\":\\\"MYD13A1\n        file specification\\\"},{\\\"rel\\\":\\\"cite-as\\\",\\\"href\\\":\\\"https://doi.org/10.5067/MODIS/MOD13A1.061\\\",\\\"title\\\":\\\"LP\n        DAAC - MOD13A1\\\"},{\\\"rel\\\":\\\"cite-as\\\",\\\"href\\\":\\\"https://doi.org/10.5067/MODIS/MYD13A1.061\\\",\\\"title\\\":\\\"LP\n        DAAC - MYD13A1\\\"},{\\\"rel\\\":\\\"license\\\",\\\"href\\\":\\\"https://lpdaac.usgs.gov/data/data-citation-and-policies/\\\",\\\"title\\\":\\\"LP\n        DAAC - Data Citation and Policies\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/modis-13A1-061\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"MODIS\n        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\n        Vegetation Indices 16-Day (500m) thumbnail\\\"},\\\"geoparquet-items\\\":{\\\"href\\\":\\\"abfs://items/modis-13A1-061.parquet\\\",\\\"type\\\":\\\"application/x-parquet\\\",\\\"roles\\\":[\\\"stac-items\\\"],\\\"title\\\":\\\"GeoParquet\n        STAC items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        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\n        Moderate Resolution Imaging Spectroradiometer (MODIS) Vegetation Indices 16-Day\n        Version 6.1 product provides Vegetation Index (VI) values at a per pixel basis\n        at 500 meter (m) spatial resolution. There are two primary vegetation layers.\n        The first is the Normalized Difference Vegetation Index (NDVI), which is referred\n        to as the continuity index to the existing National Oceanic and Atmospheric\n        Administration-Advanced Very High Resolution Radiometer (NOAA-AVHRR) derived\n        NDVI. The second vegetation layer is the Enhanced Vegetation Index (EVI),\n        which has improved sensitivity over high biomass regions. The algorithm for\n        this product chooses the best available pixel value from all the acquisitions\n        from the 16 day period. The criteria used is low clouds, low view angle, and\n        the highest NDVI/EVI value. Provided along with the vegetation layers and\n        two quality assurance (QA) layers are reflectance bands 1 (red), 2 (near-infrared),\n        3 (blue), and 7 (mid-infrared), as well as four observation layers.\\\",\\\"item_assets\\\":{\\\"hdf\\\":{\\\"type\\\":\\\"application/x-hdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Source\n        data containing all bands\\\"},\\\"metadata\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"Federal\n        Geographic Data Committee (FGDC) Metadata\\\"},\\\"500m_16_days_EVI\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"500m\n        16 days EVI\\\",\\\"raster:bands\\\":[{\\\"unit\\\":\\\"EVI\\\",\\\"scale\\\":0.0001,\\\"data_type\\\":\\\"int16\\\",\\\"spatial_resolution\\\":500}]},\\\"500m_16_days_NDVI\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"500m\n        16 days NDVI\\\",\\\"raster:bands\\\":[{\\\"unit\\\":\\\"NDVI\\\",\\\"scale\\\":0.0001,\\\"data_type\\\":\\\"int16\\\",\\\"spatial_resolution\\\":500}]},\\\"500m_16_days_VI_Quality\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"VI\n        quality indicators\\\",\\\"raster:bands\\\":[{\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":500}]},\\\"500m_16_days_MIR_reflectance\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Surface\n        Reflectance Band 7\\\",\\\"raster:bands\\\":[{\\\"scale\\\":0.0001,\\\"data_type\\\":\\\"int16\\\",\\\"spatial_resolution\\\":500}]},\\\"500m_16_days_NIR_reflectance\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Surface\n        Reflectance Band 2\\\",\\\"raster:bands\\\":[{\\\"scale\\\":0.0001,\\\"data_type\\\":\\\"int16\\\",\\\"spatial_resolution\\\":500}]},\\\"500m_16_days_red_reflectance\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Surface\n        Reflectance Band 1\\\",\\\"raster:bands\\\":[{\\\"scale\\\":0.0001,\\\"data_type\\\":\\\"int16\\\",\\\"spatial_resolution\\\":500}]},\\\"500m_16_days_blue_reflectance\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Surface\n        Reflectance Band 3\\\",\\\"raster:bands\\\":[{\\\"scale\\\":0.0001,\\\"data_type\\\":\\\"int16\\\",\\\"spatial_resolution\\\":500}]},\\\"500m_16_days_sun_zenith_angle\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Sun\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Quality\n        reliability of VI pixel\\\",\\\"raster:bands\\\":[{\\\"unit\\\":\\\"Rank\\\",\\\"data_type\\\":\\\"int8\\\",\\\"spatial_resolution\\\":500}],\\\"classification:classes\\\":[{\\\"value\\\":0,\\\"description\\\":\\\"Good\n        data, use with confidence\\\"},{\\\"value\\\":1,\\\"description\\\":\\\"Marginal data,\n        useful, but look at other QA information\\\"},{\\\"value\\\":2,\\\"description\\\":\\\"Snow/Ice\n        Target covered with snow/ice\\\"},{\\\"value\\\":3,\\\"description\\\":\\\"Cloudy data\\\"}]},\\\"500m_16_days_view_zenith_angle\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"View\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Relative\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Day\n        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,\n        K. (2021). <i>MODIS/Terra Vegetation Indices 16-Day L3 Global 500m SIN Grid\n        V061</i> [Data set]. NASA EOSDIS Land Processes DAAC. https://doi.org/10.5067/MODIS/MOD13A1.061\\\"},{\\\"doi\\\":\\\"10.5067/MODIS/MYD13A1.061\\\",\\\"citation\\\":\\\"Didan,\n        K. (2021). <i>MODIS/Aqua Vegetation Indices 16-Day L3 Global 500m SIN Grid\n        V061</i> [Data set]. NASA EOSDIS Land Processes DAAC. https://doi.org/10.5067/MODIS/MYD13A1.061\\\"}],\\\"msft:storage_account\\\":\\\"modiseuwest\\\",\\\"msft:short_description\\\":\\\"MODIS\n        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\n        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\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"Daymet\n        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\n        daily North America map thumbnail\\\"},\\\"zarr-abfs\\\":{\\\"href\\\":\\\"abfs://daymet-zarr/daily/na.zarr\\\",\\\"type\\\":\\\"application/vnd+zarr\\\",\\\"roles\\\":[\\\"data\\\",\\\"zarr\\\",\\\"abfs\\\"],\\\"title\\\":\\\"Daily\n        North America Daymet Azure Blob File System Zarr root\\\",\\\"description\\\":\\\"Azure\n        Blob File System of the daily North America Daymet Zarr Group on Azure Blob\n        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\n        North America Daymet HTTPS Zarr root\\\",\\\"description\\\":\\\"HTTPS URI of the\n        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\n        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\n        DAAC\\\",\\\"roles\\\":[\\\"producer\\\"]}],\\\"description\\\":\\\"Gridded estimates of daily\n        weather parameters. [Daymet](https://daymet.ornl.gov) Version 4 variables\n        include the following parameters: minimum temperature, maximum temperature,\n        precipitation, shortwave radiation, vapor pressure, snow water equivalent,\n        and day length.\\\\n\\\\n[Daymet](https://daymet.ornl.gov/) provides measurements\n        of near-surface meteorological conditions; the main purpose is to provide\n        data estimates where no instrumentation exists. The dataset covers the period\n        from January 1, 1980 to the present. Each year is processed individually at\n        the close of a calendar year. Data are in a Lambert conformal conic projection\n        for North America and are distributed in Zarr and NetCDF formats, compliant\n        with the [Climate and Forecast (CF) metadata conventions (version 1.6)](http://cfconventions.org/).\\\\n\\\\nUse\n        the DOI at [https://doi.org/10.3334/ORNLDAAC/1840](https://doi.org/10.3334/ORNLDAAC/1840)\n        to cite your usage of the data.\\\\n\\\\nThis dataset provides coverage for Hawaii;\n        North America and Puerto Rico are provided in [separate datasets](https://planetarycomputer.microsoft.com/dataset/group/daymet#daily).\\\\n\\\\n\\\",\\\"sci:citation\\\":\\\"Thornton,\n        M.M., R. Shrestha, P.E. Thornton, S. Kao, Y. Wei, and B.E. Wilson. 2021. Daymet\n        Version 4 Monthly Latency: Daily Surface Weather Data. ORNL DAAC, Oak Ridge,\n        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\n        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\n        average vapor pressure\\\"},\\\"lat\\\":{\\\"type\\\":\\\"auxiliary\\\",\\\"unit\\\":\\\"degrees_north\\\",\\\"attrs\\\":{\\\"units\\\":\\\"degrees_north\\\",\\\"long_name\\\":\\\"latitude\n        coordinate\\\",\\\"standard_name\\\":\\\"latitude\\\"},\\\"shape\\\":[8075,7814],\\\"chunks\\\":[284,584],\\\"dimensions\\\":[\\\"y\\\",\\\"x\\\"],\\\"description\\\":\\\"latitude\n        coordinate\\\"},\\\"lon\\\":{\\\"type\\\":\\\"auxiliary\\\",\\\"unit\\\":\\\"degrees_east\\\",\\\"attrs\\\":{\\\"units\\\":\\\"degrees_east\\\",\\\"long_name\\\":\\\"longitude\n        coordinate\\\",\\\"standard_name\\\":\\\"longitude\\\"},\\\"shape\\\":[8075,7814],\\\"chunks\\\":[284,584],\\\"dimensions\\\":[\\\"y\\\",\\\"x\\\"],\\\"description\\\":\\\"longitude\n        coordinate\\\"},\\\"swe\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"kg/m2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"kg/m2\\\",\\\"long_name\\\":\\\"snow\n        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\n        water equivalent\\\"},\\\"dayl\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"s\\\",\\\"attrs\\\":{\\\"units\\\":\\\"s\\\",\\\"long_name\\\":\\\"daylength\\\",\\\"cell_methods\\\":\\\"area:\n        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\n        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\n        total precipitation\\\"},\\\"srad\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"W/m2\\\",\\\"attrs\\\":{\\\"units\\\":\\\"W/m2\\\",\\\"long_name\\\":\\\"daylight\n        average incident shortwave radiation\\\",\\\"cell_methods\\\":\\\"area: mean time:\n        mean\\\",\\\"grid_mapping\\\":\\\"lambert_conformal_conic\\\"},\\\"shape\\\":[14965,8075,7814],\\\"chunks\\\":[365,284,584],\\\"dimensions\\\":[\\\"time\\\",\\\"y\\\",\\\"x\\\"],\\\"description\\\":\\\"daylight\n        average incident shortwave radiation\\\"},\\\"tmax\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"degrees\n        C\\\",\\\"attrs\\\":{\\\"units\\\":\\\"degrees C\\\",\\\"long_name\\\":\\\"daily maximum temperature\\\",\\\"cell_methods\\\":\\\"area:\n        mean time: maximum\\\",\\\"grid_mapping\\\":\\\"lambert_conformal_conic\\\"},\\\"shape\\\":[14965,8075,7814],\\\"chunks\\\":[365,284,584],\\\"dimensions\\\":[\\\"time\\\",\\\"y\\\",\\\"x\\\"],\\\"description\\\":\\\"daily\n        maximum temperature\\\"},\\\"tmin\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"degrees C\\\",\\\"attrs\\\":{\\\"units\\\":\\\"degrees\n        C\\\",\\\"long_name\\\":\\\"daily minimum temperature\\\",\\\"cell_methods\\\":\\\"area: mean\n        time: minimum\\\",\\\"grid_mapping\\\":\\\"lambert_conformal_conic\\\"},\\\"shape\\\":[14965,8075,7814],\\\"chunks\\\":[365,284,584],\\\"dimensions\\\":[\\\"time\\\",\\\"y\\\",\\\"x\\\"],\\\"description\\\":\\\"daily\n        minimum temperature\\\"},\\\"yearday\\\":{\\\"type\\\":\\\"data\\\",\\\"attrs\\\":{\\\"long_name\\\":\\\"day\n        of year (DOY) starting with day 1 on January 1st\\\"},\\\"shape\\\":[14965],\\\"chunks\\\":[365],\\\"dimensions\\\":[\\\"time\\\"],\\\"description\\\":\\\"day\n        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\n        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\n        Conic Conformal (2SP)\\\"},\\\"parameters\\\":[{\\\"id\\\":{\\\"code\\\":8823,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Latitude\n        of 1st standard parallel\\\",\\\"unit\\\":\\\"degree\\\",\\\"value\\\":25},{\\\"id\\\":{\\\"code\\\":8824,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Latitude\n        of 2nd standard parallel\\\",\\\"unit\\\":\\\"degree\\\",\\\"value\\\":60},{\\\"id\\\":{\\\"code\\\":8821,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Latitude\n        of false origin\\\",\\\"unit\\\":\\\"degree\\\",\\\"value\\\":42.5},{\\\"id\\\":{\\\"code\\\":8822,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Longitude\n        of false origin\\\",\\\"unit\\\":\\\"degree\\\",\\\"value\\\":-100},{\\\"id\\\":{\\\"code\\\":8826,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Easting\n        at false origin\\\",\\\"unit\\\":\\\"metre\\\",\\\"value\\\":0},{\\\"id\\\":{\\\"code\\\":8827,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Northing\n        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\n        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\n        Conic Conformal (2SP)\\\"},\\\"parameters\\\":[{\\\"id\\\":{\\\"code\\\":8823,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Latitude\n        of 1st standard parallel\\\",\\\"unit\\\":\\\"degree\\\",\\\"value\\\":25},{\\\"id\\\":{\\\"code\\\":8824,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Latitude\n        of 2nd standard parallel\\\",\\\"unit\\\":\\\"degree\\\",\\\"value\\\":60},{\\\"id\\\":{\\\"code\\\":8821,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Latitude\n        of false origin\\\",\\\"unit\\\":\\\"degree\\\",\\\"value\\\":42.5},{\\\"id\\\":{\\\"code\\\":8822,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Longitude\n        of false origin\\\",\\\"unit\\\":\\\"degree\\\",\\\"value\\\":-100},{\\\"id\\\":{\\\"code\\\":8826,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Easting\n        at false origin\\\",\\\"unit\\\":\\\"metre\\\",\\\"value\\\":0},{\\\"id\\\":{\\\"code\\\":8827,\\\"authority\\\":\\\"EPSG\\\"},\\\"name\\\":\\\"Northing\n        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\n        of the 'time_bnds' variable.\\\"},\\\"time\\\":{\\\"type\\\":\\\"temporal\\\",\\\"extent\\\":[\\\"1980-01-01T12:00:00Z\\\",\\\"2020-12-30T12:00:00Z\\\"],\\\"description\\\":\\\"24-hour\n        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\n        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\n        Government Licence - Canada\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/nrcan-landcover\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"Land\n        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\n        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\n        cover of Canada thumbnail\\\"},\\\"geoparquet-items\\\":{\\\"href\\\":\\\"abfs://items/nrcan-landcover.parquet\\\",\\\"type\\\":\\\"application/x-parquet\\\",\\\"roles\\\":[\\\"stac-items\\\"],\\\"title\\\":\\\"GeoParquet\n        STAC items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        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\n        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\n        or sub-polar needleleaf forest\\\",\\\"Sub-polar taiga needleleaf forest\\\",\\\"Temperate\n        or sub-polar broadleaf deciduous forest\\\",\\\"Mixed forest\\\",\\\"Temperate or\n        sub-polar shrubland\\\",\\\"Temperate or sub-polar grassland\\\",\\\"Sub-polar or\n        polar shrubland-lichen-moss\\\",\\\"Sub-polar or polar grassland-lichen-moss\\\",\\\"Sub-polar\n        or polar barren-lichen-moss\\\",\\\"Wetland\\\",\\\"Cropland\\\",\\\"Barren lands\\\",\\\"Urban\\\",\\\"Water\\\",\\\"Snow\n        and Ice\\\"]}]},\\\"description\\\":\\\"Collection of Land Cover products for Canada\n        as produced by Natural Resources Canada using Landsat satellite imagery. This\n        collection of cartographic products offers classified Land Cover of Canada\n        at a 30 metre scale, updated on a 5 year basis.\\\",\\\"item_assets\\\":{\\\"metadata\\\":{\\\"type\\\":\\\"application/json\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"Land\n        cover of Canada metadata\\\"},\\\"landcover\\\":{\\\"type\\\":\\\"image/tiff; application=geotiff;\n        profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\",\\\"labels\\\",\\\"labels-raster\\\"],\\\"title\\\":\\\"Land\n        cover of Canada COG\\\",\\\"proj:epsg\\\":3978,\\\"file:values\\\":[{\\\"values\\\":[1],\\\"summary\\\":\\\"Temperate\n        or sub-polar needleleaf forest\\\"},{\\\"values\\\":[2],\\\"summary\\\":\\\"Sub-polar\n        taiga needleleaf forest\\\"},{\\\"values\\\":[5],\\\"summary\\\":\\\"Temperate or sub-polar\n        broadleaf deciduous forest\\\"},{\\\"values\\\":[6],\\\"summary\\\":\\\"Mixed forest\\\"},{\\\"values\\\":[8],\\\"summary\\\":\\\"Temperate\n        or sub-polar shrubland\\\"},{\\\"values\\\":[10],\\\"summary\\\":\\\"Temperate or sub-polar\n        grassland\\\"},{\\\"values\\\":[11],\\\"summary\\\":\\\"Sub-polar or polar shrubland-lichen-moss\\\"},{\\\"values\\\":[12],\\\"summary\\\":\\\"Sub-polar\n        or polar grassland-lichen-moss\\\"},{\\\"values\\\":[13],\\\"summary\\\":\\\"Sub-polar\n        or polar barren-lichen-moss\\\"},{\\\"values\\\":[14],\\\"summary\\\":\\\"Wetland\\\"},{\\\"values\\\":[15],\\\"summary\\\":\\\"Cropland\\\"},{\\\"values\\\":[16],\\\"summary\\\":\\\"Barren\n        lands\\\"},{\\\"values\\\":[17],\\\"summary\\\":\\\"Urban\\\"},{\\\"values\\\":[18],\\\"summary\\\":\\\"Water\\\"},{\\\"values\\\":[19],\\\"summary\\\":\\\"Snow\n        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\n        of Land Cover products for Canada as produced by Natural Resources Canada\n        using Landsat satellite imagery. This collection of cartographic products\n        offers classified Land Cover of Canada at a 30 metre scale, updated on a 5\n        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\n        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\n        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\n        and Copyright | National Snow and Ice Data Center\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/modis-10A2-061\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"MODIS\n        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\n        Snow Cover 8-day thumbnail\\\"},\\\"geoparquet-items\\\":{\\\"href\\\":\\\"abfs://items/modis-10A2-061.parquet\\\",\\\"type\\\":\\\"application/x-parquet\\\",\\\"roles\\\":[\\\"stac-items\\\"],\\\"title\\\":\\\"GeoParquet\n        STAC items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        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\n        global Level-3 (L3) data set provides the maximum snow cover extent observed\n        over an eight-day period within 10degx10deg MODIS sinusoidal grid tiles. Tiles\n        are generated by compositing 500 m observations from the 'MODIS Snow Cover\n        Daily L3 Global 500m Grid' data set. A bit flag index is used to track the\n        eight-day snow/no-snow chronology for each 500 m cell.\\\",\\\"item_assets\\\":{\\\"hdf\\\":{\\\"type\\\":\\\"application/x-hdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Source\n        data containing all bands\\\"},\\\"metadata\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"Federal\n        Geographic Data Committee (FGDC) Metadata\\\"},\\\"Maximum_Snow_Extent\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Maximum\n        snow extent over the 8-day period.\\\",\\\"raster:bands\\\":[{\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":500}],\\\"classification:classes\\\":[{\\\"value\\\":0,\\\"description\\\":\\\"missing\n        data\\\"},{\\\"value\\\":1,\\\"description\\\":\\\"no decision\\\"},{\\\"value\\\":11,\\\"description\\\":\\\"night\\\"},{\\\"value\\\":25,\\\"description\\\":\\\"no\n        snow\\\"},{\\\"value\\\":37,\\\"description\\\":\\\"lake\\\"},{\\\"value\\\":39,\\\"description\\\":\\\"ocean\\\"},{\\\"value\\\":50,\\\"description\\\":\\\"cloud\\\"},{\\\"value\\\":100,\\\"description\\\":\\\"lake\n        ice\\\"},{\\\"value\\\":200,\\\"description\\\":\\\"snow\\\"},{\\\"value\\\":254,\\\"description\\\":\\\"detector\n        saturated\\\"}]},\\\"Eight_Day_Snow_Cover\\\":{\\\"type\\\":\\\"image/tiff; application=geotiff;\n        profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Snow chronology\n        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,\n        D. K., &amp; Riggs, G. A. (2021). <i>MODIS/Terra Snow Cover 8-Day L3 Global\n        500m Grid, Version 61</i> [Data set]. NASA National Snow and Ice Data Center\n        DAAC. https://doi.org/10.5067/MODIS/MOD10A2.061\\\"},{\\\"doi\\\":\\\"10.5067/MODIS/MYD10A2.061\\\",\\\"citation\\\":\\\"Hall,\n        D. K., &amp; Riggs, G. A. (2021). <i>MODIS/Aqua Snow Cover 8-Day L3 Global\n        500m Grid, Version 61</i> [Data set]. NASA National Snow and Ice Data Center\n        DAAC. https://doi.org/10.5067/MODIS/MYD10A2.061\\\"}],\\\"msft:storage_account\\\":\\\"modiseuwest\\\",\\\"msft:short_description\\\":\\\"MODIS\n        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\n        license\\\"},{\\\"rel\\\":\\\"documentation\\\",\\\"href\\\":\\\"https://confluence.ecmwf.int/display/UDOC/ECMWF+Open+Data+-+Real+Time\\\",\\\"type\\\":\\\"text/html\\\",\\\"title\\\":\\\"ECMWF\n        Open Data (Real Time) documentation\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/ecmwf-forecast\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"ECMWF\n        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\n        [ECMWF catalog of real-time products](https://www.ecmwf.int/en/forecasts/datasets/catalogue-ecmwf-real-time-products)\n        offers real-time meterological and oceanographic productions from the ECMWF\n        forecast system. Users should consult the [ECMWF Forecast User Guide](https://confluence.ecmwf.int/display/FUG/1+Introduction)\n        for detailed information on each of the products.\\\\n\\\\n## Overview of products\\\\n\\\\nThe\n        following diagram shows the publishing schedule of the various products.\\\\n\\\\n<a\n        href=\\\\\\\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/aod_docs/ecmwf-forecast-coverage.png\\\\\\\"><img\n        src=\\\\\\\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/aod_docs/ecmwf-forecast-coverage.png\\\\\\\"\n        width=\\\\\\\"100%\\\\\\\"/></a>\\\\n\\\\nThe vertical axis shows the various products,\n        defined below, which are grouped by combinations of `stream`, `forecast type`,\n        and `reference time`. The horizontal axis shows *forecast times* in 3-hour\n        intervals out from the reference time. A black square over a particular forecast\n        time, or step, indicates that a forecast is made for that forecast time, for\n        that particular `stream`, `forecast type`, `reference time` combination.\\\\n\\\\n*\n        **stream** is the forecasting system that produced the data. The values are\n        available in the `ecmwf:stream` summary of the STAC collection. They are:\\\\n\n        \\ * `enfo`: [ensemble forecast](https://confluence.ecmwf.int/display/FUG/ENS+-+Ensemble+Forecasts),\n        atmospheric fields\\\\n  * `mmsf`: [multi-model seasonal forecasts](https://confluence.ecmwf.int/display/FUG/Long-Range+%28Seasonal%29+Forecast)\n        fields from the ECMWF model only.\\\\n  * `oper`: [high-resolution forecast](https://confluence.ecmwf.int/display/FUG/HRES+-+High-Resolution+Forecast),\n        atmospheric fields \\\\n  * `scda`: short cut-off high-resolution forecast,\n        atmospheric fields (also known as \\\\\\\"high-frequency products\\\\\\\")\\\\n  * `scwv`:\n        short cut-off high-resolution forecast, ocean wave fields (also known as \\\\\\\"high-frequency\n        products\\\\\\\") and\\\\n  * `waef`: [ensemble forecast](https://confluence.ecmwf.int/display/FUG/ENS+-+Ensemble+Forecasts),\n        ocean wave fields,\\\\n  * `wave`: wave model\\\\n* **type** is the forecast type.\n        The values are available in the `ecmwf:type` summary of the STAC collection.\n        They are:\\\\n  * `fc`: forecast\\\\n  * `ef`: ensemble forecast\\\\n  * `pf`: ensemble\n        probabilities\\\\n  * `tf`: trajectory forecast for tropical cyclone tracks\\\\n*\n        **reference time** is the hours after midnight when the model was run. Each\n        stream / type will produce assets for different forecast times (steps from\n        the reference datetime) depending on the reference time.\\\\n\\\\nVisit the [ECMWF's\n        User Guide](https://confluence.ecmwf.int/display/UDOC/ECMWF+Open+Data+-+Real+Time)\n        for more details on each of the various products.\\\\n\\\\nAssets are available\n        for the previous 30 days.\\\\n\\\\n## Asset overview\\\\n\\\\nThe data are provided\n        as [GRIB2 files](https://confluence.ecmwf.int/display/CKB/What+are+GRIB+files+and+how+can+I+read+them).\\\\nAdditionally,\n        [index files](https://confluence.ecmwf.int/display/UDOC/ECMWF+Open+Data+-+Real+Time#ECMWFOpenDataRealTime-IndexFilesIndexfiles)\n        are provided, which can be used to read subsets of the data from Azure Blob\n        Storage.\\\\n\\\\nWithin each `stream`, `forecast type`, `reference time`, the\n        structure of the data are mostly consistent. Each GRIB2 file will have the\\\\nsame\n        data variables, coordinates (aside from `time` as the *reference time* changes\n        and `step` as the *forecast time* changes). The exception\\\\nis the `enfo-ep`\n        and `waef-ep` products, which have more `step`s in the 240-hour forecast than\n        in the 360-hour forecast. \\\\n\\\\nSee the example notebook for more on how to\n        access the data.\\\\n\\\\n## STAC metadata\\\\n\\\\nThe Planetary Computer provides\n        a single STAC item per GRIB2 file. Each GRIB2 file is global in extent, so\n        every item has the same\\\\n`bbox` and `geometry`.\\\\n\\\\nA few custom properties\n        are available on each STAC item, which can be used in searches to narrow down\n        the data to items of interest:\\\\n\\\\n* `ecmwf:stream`: The forecasting system\n        (see above for definitions). The full set of values is available in the Collection's\n        summaries.\\\\n* `ecmwf:type`: The forecast type (see above for definitions).\n        The full set of values is available in the Collection's summaries.\\\\n* `ecmwf:step`:\n        The offset from the reference datetime, expressed as `<value><unit>`, for\n        example `\\\\\\\"3h\\\\\\\"` means \\\\\\\"3 hours from the reference datetime\\\\\\\". \\\\n*\n        `ecmwf:reference_datetime`: The datetime when the model was run. This indicates\n        when the forecast *was made*, rather than when it's valid for.\\\\n* `ecmwf:forecast_datetime`:\n        The datetime for which the forecast is valid. This is also set as the item's\n        `datetime`.\\\\n\\\\nSee the example notebook for more on how to use the STAC\n        metadata to query for particular data.\\\\n\\\\n## Attribution\\\\n\\\\nThe products\n        listed and described on this page are available to the public and their use\n        is governed by the [Creative Commons CC-4.0-BY license and the ECMWF Terms\n        of Use](https://apps.ecmwf.int/datasets/licences/general/). This means that\n        the data may be redistributed and used commercially, subject to appropriate\n        attribution.\\\\n\\\\nThe following wording should be attached to the use of this\n        ECMWF dataset: \\\\n\\\\n1. Copyright statement: Copyright \\\\\\\"\\xA9 [year] European\n        Centre for Medium-Range Weather Forecasts (ECMWF)\\\\\\\".\\\\n2. Source [www.ecmwf.int](http://www.ecmwf.int/)\\\\n3.\n        License Statement: This data is published under a Creative Commons Attribution\n        4.0 International (CC BY 4.0). [https://creativecommons.org/licenses/by/4.0/](https://creativecommons.org/licenses/by/4.0/)\\\\n4.\n        Disclaimer: ECMWF does not accept any liability whatsoever for any error or\n        omission in the data, their availability, or for any loss or damage arising\n        from their use.\\\\n5. Where applicable, an indication if the material has been\n        modified and an indication of previous modifications.\\\\n\\\\nThe following wording\n        shall be attached to services created with this ECMWF dataset:\\\\n\\\\n1. Copyright\n        statement: Copyright \\\\\\\"This service is based on data and products of the\n        European Centre for Medium-Range Weather Forecasts (ECMWF)\\\\\\\".\\\\n2. Source\n        www.ecmwf.int\\\\n3. License Statement: This ECMWF data is published under a\n        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.\n        Disclaimer: ECMWF does not accept any liability whatsoever for any error or\n        omission in the data, their availability, or for any loss or damage arising\n        from their use.\\\\n5. Where applicable, an indication if the material has been\n        modified and an indication of previous modifications\\\\n\\\\n## More information\\\\n\\\\nFor\n        more, see the [ECMWF's User Guide](https://confluence.ecmwf.int/display/UDOC/ECMWF+Open+Data+-+Real+Time)\n        and [example notebooks](https://github.com/ecmwf/notebook-examples/tree/master/opencharts).\\\",\\\"item_assets\\\":{\\\"data\\\":{\\\"type\\\":\\\"application/wmo-GRIB2\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"GRIB2\n        data file\\\",\\\"description\\\":\\\"The forecast data, as a grib2 file. Subsets\n        of the data can be loaded using information from the associated index file.\\\"},\\\"index\\\":{\\\"type\\\":\\\"application/x-ndjson\\\",\\\"roles\\\":[\\\"index\\\"],\\\"title\\\":\\\"Index\n        file\\\",\\\"description\\\":\\\"The index file contains information on each message\n        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\n        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\n        Dataset Sharing Policy\\\"},{\\\"rel\\\":\\\"about\\\",\\\"href\\\":\\\"https://mrms.nssl.noaa.gov\\\",\\\"type\\\":\\\"text/html\\\",\\\"title\\\":\\\"MRMS\n        Homepage\\\"},{\\\"rel\\\":\\\"about\\\",\\\"href\\\":\\\"https://vlab.noaa.gov/web/wdtd/-/multi-sensor-qpe-1?selectedFolder=9234881\\\",\\\"type\\\":\\\"text/html\\\",\\\"title\\\":\\\"MRMS\n        QPE Technical Product Guide\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/noaa-mrms-qpe-24h-pass2\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"NOAA\n        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\n        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\n        STAC items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        States\\\",\\\"Guam\\\",\\\"Caribbean\\\"],\\\"providers\\\":[{\\\"url\\\":\\\"https://www.nssl.noaa.gov/projects/mrms\\\",\\\"name\\\":\\\"NOAA\n        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\n        [Multi-Radar Multi-Sensor (MRMS) Quantitative Precipitation Estimation (QPE)](https://www.nssl.noaa.gov/projects/mrms/)\n        products are seamless 1-km mosaics of precipitation accumulation covering\n        the continental United States, Alaska, Hawaii, the Caribbean, and Guam. The\n        products are automatically generated through integration of data from multiple\n        radars and radar networks, surface and satellite observations, numerical weather\n        prediction (NWP) models, and climatology. The products are updated hourly\n        at the top of the hour.\\\\n\\\\nMRMS QPE is available as a \\\\\\\"Pass 1\\\\\\\" or\n        \\\\\\\"Pass 2\\\\\\\" product. The Pass 1 product is available with a 60-minute latency\n        and includes 60-65% of gauges. The Pass 2 product has a higher latency of\n        120 minutes, but includes 99% of gauges. The Pass 1 and Pass 2 products are\n        broken into 1-, 3-, 6-, 12-, 24-, 48-, and 72-hour accumulation sub-products.\\\\n\\\\nThis\n        Collection contains the **24-Hour Pass 2** sub-product, i.e., 24-hour cumulative\n        precipitation accumulation with a 2-hour latency. The data are available in\n        [Cloud Optimized GeoTIFF](https://www.cogeo.org/) format as well as the original\n        source GRIB2 format files. The GRIB2 files are delivered to Azure as part\n        of the [NOAA Open Data Dissemination (NODD) Program](https://www.noaa.gov/information-technology/open-data-dissemination).\\\",\\\"item_assets\\\":{\\\"cog\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Processed\n        Cloud Optimized GeoTIFF file\\\",\\\"raster:bands\\\":[{\\\"unit\\\":\\\"mm\\\",\\\"data_type\\\":\\\"float64\\\",\\\"spatial_resolution\\\":1000}]},\\\"grib2\\\":{\\\"type\\\":\\\"application/wmo-GRIB2\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Original\n        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\n        multi-sensor cumulative precipitation estimate for the past 24 hours with\n        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\n        Domain\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/nasadem\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"NASADEM\n        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\n        STAC items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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)\n        provides global topographic data at 1 arc-second (~30m) horizontal resolution,\n        derived primarily from data captured via the [Shuttle Radar Topography Mission](https://www2.jpl.nasa.gov/srtm/)\n        (SRTM).\\\\n\\\\n\\\",\\\"item_assets\\\":{\\\"elevation\\\":{\\\"type\\\":\\\"image/tiff; application=geotiff;\n        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\n        topographic data at 1 arc-second (~30m) horizontal resolution, derived primarily\n        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\n        BY 4.0\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/io-lulc\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"Esri\n        10-Meter Land Cover (10-class)\\\",\\\"assets\\\":{\\\"thumbnail\\\":{\\\"href\\\":\\\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/io-lulc.png\\\",\\\"title\\\":\\\"Esri\n        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\n        STAC items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        Cover\\\",\\\"Land Use\\\",\\\"Sentinel\\\"],\\\"providers\\\":[{\\\"url\\\":\\\"https://www.esri.com/\\\",\\\"name\\\":\\\"Esri\\\",\\\"roles\\\":[\\\"licensor\\\"]},{\\\"url\\\":\\\"https://www.impactobservatory.com/\\\",\\\"name\\\":\\\"Impact\n        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\n        veg\\\",\\\"crops\\\",\\\"scrub\\\",\\\"built area\\\",\\\"bare\\\",\\\"snow/ice\\\",\\\"clouds\\\"]}]},\\\"description\\\":\\\"__Note__:\n        _A new version of this item is available for your use. This mature version\n        of the map remains available for use in existing applications. This item will\n        be retired in December 2024. There is 2020 data available in the newer [9-class\n        dataset](https://planetarycomputer.microsoft.com/dataset/io-lulc-9-class)._\\\\n\\\\nGlobal\n        estimates of 10-class land use/land cover (LULC) for 2020, derived from ESA\n        Sentinel-2 imagery at 10m resolution.  This dataset was generated by [Impact\n        Observatory](http://impactobservatory.com/), who used billions of human-labeled\n        pixels (curated by the National Geographic Society) to train a deep learning\n        model for land classification.  The global map was produced by applying this\n        model to the relevant yearly Sentinel-2 scenes on the Planetary Computer.\\\\n\\\\nThis\n        dataset is also available on the [ArcGIS Living Atlas of the World](https://livingatlas.arcgis.com/landcover/).\\\\n\\\",\\\"item_assets\\\":{\\\"data\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Global\n        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\n        vegetation\\\"},{\\\"values\\\":[5],\\\"summary\\\":\\\"Crops\\\"},{\\\"values\\\":[6],\\\"summary\\\":\\\"Scrub/shrub\\\"},{\\\"values\\\":[7],\\\"summary\\\":\\\"Built\n        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\n        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\n        1-5 MSS Collection 2 Level-1\\\"},{\\\"rel\\\":\\\"license\\\",\\\"href\\\":\\\"https://www.usgs.gov/core-science-systems/hdds/data-policy\\\",\\\"title\\\":\\\"Public\n        Domain\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/landsat-c2-l1\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"Landsat\n        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\n        Collection 2 Level-1 thumbnail\\\"},\\\"geoparquet-items\\\":{\\\"href\\\":\\\"abfs://items/landsat-c2-l1.parquet\\\",\\\"type\\\":\\\"application/x-parquet\\\",\\\"roles\\\":[\\\"stac-items\\\"],\\\"title\\\":\\\"GeoParquet\n        STAC items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        green (Landsat 1-3 Band B4)\\\",\\\"center_wavelength\\\":0.55,\\\"full_width_half_max\\\":0.1},{\\\"name\\\":\\\"B5\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Visible\n        red (Landsat 1-3 Band B5)\\\",\\\"center_wavelength\\\":0.65,\\\"full_width_half_max\\\":0.1},{\\\"name\\\":\\\"B6\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"Near\n        infrared (Landsat 1-3 Band B6)\\\",\\\"center_wavelength\\\":0.75,\\\"full_width_half_max\\\":0.1},{\\\"name\\\":\\\"B7\\\",\\\"common_name\\\":\\\"nir09\\\",\\\"description\\\":\\\"Near\n        infrared (Landsat 1-3 Band B7)\\\",\\\"center_wavelength\\\":0.95,\\\"full_width_half_max\\\":0.3},{\\\"name\\\":\\\"B1\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Visible\n        green (Landsat 4-5 Band B1)\\\",\\\"center_wavelength\\\":0.55,\\\"full_width_half_max\\\":0.1},{\\\"name\\\":\\\"B2\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Visible\n        red (Landsat 4-5 Band B2)\\\",\\\"center_wavelength\\\":0.65,\\\"full_width_half_max\\\":0.1},{\\\"name\\\":\\\"B3\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"Near\n        infrared (Landsat 4-5 Band B3)\\\",\\\"center_wavelength\\\":0.75,\\\"full_width_half_max\\\":0.1},{\\\"name\\\":\\\"B4\\\",\\\"common_name\\\":\\\"nir09\\\",\\\"description\\\":\\\"Near\n        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\n        Collection 2 Level-1 data, consisting of quantized and calibrated scaled Digital\n        Numbers (DN) representing the multispectral image data. These [Level-1](https://www.usgs.gov/landsat-missions/landsat-collection-2-level-1-data)\n        data can be [rescaled](https://www.usgs.gov/landsat-missions/using-usgs-landsat-level-1-data-product)\n        to top of atmosphere (TOA) reflectance and/or radiance. Thermal band data\n        can be rescaled to TOA brightness temperature.\\\\n\\\\nThis dataset represents\n        the global archive of Level-1 data from [Landsat Collection 2](https://www.usgs.gov/core-science-systems/nli/landsat/landsat-collection-2)\n        acquired by the [Multispectral Scanner System](https://landsat.gsfc.nasa.gov/multispectral-scanner-system/)\n        onboard Landsat 1 through Landsat 5 from July 7, 1972 to January 7, 2013.\n        Images are stored in [cloud-optimized GeoTIFF](https://www.cogeo.org/) format.\\\\n\\\",\\\"item_assets\\\":{\\\"red\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Red\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Green\n        Band\\\",\\\"eo:bands\\\":[{\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Visible\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Near\n        Infrared Band 0.8\\\",\\\"eo:bands\\\":[{\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"Near\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Near\n        Infrared Band 0.9\\\",\\\"eo:bands\\\":[{\\\"common_name\\\":\\\"nir09\\\",\\\"description\\\":\\\"Near\n        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\n        Metadata File (txt)\\\",\\\"description\\\":\\\"Collection 2 Level-1 Product Metadata\n        File (txt)\\\"},\\\"mtl.xml\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"Product\n        Metadata File (xml)\\\",\\\"description\\\":\\\"Collection 2 Level-1 Product Metadata\n        File (xml)\\\"},\\\"mtl.json\\\":{\\\"type\\\":\\\"application/json\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"Product\n        Metadata File (json)\\\",\\\"description\\\":\\\"Collection 2 Level-1 Product Metadata\n        File (json)\\\"},\\\"qa_pixel\\\":{\\\"type\\\":\\\"image/tiff; application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"cloud\\\"],\\\"title\\\":\\\"Pixel\n        Quality Assessment Band\\\",\\\"description\\\":\\\"Collection 2 Level-1 Pixel Quality\n        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\n        data\\\"},{\\\"name\\\":\\\"fill\\\",\\\"value\\\":1,\\\"description\\\":\\\"Fill data\\\"}],\\\"description\\\":\\\"Image\n        or fill data\\\"},{\\\"name\\\":\\\"cloud\\\",\\\"length\\\":1,\\\"offset\\\":3,\\\"classes\\\":[{\\\"name\\\":\\\"not_cloud\\\",\\\"value\\\":0,\\\"description\\\":\\\"Cloud\n        confidence is not high\\\"},{\\\"name\\\":\\\"cloud\\\",\\\"value\\\":1,\\\"description\\\":\\\"High\n        confidence cloud\\\"}],\\\"description\\\":\\\"Cloud mask\\\"},{\\\"name\\\":\\\"cloud_confidence\\\",\\\"length\\\":2,\\\"offset\\\":8,\\\"classes\\\":[{\\\"name\\\":\\\"not_set\\\",\\\"value\\\":0,\\\"description\\\":\\\"No\n        confidence level set\\\"},{\\\"name\\\":\\\"low\\\",\\\"value\\\":1,\\\"description\\\":\\\"Low\n        confidence cloud\\\"},{\\\"name\\\":\\\"reserved\\\",\\\"value\\\":2,\\\"description\\\":\\\"Reserved\n        - value not used\\\"},{\\\"name\\\":\\\"high\\\",\\\"value\\\":3,\\\"description\\\":\\\"High\n        confidence cloud\\\"}],\\\"description\\\":\\\"Cloud confidence levels\\\"}]},\\\"qa_radsat\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"saturation\\\"],\\\"title\\\":\\\"Radiometric\n        Saturation and Dropped Pixel Quality Assessment Band\\\",\\\"description\\\":\\\"Collection\n        2 Level-1 Radiometric Saturation and Dropped Pixel Quality Assessment Band\n        (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\n        1 not saturated\\\"},{\\\"name\\\":\\\"saturated\\\",\\\"value\\\":1,\\\"description\\\":\\\"Band\n        1 saturated\\\"}],\\\"description\\\":\\\"Band 1 radiometric saturation\\\"},{\\\"name\\\":\\\"band2\\\",\\\"length\\\":1,\\\"offset\\\":1,\\\"classes\\\":[{\\\"name\\\":\\\"not_saturated\\\",\\\"value\\\":0,\\\"description\\\":\\\"Band\n        2 not saturated\\\"},{\\\"name\\\":\\\"saturated\\\",\\\"value\\\":1,\\\"description\\\":\\\"Band\n        2 saturated\\\"}],\\\"description\\\":\\\"Band 2 radiometric saturation\\\"},{\\\"name\\\":\\\"band3\\\",\\\"length\\\":1,\\\"offset\\\":2,\\\"classes\\\":[{\\\"name\\\":\\\"not_saturated\\\",\\\"value\\\":0,\\\"description\\\":\\\"Band\n        3 not saturated\\\"},{\\\"name\\\":\\\"saturated\\\",\\\"value\\\":1,\\\"description\\\":\\\"Band\n        3 saturated\\\"}],\\\"description\\\":\\\"Band 3 radiometric saturation\\\"},{\\\"name\\\":\\\"band4\\\",\\\"length\\\":1,\\\"offset\\\":3,\\\"classes\\\":[{\\\"name\\\":\\\"not_saturated\\\",\\\"value\\\":0,\\\"description\\\":\\\"Band\n        4 not saturated\\\"},{\\\"name\\\":\\\"saturated\\\",\\\"value\\\":1,\\\"description\\\":\\\"Band\n        4 saturated\\\"}],\\\"description\\\":\\\"Band 4 radiometric saturation\\\"},{\\\"name\\\":\\\"band5\\\",\\\"length\\\":1,\\\"offset\\\":4,\\\"classes\\\":[{\\\"name\\\":\\\"not_saturated\\\",\\\"value\\\":0,\\\"description\\\":\\\"Band\n        5 not saturated\\\"},{\\\"name\\\":\\\"saturated\\\",\\\"value\\\":1,\\\"description\\\":\\\"Band\n        5 saturated\\\"}],\\\"description\\\":\\\"Band 5 radiometric saturation\\\"},{\\\"name\\\":\\\"band6\\\",\\\"length\\\":1,\\\"offset\\\":5,\\\"classes\\\":[{\\\"name\\\":\\\"not_saturated\\\",\\\"value\\\":0,\\\"description\\\":\\\"Band\n        6 not saturated\\\"},{\\\"name\\\":\\\"saturated\\\",\\\"value\\\":1,\\\"description\\\":\\\"Band\n        6 saturated\\\"}],\\\"description\\\":\\\"Band 6 radiometric saturation\\\"},{\\\"name\\\":\\\"band7\\\",\\\"length\\\":1,\\\"offset\\\":6,\\\"classes\\\":[{\\\"name\\\":\\\"not_saturated\\\",\\\"value\\\":0,\\\"description\\\":\\\"Band\n        7 not saturated\\\"},{\\\"name\\\":\\\"saturated\\\",\\\"value\\\":1,\\\"description\\\":\\\"Band\n        7 saturated\\\"}],\\\"description\\\":\\\"Band 7 radiometric saturation\\\"},{\\\"name\\\":\\\"dropped\\\",\\\"length\\\":1,\\\"offset\\\":9,\\\"classes\\\":[{\\\"name\\\":\\\"not_dropped\\\",\\\"value\\\":0,\\\"description\\\":\\\"Detector\n        has a value - pixel present\\\"},{\\\"name\\\":\\\"dropped\\\",\\\"value\\\":1,\\\"description\\\":\\\"Detector\n        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\n        Collection 2 Level-1 data from the Multispectral Scanner System (MSS) onboard\n        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\n        Legal Terms\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://gis.drcog.org/rdc/supplemental/lulc_pilot_report.zip\\\",\\\"type\\\":\\\"application/zip\\\",\\\"title\\\":\\\"Supplemental\n        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\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"Denver\n        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\n        LULC\\\"},\\\"geoparquet-items\\\":{\\\"href\\\":\\\"abfs://items/drcog-lulc.parquet\\\",\\\"type\\\":\\\"application/x-parquet\\\",\\\"roles\\\":[\\\"stac-items\\\"],\\\"title\\\":\\\"GeoParquet\n        STAC items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        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\n        Regional Council of Governments\\\",\\\"roles\\\":[\\\"producer\\\",\\\"licensor\\\"]},{\\\"url\\\":\\\"https://planetarycomputer.microsoft.com\\\",\\\"name\\\":\\\"Microsoft\\\",\\\"roles\\\":[\\\"processor\\\",\\\"host\\\"]}],\\\"summaries\\\":{\\\"mission\\\":[\\\"2018\n        DRCOG LULC pilot study covering 1,000 square miles\\\",\\\"2020 DRCOG LULC study\n        covering 6,000 square miles\\\"]},\\\"description\\\":\\\"The [Denver Regional Council\n        of Governments (DRCOG) Land Use/Land Cover (LULC)](https://drcog.org/services-and-resources/data-maps-and-modeling/regional-land-use-land-cover-project)\n        datasets are developed in partnership with the [Babbit Center for Land and\n        Water Policy](https://www.lincolninst.edu/our-work/babbitt-center-land-water-policy)\n        and the [Chesapeake Conservancy](https://www.chesapeakeconservancy.org/)'s\n        Conservation Innovation Center (CIC). DRCOG LULC includes 2018 data at 3.28ft\n        (1m) resolution covering 1,000 square miles and 2020 data at 1ft resolution\n        covering 6,000 square miles of the Denver, Colorado region. The classification\n        data is derived from the USDA's 1m National Agricultural Imagery Program (NAIP)\n        aerial imagery and leaf-off aerial ortho-imagery captured as part of the [Denver\n        Regional Aerial Photography Project](https://drcog.org/services-and-resources/data-maps-and-modeling/denver-regional-aerial-photography-project)\n        (6in resolution everywhere except the mountainous regions to the west, which\n        are 1ft resolution).\\\",\\\"item_assets\\\":{\\\"data\\\":{\\\"type\\\":\\\"image/tiff; application=geotiff;\n        profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"DRCOG LULC\\\",\\\"description\\\":\\\"Denver\n        Regional Council of Governments (DRCOG) Land Use Land Cover (LULC) Classifications\\\",\\\"raster:bands\\\":[{\\\"unit\\\":\\\"usft\\\",\\\"sampling\\\":\\\"area\\\",\\\"data_type\\\":\\\"uint8\\\",\\\"description\\\":\\\"Classification\n        values\\\"}],\\\"classification:classes\\\":[{\\\"value\\\":1,\\\"color_hint\\\":\\\"FF0000\\\",\\\"description\\\":\\\"Structures\\\"},{\\\"value\\\":2,\\\"color_hint\\\":\\\"B2B2B2\\\",\\\"description\\\":\\\"Impervious\n        Surfaces\\\"},{\\\"value\\\":3,\\\"color_hint\\\":\\\"00A9E6\\\",\\\"description\\\":\\\"Water\\\"},{\\\"value\\\":4,\\\"color_hint\\\":\\\"C7D79E\\\",\\\"description\\\":\\\"Prairie/Grassland/Natural\n        Ground Cover\\\"},{\\\"value\\\":5,\\\"color_hint\\\":\\\"267300\\\",\\\"description\\\":\\\"Tree\n        Canopy\\\"},{\\\"value\\\":6,\\\"color_hint\\\":\\\"70A800\\\",\\\"description\\\":\\\"Turf/Irrigated\n        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\n        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\n        Guide\\\"},{\\\"rel\\\":\\\"license\\\",\\\"href\\\":\\\"https://www.chesapeakeconservancy.org/conservation-innovation-center/precision-conservation/chesapeake-bay-program/\\\",\\\"type\\\":\\\"text/html\\\",\\\"title\\\":\\\"Data\n        Availability Description\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/chesapeake-lc-7\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"Chesapeake\n        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\n        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\n        Cover\\\",\\\"Chesapeake Bay Watershed\\\",\\\"Chesapeake Conservancy\\\"],\\\"providers\\\":[{\\\"url\\\":\\\"https://www.chesapeakeconservancy.org/conservation-innovation-center/high-resolution-data/land-cover-data-project/\\\",\\\"name\\\":\\\"Chesapeake\n        Conservancy Conservation Innovation Center\\\",\\\"roles\\\":[\\\"producer\\\",\\\"processor\\\",\\\"licensor\\\"]},{\\\"url\\\":\\\"https://planetarycomputer.microsoft.com\\\",\\\"name\\\":\\\"Microsoft\\\",\\\"roles\\\":[\\\"host\\\"]}],\\\"description\\\":\\\"A\n        high-resolution 1-meter [land cover data product](https://www.chesapeakeconservancy.org/conservation-innovation-center/high-resolution-data/land-cover-data-project/)\n        in raster format for the entire Chesapeake Bay watershed based on 2013-2014\n        imagery from the National Agriculture Imagery Program (NAIP). The product\n        area encompasses over 250,000 square kilometers in New York, Pennsylvania,\n        Maryland, Delaware, West Virginia, Virginia, and the District of Columbia.\n        The dataset was created by the [Chesapeake Conservancy](https://www.chesapeakeconservancy.org/)\n        [Conservation Innovation Center](https://www.chesapeakeconservancy.org/conservation-innovation-center/)\n        for the [Chesapeake Bay Program](https://www.chesapeakebay.net/), which is\n        a regional partnership of EPA, other federal, state, and local agencies and\n        governments, nonprofits, and academic institutions, that leads and directs\n        Chesapeake Bay restoration efforts. \\\\n\\\\nThe dataset is composed of a uniform\n        set of 7 land cover classes. Additional information is available in a [User\n        Guide](https://www.chesapeakeconservancy.org/wp-content/uploads/2020/06/Chesapeake_Conservancy_LandCover101Guide_June2020.pdf).\n        Images are stored in [cloud-optimized GeoTIFF](https://www.cogeo.org/) format.\\\",\\\"item_assets\\\":{\\\"data\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Land\n        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\n        Canopy and Shrubs\\\"},{\\\"value\\\":3,\\\"color-hint\\\":\\\"A3FF73\\\",\\\"description\\\":\\\"Low\n        Vegetation\\\"},{\\\"value\\\":4,\\\"color-hint\\\":\\\"FFAA00\\\",\\\"description\\\":\\\"Barren\\\"},{\\\"value\\\":5,\\\"color-hint\\\":\\\"9C9C9C\\\",\\\"description\\\":\\\"Impervious\n        Surfaces\\\"},{\\\"value\\\":6,\\\"color-hint\\\":\\\"000000\\\",\\\"description\\\":\\\"Impervious\n        Roads\\\"},{\\\"value\\\":7,\\\"color-hint\\\":\\\"C500FF\\\",\\\"description\\\":\\\"Aberdeen\n        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\n        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\n        Guide\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://www.chesapeakeconservancy.org/wp-content/uploads/2020/03/LC_Class_Descriptions.pdf\\\",\\\"type\\\":\\\"application/pdf\\\",\\\"title\\\":\\\"Class\n        Descriptions\\\"},{\\\"rel\\\":\\\"license\\\",\\\"href\\\":\\\"https://www.chesapeakeconservancy.org/conservation-innovation-center/precision-conservation/chesapeake-bay-program/\\\",\\\"type\\\":\\\"text/html\\\",\\\"title\\\":\\\"Data\n        Availability Description\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/chesapeake-lc-13\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"Chesapeake\n        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\n        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\n        Cover\\\",\\\"Chesapeake Bay Watershed\\\",\\\"Chesapeake Conservancy\\\"],\\\"providers\\\":[{\\\"url\\\":\\\"https://www.chesapeakeconservancy.org/conservation-innovation-center/high-resolution-data/land-cover-data-project/\\\",\\\"name\\\":\\\"Chesapeake\n        Conservancy Conservation Innovation Center\\\",\\\"roles\\\":[\\\"producer\\\",\\\"processor\\\",\\\"licensor\\\"]},{\\\"url\\\":\\\"https://planetarycomputer.microsoft.com\\\",\\\"name\\\":\\\"Microsoft\\\",\\\"roles\\\":[\\\"host\\\"]}],\\\"description\\\":\\\"A\n        high-resolution 1-meter [land cover data product](https://www.chesapeakeconservancy.org/conservation-innovation-center/high-resolution-data/land-cover-data-project/)\n        in raster format for the entire Chesapeake Bay watershed based on 2013-2014\n        imagery from the National Agriculture Imagery Program (NAIP). The product\n        area encompasses over 250,000 square kilometers in New York, Pennsylvania,\n        Maryland, Delaware, West Virginia, Virginia, and the District of Columbia.\n        The dataset was created by the [Chesapeake Conservancy](https://www.chesapeakeconservancy.org/)\n        [Conservation Innovation Center](https://www.chesapeakeconservancy.org/conservation-innovation-center/)\n        for the [Chesapeake Bay Program](https://www.chesapeakebay.net/), which is\n        a regional partnership of EPA, other federal, state, and local agencies and\n        governments, nonprofits, and academic institutions, that leads and directs\n        Chesapeake Bay restoration efforts. \\\\n\\\\nThe dataset is composed of 13 land\n        cover classes, although not all classes are used in all areas. Additional\n        information is available in a [User Guide](https://www.chesapeakeconservancy.org/wp-content/uploads/2020/06/Chesapeake_Conservancy_LandCover101Guide_June2020.pdf)\n        and [Class Description](https://www.chesapeakeconservancy.org/wp-content/uploads/2020/03/LC_Class_Descriptions.pdf)\n        document. Images are stored in [cloud-optimized GeoTIFF](https://www.cogeo.org/)\n        format.\\\",\\\"item_assets\\\":{\\\"data\\\":{\\\"type\\\":\\\"image/tiff; application=geotiff;\n        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\n        Wetlands\\\"},{\\\"value\\\":3,\\\"color-hint\\\":\\\"267300\\\",\\\"description\\\":\\\"Tree\n        Canopy\\\"},{\\\"value\\\":4,\\\"color-hint\\\":\\\"4CE600\\\",\\\"description\\\":\\\"Shrubland\\\"},{\\\"value\\\":5,\\\"color-hint\\\":\\\"A3FF73\\\",\\\"description\\\":\\\"Low\n        Vegetation\\\"},{\\\"value\\\":6,\\\"color-hint\\\":\\\"FFAA00\\\",\\\"description\\\":\\\"Barren\\\"},{\\\"value\\\":7,\\\"color-hint\\\":\\\"FF0000\\\",\\\"description\\\":\\\"Structures\\\"},{\\\"value\\\":8,\\\"color-hint\\\":\\\"9C9C9C\\\",\\\"description\\\":\\\"Impervious\n        Surfaces\\\"},{\\\"value\\\":9,\\\"color-hint\\\":\\\"000000\\\",\\\"description\\\":\\\"Impervious\n        Roads\\\"},{\\\"value\\\":10,\\\"color-hint\\\":\\\"737300\\\",\\\"description\\\":\\\"Tree Canopy\n        over Structures\\\"},{\\\"value\\\":11,\\\"color-hint\\\":\\\"E6E600\\\",\\\"description\\\":\\\"Tree\n        Canopy over Impervious Surfaces\\\"},{\\\"value\\\":12,\\\"color-hint\\\":\\\"FFFF73\\\",\\\"description\\\":\\\"Tree\n        Canopy over impervious Roads\\\"},{\\\"value\\\":13,\\\"color-hint\\\":\\\"C500FF\\\",\\\"description\\\":\\\"Aberdeen\n        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\n        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\n        Descriptions\\\"},{\\\"rel\\\":\\\"license\\\",\\\"href\\\":\\\"https://www.chesapeakeconservancy.org/conservation-innovation-center/precision-conservation/chesapeake-bay-program/\\\",\\\"type\\\":\\\"text/html\\\",\\\"title\\\":\\\"Data\n        Availability Description\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/chesapeake-lu\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"Chesapeake\n        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\n        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\n        Use\\\",\\\"Chesapeake Bay Watershed\\\",\\\"Chesapeake Conservancy\\\"],\\\"providers\\\":[{\\\"url\\\":\\\"https://www.chesapeakeconservancy.org/conservation-innovation-center/high-resolution-data/land-use-data-project/\\\",\\\"name\\\":\\\"Chesapeake\n        Conservancy Conservation Innovation Center\\\",\\\"roles\\\":[\\\"producer\\\",\\\"processor\\\",\\\"licensor\\\"]},{\\\"url\\\":\\\"https://planetarycomputer.microsoft.com\\\",\\\"name\\\":\\\"Microsoft\\\",\\\"roles\\\":[\\\"host\\\"]}],\\\"description\\\":\\\"A\n        high-resolution 1-meter [land use data product](https://www.chesapeakeconservancy.org/conservation-innovation-center/high-resolution-data/land-use-data-project/)\n        in raster format for the entire Chesapeake Bay watershed. The dataset was\n        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/)\n        using 13 ancillary datasets including data on zoning, land use, parcel boundaries,\n        landfills, floodplains, and wetlands. The product area encompasses over 250,000\n        square kilometers in New York, Pennsylvania, Maryland, Delaware, West Virginia,\n        Virginia, and the District of Columbia. The dataset was created by the [Chesapeake\n        Conservancy](https://www.chesapeakeconservancy.org/) [Conservation Innovation\n        Center](https://www.chesapeakeconservancy.org/conservation-innovation-center/)\n        for the [Chesapeake Bay Program](https://www.chesapeakebay.net/), which is\n        a regional partnership of EPA, other federal, state, and local agencies and\n        governments, nonprofits, and academic institutions that leads and directs\n        Chesapeake Bay restoration efforts.\\\\n\\\\nThe dataset is composed of 17 land\n        use classes in Virginia and 16 classes in all other jurisdictions. Additional\n        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)\n        document. Images are stored in [cloud-optimized GeoTIFF](https://www.cogeo.org/)\n        format.\\\",\\\"item_assets\\\":{\\\"data\\\":{\\\"type\\\":\\\"image/tiff; application=geotiff;\n        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\n        Roads\\\"},{\\\"value\\\":2,\\\"color-hint\\\":\\\"730000\\\",\\\"description\\\":\\\"Impervious\n        Non-Roads\\\"},{\\\"value\\\":3,\\\"color-hint\\\":\\\"55FF00\\\",\\\"description\\\":\\\"Tree\n        Canopy over Impervious Surfaces\\\"},{\\\"value\\\":4,\\\"color-hint\\\":\\\"0070FF\\\",\\\"description\\\":\\\"Water\\\"},{\\\"value\\\":5,\\\"color-hint\\\":\\\"00FFC5\\\",\\\"description\\\":\\\"Tidal\n        Wetlands\\\"},{\\\"value\\\":6,\\\"color-hint\\\":\\\"00E6A9\\\",\\\"description\\\":\\\"Floodplain\n        Wetlands\\\"},{\\\"value\\\":7,\\\"color-hint\\\":\\\"00E6A9\\\",\\\"description\\\":\\\"Other\n        Wetlands\\\"},{\\\"value\\\":8,\\\"color-hint\\\":\\\"267300\\\",\\\"description\\\":\\\"Forest\\\"},{\\\"value\\\":9,\\\"color-hint\\\":\\\"AAFF00\\\",\\\"description\\\":\\\"Tree\n        Canopy over Turf Grass\\\"},{\\\"value\\\":10,\\\"color-hint\\\":\\\"A87000\\\",\\\"description\\\":\\\"Mixed\n        Open\\\"},{\\\"value\\\":11,\\\"color-hint\\\":\\\"FFBEE8\\\",\\\"description\\\":\\\"Fractional\n        Turf (small)\\\"},{\\\"value\\\":12,\\\"color-hint\\\":\\\"FFBEE8\\\",\\\"description\\\":\\\"Fractional\n        Turf (medium)\\\"},{\\\"value\\\":13,\\\"color-hint\\\":\\\"FFBEE8\\\",\\\"description\\\":\\\"Fractional\n        Turf (large)\\\"},{\\\"value\\\":14,\\\"color-hint\\\":\\\"C500FF\\\",\\\"description\\\":\\\"Fractional\n        Impervious\\\"},{\\\"value\\\":15,\\\"color-hint\\\":\\\"FFFF73\\\",\\\"description\\\":\\\"Turf\n        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\n        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\n        Dataset Sharing Policy\\\"},{\\\"rel\\\":\\\"about\\\",\\\"href\\\":\\\"https://mrms.nssl.noaa.gov\\\",\\\"type\\\":\\\"text/html\\\",\\\"title\\\":\\\"MRMS\n        Homepage\\\"},{\\\"rel\\\":\\\"about\\\",\\\"href\\\":\\\"https://vlab.noaa.gov/web/wdtd/-/multi-sensor-qpe-1?selectedFolder=9234881\\\",\\\"type\\\":\\\"text/html\\\",\\\"title\\\":\\\"MRMS\n        QPE Technical Product Guide\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/noaa-mrms-qpe-1h-pass1\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"NOAA\n        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\n        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\n        STAC items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        States\\\",\\\"Guam\\\",\\\"Caribbean\\\"],\\\"providers\\\":[{\\\"url\\\":\\\"https://www.nssl.noaa.gov/projects/mrms\\\",\\\"name\\\":\\\"NOAA\n        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\n        [Multi-Radar Multi-Sensor (MRMS) Quantitative Precipitation Estimation (QPE)](https://www.nssl.noaa.gov/projects/mrms/)\n        products are seamless 1-km mosaics of precipitation accumulation covering\n        the continental United States, Alaska, Hawaii, the Caribbean, and Guam. The\n        products are automatically generated through integration of data from multiple\n        radars and radar networks, surface and satellite observations, numerical weather\n        prediction (NWP) models, and climatology. The products are updated hourly\n        at the top of the hour.\\\\n\\\\nMRMS QPE is available as a \\\\\\\"Pass 1\\\\\\\" or\n        \\\\\\\"Pass 2\\\\\\\" product. The Pass 1 product is available with a 60-minute latency\n        and includes 60-65% of gauges. The Pass 2 product has a higher latency of\n        120 minutes, but includes 99% of gauges. The Pass 1 and Pass 2 products are\n        broken into 1-, 3-, 6-, 12-, 24-, 48-, and 72-hour accumulation sub-products.\\\\n\\\\nThis\n        Collection contains the **1-Hour Pass 1** sub-product, i.e., 1-hour cumulative\n        precipitation accumulation with a 1-hour latency. The data are available in\n        [Cloud Optimized GeoTIFF](https://www.cogeo.org/) format as well as the original\n        source GRIB2 format files. The GRIB2 files are delivered to Azure as part\n        of the [NOAA Open Data Dissemination (NODD) Program](https://www.noaa.gov/information-technology/open-data-dissemination).\\\\n\\\",\\\"item_assets\\\":{\\\"cog\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Processed\n        Cloud Optimized GeoTIFF file\\\",\\\"raster:bands\\\":[{\\\"unit\\\":\\\"mm\\\",\\\"data_type\\\":\\\"float64\\\",\\\"spatial_resolution\\\":1000}]},\\\"grib2\\\":{\\\"type\\\":\\\"application/wmo-GRIB2\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Original\n        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\n        multi-sensor cumulative precipation estimate for the past hour with a 1-hour\n        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\n        Dataset Sharing Policy\\\"},{\\\"rel\\\":\\\"about\\\",\\\"href\\\":\\\"https://mrms.nssl.noaa.gov\\\",\\\"type\\\":\\\"text/html\\\",\\\"title\\\":\\\"MRMS\n        Homepage\\\"},{\\\"rel\\\":\\\"about\\\",\\\"href\\\":\\\"https://vlab.noaa.gov/web/wdtd/-/multi-sensor-qpe-1?selectedFolder=9234881\\\",\\\"type\\\":\\\"text/html\\\",\\\"title\\\":\\\"MRMS\n        QPE Technical Product Guide\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/noaa-mrms-qpe-1h-pass2\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"NOAA\n        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\n        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\n        STAC items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        States\\\",\\\"Guam\\\",\\\"Caribbean\\\"],\\\"providers\\\":[{\\\"url\\\":\\\"https://www.nssl.noaa.gov/projects/mrms\\\",\\\"name\\\":\\\"NOAA\n        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\n        [Multi-Radar Multi-Sensor (MRMS) Quantitative Precipitation Estimation (QPE)](https://www.nssl.noaa.gov/projects/mrms/)\n        products are seamless 1-km mosaics of precipitation accumulation covering\n        the continental United States, Alaska, Hawaii, the Caribbean, and Guam. The\n        products are automatically generated through integration of data from multiple\n        radars and radar networks, surface and satellite observations, numerical weather\n        prediction (NWP) models, and climatology. The products are updated hourly\n        at the top of the hour.\\\\n\\\\nMRMS QPE is available as a \\\\\\\"Pass 1\\\\\\\" or\n        \\\\\\\"Pass 2\\\\\\\" product. The Pass 1 product is available with a 60-minute latency\n        and includes 60-65% of gauges. The Pass 2 product has a higher latency of\n        120 minutes, but includes 99% of gauges. The Pass 1 and Pass 2 products are\n        broken into 1-, 3-, 6-, 12-, 24-, 48-, and 72-hour accumulation sub-products.\\\\n\\\\nThis\n        Collection contains the **1-Hour Pass 2** sub-product, i.e., 1-hour cumulative\n        precipitation accumulation with a 2-hour latency. The data are available in\n        [Cloud Optimized GeoTIFF](https://www.cogeo.org/) format as well as the original\n        source GRIB2 format files. The GRIB2 files are delivered to Azure as part\n        of the [NOAA Open Data Dissemination (NODD) Program](https://www.noaa.gov/information-technology/open-data-dissemination).\\\\n\\\",\\\"item_assets\\\":{\\\"cog\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Processed\n        Cloud Optimized GeoTIFF file\\\",\\\"raster:bands\\\":[{\\\"unit\\\":\\\"mm\\\",\\\"data_type\\\":\\\"float64\\\",\\\"spatial_resolution\\\":1000}]},\\\"grib2\\\":{\\\"type\\\":\\\"application/wmo-GRIB2\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Original\n        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\n        multi-sensor cumulative precipation estimate for the past hour with a 2-hour\n        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\n        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\n        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\n        Landing Page\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/noaa-nclimgrid-monthly\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"Monthly\n        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\n        NOAA NClimGrid Thumbnail\\\"},\\\"geoparquet-items\\\":{\\\"href\\\":\\\"abfs://items/noaa-nclimgrid-monthly.parquet\\\",\\\"type\\\":\\\"application/x-parquet\\\",\\\"roles\\\":[\\\"stac-items\\\"],\\\"title\\\":\\\"GeoParquet\n        STAC items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        States\\\",\\\"NOAA\\\",\\\"NClimGrid\\\",\\\"Climate\\\",\\\"Precipitation\\\",\\\"Temperature\\\"],\\\"providers\\\":[{\\\"url\\\":\\\"https://www.ncei.noaa.gov/\\\",\\\"name\\\":\\\"NOAA\n        National Centers for Environmental Information\\\",\\\"roles\\\":[\\\"producer\\\",\\\"licensor\\\"]},{\\\"url\\\":\\\"https://planetarycomputer.microsoft.com\\\",\\\"name\\\":\\\"Microsoft\\\",\\\"roles\\\":[\\\"processor\\\",\\\"host\\\"]}],\\\"description\\\":\\\"The\n        [NOAA U.S. Climate Gridded Dataset (NClimGrid)](https://www.ncei.noaa.gov/access/metadata/landing-page/bin/iso?id=gov.noaa.ncdc:C00332)\n        consists of four climate variables derived from the [Global Historical Climatology\n        Network daily (GHCNd)](https://www.ncei.noaa.gov/products/land-based-station/global-historical-climatology-network-daily)\n        dataset: maximum temperature, minimum temperature, average temperature, and\n        precipitation. The data is provided in 1/24 degree lat/lon (nominal 5x5 kilometer)\n        grids for the Continental United States (CONUS). \\\\n\\\\nNClimGrid data is available\n        in monthly and daily temporal intervals, with the daily data further differentiated\n        as \\\\\\\"prelim\\\\\\\" (preliminary) or \\\\\\\"scaled\\\\\\\". Preliminary daily data\n        is available within approximately three days of collection. Once a calendar\n        month of preliminary daily data has been collected, it is scaled to match\n        the corresponding monthly value. Monthly data is available from 1895 to the\n        present. Daily preliminary and daily scaled data is available from 1951 to\n        the present. \\\\n\\\\nThis Collection contains **Monthly** data. See the journal\n        publication [\\\\\\\"Improved Historical Temperature and Precipitation Time Series\n        for U.S. Climate Divisions\\\\\\\"](https://journals.ametsoc.org/view/journals/apme/53/5/jamc-d-13-0248.1.xml)\n        for more information about monthly gridded data.\\\\n\\\\nUsers of all NClimGrid\n        data product should be aware that [NOAA advertises](https://www.ncei.noaa.gov/access/metadata/landing-page/bin/iso?id=gov.noaa.ncdc:C00332)\n        that:\\\\n>\\\\\\\"On an annual basis, approximately one year of 'final' NClimGrid\n        data is submitted to replace the initially supplied 'preliminary' data for\n        the same time period. Users should be sure to ascertain which level of data\n        is required for their research.\\\\\\\"\\\\n\\\\nThe source NetCDF files are delivered\n        to Azure as part of the [NOAA Open Data Dissemination (NODD) Program](https://www.noaa.gov/information-technology/open-data-dissemination).\\\\n\\\\n*Note*:\n        The Planetary Computer currently has STAC metadata for just the monthly collection.\n        We'll have STAC metadata for daily data in our next release. In the meantime,\n        you can access the daily NetCDF data directly from Blob Storage using the\n        storage container at `https://nclimgridwesteurope.blob.core.windows.net/nclimgrid`.\n        See https://planetarycomputer.microsoft.com/docs/concepts/data-catalog/#access-patterns\n        for more.*\\\\n\\\",\\\"item_assets\\\":{\\\"prcp\\\":{\\\"type\\\":\\\"image/tiff; application=geotiff;\n        profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Monthly Precipitation\n        (mm)\\\",\\\"raster:bands\\\":[{\\\"unit\\\":\\\"mm\\\",\\\"nodata\\\":\\\"nan\\\",\\\"data_type\\\":\\\"float32\\\",\\\"spatial_resolution\\\":5000}]},\\\"tavg\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Monthly\n        Average Temperature (degree Celsius)\\\",\\\"raster:bands\\\":[{\\\"unit\\\":\\\"degree\n        Celsius\\\",\\\"nodata\\\":\\\"nan\\\",\\\"data_type\\\":\\\"float32\\\",\\\"spatial_resolution\\\":5000}]},\\\"tmax\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Monthly\n        Maximmum Temperature (degree Celsius)\\\",\\\"raster:bands\\\":[{\\\"unit\\\":\\\"degree\n        Celsius\\\",\\\"nodata\\\":\\\"nan\\\",\\\"data_type\\\":\\\"float32\\\",\\\"spatial_resolution\\\":5000}]},\\\"tmin\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Monthly\n        Minimum Temperature (degree Celsius)\\\",\\\"raster:bands\\\":[{\\\"unit\\\":\\\"degree\n        Celsius\\\",\\\"nodata\\\":\\\"nan\\\",\\\"data_type\\\":\\\"float32\\\",\\\"spatial_resolution\\\":5000}]}},\\\"sci:citation\\\":\\\"Vose,\n        Russell S., Applequist, Scott, Squires, Mike, Durre, Imke, Menne, Matthew\n        J., Williams, Claude N. Jr., Fenimore, Chris, Gleason, Karin, and Arndt, Derek\n        (2014): NOAA Monthly U.S. Climate Gridded Dataset (NClimGrid), Version 1.\n        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,\n        R. S., Applequist, S., Squires, M., Durre, I., Menne, M. J., Williams, C.\n        N., Jr., Fenimore, C., Gleason, K., & Arndt, D. (2014). Improved Historical\n        Temperature and Precipitation Time Series for U.S. Climate Divisions, Journal\n        of Applied Meteorology and Climatology, 53(5), 1232-1251.\\\"}],\\\"msft:storage_account\\\":\\\"nclimgridwesteurope\\\",\\\"msft:short_description\\\":\\\"Gridded\n        surface observations of monthly temperature and precipitation for the continental\n        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\n        Landing Page\\\"},{\\\"rel\\\":\\\"license\\\",\\\"href\\\":\\\"https://www.nass.usda.gov/Research_and_Science/Cropland/sarsfaqs2.php#Section3_5.0\\\",\\\"title\\\":\\\"Redistribution\n        information\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/usda-cdl\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"USDA\n        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\n        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\n        States\\\",\\\"Land Cover\\\",\\\"Land Use\\\",\\\"Agriculture\\\"],\\\"providers\\\":[{\\\"url\\\":\\\"https://www.nass.usda.gov/\\\",\\\"name\\\":\\\"United\n        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\n        Cropland Data Layer (CDL) is a product of the USDA National Agricultural Statistics\n        Service (NASS) with the mission \\\\\\\"to provide timely, accurate and useful\n        statistics in service to U.S. agriculture\\\\\\\" (Johnson and Mueller, 2010,\n        p. 1204). The CDL is a crop-specific land cover classification product of\n        more than 100 crop categories grown in the United States. CDLs are derived\n        using a supervised land cover classification of satellite imagery. The supervised\n        classification relies on first manually identifying pixels within certain\n        images, often called training sites, which represent the same crop or land\n        cover type. Using these training sites, a spectral signature is developed\n        for each crop type that is then used by the analysis software to identify\n        all other pixels in the satellite image representing the same crop. Using\n        this method, a new CDL is compiled annually and released to the public a few\n        months after the end of the growing season.\\\\n\\\\nThis collection includes\n        Cropland, Confidence, Cultivated, and Frequency products.\\\\n\\\\n- Cropland:\n        Crop-specific land cover data created annually. There are currently four individual\n        crop frequency data layers that represent four major crops: corn, cotton,\n        soybeans, and wheat.\\\\n- Confidence: The predicted confidence associated with\n        an output pixel. A value of zero indicates low confidence, while a value of\n        100 indicates high confidence.\\\\n- Cultivated: cultivated and non-cultivated\n        land cover for CONUS based on land cover information derived from the 2017\n        through 2021 Cropland products.\\\\n- Frequency: crop specific planting frequency\n        based on land cover information derived from the 2008 through 2021 Cropland\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"raster:bands\\\":[{\\\"nodata\\\":255,\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":30}]},\\\"wheat\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"raster:bands\\\":[{\\\"nodata\\\":255,\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":30}]},\\\"cotton\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"raster:bands\\\":[{\\\"nodata\\\":255,\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":30}]},\\\"cropland\\\":{\\\"type\\\":\\\"image/tiff;\n        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\n        Corn\\\"},{\\\"value\\\":13,\\\"color_hint\\\":\\\"DDA40A\\\",\\\"description\\\":\\\"Pop or Orn\n        Corn\\\"},{\\\"value\\\":14,\\\"color_hint\\\":\\\"7DD2FF\\\",\\\"description\\\":\\\"Mint\\\"},{\\\"value\\\":21,\\\"color_hint\\\":\\\"E1007B\\\",\\\"description\\\":\\\"Barley\\\"},{\\\"value\\\":22,\\\"color_hint\\\":\\\"886153\\\",\\\"description\\\":\\\"Durum\n        Wheat\\\"},{\\\"value\\\":23,\\\"color_hint\\\":\\\"D7B56B\\\",\\\"description\\\":\\\"Spring\n        Wheat\\\"},{\\\"value\\\":24,\\\"color_hint\\\":\\\"A46F00\\\",\\\"description\\\":\\\"Winter\n        Wheat\\\"},{\\\"value\\\":25,\\\"color_hint\\\":\\\"D59EBB\\\",\\\"description\\\":\\\"Other Small\n        Grains\\\"},{\\\"value\\\":26,\\\"color_hint\\\":\\\"6F6F00\\\",\\\"description\\\":\\\"Winter\n        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\n        Seed\\\"},{\\\"value\\\":35,\\\"color_hint\\\":\\\"00AE4A\\\",\\\"description\\\":\\\"Mustard\\\"},{\\\"value\\\":36,\\\"color_hint\\\":\\\"FFA4E1\\\",\\\"description\\\":\\\"Alfalfa\\\"},{\\\"value\\\":37,\\\"color_hint\\\":\\\"A4F18B\\\",\\\"description\\\":\\\"Other\n        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\n        Beans\\\"},{\\\"value\\\":43,\\\"color_hint\\\":\\\"6F2500\\\",\\\"description\\\":\\\"Potatoes\\\"},{\\\"value\\\":44,\\\"color_hint\\\":\\\"00AE4A\\\",\\\"description\\\":\\\"Other\n        Crops\\\"},{\\\"value\\\":45,\\\"color_hint\\\":\\\"B07DFF\\\",\\\"description\\\":\\\"Sugarcane\\\"},{\\\"value\\\":46,\\\"color_hint\\\":\\\"6F2500\\\",\\\"description\\\":\\\"Sweet\n        Potatoes\\\"},{\\\"value\\\":47,\\\"color_hint\\\":\\\"FF6666\\\",\\\"description\\\":\\\"Misc.\n        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\n        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\n        Seed\\\"},{\\\"value\\\":60,\\\"color_hint\\\":\\\"00AE4A\\\",\\\"description\\\":\\\"Switchgrass\\\"},{\\\"value\\\":61,\\\"color_hint\\\":\\\"BEBE77\\\",\\\"description\\\":\\\"Fallow/Idle\n        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\n        Trees\\\"},{\\\"value\\\":71,\\\"color_hint\\\":\\\"B09A6F\\\",\\\"description\\\":\\\"Other Tree\n        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\n        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\n        Water\\\"},{\\\"value\\\":112,\\\"color_hint\\\":\\\"D2E1F8\\\",\\\"description\\\":\\\"Perennial\n        Ice/Snow\\\"},{\\\"value\\\":121,\\\"color_hint\\\":\\\"9A9A9A\\\",\\\"description\\\":\\\"Developed/Open\n        Space\\\"},{\\\"value\\\":122,\\\"color_hint\\\":\\\"9A9A9A\\\",\\\"description\\\":\\\"Developed/Low\n        Intensity\\\"},{\\\"value\\\":123,\\\"color_hint\\\":\\\"9A9A9A\\\",\\\"description\\\":\\\"Developed/Med\n        Intensity\\\"},{\\\"value\\\":124,\\\"color_hint\\\":\\\"9A9A9A\\\",\\\"description\\\":\\\"Developed/High\n        Intensity\\\"},{\\\"value\\\":131,\\\"color_hint\\\":\\\"CCBEA2\\\",\\\"description\\\":\\\"Barren\\\"},{\\\"value\\\":141,\\\"color_hint\\\":\\\"92CC92\\\",\\\"description\\\":\\\"Deciduous\n        Forest\\\"},{\\\"value\\\":142,\\\"color_hint\\\":\\\"92CC92\\\",\\\"description\\\":\\\"Evergreen\n        Forest\\\"},{\\\"value\\\":143,\\\"color_hint\\\":\\\"92CC92\\\",\\\"description\\\":\\\"Mixed\n        Forest\\\"},{\\\"value\\\":152,\\\"color_hint\\\":\\\"C5D59E\\\",\\\"description\\\":\\\"Shrubland\\\"},{\\\"value\\\":176,\\\"color_hint\\\":\\\"E8FFBE\\\",\\\"description\\\":\\\"Grassland/Pasture\\\"},{\\\"value\\\":190,\\\"color_hint\\\":\\\"7DB0B0\\\",\\\"description\\\":\\\"Woody\n        Wetlands\\\"},{\\\"value\\\":195,\\\"color_hint\\\":\\\"7DB0B0\\\",\\\"description\\\":\\\"Herbaceous\n        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\n        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\n        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\n        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\n        Wheat/Sorghum\\\"},{\\\"value\\\":235,\\\"color_hint\\\":\\\"FF9E0A\\\",\\\"description\\\":\\\"Barley/Sorghum\\\"},{\\\"value\\\":236,\\\"color_hint\\\":\\\"A46F00\\\",\\\"description\\\":\\\"Winter\n        Wheat/Sorghum\\\"},{\\\"value\\\":237,\\\"color_hint\\\":\\\"FFD200\\\",\\\"description\\\":\\\"Barley/Corn\\\"},{\\\"value\\\":238,\\\"color_hint\\\":\\\"A46F00\\\",\\\"description\\\":\\\"Winter\n        Wheat/Cotton\\\"},{\\\"value\\\":239,\\\"color_hint\\\":\\\"256F00\\\",\\\"description\\\":\\\"Soybeans/Cotton\\\"},{\\\"value\\\":240,\\\"color_hint\\\":\\\"256F00\\\",\\\"description\\\":\\\"Soybeans/Oats\n        \\\"},{\\\"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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"raster:bands\\\":[{\\\"nodata\\\":255,\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":30}]},\\\"confidence\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":30}]},\\\"cultivated\\\":{\\\"type\\\":\\\"image/tiff;\n        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\n        UDA Cropland Data Layer is an annual raster, geo-referenced, crop-specific\n        land cover data layer produced using satellite imagery and extensive agricultural\n        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\n        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:\n        An End-to-End Platform for Low-Cost, Hyperlocal Environment Sensing in Cities\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/eclipse\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"Urban\n        Innovation Eclipse Sensor Data\\\",\\\"assets\\\":{\\\"data\\\":{\\\"href\\\":\\\"abfs://eclipse/Chicago/\\\",\\\"type\\\":\\\"application/x-parquet\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Full\n        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\n        Innovation Chicago Sensors\\\"},\\\"geoparquet-items\\\":{\\\"href\\\":\\\"abfs://items/eclipse.parquet\\\",\\\"type\\\":\\\"application/x-parquet\\\",\\\"roles\\\":[\\\"stac-items\\\"],\\\"title\\\":\\\"GeoParquet\n        STAC items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        pollution\\\"],\\\"providers\\\":[{\\\"url\\\":\\\"https://www.microsoft.com/en-us/research/urban-innovation-research/\\\",\\\"name\\\":\\\"Urban\n        Innovation\\\",\\\"roles\\\":[\\\"producer\\\",\\\"licensor\\\",\\\"processor\\\"]},{\\\"url\\\":\\\"https://planetarycomputer.microsoft.com\\\",\\\"name\\\":\\\"Microsoft\\\",\\\"roles\\\":[\\\"host\\\"]}],\\\"description\\\":\\\"The\n        [Project Eclipse](https://www.microsoft.com/en-us/research/project/project-eclipse/)\n        Network is a low-cost air quality sensing network for cities and a research\n        project led by the [Urban Innovation Group]( https://www.microsoft.com/en-us/research/urban-innovation-research/)\n        at Microsoft Research.\\\\n\\\\nProject Eclipse currently includes over 100 locations\n        in Chicago, Illinois, USA.\\\\n\\\\nThis network was deployed starting in July,\n        2021, through a collaboration with the City of Chicago, the Array of Things\n        Project, JCDecaux Chicago, and the Environmental Law and Policy Center as\n        well as local environmental justice organizations in the city. [This talk](\n        https://www.microsoft.com/en-us/research/video/technology-demo-project-eclipse-hyperlocal-air-quality-monitoring-for-cities/)\n        documents the network design and data calibration strategy.\\\\n\\\\n## Storage\n        resources\\\\n\\\\nData are stored in [Parquet](https://parquet.apache.org/) files\n        in Azure Blob Storage in the West Europe Azure region, in the following blob\n        container:\\\\n\\\\n`https://ai4edataeuwest.blob.core.windows.net/eclipse`\\\\n\\\\nWithin\n        that container, the periodic occurrence snapshots are stored in `Chicago/YYYY-MM-DD`,\n        where `YYYY-MM-DD` corresponds to the date of the snapshot.\\\\nEach snapshot\n        contains a sensor readings from the next 7-days in Parquet format starting\n        with date on the folder name YYYY-MM-DD.\\\\nTherefore, the data files for the\n        first snapshot are at\\\\n\\\\n`https://ai4edataeuwest.blob.core.windows.net/eclipse/chicago/2022-01-01/data_*.parquet\\\\n\\\\nThe\n        Parquet file schema is as described below. \\\\n\\\\n## Additional Documentation\\\\n\\\\nFor\n        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##\n        License and attribution\\\\nPlease cite: Daepp, Cabral, Ranganathan et al. (2022)\n        [Eclipse: An End-to-End Platform for Low-Cost, Hyperlocal Environmental Sensing\n        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##\n        Contact\\\\n\\\\nFor questions about this dataset, contact [`msrurbanops@microsoft.com`](mailto:msrurbanops@microsoft.com?subject=eclipse%20question)\n        \\\\n\\\\n\\\\n## Learn more\\\\n\\\\nThe [Eclipse Project](https://www.microsoft.com/en-us/research/urban-innovation-research/)\n        contains an overview of the Project Eclipse at Microsoft Research.\\\\n\\\\n\\\",\\\"item_assets\\\":{\\\"data\\\":{\\\"type\\\":\\\"application/x-parquet\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Weekly\n        dataset\\\",\\\"table:storage_options\\\":{\\\"account_name\\\":\\\"ai4edataeuwest\\\"}}},\\\"sci:citation\\\":\\\"Daepp,\n        Cabral, Ranganathan et al. (2022) Eclipse: An End-to-End Platform for Low-Cost,\n        Hyperlocal Environmental Sensing in Cities. ACM/IEEE Information Processing\n        in Sensor Networks. Milan, Italy. Eclipse: An End-to-End Platform for Low-Cost,\n        Hyperlocal Environmental Sensing in Cities\\\",\\\"stac_version\\\":\\\"1.0.0\\\",\\\"table:columns\\\":[{\\\"name\\\":\\\"City\\\",\\\"type\\\":\\\"byte_array\\\",\\\"description\\\":\\\"City\n        where the Microsoft Eclipse device is deployed\\\"},{\\\"name\\\":\\\"DeviceId\\\",\\\"type\\\":\\\"int32\\\",\\\"description\\\":\\\"Id\n        for a given device\\\"},{\\\"name\\\":\\\"LocationName\\\",\\\"type\\\":\\\"byte_array\\\",\\\"description\\\":\\\"Unique\n        string describing the device location\\\"},{\\\"name\\\":\\\"Latitude\\\",\\\"type\\\":\\\"double\\\",\\\"description\\\":\\\"Latitude\n        of the device location\\\"},{\\\"name\\\":\\\"Longitude\\\",\\\"type\\\":\\\"double\\\",\\\"description\\\":\\\"Longitude\n        of the device location\\\"},{\\\"name\\\":\\\"ReadingDateTimeUTC\\\",\\\"type\\\":\\\"int96\\\",\\\"description\\\":\\\"The\n        UTC date time string (like 2022-03-04 20:27:25.000) when the reading from\n        the Eclipse sensor was recorded\\\"},{\\\"name\\\":\\\"PM25\\\",\\\"type\\\":\\\"double\\\",\\\"description\\\":\\\"Uncalibrated\n        Fine particulate matter (PM 2.5) in \\xB5g/m\\xB3\\\"},{\\\"name\\\":\\\"CalibratedPM25\\\",\\\"type\\\":\\\"double\\\",\\\"description\\\":\\\"Calibrated\n        PM 2.5 in \\xB5g/m\\xB3\\\"},{\\\"name\\\":\\\"CalibratedO3\\\",\\\"type\\\":\\\"double\\\",\\\"description\\\":\\\"Calibrated\n        Ozone in PPB\\\"},{\\\"name\\\":\\\"CalibratedNO2\\\",\\\"type\\\":\\\"double\\\",\\\"description\\\":\\\"Calibrated\n        Nitrogen Dioxide in PPB\\\"},{\\\"name\\\":\\\"CO\\\",\\\"type\\\":\\\"double\\\",\\\"description\\\":\\\"Uncalibrated\n        Carbon monoxide (CO) in PPM\\\"},{\\\"name\\\":\\\"Temperature\\\",\\\"type\\\":\\\"double\\\",\\\"description\\\":\\\"Degree\n        Celsius\\\"},{\\\"name\\\":\\\"Humidity\\\",\\\"type\\\":\\\"double\\\",\\\"description\\\":\\\"Relative\n        humidity\\\"},{\\\"name\\\":\\\"BatteryLevel\\\",\\\"type\\\":\\\"double\\\",\\\"description\\\":\\\"Device\n        battery level in Volts\\\"},{\\\"name\\\":\\\"PercentBattery\\\",\\\"type\\\":\\\"double\\\",\\\"description\\\":\\\"Percent\n        of device battery\\\"},{\\\"name\\\":\\\"CellSignal\\\",\\\"type\\\":\\\"double\\\",\\\"description\\\":\\\"Cellular\n        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\n        network of low-cost air quality sensing network for cities and led by the\n        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\n        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\n        license\\\"},{\\\"rel\\\":\\\"license\\\",\\\"href\\\":\\\"https://cds.climate.copernicus.eu/api/v2/terms/static/vito-proba-v.pdf\\\",\\\"type\\\":\\\"text/html\\\",\\\"title\\\":\\\"VITO\n        License\\\"},{\\\"rel\\\":\\\"about\\\",\\\"href\\\":\\\"https://cds.climate.copernicus.eu/cdsapp#!/dataset/satellite-land-cover\\\",\\\"type\\\":\\\"text/html\\\",\\\"title\\\":\\\"Product\n        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\n        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\n        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\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"ESA\n        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\n        CCI Land Cover COGs Thumbnail\\\"},\\\"geoparquet-items\\\":{\\\"href\\\":\\\"abfs://items/esa-cci-lc.parquet\\\",\\\"type\\\":\\\"application/x-parquet\\\",\\\"roles\\\":[\\\"stac-items\\\"],\\\"title\\\":\\\"GeoParquet\n        STAC items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        Cover\\\",\\\"ESA\\\",\\\"CCI\\\",\\\"Global\\\"],\\\"providers\\\":[{\\\"url\\\":\\\"https://vito.be\\\",\\\"name\\\":\\\"VITO\\\",\\\"roles\\\":[\\\"licensor\\\"],\\\"description\\\":\\\"Provides\n        the PROBA-V source data (for v2.0).\\\"},{\\\"url\\\":\\\"https://uclouvain.be\\\",\\\"name\\\":\\\"UCLouvain\\\",\\\"roles\\\":[\\\"producer\\\"],\\\"description\\\":\\\"UCLouvain\n        produces the dataset (v2.1) for the ESA Climate Change Initiative.\\\"},{\\\"url\\\":\\\"https://brockmann-consult.de\\\",\\\"name\\\":\\\"Brockmann\n        Consult\\\",\\\"roles\\\":[\\\"processor\\\"],\\\"description\\\":\\\"Brockmann Consult is\n        responsible for the required pre-processing and the distribution of the dataset\n        (v2.1).\\\"},{\\\"url\\\":\\\"http://esa-landcover-cci.org\\\",\\\"name\\\":\\\"ESA Climate\n        Change Initiative\\\",\\\"roles\\\":[\\\"licensor\\\"],\\\"description\\\":\\\"The ESA Climate\n        Change Initiative (CCI) is leading the product creation.\\\"},{\\\"url\\\":\\\"https://copernicus.eu\\\",\\\"name\\\":\\\"Copernicus\\\",\\\"roles\\\":[\\\"licensor\\\"],\\\"description\\\":\\\"Hosts\n        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\n        ESA Climate Change Initiative (CCI) [Land Cover dataset](https://cds.climate.copernicus.eu/cdsapp#!/dataset/satellite-land-cover?tab=overview)\n        provides consistent global annual land cover maps at 300m spatial resolution\n        from 1992 to 2020. The land cover classes are defined using the United Nations\n        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/)\n        (LCCS). In addition to the land cover maps, four quality flags are produced\n        to document the reliability of the classification and change detection. \\\\n\\\\nThe\n        data in this Collection have been converted from the [original NetCDF data](https://planetarycomputer.microsoft.com/dataset/esa-cci-lc-netcdf)\n        to a set of tiled [Cloud Optimized GeoTIFFs](https://www.cogeo.org/) (COGs).\\\\n\\\",\\\"item_assets\\\":{\\\"lccs_class\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Land\n        Cover Class Defined in the Land Cover Classification System\\\",\\\"description\\\":\\\"Land\n        cover class per pixel, defined using the Land Cover Classification System\n        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\n        data\\\"},{\\\"name\\\":\\\"cropland-1\\\",\\\"value\\\":10,\\\"color_hint\\\":\\\"FFFF64\\\",\\\"description\\\":\\\"Cropland,\n        rainfed\\\"},{\\\"name\\\":\\\"cropland-1a\\\",\\\"value\\\":11,\\\"regional\\\":true,\\\"color_hint\\\":\\\"FFFF64\\\",\\\"description\\\":\\\"Cropland,\n        rainfed, herbaceous cover\\\"},{\\\"name\\\":\\\"cropland-1b\\\",\\\"value\\\":12,\\\"regional\\\":true,\\\"color_hint\\\":\\\"FFFF00\\\",\\\"description\\\":\\\"Cropland,\n        rainfed, tree, or shrub cover\\\"},{\\\"name\\\":\\\"cropland-2\\\",\\\"value\\\":20,\\\"color_hint\\\":\\\"AAF0F0\\\",\\\"description\\\":\\\"Cropland,\n        irrigated or post-flooding\\\"},{\\\"name\\\":\\\"cropland-3\\\",\\\"value\\\":30,\\\"color_hint\\\":\\\"DCF064\\\",\\\"description\\\":\\\"Mosaic\n        cropland (>50%) / natural vegetation (tree, shrub, herbaceous cover) (<50%)\\\"},{\\\"name\\\":\\\"natural-veg\\\",\\\"value\\\":40,\\\"color_hint\\\":\\\"C8C864\\\",\\\"description\\\":\\\"Mosaic\n        natural vegetation (tree, shrub, herbaceous cover) (>50%) / cropland (<50%)\\\"},{\\\"name\\\":\\\"tree-1\\\",\\\"value\\\":50,\\\"color_hint\\\":\\\"006400\\\",\\\"description\\\":\\\"Tree\n        cover, broadleaved, evergreen, closed to open (>15%)\\\"},{\\\"name\\\":\\\"tree-2\\\",\\\"value\\\":60,\\\"color_hint\\\":\\\"00A000\\\",\\\"description\\\":\\\"Tree\n        cover, broadleaved, deciduous, closed to open (>15%)\\\"},{\\\"name\\\":\\\"tree-2a\\\",\\\"value\\\":61,\\\"regional\\\":true,\\\"color_hint\\\":\\\"00A000\\\",\\\"description\\\":\\\"Tree\n        cover, broadleaved, deciduous, closed (>40%)\\\"},{\\\"name\\\":\\\"tree-2b\\\",\\\"value\\\":62,\\\"regional\\\":true,\\\"color_hint\\\":\\\"AAC800\\\",\\\"description\\\":\\\"Tree\n        cover, broadleaved, deciduous, open (15-40%)\\\"},{\\\"name\\\":\\\"tree-3\\\",\\\"value\\\":70,\\\"color_hint\\\":\\\"003C00\\\",\\\"description\\\":\\\"Tree\n        cover, needleleaved, evergreen, closed to open (>15%)\\\"},{\\\"name\\\":\\\"tree-3a\\\",\\\"value\\\":71,\\\"regional\\\":true,\\\"color_hint\\\":\\\"003C00\\\",\\\"description\\\":\\\"Tree\n        cover, needleleaved, evergreen, closed (>40%)\\\"},{\\\"name\\\":\\\"tree-3b\\\",\\\"value\\\":72,\\\"regional\\\":true,\\\"color_hint\\\":\\\"005000\\\",\\\"description\\\":\\\"Tree\n        cover, needleleaved, evergreen, open (15-40%)\\\"},{\\\"name\\\":\\\"tree-4\\\",\\\"value\\\":80,\\\"color_hint\\\":\\\"285000\\\",\\\"description\\\":\\\"Tree\n        cover, needleleaved, deciduous, closed to open (>15%)\\\"},{\\\"name\\\":\\\"tree-4a\\\",\\\"value\\\":81,\\\"regional\\\":true,\\\"color_hint\\\":\\\"285000\\\",\\\"description\\\":\\\"Tree\n        cover, needleleaved, deciduous, closed (>40%)\\\"},{\\\"name\\\":\\\"tree-4b\\\",\\\"value\\\":82,\\\"regional\\\":true,\\\"color_hint\\\":\\\"286400\\\",\\\"description\\\":\\\"Tree\n        cover, needleleaved, deciduous, open (15-40%)\\\"},{\\\"name\\\":\\\"tree-5\\\",\\\"value\\\":90,\\\"color_hint\\\":\\\"788200\\\",\\\"description\\\":\\\"Tree\n        cover, mixed leaf type (broadleaved and needleleaved)\\\"},{\\\"name\\\":\\\"tree-shrub\\\",\\\"value\\\":100,\\\"color_hint\\\":\\\"8CA000\\\",\\\"description\\\":\\\"Mosaic\n        tree and shrub (>50%) / herbaceous cover (<50%)\\\"},{\\\"name\\\":\\\"herbaceous\\\",\\\"value\\\":110,\\\"color_hint\\\":\\\"BE9600\\\",\\\"description\\\":\\\"Mosaic\n        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\n        shrubland\\\"},{\\\"name\\\":\\\"shrubland-b\\\",\\\"value\\\":122,\\\"regional\\\":true,\\\"color_hint\\\":\\\"966400\\\",\\\"description\\\":\\\"Deciduous\n        shrubland\\\"},{\\\"name\\\":\\\"grassland\\\",\\\"value\\\":130,\\\"color_hint\\\":\\\"FFB432\\\",\\\"description\\\":\\\"Grassland\\\"},{\\\"name\\\":\\\"lichens-moses\\\",\\\"value\\\":140,\\\"color_hint\\\":\\\"FFDCD2\\\",\\\"description\\\":\\\"Lichens\n        and mosses\\\"},{\\\"name\\\":\\\"sparse-veg\\\",\\\"value\\\":150,\\\"color_hint\\\":\\\"FFEBAF\\\",\\\"description\\\":\\\"Sparse\n        vegetation (tree, shrub, herbaceous cover) (<15%)\\\"},{\\\"name\\\":\\\"sparse-veg-a\\\",\\\"value\\\":151,\\\"regional\\\":true,\\\"color_hint\\\":\\\"FFC864\\\",\\\"description\\\":\\\"Sparse\n        tree (<15%)\\\"},{\\\"name\\\":\\\"sparse-veg-b\\\",\\\"value\\\":152,\\\"regional\\\":true,\\\"color_hint\\\":\\\"FFD278\\\",\\\"description\\\":\\\"Sparse\n        shrub (<15%)\\\"},{\\\"name\\\":\\\"sparse-veg-c\\\",\\\"value\\\":153,\\\"regional\\\":true,\\\"color_hint\\\":\\\"FFEBAF\\\",\\\"description\\\":\\\"Sparse\n        herbaceous cover (<15%)\\\"},{\\\"name\\\":\\\"flooded-tree-1\\\",\\\"value\\\":160,\\\"color_hint\\\":\\\"00785A\\\",\\\"description\\\":\\\"Tree\n        cover, flooded, fresh or brackish water\\\"},{\\\"name\\\":\\\"flooded-tree-2\\\",\\\"value\\\":170,\\\"color_hint\\\":\\\"009678\\\",\\\"description\\\":\\\"Tree\n        cover, flooded, saline water\\\"},{\\\"name\\\":\\\"flooded-shrub-herbaceous\\\",\\\"value\\\":180,\\\"color_hint\\\":\\\"00DC82\\\",\\\"description\\\":\\\"Shrub\n        or herbaceous cover, flooded, fresh/saline/brackish water\\\"},{\\\"name\\\":\\\"urban\\\",\\\"value\\\":190,\\\"color_hint\\\":\\\"C31400\\\",\\\"description\\\":\\\"Urban\n        areas\\\"},{\\\"name\\\":\\\"bare\\\",\\\"value\\\":200,\\\"color_hint\\\":\\\"FFF5D7\\\",\\\"description\\\":\\\"Bare\n        areas\\\"},{\\\"name\\\":\\\"bare-a\\\",\\\"value\\\":201,\\\"regional\\\":true,\\\"color_hint\\\":\\\"DCDCDC\\\",\\\"description\\\":\\\"Consolidated\n        bare areas\\\"},{\\\"name\\\":\\\"bare-b\\\",\\\"value\\\":202,\\\"regional\\\":true,\\\"color_hint\\\":\\\"FFF5D7\\\",\\\"description\\\":\\\"Unconsolidated\n        bare areas\\\"},{\\\"name\\\":\\\"water\\\",\\\"value\\\":210,\\\"color_hint\\\":\\\"0046C8\\\",\\\"description\\\":\\\"Water\n        bodies\\\"},{\\\"name\\\":\\\"snow-ice\\\",\\\"value\\\":220,\\\"color_hint\\\":\\\"FFFFFF\\\",\\\"description\\\":\\\"Permanent\n        snow and ice\\\"}]},\\\"change_count\\\":{\\\"type\\\":\\\"image/tiff; application=geotiff;\n        profile=cloud-optimized\\\",\\\"roles\\\":[\\\"quality\\\"],\\\"title\\\":\\\"Number of Class\n        Changes\\\",\\\"description\\\":\\\"Number of years where land cover class changes\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"quality\\\"],\\\"title\\\":\\\"Land\n        Cover Map Processed Area Flag\\\",\\\"description\\\":\\\"Flag to mark areas that\n        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\n        processed\\\"},{\\\"name\\\":\\\"processed\\\",\\\"value\\\":1,\\\"description\\\":\\\"Processed\\\"}]},\\\"observation_count\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"quality\\\"],\\\"title\\\":\\\"Number\n        of Valid Observations\\\",\\\"description\\\":\\\"Number of valid satellite observations\n        that have contributed to each pixel's classification.\\\",\\\"raster:bands\\\":[{\\\"sampling\\\":\\\"area\\\",\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":300}]},\\\"current_pixel_state\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"quality\\\"],\\\"title\\\":\\\"Land\n        Cover Pixel Type Mask\\\",\\\"description\\\":\\\"Pixel identification from satellite\n        surface reflectance observations, mainly distinguishing between land, water,\n        and snow/ice.\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":255,\\\"sampling\\\":\\\"area\\\",\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":300}],\\\"classification:classes\\\":[{\\\"name\\\":\\\"land\\\",\\\"value\\\":1,\\\"description\\\":\\\"Clear\n        land\\\"},{\\\"name\\\":\\\"water\\\",\\\"value\\\":2,\\\"description\\\":\\\"Clear water\\\"},{\\\"name\\\":\\\"snow\\\",\\\"value\\\":3,\\\"description\\\":\\\"Clear\n        snow / ice\\\"},{\\\"name\\\":\\\"cloud\\\",\\\"value\\\":4,\\\"description\\\":\\\"Cloud\\\"},{\\\"name\\\":\\\"cloud_shadow\\\",\\\"value\\\":5,\\\"description\\\":\\\"Cloud\n        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\n        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\n        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\n        license\\\"},{\\\"rel\\\":\\\"license\\\",\\\"href\\\":\\\"https://cds.climate.copernicus.eu/api/v2/terms/static/vito-proba-v.pdf\\\",\\\"type\\\":\\\"text/html\\\",\\\"title\\\":\\\"VITO\n        License\\\"},{\\\"rel\\\":\\\"about\\\",\\\"href\\\":\\\"https://cds.climate.copernicus.eu/cdsapp#!/dataset/satellite-land-cover\\\",\\\"type\\\":\\\"text/html\\\",\\\"title\\\":\\\"Product\n        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\n        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\n        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\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"ESA\n        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\n        CCI Land Cover NetCDF Thumbnail\\\"},\\\"geoparquet-items\\\":{\\\"href\\\":\\\"abfs://items/esa-cci-lc-netcdf.parquet\\\",\\\"type\\\":\\\"application/x-parquet\\\",\\\"roles\\\":[\\\"stac-items\\\"],\\\"title\\\":\\\"GeoParquet\n        STAC items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        Cover\\\",\\\"ESA\\\",\\\"CCI\\\",\\\"Global\\\"],\\\"providers\\\":[{\\\"url\\\":\\\"https://vito.be\\\",\\\"name\\\":\\\"VITO\\\",\\\"roles\\\":[\\\"licensor\\\"],\\\"description\\\":\\\"Provides\n        the PROBA-V source data (for v2.0).\\\"},{\\\"url\\\":\\\"https://uclouvain.be\\\",\\\"name\\\":\\\"UCLouvain\\\",\\\"roles\\\":[\\\"producer\\\"],\\\"description\\\":\\\"UCLouvain\n        produces the dataset (v2.1) for the ESA Climate Change Initiative.\\\"},{\\\"url\\\":\\\"https://brockmann-consult.de\\\",\\\"name\\\":\\\"Brockmann\n        Consult\\\",\\\"roles\\\":[\\\"processor\\\"],\\\"description\\\":\\\"Brockmann Consult is\n        responsible for the required pre-processing and the distribution of the dataset\n        (v2.1).\\\"},{\\\"url\\\":\\\"http://esa-landcover-cci.org\\\",\\\"name\\\":\\\"ESA Climate\n        Change Initiative\\\",\\\"roles\\\":[\\\"licensor\\\"],\\\"description\\\":\\\"The ESA Climate\n        Change Initiative (CCI) is leading the product creation.\\\"},{\\\"url\\\":\\\"https://copernicus.eu\\\",\\\"name\\\":\\\"Copernicus\\\",\\\"roles\\\":[\\\"licensor\\\"],\\\"description\\\":\\\"Hosts\n        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\n        ESA Climate Change Initiative (CCI) [Land Cover dataset](https://cds.climate.copernicus.eu/cdsapp#!/dataset/satellite-land-cover?tab=overview)\n        provides consistent global annual land cover maps at 300m spatial resolution\n        from 1992 to 2020. The land cover classes are defined using the United Nations\n        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/)\n        (LCCS). In addition to the land cover maps, four quality flags are produced\n        to document the reliability of the classification and change detection. \\\\n\\\\nThe\n        data in this Collection are the original NetCDF files accessed from the [Copernicus\n        Climate Data Store](https://cds.climate.copernicus.eu/#!/home). We recommend\n        users use the [`esa-cci-lc` Collection](planetarycomputer.microsoft.com/dataset/esa-cci-lc),\n        which provides the data as Cloud Optimized GeoTIFFs.\\\",\\\"item_assets\\\":{\\\"netcdf\\\":{\\\"type\\\":\\\"application/netcdf\\\",\\\"roles\\\":[\\\"data\\\",\\\"quality\\\"],\\\"title\\\":\\\"ESA\n        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\n        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\n        metadata\\\"},{\\\"rel\\\":\\\"about\\\",\\\"href\\\":\\\"https://www.fws.gov/sites/default/files/documents/national-wetlands-inventory-fact-sheet.pdf\\\",\\\"type\\\":\\\"application/pdf\\\",\\\"title\\\":\\\"Project\n        Fact Sheet\\\"},{\\\"rel\\\":\\\"about\\\",\\\"href\\\":\\\"https://www.fws.gov/program/national-wetlands-inventory\\\",\\\"type\\\":\\\"text/html\\\",\\\"title\\\":\\\"Project\n        Landing Page\\\"},{\\\"rel\\\":\\\"license\\\",\\\"href\\\":\\\"http://www.usa.gov/publicdomain/label/1.0/\\\",\\\"type\\\":\\\"text/html\\\",\\\"title\\\":\\\"US\n        Public Domain\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/fws-nwi\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"FWS\n        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\n        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\n        States\\\"],\\\"providers\\\":[{\\\"url\\\":\\\"https://www.fws.gov\\\",\\\"name\\\":\\\"U.S.\n        Fish and Wildlife Service\\\",\\\"email\\\":\\\"wetlands_team@fws.gov\\\",\\\"roles\\\":[\\\"producer\\\",\\\"licensor\\\"],\\\"description\\\":\\\"The\n        U.S. Fish and Wildlife Service is the principal federal agency tasked with\n        providing information to the public on the extent and status of the nation's\n        wetland and deepwater habitats, as well as changes to these habitats over\n        time.\\\"},{\\\"url\\\":\\\"https://planetarycomputer.microsoft.com\\\",\\\"name\\\":\\\"Microsoft\\\",\\\"roles\\\":[\\\"host\\\"]}],\\\"summaries\\\":{\\\"fws_nwi:state\\\":[\\\"Alabama\\\",\\\"Alaska\\\",\\\"Arizona\\\",\\\"Arkansas\\\",\\\"California\\\",\\\"Colorado\\\",\\\"Connecticut\\\",\\\"Delaware\\\",\\\"District\n        of Columbia\\\",\\\"Florida\\\",\\\"Georgia\\\",\\\"Hawaii\\\",\\\"Idaho\\\",\\\"Illinois\\\",\\\"Indiana\\\",\\\"Iowa\\\",\\\"Kansas\\\",\\\"Kentucky\\\",\\\"Louisiana\\\",\\\"Maine\\\",\\\"Maryland\\\",\\\"Massachusetts\\\",\\\"Michigan\\\",\\\"Minnesota\\\",\\\"Mississippi\\\",\\\"Missouri\\\",\\\"Montana\\\",\\\"Nebraska\\\",\\\"Nevada\\\",\\\"New\n        Hampshire\\\",\\\"New Jersey\\\",\\\"New Mexico\\\",\\\"New York\\\",\\\"North Carolina\\\",\\\"North\n        Dakota\\\",\\\"Ohio\\\",\\\"Oklahoma\\\",\\\"Oregon\\\",\\\"Pacific Trust Islands\\\",\\\"Pennsylvania\\\",\\\"Puerto\n        Rico and Virgin Islands\\\",\\\"Rhode Island\\\",\\\"South Carolina\\\",\\\"South Dakota\\\",\\\"Tennessee\\\",\\\"Texas\\\",\\\"Utah\\\",\\\"Vermont\\\",\\\"Virginia\\\",\\\"Washington\\\",\\\"West\n        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\n        Wetlands Data Layer is the product of over 45 years of work by the National\n        Wetlands Inventory (NWI) and its collaborators and currently contains more\n        than 35 million wetland and deepwater features. This dataset, covering the\n        conterminous United States, Hawaii, Puerto Rico, the Virgin Islands, Guam,\n        the major Northern Mariana Islands and Alaska, continues to grow at a rate\n        of 50 to 100 million acres annually as data are updated.\\\\n\\\\n**NOTE:** Due\n        to the variation in use and analysis of this data by the end user, each  state's\n        wetlands data extends beyond the state boundary. Each state includes wetlands\n        data that intersect the 1:24,000 quadrangles that contain part of that state\n        (1:2,000,000 source data). This allows the user to clip the data to their\n        specific analysis datasets. Beware that two adjacent states will contain some\n        of the same data along their borders.\\\\n\\\\nFor more information, visit the\n        National Wetlands Inventory [homepage](https://www.fws.gov/program/national-wetlands-inventory).\\\\n\\\\n##\n        STAC Metadata\\\\n\\\\nIn addition to the `zip` asset in every STAC item, each\n        item has its own assets unique to its wetlands. In general, each item will\n        have several assets, each linking to a [geoparquet](https://github.com/opengeospatial/geoparquet)\n        asset with data for the entire region or a sub-region within that state. Use\n        the `cloud-optimized` [role](https://github.com/radiantearth/stac-spec/blob/master/item-spec/item-spec.md#asset-roles)\n        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\n        dataset containing wetlands boundaries and identification across the United\n        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\n        CONUS Science Products\\\"},{\\\"rel\\\":\\\"license\\\",\\\"href\\\":\\\"https://www.usgs.gov/special-topics/lcmap/collection-13-conus-science-products\\\",\\\"type\\\":\\\"text/html\\\",\\\"title\\\":\\\"Proprietary,\n        Unrestricted\\\"},{\\\"rel\\\":\\\"source\\\",\\\"href\\\":\\\"https://www.usgs.gov/special-topics/lcmap/lcmap-data-access\\\",\\\"type\\\":\\\"text/html\\\",\\\"title\\\":\\\"USGS\n        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\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"USGS\n        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\n        LCMAP CONUS 1.3 Thumbnail\\\"},\\\"geoparquet-items\\\":{\\\"href\\\":\\\"abfs://items/usgs-lcmap-conus-v13.parquet\\\",\\\"type\\\":\\\"application/x-parquet\\\",\\\"roles\\\":[\\\"stac-items\\\"],\\\"title\\\":\\\"GeoParquet\n        STAC items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        Cover\\\",\\\"Land Cover Change\\\",\\\"CONUS\\\"],\\\"providers\\\":[{\\\"url\\\":\\\"https://www.usgs.gov/special-topics/lcmap\\\",\\\"name\\\":\\\"United\n        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\n        [Land Change Monitoring, Assessment, and Projection](https://www.usgs.gov/special-topics/lcmap)\n        (LCMAP) product provides land cover mapping and change monitoring from the\n        U.S. Geological Survey's [Earth Resources Observation and Science](https://www.usgs.gov/centers/eros)\n        (EROS) Center. LCMAP's Science Products are developed by applying time-series\n        modeling on a per-pixel basis to [Landsat Analysis Ready Data](https://www.usgs.gov/landsat-missions/landsat-us-analysis-ready-data)\n        (ARD) using an implementation of the [Continuous Change Detection and Classification](https://doi.org/10.1016/j.rse.2014.01.011)\n        (CCDC) algorithm. All available clear (non-cloudy) U.S. Landsat ARD observations\n        are fit to a harmonic model to predict future Landsat-like surface reflectance.\n        Where Landsat surface reflectance observations differ significantly from those\n        predictions, a change is identified. Attributes of the resulting model sequences\n        (e.g., start/end dates, residuals, model coefficients) are then used to produce\n        a set of land surface change products and as inputs to the subsequent classification\n        to thematic land cover. \\\\n\\\\nThis [STAC](https://stacspec.org/en) Collection\n        contains [LCMAP CONUS Collection 1.3](https://www.usgs.gov/special-topics/lcmap/collection-13-conus-science-products),\n        which was released in August 2022 for years 1985-2021. The data are tiled\n        according to the Landsat ARD tile grid and consist of [Cloud Optimized GeoTIFFs](https://www.cogeo.org/)\n        (COGs) and corresponding metadata files. Note that the provided COGs differ\n        slightly from those in the USGS source data. They have been reprocessed to\n        add overviews, \\\\\\\"nodata\\\\\\\" values where appropriate, and an updated projection\n        definition.\\\\n\\\",\\\"item_assets\\\":{\\\"dates\\\":{\\\"type\\\":\\\"text/plain\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"Landsat\n        Observation Dates\\\",\\\"description\\\":\\\"Landsat observation dates used as input\n        to the CCDC algorithm.\\\"},\\\"lcpri\\\":{\\\"type\\\":\\\"image/tiff; application=geotiff;\n        profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Primary Land Cover\\\",\\\"description\\\":\\\"Land\n        cover classification consisting of eight general land cover types. The most\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Secondary\n        Land Cover\\\",\\\"description\\\":\\\"Land cover classification consisting of eight\n        general land cover types. The second most likely land cover according to the\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Change\n        Magnitude\\\",\\\"description\\\":\\\"The spectral strength or intensity of a time\n        series model 'break' when spectral observations have diverged from the model\n        predictions.\\\",\\\"raster:bands\\\":[{\\\"sampling\\\":\\\"area\\\",\\\"data_type\\\":\\\"float32\\\",\\\"spatial_resolution\\\":30}]},\\\"scmqa\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Model\n        Quality\\\",\\\"description\\\":\\\"Information regarding the type of time series\n        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\n        model established for July 1st of current year.\\\"},{\\\"name\\\":\\\"simple_model\\\",\\\"value\\\":4,\\\"description\\\":\\\"A\n        partial, 4-coefficient harmonic model.\\\"},{\\\"name\\\":\\\"advanced_model\\\",\\\"value\\\":6,\\\"description\\\":\\\"A\n        partial, 6-coefficient harmonic model.\\\"},{\\\"name\\\":\\\"full_model\\\",\\\"value\\\":8,\\\"description\\\":\\\"A\n        full, 8-coefficient harmonic model.\\\"},{\\\"name\\\":\\\"start_fit\\\",\\\"value\\\":14,\\\"description\\\":\\\"A\n        simple model at the beginning of a time series where sparse and/or highly\n        variable spectral measurements prevent establishment of a harmonic model.\\\"},{\\\"name\\\":\\\"end_fit\\\",\\\"value\\\":24,\\\"description\\\":\\\"A\n        simple model at the end of a time series where there are insufficient observations\n        and/or time to establish a new harmonic model following a model break.\\\"},{\\\"name\\\":\\\"insufficient_clear\\\",\\\"value\\\":44,\\\"description\\\":\\\"A\n        simple model for the entire time series in cases where fewer than 25% of input\n        observations are labeled as 'Clear' or 'Water' by the U.S. Landsat ARD per-pixel\n        quality band (PIXELQA).\\\"},{\\\"name\\\":\\\"persistent_snow\\\",\\\"value\\\":54,\\\"description\\\":\\\"A\n        simple model for the entire time series in cases where 75% or more of input\n        observations are labeled as 'Snow' by the U.S. Landsat ARD per-pixel quality\n        band (PIXELQA).\\\"}]},\\\"browse\\\":{\\\"type\\\":\\\"image/tiff; application=geotiff;\n        profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"USGS Browse Image\\\",\\\"description\\\":\\\"Image\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Annual\n        Land Cover Change\\\",\\\"description\\\":\\\"Synthesis of Primary Land Cover of current\n        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\n        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\n        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\n        change from Developed to Cropland\\\"},{\\\"name\\\":\\\"1_to_3\\\",\\\"value\\\":13,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Developed to Grass/Shrub\\\"},{\\\"name\\\":\\\"1_to_4\\\",\\\"value\\\":14,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Developed to Tree Cover\\\"},{\\\"name\\\":\\\"1_to_5\\\",\\\"value\\\":15,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Developed to Water\\\"},{\\\"name\\\":\\\"1_to_6\\\",\\\"value\\\":16,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Developed to Wetlands\\\"},{\\\"name\\\":\\\"1_to_7\\\",\\\"value\\\":17,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Developed to Snow/Ice\\\"},{\\\"name\\\":\\\"1_to_8\\\",\\\"value\\\":18,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Developed to Barren\\\"},{\\\"name\\\":\\\"2_to_1\\\",\\\"value\\\":21,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Cropland to Developed\\\"},{\\\"name\\\":\\\"2_to_3\\\",\\\"value\\\":23,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Cropland to Grass/Shrub\\\"},{\\\"name\\\":\\\"2_to_4\\\",\\\"value\\\":24,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Cropland to Tree Cover\\\"},{\\\"name\\\":\\\"2_to_5\\\",\\\"value\\\":25,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Cropland to Water\\\"},{\\\"name\\\":\\\"2_to_6\\\",\\\"value\\\":26,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Cropland to Wetlands\\\"},{\\\"name\\\":\\\"2_to_7\\\",\\\"value\\\":27,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Cropland to Snow/Ice\\\"},{\\\"name\\\":\\\"2_to_8\\\",\\\"value\\\":28,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Cropland to Barren\\\"},{\\\"name\\\":\\\"3_to_1\\\",\\\"value\\\":31,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Grass/Shrub to Developed\\\"},{\\\"name\\\":\\\"3_to_2\\\",\\\"value\\\":32,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Grass/Shrub to Cropland\\\"},{\\\"name\\\":\\\"3_to_4\\\",\\\"value\\\":34,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Grass/Shrub to Tree Cover\\\"},{\\\"name\\\":\\\"3_to_5\\\",\\\"value\\\":35,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Grass/Shrub to Water\\\"},{\\\"name\\\":\\\"3_to_6\\\",\\\"value\\\":36,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Grass/Shrub to Wetlands\\\"},{\\\"name\\\":\\\"3_to_7\\\",\\\"value\\\":37,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Grass/Shrub to Snow/Ice\\\"},{\\\"name\\\":\\\"3_to_8\\\",\\\"value\\\":38,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Grass/Shrub to Barren\\\"},{\\\"name\\\":\\\"4_to_1\\\",\\\"value\\\":41,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Tree Cover to Developed\\\"},{\\\"name\\\":\\\"4_to_2\\\",\\\"value\\\":42,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Tree Cover to Cropland\\\"},{\\\"name\\\":\\\"4_to_3\\\",\\\"value\\\":43,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Tree Cover to Grass/Shrub\\\"},{\\\"name\\\":\\\"4_to_5\\\",\\\"value\\\":45,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Tree Cover to Water\\\"},{\\\"name\\\":\\\"4_to_6\\\",\\\"value\\\":46,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Tree Cover to Wetlands\\\"},{\\\"name\\\":\\\"4_to_7\\\",\\\"value\\\":47,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Tree Cover to Snow/Ice\\\"},{\\\"name\\\":\\\"4_to_8\\\",\\\"value\\\":48,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Tree Cover to Barren\\\"},{\\\"name\\\":\\\"5_to_1\\\",\\\"value\\\":51,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Water to Developed\\\"},{\\\"name\\\":\\\"5_to_2\\\",\\\"value\\\":52,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Water to Cropland\\\"},{\\\"name\\\":\\\"5_to_3\\\",\\\"value\\\":53,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Water to Grass/Shrub\\\"},{\\\"name\\\":\\\"5_to_4\\\",\\\"value\\\":54,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Water to Tree Cover\\\"},{\\\"name\\\":\\\"5_to_6\\\",\\\"value\\\":56,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Water to Wetlands\\\"},{\\\"name\\\":\\\"5_to_7\\\",\\\"value\\\":57,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Water to Snow/Ice\\\"},{\\\"name\\\":\\\"5_to_8\\\",\\\"value\\\":58,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Water to Barren\\\"},{\\\"name\\\":\\\"6_to_1\\\",\\\"value\\\":61,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Wetlands to Developed\\\"},{\\\"name\\\":\\\"6_to_2\\\",\\\"value\\\":62,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Wetlands to Cropland\\\"},{\\\"name\\\":\\\"6_to_3\\\",\\\"value\\\":63,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Wetlands to Grass/Shrub\\\"},{\\\"name\\\":\\\"6_to_4\\\",\\\"value\\\":64,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Wetlands to Tree Cover\\\"},{\\\"name\\\":\\\"6_to_5\\\",\\\"value\\\":65,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Wetlands to Water\\\"},{\\\"name\\\":\\\"6_to_7\\\",\\\"value\\\":67,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Wetlands to Snow/Ice\\\"},{\\\"name\\\":\\\"6_to_8\\\",\\\"value\\\":68,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Wetlands to Barren\\\"},{\\\"name\\\":\\\"7_to_1\\\",\\\"value\\\":71,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Snow/Ice to Developed\\\"},{\\\"name\\\":\\\"7_to_2\\\",\\\"value\\\":72,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Snow/Ice to Cropland\\\"},{\\\"name\\\":\\\"7_to_3\\\",\\\"value\\\":73,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Snow/Ice to Grass/Shrub\\\"},{\\\"name\\\":\\\"7_to_4\\\",\\\"value\\\":74,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Snow/Ice to Tree Cover\\\"},{\\\"name\\\":\\\"7_to_5\\\",\\\"value\\\":75,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Snow/Ice to Water\\\"},{\\\"name\\\":\\\"7_to_6\\\",\\\"value\\\":76,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Snow/Ice to Wetlands\\\"},{\\\"name\\\":\\\"7_to_8\\\",\\\"value\\\":78,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Snow/Ice to Barren\\\"},{\\\"name\\\":\\\"8_to_1\\\",\\\"value\\\":81,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Barren to Developed\\\"},{\\\"name\\\":\\\"8_to_2\\\",\\\"value\\\":82,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Barren to Cropland\\\"},{\\\"name\\\":\\\"8_to_3\\\",\\\"value\\\":83,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Barren to Grass/Shrub\\\"},{\\\"name\\\":\\\"8_to_4\\\",\\\"value\\\":84,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Barren to Tree Cover\\\"},{\\\"name\\\":\\\"8_to_5\\\",\\\"value\\\":85,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Barren to Water\\\"},{\\\"name\\\":\\\"8_to_6\\\",\\\"value\\\":86,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Barren to Wetlands\\\"},{\\\"name\\\":\\\"8_to_7\\\",\\\"value\\\":87,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Barren to Snow/Ice\\\"}]},\\\"sclast\\\":{\\\"type\\\":\\\"image/tiff; application=geotiff;\n        profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Time Since Last\n        Change\\\",\\\"description\\\":\\\"Time, in days, since the last identified Spectral\n        Change (SCTIME).\\\",\\\"raster:bands\\\":[{\\\"sampling\\\":\\\"area\\\",\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":30}]},\\\"scstab\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Spectral\n        Stability Period\\\",\\\"description\\\":\\\"Measure of the amount of time in days\n        that a pixel has been in its current spectral state as of July 1st. Current\n        spectral state can refer to both during stable time series segments or a period\n        outside of stable time series segments.\\\",\\\"raster:bands\\\":[{\\\"sampling\\\":\\\"area\\\",\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":30}]},\\\"sctime\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Time\n        of Spectral Change\\\",\\\"description\\\":\\\"Represents the timing of a spectral\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Primary\n        Land Cover Confidence\\\",\\\"description\\\":\\\"Provides provenance tracking and\n        a measure of confidence that the Primary Land Cover label matches the training\n        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\n        of confidence that the Primary Land Cover label matches the training data.\\\"},{\\\"values\\\":[151],\\\"summary\\\":\\\"Time\n        series model identified as transition from a Grass/Shrub class to a Tree Cover\n        class. Primary Land Cover class assignment based on secondary analysis.\\\"},{\\\"values\\\":[152],\\\"summary\\\":\\\"Time\n        series model identified as transition from a Tree Cover class to a Grass/Shrub\n        class. Primary Land cover class assignment based on secondary analysis.\\\"},{\\\"values\\\":[201],\\\"summary\\\":\\\"No\n        stable time series models were produced for this location. Primary Land Cover\n        was assigned the land cover class present in NLCD-2001 (cross-walked to LCMAP\n        Level 1 classification schema, see LCMAP Science Product Guide for more information).\\\"},{\\\"values\\\":[202],\\\"summary\\\":\\\"Insufficient\n        data available to extend most recent time series model past July 1st of current\n        year. Land cover assigned the last identified cover class from earlier year.\\\"},{\\\"values\\\":[211],\\\"summary\\\":\\\"July\n        1st falls in a gap between two stable time series models of the same land\n        cover class. Primary Land Cover assigned the primary land cover class of those\n        before/after models.\\\"},{\\\"values\\\":[212],\\\"summary\\\":\\\"July 1st falls in\n        a gap between two stable time series models of differing land cover class.\n        If July 1st is before the 'break date' of the earlier model, Primary Land\n        Cover is assigned the primary land cover class of that earlier model. Otherwise,\n        Primary Land Cover is assigned the primary land cover class of the subsequent,\n        later model.\\\"},{\\\"values\\\":[213],\\\"summary\\\":\\\"Insufficient data available\n        to establish a stable time series model at the beginning of the time series\n        prior to July 1st of the current year. Primary Land Cover assigned the primary\n        land cover class of 1st subsequent model.\\\"},{\\\"values\\\":[214],\\\"summary\\\":\\\"Insufficient\n        data available to establish a new stable time series model following a break\n        near the end of the time series prior to July 1st of the current year. Primary\n        Land Cover assigned the last identified primary land cover class from earlier\n        year.\\\"}],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"sampling\\\":\\\"area\\\",\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":30}]},\\\"lcsconf\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Secondary\n        Land Cover Confidence\\\",\\\"description\\\":\\\"Provides provenance tracking and\n        a measure of confidence that the Secondary Land Cover label matches the training\n        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\n        of confidence that the Secondary Land Cover label matches the training data.\\\"},{\\\"values\\\":[151],\\\"summary\\\":\\\"Time\n        series model identified as transition from a Grass/Shrub class to a Tree Cover\n        class in Primary Land Cover. Primary Land Cover class assignment based on\n        secondary analysis and Secondary Land Cover class assigned logical opposite\n        of Primary.\\\"},{\\\"values\\\":[152],\\\"summary\\\":\\\"Time series model identified\n        as transition from a Tree Cover class to a Grass/Shrub class in Primary Land\n        Cover. Primary Land Cover class assignment based on secondary analysis and\n        Secondary Land Cover class assigned logical opposite of Primary.\\\"},{\\\"values\\\":[201],\\\"summary\\\":\\\"No\n        stable time series models were produced for this location. Secondary Land\n        Cover assigned the land cover class present in NLCD-2001 (cross-walked to\n        LCMAP classification schema, see LCMAP Science Product Guide for more information).\\\"},{\\\"values\\\":[202],\\\"summary\\\":\\\"Insufficient\n        data available to extend most recent time series model past July 1st of current\n        year. Secondary Land Cover assigned the last identified secondary cover class\n        from earlier year.\\\"},{\\\"values\\\":[211],\\\"summary\\\":\\\"July 1st falls in a\n        gap between two stable time series models of the same secondary land cover\n        class. Secondary Land Cover assigned the land cover class of those before/after\n        models.\\\"},{\\\"values\\\":[212],\\\"summary\\\":\\\"July 1st falls in a gap between\n        two stable time series models of differing secondary land cover classes. If\n        July 1st is before the 'break date' of the earlier model, Secondary Land Cover\n        is assigned the secondary land cover class of the earlier model. Otherwise,\n        Secondary Land Cover is assigned the secondary land cover class of the subsequent\n        model.\\\"},{\\\"values\\\":[213],\\\"summary\\\":\\\"Insufficient data available to establish\n        a stable time series model at the beginning of the time series prior to July\n        1st of the current year. Secondary Land Cover assigned the secondary land\n        cover class of 1st subsequent model.\\\"},{\\\"values\\\":[214],\\\"summary\\\":\\\"Insufficient\n        data available to establish a new stable time series model following a break\n        near the end of the time series prior to July 1st of the current year. Secondary\n        Land Cover assigned the last identified secondary cover class from earlier\n        year.\\\"}],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"sampling\\\":\\\"area\\\",\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":30}]},\\\"lcpri_metadata\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"Primary\n        Land Cover Metadata\\\",\\\"description\\\":\\\"Primary Land Cover product metadata\\\"},\\\"lcsec_metadata\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"Secondary\n        Land Cover Metadata\\\",\\\"description\\\":\\\"Secondary Land Cover product metadata\\\"},\\\"scmag_metadata\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"Change\n        Magnitude Metadata\\\",\\\"description\\\":\\\"Change Magnitude product metadata\\\"},\\\"scmqa_metadata\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"Model\n        Quality Metadata\\\",\\\"description\\\":\\\"Model Quality product metadata\\\"},\\\"lcachg_metadata\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"Annual\n        Land Cover Change Metadata\\\",\\\"description\\\":\\\"Annual Land Cover Change product\n        metadata\\\"},\\\"sclast_metadata\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"Time\n        Since Last Change Metadata\\\",\\\"description\\\":\\\"Time Since Last Change product\n        metadata\\\"},\\\"scstab_metadata\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"Spectral\n        Stability Period Metadata\\\",\\\"description\\\":\\\"Spectral Stability Period product\n        metadata\\\"},\\\"sctime_metadata\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"Time\n        of Spectral Change Metadata\\\",\\\"description\\\":\\\"Time of Spectral Change product\n        metadata\\\"},\\\"lcpconf_metadata\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"Primary\n        Land Cover Confidence Metadata\\\",\\\"description\\\":\\\"Primary Land Cover Confidence\n        product metadata\\\"},\\\"lcsconf_metadata\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"Secondary\n        Land Cover Confidence Metadata\\\",\\\"description\\\":\\\"Secondary Land Cover Confidence\n        product metadata\\\"}},\\\"sci:citation\\\":\\\"U.S. Geological Survey (USGS), 2022,\n        Land Change Monitoring, Assessment, and Projection (LCMAP) Collection 1.3\n        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,\n        J.F., Tollerud, H.J., Barber, C.P., Zhou, Q., Dwyer, J.L., Vogelmann, J.E.,\n        Loveland, T.R., Woodcock, C.E., Stehman, S.V., Zhu, Z., Pengra, B.W., Smith,\n        K., Horton, J.A., Xian, G., Auch, R.F., Sohl, T.L., Sayler, K.L., Gallant,\n        A.L., Zelenak, D., Reker, R.R., and Rover, J., 2020, Lessons learned implementing\n        an operational continuous United States national land change monitoring capability-The\n        Land Change Monitoring, Assessment, and Projection (LCMAP) approach: Remote\n        Sensing of Environment, v. 238, article 111356\\\"},{\\\"doi\\\":\\\"10.1016/j.rse.2014.01.011\\\",\\\"citation\\\":\\\"Zhu,\n        Z., and Woodcock, C.E., 2014, Continuous change detection and classification\n        of land cover using all available Landsat data: Remote Sensing of Environment,\n        v. 144, p. 152-171\\\"}],\\\"msft:storage_account\\\":\\\"landcoverdata\\\",\\\"msft:short_description\\\":\\\"USGS\n        Land Change Monitoring, Assessment, and Projection (LCMAP) Collection 1.3\n        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\n        Hawaii Science Products\\\"},{\\\"rel\\\":\\\"license\\\",\\\"href\\\":\\\"https://www.usgs.gov/special-topics/lcmap/collection-1-hawaii-science-products\\\",\\\"type\\\":\\\"text/html\\\",\\\"title\\\":\\\"Proprietary,\n        Unrestricted\\\"},{\\\"rel\\\":\\\"source\\\",\\\"href\\\":\\\"https://www.usgs.gov/special-topics/lcmap/lcmap-data-access\\\",\\\"type\\\":\\\"text/html\\\",\\\"title\\\":\\\"USGS\n        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\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"USGS\n        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\n        LCMAP Hawaii 1.0 Thumbnail\\\"},\\\"geoparquet-items\\\":{\\\"href\\\":\\\"abfs://items/usgs-lcmap-hawaii-v10.parquet\\\",\\\"type\\\":\\\"application/x-parquet\\\",\\\"roles\\\":[\\\"stac-items\\\"],\\\"title\\\":\\\"GeoParquet\n        STAC items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        Cover\\\",\\\"Land Cover Change\\\",\\\"Hawaii\\\"],\\\"providers\\\":[{\\\"url\\\":\\\"https://www.usgs.gov/special-topics/lcmap\\\",\\\"name\\\":\\\"United\n        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\n        [Land Change Monitoring, Assessment, and Projection](https://www.usgs.gov/special-topics/lcmap)\n        (LCMAP) product provides land cover mapping and change monitoring from the\n        U.S. Geological Survey's [Earth Resources Observation and Science](https://www.usgs.gov/centers/eros)\n        (EROS) Center. LCMAP's Science Products are developed by applying time-series\n        modeling on a per-pixel basis to [Landsat Analysis Ready Data](https://www.usgs.gov/landsat-missions/landsat-us-analysis-ready-data)\n        (ARD) using an implementation of the [Continuous Change Detection and Classification](https://doi.org/10.1016/j.rse.2014.01.011)\n        (CCDC) algorithm. All available clear (non-cloudy) U.S. Landsat ARD observations\n        are fit to a harmonic model to predict future Landsat-like surface reflectance.\n        Where Landsat surface reflectance observations differ significantly from those\n        predictions, a change is identified. Attributes of the resulting model sequences\n        (e.g., start/end dates, residuals, model coefficients) are then used to produce\n        a set of land surface change products and as inputs to the subsequent classification\n        to thematic land cover. \\\\n\\\\nThis [STAC](https://stacspec.org/en) Collection\n        contains [LCMAP Hawaii Collection 1.0](https://www.usgs.gov/special-topics/lcmap/collection-1-hawaii-science-products),\n        which was released in January 2022 for years 2000-2020. The data are tiled\n        according to the Landsat ARD tile grid and consist of [Cloud Optimized GeoTIFFs](https://www.cogeo.org/)\n        (COGs) and corresponding metadata files. Note that the provided COGs differ\n        slightly from those in the USGS source data. They have been reprocessed to\n        add overviews, \\\\\\\"nodata\\\\\\\" values where appropriate, and an updated projection\n        definition.\\\\n\\\",\\\"item_assets\\\":{\\\"dates\\\":{\\\"type\\\":\\\"text/plain\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"Landsat\n        Observation Dates\\\",\\\"description\\\":\\\"Landsat observation dates used as input\n        to the CCDC algorithm.\\\"},\\\"lcpri\\\":{\\\"type\\\":\\\"image/tiff; application=geotiff;\n        profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Primary Land Cover\\\",\\\"description\\\":\\\"Land\n        cover classification consisting of eight general land cover types. The most\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Secondary\n        Land Cover\\\",\\\"description\\\":\\\"Land cover classification consisting of eight\n        general land cover types. The second most likely land cover according to the\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Change\n        Magnitude\\\",\\\"description\\\":\\\"The spectral strength or intensity of a time\n        series model 'break' when spectral observations have diverged from the model\n        predictions.\\\",\\\"raster:bands\\\":[{\\\"sampling\\\":\\\"area\\\",\\\"data_type\\\":\\\"float32\\\",\\\"spatial_resolution\\\":30}]},\\\"scmqa\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Model\n        Quality\\\",\\\"description\\\":\\\"Information regarding the type of time series\n        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\n        model established for July 1st of current year.\\\"},{\\\"name\\\":\\\"simple_model\\\",\\\"value\\\":4,\\\"description\\\":\\\"A\n        partial, 4-coefficient harmonic model.\\\"},{\\\"name\\\":\\\"advanced_model\\\",\\\"value\\\":6,\\\"description\\\":\\\"A\n        partial, 6-coefficient harmonic model.\\\"},{\\\"name\\\":\\\"full_model\\\",\\\"value\\\":8,\\\"description\\\":\\\"A\n        full, 8-coefficient harmonic model.\\\"},{\\\"name\\\":\\\"start_fit\\\",\\\"value\\\":14,\\\"description\\\":\\\"A\n        simple model at the beginning of a time series where sparse and/or highly\n        variable spectral measurements prevent establishment of a harmonic model.\\\"},{\\\"name\\\":\\\"end_fit\\\",\\\"value\\\":24,\\\"description\\\":\\\"A\n        simple model at the end of a time series where there are insufficient observations\n        and/or time to establish a new harmonic model following a model break.\\\"},{\\\"name\\\":\\\"insufficient_clear\\\",\\\"value\\\":44,\\\"description\\\":\\\"A\n        simple model for the entire time series in cases where fewer than 25% of input\n        observations are labeled as 'Clear' or 'Water' by the U.S. Landsat ARD per-pixel\n        quality band (PIXELQA).\\\"},{\\\"name\\\":\\\"persistent_snow\\\",\\\"value\\\":54,\\\"description\\\":\\\"A\n        simple model for the entire time series in cases where 75% or more of input\n        observations are labeled as 'Snow' by the U.S. Landsat ARD per-pixel quality\n        band (PIXELQA).\\\"}]},\\\"browse\\\":{\\\"type\\\":\\\"image/tiff; application=geotiff;\n        profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"USGS Browse Image\\\",\\\"description\\\":\\\"Image\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Annual\n        Land Cover Change\\\",\\\"description\\\":\\\"Synthesis of Primary Land Cover of current\n        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\n        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\n        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\n        change from Developed to Cropland\\\"},{\\\"name\\\":\\\"1_to_3\\\",\\\"value\\\":13,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Developed to Grass/Shrub\\\"},{\\\"name\\\":\\\"1_to_4\\\",\\\"value\\\":14,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Developed to Tree Cover\\\"},{\\\"name\\\":\\\"1_to_5\\\",\\\"value\\\":15,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Developed to Water\\\"},{\\\"name\\\":\\\"1_to_6\\\",\\\"value\\\":16,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Developed to Wetlands\\\"},{\\\"name\\\":\\\"1_to_7\\\",\\\"value\\\":17,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Developed to Snow/Ice\\\"},{\\\"name\\\":\\\"1_to_8\\\",\\\"value\\\":18,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Developed to Barren\\\"},{\\\"name\\\":\\\"2_to_1\\\",\\\"value\\\":21,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Cropland to Developed\\\"},{\\\"name\\\":\\\"2_to_3\\\",\\\"value\\\":23,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Cropland to Grass/Shrub\\\"},{\\\"name\\\":\\\"2_to_4\\\",\\\"value\\\":24,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Cropland to Tree Cover\\\"},{\\\"name\\\":\\\"2_to_5\\\",\\\"value\\\":25,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Cropland to Water\\\"},{\\\"name\\\":\\\"2_to_6\\\",\\\"value\\\":26,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Cropland to Wetlands\\\"},{\\\"name\\\":\\\"2_to_7\\\",\\\"value\\\":27,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Cropland to Snow/Ice\\\"},{\\\"name\\\":\\\"2_to_8\\\",\\\"value\\\":28,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Cropland to Barren\\\"},{\\\"name\\\":\\\"3_to_1\\\",\\\"value\\\":31,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Grass/Shrub to Developed\\\"},{\\\"name\\\":\\\"3_to_2\\\",\\\"value\\\":32,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Grass/Shrub to Cropland\\\"},{\\\"name\\\":\\\"3_to_4\\\",\\\"value\\\":34,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Grass/Shrub to Tree Cover\\\"},{\\\"name\\\":\\\"3_to_5\\\",\\\"value\\\":35,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Grass/Shrub to Water\\\"},{\\\"name\\\":\\\"3_to_6\\\",\\\"value\\\":36,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Grass/Shrub to Wetlands\\\"},{\\\"name\\\":\\\"3_to_7\\\",\\\"value\\\":37,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Grass/Shrub to Snow/Ice\\\"},{\\\"name\\\":\\\"3_to_8\\\",\\\"value\\\":38,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Grass/Shrub to Barren\\\"},{\\\"name\\\":\\\"4_to_1\\\",\\\"value\\\":41,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Tree Cover to Developed\\\"},{\\\"name\\\":\\\"4_to_2\\\",\\\"value\\\":42,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Tree Cover to Cropland\\\"},{\\\"name\\\":\\\"4_to_3\\\",\\\"value\\\":43,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Tree Cover to Grass/Shrub\\\"},{\\\"name\\\":\\\"4_to_5\\\",\\\"value\\\":45,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Tree Cover to Water\\\"},{\\\"name\\\":\\\"4_to_6\\\",\\\"value\\\":46,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Tree Cover to Wetlands\\\"},{\\\"name\\\":\\\"4_to_7\\\",\\\"value\\\":47,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Tree Cover to Snow/Ice\\\"},{\\\"name\\\":\\\"4_to_8\\\",\\\"value\\\":48,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Tree Cover to Barren\\\"},{\\\"name\\\":\\\"5_to_1\\\",\\\"value\\\":51,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Water to Developed\\\"},{\\\"name\\\":\\\"5_to_2\\\",\\\"value\\\":52,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Water to Cropland\\\"},{\\\"name\\\":\\\"5_to_3\\\",\\\"value\\\":53,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Water to Grass/Shrub\\\"},{\\\"name\\\":\\\"5_to_4\\\",\\\"value\\\":54,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Water to Tree Cover\\\"},{\\\"name\\\":\\\"5_to_6\\\",\\\"value\\\":56,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Water to Wetlands\\\"},{\\\"name\\\":\\\"5_to_7\\\",\\\"value\\\":57,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Water to Snow/Ice\\\"},{\\\"name\\\":\\\"5_to_8\\\",\\\"value\\\":58,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Water to Barren\\\"},{\\\"name\\\":\\\"6_to_1\\\",\\\"value\\\":61,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Wetlands to Developed\\\"},{\\\"name\\\":\\\"6_to_2\\\",\\\"value\\\":62,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Wetlands to Cropland\\\"},{\\\"name\\\":\\\"6_to_3\\\",\\\"value\\\":63,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Wetlands to Grass/Shrub\\\"},{\\\"name\\\":\\\"6_to_4\\\",\\\"value\\\":64,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Wetlands to Tree Cover\\\"},{\\\"name\\\":\\\"6_to_5\\\",\\\"value\\\":65,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Wetlands to Water\\\"},{\\\"name\\\":\\\"6_to_7\\\",\\\"value\\\":67,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Wetlands to Snow/Ice\\\"},{\\\"name\\\":\\\"6_to_8\\\",\\\"value\\\":68,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Wetlands to Barren\\\"},{\\\"name\\\":\\\"7_to_1\\\",\\\"value\\\":71,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Snow/Ice to Developed\\\"},{\\\"name\\\":\\\"7_to_2\\\",\\\"value\\\":72,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Snow/Ice to Cropland\\\"},{\\\"name\\\":\\\"7_to_3\\\",\\\"value\\\":73,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Snow/Ice to Grass/Shrub\\\"},{\\\"name\\\":\\\"7_to_4\\\",\\\"value\\\":74,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Snow/Ice to Tree Cover\\\"},{\\\"name\\\":\\\"7_to_5\\\",\\\"value\\\":75,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Snow/Ice to Water\\\"},{\\\"name\\\":\\\"7_to_6\\\",\\\"value\\\":76,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Snow/Ice to Wetlands\\\"},{\\\"name\\\":\\\"7_to_8\\\",\\\"value\\\":78,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Snow/Ice to Barren\\\"},{\\\"name\\\":\\\"8_to_1\\\",\\\"value\\\":81,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Barren to Developed\\\"},{\\\"name\\\":\\\"8_to_2\\\",\\\"value\\\":82,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Barren to Cropland\\\"},{\\\"name\\\":\\\"8_to_3\\\",\\\"value\\\":83,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Barren to Grass/Shrub\\\"},{\\\"name\\\":\\\"8_to_4\\\",\\\"value\\\":84,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Barren to Tree Cover\\\"},{\\\"name\\\":\\\"8_to_5\\\",\\\"value\\\":85,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Barren to Water\\\"},{\\\"name\\\":\\\"8_to_6\\\",\\\"value\\\":86,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Barren to Wetlands\\\"},{\\\"name\\\":\\\"8_to_7\\\",\\\"value\\\":87,\\\"color_hint\\\":\\\"ab00d6\\\",\\\"description\\\":\\\"Cover\n        change from Barren to Snow/Ice\\\"}]},\\\"sclast\\\":{\\\"type\\\":\\\"image/tiff; application=geotiff;\n        profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Time Since Last\n        Change\\\",\\\"description\\\":\\\"Time, in days, since the last identified Spectral\n        Change (SCTIME).\\\",\\\"raster:bands\\\":[{\\\"sampling\\\":\\\"area\\\",\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":30}]},\\\"scstab\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Spectral\n        Stability Period\\\",\\\"description\\\":\\\"Measure of the amount of time in days\n        that a pixel has been in its current spectral state as of July 1st. Current\n        spectral state can refer to both during stable time series segments or a period\n        outside of stable time series segments.\\\",\\\"raster:bands\\\":[{\\\"sampling\\\":\\\"area\\\",\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":30}]},\\\"sctime\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Time\n        of Spectral Change\\\",\\\"description\\\":\\\"Represents the timing of a spectral\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Primary\n        Land Cover Confidence\\\",\\\"description\\\":\\\"Provides provenance tracking and\n        a measure of confidence that the Primary Land Cover label matches the training\n        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\n        of confidence that the Primary Land Cover label matches the training data.\\\"},{\\\"values\\\":[151],\\\"summary\\\":\\\"Time\n        series model identified as transition from a Grass/Shrub class to a Tree Cover\n        class. Primary Land Cover class assignment based on secondary analysis.\\\"},{\\\"values\\\":[152],\\\"summary\\\":\\\"Time\n        series model identified as transition from a Tree Cover class to a Grass/Shrub\n        class. Primary Land cover class assignment based on secondary analysis.\\\"},{\\\"values\\\":[201],\\\"summary\\\":\\\"No\n        stable time series models were produced for this location. Primary Land Cover\n        was assigned the land cover class present in NLCD-2001 (cross-walked to LCMAP\n        Level 1 classification schema, see LCMAP Science Product Guide for more information).\\\"},{\\\"values\\\":[202],\\\"summary\\\":\\\"Insufficient\n        data available to extend most recent time series model past July 1st of current\n        year. Land cover assigned the last identified cover class from earlier year.\\\"},{\\\"values\\\":[211],\\\"summary\\\":\\\"July\n        1st falls in a gap between two stable time series models of the same land\n        cover class. Primary Land Cover assigned the primary land cover class of those\n        before/after models.\\\"},{\\\"values\\\":[212],\\\"summary\\\":\\\"July 1st falls in\n        a gap between two stable time series models of differing land cover class.\n        If July 1st is before the 'break date' of the earlier model, Primary Land\n        Cover is assigned the primary land cover class of that earlier model. Otherwise,\n        Primary Land Cover is assigned the primary land cover class of the subsequent,\n        later model.\\\"},{\\\"values\\\":[213],\\\"summary\\\":\\\"Insufficient data available\n        to establish a stable time series model at the beginning of the time series\n        prior to July 1st of the current year. Primary Land Cover assigned the primary\n        land cover class of 1st subsequent model.\\\"},{\\\"values\\\":[214],\\\"summary\\\":\\\"Insufficient\n        data available to establish a new stable time series model following a break\n        near the end of the time series prior to July 1st of the current year. Primary\n        Land Cover assigned the last identified primary land cover class from earlier\n        year.\\\"}],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"sampling\\\":\\\"area\\\",\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":30}]},\\\"lcsconf\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Secondary\n        Land Cover Confidence\\\",\\\"description\\\":\\\"Provides provenance tracking and\n        a measure of confidence that the Secondary Land Cover label matches the training\n        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\n        of confidence that the Secondary Land Cover label matches the training data.\\\"},{\\\"values\\\":[151],\\\"summary\\\":\\\"Time\n        series model identified as transition from a Grass/Shrub class to a Tree Cover\n        class in Primary Land Cover. Primary Land Cover class assignment based on\n        secondary analysis and Secondary Land Cover class assigned logical opposite\n        of Primary.\\\"},{\\\"values\\\":[152],\\\"summary\\\":\\\"Time series model identified\n        as transition from a Tree Cover class to a Grass/Shrub class in Primary Land\n        Cover. Primary Land Cover class assignment based on secondary analysis and\n        Secondary Land Cover class assigned logical opposite of Primary.\\\"},{\\\"values\\\":[201],\\\"summary\\\":\\\"No\n        stable time series models were produced for this location. Secondary Land\n        Cover assigned the land cover class present in NLCD-2001 (cross-walked to\n        LCMAP classification schema, see LCMAP Science Product Guide for more information).\\\"},{\\\"values\\\":[202],\\\"summary\\\":\\\"Insufficient\n        data available to extend most recent time series model past July 1st of current\n        year. Secondary Land Cover assigned the last identified secondary cover class\n        from earlier year.\\\"},{\\\"values\\\":[211],\\\"summary\\\":\\\"July 1st falls in a\n        gap between two stable time series models of the same secondary land cover\n        class. Secondary Land Cover assigned the land cover class of those before/after\n        models.\\\"},{\\\"values\\\":[212],\\\"summary\\\":\\\"July 1st falls in a gap between\n        two stable time series models of differing secondary land cover classes. If\n        July 1st is before the 'break date' of the earlier model, Secondary Land Cover\n        is assigned the secondary land cover class of the earlier model. Otherwise,\n        Secondary Land Cover is assigned the secondary land cover class of the subsequent\n        model.\\\"},{\\\"values\\\":[213],\\\"summary\\\":\\\"Insufficient data available to establish\n        a stable time series model at the beginning of the time series prior to July\n        1st of the current year. Secondary Land Cover assigned the secondary land\n        cover class of 1st subsequent model.\\\"},{\\\"values\\\":[214],\\\"summary\\\":\\\"Insufficient\n        data available to establish a new stable time series model following a break\n        near the end of the time series prior to July 1st of the current year. Secondary\n        Land Cover assigned the last identified secondary cover class from earlier\n        year.\\\"}],\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"sampling\\\":\\\"area\\\",\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":30}]},\\\"lcpri_metadata\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"Primary\n        Land Cover Metadata\\\",\\\"description\\\":\\\"Primary Land Cover product metadata\\\"},\\\"lcsec_metadata\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"Secondary\n        Land Cover Metadata\\\",\\\"description\\\":\\\"Secondary Land Cover product metadata\\\"},\\\"scmag_metadata\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"Change\n        Magnitude Metadata\\\",\\\"description\\\":\\\"Change Magnitude product metadata\\\"},\\\"scmqa_metadata\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"Model\n        Quality Metadata\\\",\\\"description\\\":\\\"Model Quality product metadata\\\"},\\\"lcachg_metadata\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"Annual\n        Land Cover Change Metadata\\\",\\\"description\\\":\\\"Annual Land Cover Change product\n        metadata\\\"},\\\"sclast_metadata\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"Time\n        Since Last Change Metadata\\\",\\\"description\\\":\\\"Time Since Last Change product\n        metadata\\\"},\\\"scstab_metadata\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"Spectral\n        Stability Period Metadata\\\",\\\"description\\\":\\\"Spectral Stability Period product\n        metadata\\\"},\\\"sctime_metadata\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"Time\n        of Spectral Change Metadata\\\",\\\"description\\\":\\\"Time of Spectral Change product\n        metadata\\\"},\\\"lcpconf_metadata\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"Primary\n        Land Cover Confidence Metadata\\\",\\\"description\\\":\\\"Primary Land Cover Confidence\n        product metadata\\\"},\\\"lcsconf_metadata\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"Secondary\n        Land Cover Confidence Metadata\\\",\\\"description\\\":\\\"Secondary Land Cover Confidence\n        product metadata\\\"}},\\\"sci:citation\\\":\\\"U.S. Geological Survey (USGS), 2022,\n        Land Change Monitoring, Assessment, and Projection (LCMAP) Collection 1.0\n        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,\n        C., Xian, G., Wellington, D., Smith, K., Horton, J., &amp; Zhou, Q., 2022,\n        Development of the LCMAP annual land cover product across Hawaii: International\n        Journal of Applied Earth Observation and Geoinformation, v. 113, article 103015.\\\"},{\\\"doi\\\":\\\"10.1016/j.rse.2019.111356\\\",\\\"citation\\\":\\\"Brown,\n        J.F., Tollerud, H.J., Barber, C.P., Zhou, Q., Dwyer, J.L., Vogelmann, J.E.,\n        Loveland, T.R., Woodcock, C.E., Stehman, S.V., Zhu, Z., Pengra, B.W., Smith,\n        K., Horton, J.A., Xian, G., Auch, R.F., Sohl, T.L., Sayler, K.L., Gallant,\n        A.L., Zelenak, D., Reker, R.R., and Rover, J., 2020, Lessons learned implementing\n        an operational continuous United States national land change monitoring capability-The\n        Land Change Monitoring, Assessment, and Projection (LCMAP) approach: Remote\n        Sensing of Environment, v. 238, article 111356\\\"}],\\\"msft:storage_account\\\":\\\"landcoverdata\\\",\\\"msft:short_description\\\":\\\"USGS\n        Land Change Monitoring, Assessment, and Projection (LCMAP) Collection 1.0\n        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\n        U.S. Climate Normals Landing Page\\\"},{\\\"rel\\\":\\\"license\\\",\\\"href\\\":\\\"https://www.noaa.gov/information-technology/open-data-dissemination\\\",\\\"type\\\":\\\"text/html\\\",\\\"title\\\":\\\"NOAA\n        Open Data Dissemination\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/noaa-climate-normals-tabular\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"NOAA\n        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\n        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\n        STAC items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        Normals\\\",\\\"Weather\\\",\\\"Surface Observations\\\",\\\"Climatology\\\",\\\"CONUS\\\"],\\\"providers\\\":[{\\\"url\\\":\\\"https://www.ncei.noaa.gov/\\\",\\\"name\\\":\\\"NOAA\n        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\n        [NOAA United States Climate Normals](https://www.ncei.noaa.gov/products/land-based-station/us-climate-normals)\n        provide information about typical climate conditions for thousands of weather\n        station locations across the United States. Normals act both as a ruler to\n        compare current weather and as a predictor of conditions in the near future.\n        The official normals are calculated for a uniform 30 year period, and consist\n        of annual/seasonal, monthly, daily, and hourly averages and statistics of\n        temperature, precipitation, and other climatological variables for each weather\n        station. \\\\n\\\\nNOAA produces Climate Normals in accordance with the [World\n        Meteorological Organization](https://public.wmo.int/en) (WMO), of which the\n        United States is a member. The WMO requires each member nation to compute\n        30-year meteorological quantity averages at least every 30 years, and recommends\n        an update each decade, in part to incorporate newer weather stations. The\n        1991\\u20132020 U.S. Climate Normals are the latest in a series of decadal\n        normals first produced in the 1950s. \\\\n\\\\nThis Collection contains tabular\n        weather variable data at weather station locations in GeoParquet format, converted\n        from the source CSV files. The source NetCDF files are delivered to Azure\n        as part of the [NOAA Open Data Dissemination (NODD) Program](https://www.noaa.gov/information-technology/open-data-dissemination).\\\\n\\\\nData\n        are provided for annual/seasonal, monthly, daily, and hourly frequencies for\n        the following time periods:\\\\n\\\\n- Legacy 30-year normals (1981\\u20132010)\\\\n-\n        Supplemental 15-year normals (2006\\u20132020)\\\\n\\\",\\\"item_assets\\\":{\\\"geoparquet\\\":{\\\"type\\\":\\\"application/x-parquet\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Dataset\n        root\\\",\\\"table:storage_options\\\":{\\\"account_name\\\":\\\"noaanormals\\\"}}},\\\"msft:region\\\":\\\"eastus\\\",\\\"stac_version\\\":\\\"1.0.0\\\",\\\"table:tables\\\":[{\\\"name\\\":\\\"1981_2010-hourly\\\",\\\"description\\\":\\\"Hourly\n        Climate Normals for Period 1981-2010\\\"},{\\\"name\\\":\\\"1981_2010-daily\\\",\\\"description\\\":\\\"Daily\n        Climate Normals for Period 1981-2010\\\"},{\\\"name\\\":\\\"1981_2010-monthly\\\",\\\"description\\\":\\\"Monthly\n        Climate Normals for Period 1981-2010\\\"},{\\\"name\\\":\\\"1981_2010-annualseasonal\\\",\\\"description\\\":\\\"Annual/Seasonal\n        Climate Normals for Period 1981-2010\\\"},{\\\"name\\\":\\\"1991_2020-hourly\\\",\\\"description\\\":\\\"Hourly\n        Climate Normals for Period 1991-2020\\\"},{\\\"name\\\":\\\"1991_2020-daily\\\",\\\"description\\\":\\\"Daily\n        Climate Normals for Period 1991-2020\\\"},{\\\"name\\\":\\\"1991_2020-monthly\\\",\\\"description\\\":\\\"Monthly\n        Climate Normals for Period 1991-2020\\\"},{\\\"name\\\":\\\"1991_2020-annualseasonal\\\",\\\"description\\\":\\\"Annual/Seasonal\n        Climate Normals for Period 1991-2020\\\"},{\\\"name\\\":\\\"2006_2020-hourly\\\",\\\"description\\\":\\\"Hourly\n        Climate Normals for Period 2006-2020\\\"},{\\\"name\\\":\\\"2006_2020-daily\\\",\\\"description\\\":\\\"Daily\n        Climate Normals for Period 2006-2020\\\"},{\\\"name\\\":\\\"2006_2020-monthly\\\",\\\"description\\\":\\\"Monthly\n        Climate Normals for Period 2006-2020\\\"},{\\\"name\\\":\\\"2006_2020-annualseasonal\\\",\\\"description\\\":\\\"Annual/Seasonal\n        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,\n        A., I. Durre, S. Applequist, R. Vose, M. Squires, X. Yin, R. Heim, and T.\n        Owen, 2012: NOAA's 1981-2010 climate normals: An overview. Bull. Amer. Meteor.\n        Soc., 93, 1687-1697. DOI: 10.1175/BAMS-D-11-00197.1.\\\"},{\\\"doi\\\":\\\"10.1175/BAMS-D-11-00173.1\\\",\\\"citation\\\":\\\"Applequist,\n        S., A. Arguez, I. Durre, M. Squires, R. Vose, and X. Yin, 2012: 1981-2010\n        U.S. Hourly Normals. Bulletin of the American Meteorological Society, 93,\n        1637-1640. DOI: 10.1175/BAMS-D-11-00173.1.\\\"}],\\\"msft:storage_account\\\":\\\"noaanormals\\\",\\\"msft:short_description\\\":\\\"Tabular\n        Climate Normal data for over 15,000 United States weather station locations\n        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\n        U.S. Climate Normals Landing Page\\\"},{\\\"rel\\\":\\\"license\\\",\\\"href\\\":\\\"https://www.noaa.gov/information-technology/open-data-dissemination\\\",\\\"type\\\":\\\"text/html\\\",\\\"title\\\":\\\"NOAA\n        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\n        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\n        for Monthly Gridded Normals\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/noaa-climate-normals-netcdf\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"NOAA\n        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\n        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\n        STAC items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        Normals\\\",\\\"Weather\\\",\\\"Surface Observations\\\",\\\"Climatology\\\",\\\"CONUS\\\"],\\\"providers\\\":[{\\\"url\\\":\\\"https://www.ncei.noaa.gov/\\\",\\\"name\\\":\\\"NOAA\n        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\n        [NOAA Gridded United States Climate Normals](https://www.ncei.noaa.gov/products/land-based-station/us-climate-normals#tab-1027)\n        provide a continuous grid of temperature and precipitation data across the\n        contiguous United States (CONUS). The grids are derived from NOAA's [NClimGrid\n        dataset](https://planetarycomputer.microsoft.com/dataset/group/noaa-nclimgrid),\n        and resolutions (nominal 5x5 kilometer) and spatial extents (CONUS) therefore\n        match that of NClimGrid. Monthly, seasonal, and annual gridded normals are\n        computed from simple averages of the NClimGrid data and are provided for three\n        time-periods: 1901\\u20132020, 1991\\u20132020, and 2006\\u20132020. Daily gridded\n        normals are smoothed for a smooth transition from one day to another and are\n        provided for two time-periods: 1991\\u20132020, and 2006\\u20132020.\\\\n\\\\nNOAA\n        produces Climate Normals in accordance with the [World Meteorological Organization](https://public.wmo.int/en)\n        (WMO), of which the United States is a member. The WMO requires each member\n        nation to compute 30-year meteorological quantity averages at least every\n        30 years, and recommends an update each decade, in part to incorporate newer\n        weather stations. The 1991\\u20132020 U.S. Climate Normals are the latest in\n        a series of decadal normals first produced in the 1950s. \\\\n\\\\nThe data in\n        this Collection are the original NetCDF files provided by NOAA's National\n        Centers for Environmental Information. This Collection contains gridded data\n        for the following frequencies and time periods:\\\\n\\\\n- Annual, seasonal, and\n        monthly normals\\\\n    - 100-year (1901\\u20132000)\\\\n    - 30-year (1991\\u20132020)\\\\n\n        \\   - 15-year (2006\\u20132020)\\\\n- Daily normals\\\\n    - 30-year (1991\\u20132020)\\\\n\n        \\   - 15-year (2006\\u20132020)\\\\n\\\\nFor most use-cases, we recommend using\n        the [`noaa-climate-normals-gridded`](https://planetarycomputer.microsoft.com/dataset/noaa-climate-normals-gridded)\n        collection, which contains the same data in Cloud Optimized GeoTIFF format.\n        The NetCDF files are delivered to Azure as part of the [NOAA Open Data Dissemination\n        (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\n        Climate Normals for the contiguous United States in the original NetCDF format\n        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\n        Landing Page\\\"},{\\\"rel\\\":\\\"about\\\",\\\"href\\\":\\\"https://www.goes-r.gov/users/docs/PUG-main-vol1.pdf\\\",\\\"type\\\":\\\"application/pdf\\\",\\\"title\\\":\\\"Product\n        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\n        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\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"GOES-R\n        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\n        GLM Thumbnail\\\"},\\\"geoparquet-items\\\":{\\\"href\\\":\\\"abfs://items/goes-glm.parquet\\\",\\\"type\\\":\\\"application/x-parquet\\\",\\\"roles\\\":[\\\"stac-items\\\"],\\\"title\\\":\\\"GeoParquet\n        STAC items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        [Geostationary Lightning Mapper (GLM)](https://www.goes-r.gov/spacesegment/glm.html)\n        is a single-channel, near-infrared optical transient detector that can detect\n        the momentary changes in an optical scene, indicating the presence of lightning.\n        GLM measures total lightning (in-cloud, cloud-to-cloud and cloud-to-ground)\n        activity continuously over the Americas and adjacent ocean regions with near-uniform\n        spatial resolution of approximately 10 km. GLM collects information such as\n        the frequency, location and extent of lightning discharges to identify intensifying\n        thunderstorms and tropical cyclones. Trends in total lightning available from\n        the GLM provide critical information to forecasters, allowing them to focus\n        on developing severe storms much earlier and before these storms produce damaging\n        winds, hail or even tornadoes.\\\\n\\\\nThe GLM data product consists of a hierarchy\n        of earth-located lightning radiant energy measures including events, groups,\n        and flashes:\\\\n\\\\n- Lightning events are detected by the instrument.\\\\n- Lightning\n        groups are a collection of one or more lightning events that satisfy temporal\n        and spatial coincidence thresholds.\\\\n- Similarly, lightning flashes are a\n        collection of one or more lightning groups that satisfy temporal and spatial\n        coincidence thresholds.\\\\n\\\\nThe product includes the relationship among lightning\n        events, groups, and flashes, and the area coverage of lightning groups and\n        flashes. The product also includes processing and data quality metadata, and\n        satellite state and location information. \\\\n\\\\nThe NetCDF files are delivered\n        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\n        NetCDF4 file\\\"}},\\\"msft:region\\\":\\\"westeurope\\\",\\\"sci:citation\\\":\\\"GOES-R\n        Algorithm Working Group and GOES-R Series Program, (2018): NOAA GOES-R Series\n        Geostationary Lightning Mapper (GLM) Level 2 Lightning Detection: Events,\n        Groups, and Flashes. NOAA National Centers for Environmental Information.\n        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\n        lightning detection over the Western Hemisphere from the Geostationary Lightning\n        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\n        Sentinel data terms\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/sentinel-1-grd\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"Sentinel\n        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\n        1 GRD\\\"},\\\"geoparquet-items\\\":{\\\"href\\\":\\\"abfs://items/sentinel-1-grd.parquet\\\",\\\"type\\\":\\\"application/x-parquet\\\",\\\"roles\\\":[\\\"stac-items\\\"],\\\"title\\\":\\\"GeoParquet\n        STAC items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        [Sentinel-1](https://sentinel.esa.int/web/sentinel/missions/sentinel-1) mission\n        is a constellation of two polar-orbiting satellites, operating day and night\n        performing C-band synthetic aperture radar imaging. The Level-1 Ground Range\n        Detected (GRD) products in this Collection consist of focused SAR data that\n        has been detected, multi-looked and projected to ground range using the Earth\n        ellipsoid model WGS84. The ellipsoid projection of the GRD products is corrected\n        using the terrain height specified in the product general annotation. The\n        terrain height used varies in azimuth but is constant in range (but can be\n        different for each IW/EW sub-swath).\\\\n\\\\nGround range coordinates are the\n        slant range coordinates projected onto the ellipsoid of the Earth. Pixel values\n        represent detected amplitude. Phase information is lost. The resulting product\n        has approximately square resolution pixels and square pixel spacing with reduced\n        speckle at a cost of reduced spatial resolution.\\\\n\\\\nFor the IW and EW GRD\n        products, multi-looking is performed on each burst individually. All bursts\n        in all sub-swaths are then seamlessly merged to form a single, contiguous,\n        ground range, detected image per polarization.\\\\n\\\\nFor more information see\n        the [ESA documentation](https://sentinel.esa.int/web/sentinel/user-guides/sentinel-1-sar/product-types-processing-levels/level-1)\\\\n\\\\n###\n        Terrain Correction\\\\n\\\\nUsers might want to geometrically or radiometrically\n        terrain correct the Sentinel-1 GRD data from this collection. The [Sentinel-1-RTC\n        Collection](https://planetarycomputer.microsoft.com/dataset/sentinel-1-rtc)\n        collection is a global radiometrically terrain corrected dataset derived from\n        Sentinel-1 GRD. Additionally, users can terrain-correct on the fly using [any\n        DEM available on the Planetary Computer](https://planetarycomputer.microsoft.com/catalog?tags=DEM).\n        See [Customizable radiometric terrain correction](https://planetarycomputer.microsoft.com/docs/tutorials/customizable-rtc-sentinel1/)\n        for more.\\\",\\\"item_assets\\\":{\\\"hh\\\":{\\\"type\\\":\\\"image/tiff; application=geotiff;\n        profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"HH: horizontal\n        transmit, horizontal receive\\\",\\\"description\\\":\\\"Amplitude of signal transmitted\n        with horizontal polarization and received with horizontal polarization with\n        radiometric terrain correction applied.\\\"},\\\"hv\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"HV:\n        horizontal transmit, vertical receive\\\",\\\"description\\\":\\\"Amplitude of signal\n        transmitted with horizontal polarization and received with vertical polarization\n        with radiometric terrain correction applied.\\\"},\\\"vh\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"VH:\n        vertical transmit, horizontal receive\\\",\\\"description\\\":\\\"Amplitude of signal\n        transmitted with vertical polarization and received with horizontal polarization\n        with radiometric terrain correction applied.\\\"},\\\"vv\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"VV:\n        vertical transmit, vertical receive\\\",\\\"description\\\":\\\"Amplitude of signal\n        transmitted with vertical polarization and received with vertical polarization\n        with radiometric terrain correction applied.\\\"},\\\"thumbnail\\\":{\\\"type\\\":\\\"image/png\\\",\\\"roles\\\":[\\\"thumbnail\\\"],\\\"title\\\":\\\"Preview\n        Image\\\",\\\"description\\\":\\\"An averaged, decimated preview image in PNG format.\n        Single polarisation products are represented with a grey scale image. Dual\n        polarisation products are represented by a single composite colour image in\n        RGB with the red channel (R) representing the  co-polarisation VV or HH),\n        the green channel (G) represents the cross-polarisation (VH or HV) and the\n        blue channel (B) represents the ratio of the cross an co-polarisations.\\\"},\\\"safe-manifest\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"Manifest\n        File\\\",\\\"description\\\":\\\"General product metadata in XML format. Contains\n        a high-level textual description of the product and references to all of product's\n        components, the product metadata, including the product identification and\n        the resource references, and references to the physical location of each component\n        file contained in the product.\\\"},\\\"schema-noise-hh\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"Noise\n        Schema\\\",\\\"description\\\":\\\"Estimated thermal noise look-up tables\\\"},\\\"schema-noise-hv\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"Noise\n        Schema\\\",\\\"description\\\":\\\"Estimated thermal noise look-up tables\\\"},\\\"schema-noise-vh\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"Noise\n        Schema\\\",\\\"description\\\":\\\"Estimated thermal noise look-up tables\\\"},\\\"schema-noise-vv\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"Noise\n        Schema\\\",\\\"description\\\":\\\"Estimated thermal noise look-up tables\\\"},\\\"schema-product-hh\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"Product\n        Schema\\\",\\\"description\\\":\\\"Describes the main characteristics corresponding\n        to the band: state of the platform during acquisition, image properties, Doppler\n        information, geographic location, etc.\\\"},\\\"schema-product-hv\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"Product\n        Schema\\\",\\\"description\\\":\\\"Describes the main characteristics corresponding\n        to the band: state of the platform during acquisition, image properties, Doppler\n        information, geographic location, etc.\\\"},\\\"schema-product-vh\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"Product\n        Schema\\\",\\\"description\\\":\\\"Describes the main characteristics corresponding\n        to the band: state of the platform during acquisition, image properties, Doppler\n        information, geographic location, etc.\\\"},\\\"schema-product-vv\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"Product\n        Schema\\\",\\\"description\\\":\\\"Describes the main characteristics corresponding\n        to the band: state of the platform during acquisition, image properties, Doppler\n        information, geographic location, etc.\\\"},\\\"schema-calibration-hh\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"Calibration\n        Schema\\\",\\\"description\\\":\\\"Calibration metadata including calibration information\n        and the beta nought, sigma nought, gamma and digital number look-up tables\n        that can be used for absolute product calibration.\\\"},\\\"schema-calibration-hv\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"Calibration\n        Schema\\\",\\\"description\\\":\\\"Calibration metadata including calibration information\n        and the beta nought, sigma nought, gamma and digital number look-up tables\n        that can be used for absolute product calibration.\\\"},\\\"schema-calibration-vh\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"Calibration\n        Schema\\\",\\\"description\\\":\\\"Calibration metadata including calibration information\n        and the beta nought, sigma nought, gamma and digital number look-up tables\n        that can be used for absolute product calibration.\\\"},\\\"schema-calibration-vv\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"Calibration\n        Schema\\\",\\\"description\\\":\\\"Calibration metadata including calibration information\n        and the beta nought, sigma nought, gamma and digital number look-up tables\n        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\n        Level-1 Ground Range Detected (GRD) products consist of focused SAR data that\n        has been detected, multi-looked and projected to ground range using an Earth\n        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\n        U.S. Climate Normals Landing Page\\\"},{\\\"rel\\\":\\\"license\\\",\\\"href\\\":\\\"https://www.noaa.gov/information-technology/open-data-dissemination\\\",\\\"type\\\":\\\"text/html\\\",\\\"title\\\":\\\"NOAA\n        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\n        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\n        for Monthly Gridded Normals\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/noaa-climate-normals-gridded\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"NOAA\n        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\n        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\n        STAC items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        Normals\\\",\\\"Weather\\\",\\\"Surface Observations\\\",\\\"Climatology\\\",\\\"CONUS\\\"],\\\"providers\\\":[{\\\"url\\\":\\\"https://www.ncei.noaa.gov/\\\",\\\"name\\\":\\\"NOAA\n        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\n        [NOAA Gridded United States Climate Normals](https://www.ncei.noaa.gov/products/land-based-station/us-climate-normals#tab-1027)\n        provide a continuous grid of temperature and precipitation data across the\n        contiguous United States (CONUS). The grids are derived from NOAA's [NClimGrid\n        dataset](https://planetarycomputer.microsoft.com/dataset/group/noaa-nclimgrid),\n        and resolutions (nominal 5x5 kilometer) and spatial extents (CONUS) therefore\n        match that of NClimGrid. Monthly, seasonal, and annual gridded normals are\n        computed from simple averages of the NClimGrid data and are provided for three\n        time-periods: 1901\\u20132020, 1991\\u20132020, and 2006\\u20132020. Daily gridded\n        normals are smoothed for a smooth transition from one day to another and are\n        provided for two time-periods: 1991\\u20132020, and 2006\\u20132020.\\\\n\\\\nNOAA\n        produces Climate Normals in accordance with the [World Meteorological Organization](https://public.wmo.int/en)\n        (WMO), of which the United States is a member. The WMO requires each member\n        nation to compute 30-year meteorological quantity averages at least every\n        30 years, and recommends an update each decade, in part to incorporate newer\n        weather stations. The 1991\\u20132020 U.S. Climate Normals are the latest in\n        a series of decadal normals first produced in the 1950s. \\\\n\\\\nThis Collection\n        contains gridded data for the following frequencies and time periods:\\\\n\\\\n-\n        Annual, seasonal, and monthly normals\\\\n    - 100-year (1901\\u20132000)\\\\n\n        \\   - 30-year (1991\\u20132020)\\\\n    - 15-year (2006\\u20132020)\\\\n- Daily\n        normals\\\\n    - 30-year (1991\\u20132020)\\\\n    - 15-year (2006\\u20132020)\\\\n\\\\nThe\n        data in this Collection have been converted from the original NetCDF format\n        to Cloud Optimized GeoTIFFs (COGs). The source NetCDF files are delivered\n        to Azure as part of the [NOAA Open Data Dissemination (NODD) Program](https://www.noaa.gov/information-technology/open-data-dissemination).\\\\n\\\\n##\n        STAC Metadata\\\\n\\\\nThe STAC items in this collection contain several custom\n        fields that can be used to further filter the data.\\\\n\\\\n* `noaa_climate_normals:period`:\n        Climate normal time period. This can be \\\\\\\"1901-2000\\\\\\\", \\\\\\\"1991-2020\\\\\\\",\n        or \\\\\\\"2006-2020\\\\\\\".\\\\n* `noaa_climate_normals:frequency`: Climate normal\n        temporal interval (frequency). This can be \\\\\\\"daily\\\\\\\", \\\\\\\"monthly\\\\\\\",\n        \\\\\\\"seasonal\\\\\\\" , or \\\\\\\"annual\\\\\\\"\\\\n* `noaa_climate_normals:time_index`:\n        Time step index, e.g., month of year (1-12).\\\\n\\\\nThe `description` field\n        of the assets varies by frequency. Using `prcp_norm` as an example, the descriptions\n        are\\\\n\\\\n* annual: \\\\\\\"Annual precipitation normals from monthly precipitation\n        normal values\\\\\\\"\\\\n* seasonal: \\\\\\\"Seasonal precipitation normals (WSSF)\n        from monthly normals\\\\\\\"\\\\n* monthly: \\\\\\\"Monthly precipitation normals from\n        monthly precipitation values\\\\\\\"\\\\n* daily: \\\\\\\"Precipitation normals from\n        daily averages\\\\\\\"\\\\n\\\\nCheck the assets on individual items for the appropriate\n        description.\\\\n\\\\nThe STAC keys for most assets consist of two abbreviations.\n        A \\\\\\\"variable\\\\\\\":\\\\n\\\\n\\\\n| Abbreviation |               Description                |\\\\n|\n        ------------ | ---------------------------------------- |\\\\n| prcp         |\n        Precipitation over the time period       |\\\\n| tavg         | Mean temperature\n        over the time period    |\\\\n| tmax         | Maximum temperature over the\n        time period |\\\\n| tmin         | Minimum temperature over the time period\n        |\\\\n\\\\nAnd an \\\\\\\"aggregation\\\\\\\":\\\\n\\\\n| Abbreviation |                                  Description\n        \\                                  |\\\\n| ------------ | ------------------------------------------------------------------------------\n        |\\\\n| max          | Maximum of the variable over the time period                                   |\\\\n|\n        min          | Minimum of the variable over the time period                                   |\\\\n|\n        std          | Standard deviation of the value over the time period                           |\\\\n|\n        flag         | An count of the number of inputs (months, years, etc.) to calculate\n        the normal |\\\\n| norm         | The normal for the variable over the time\n        period                               |\\\\n\\\\nSo, for example, `prcp_max` for\n        monthly data is the \\\\\\\"Maximum values of all input monthly precipitation\n        normal values\\\\\\\".\\\\n\\\",\\\"item_assets\\\":{\\\"prcp_max\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"raster:bands\\\":[{\\\"unit\\\":\\\"millimeter\\\",\\\"nodata\\\":\\\"nan\\\",\\\"data_type\\\":\\\"float32\\\",\\\"spatial_resolution\\\":5000}]},\\\"prcp_min\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"raster:bands\\\":[{\\\"unit\\\":\\\"millimeter\\\",\\\"nodata\\\":\\\"nan\\\",\\\"data_type\\\":\\\"float32\\\",\\\"spatial_resolution\\\":5000}]},\\\"prcp_std\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"raster:bands\\\":[{\\\"unit\\\":\\\"millimeter\\\",\\\"nodata\\\":\\\"nan\\\",\\\"data_type\\\":\\\"float32\\\",\\\"spatial_resolution\\\":5000}]},\\\"tavg_max\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"raster:bands\\\":[{\\\"unit\\\":\\\"degree\n        Celsius\\\",\\\"nodata\\\":\\\"nan\\\",\\\"data_type\\\":\\\"float32\\\",\\\"spatial_resolution\\\":5000}]},\\\"tavg_min\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"raster:bands\\\":[{\\\"unit\\\":\\\"degree\n        Celsius\\\",\\\"nodata\\\":\\\"nan\\\",\\\"data_type\\\":\\\"float32\\\",\\\"spatial_resolution\\\":5000}]},\\\"tavg_std\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"raster:bands\\\":[{\\\"unit\\\":\\\"degree\n        Celsius\\\",\\\"nodata\\\":\\\"nan\\\",\\\"data_type\\\":\\\"float32\\\",\\\"spatial_resolution\\\":5000}]},\\\"tmax_max\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"raster:bands\\\":[{\\\"unit\\\":\\\"degree\n        Celsius\\\",\\\"nodata\\\":\\\"nan\\\",\\\"data_type\\\":\\\"float32\\\",\\\"spatial_resolution\\\":5000}]},\\\"tmax_min\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"raster:bands\\\":[{\\\"unit\\\":\\\"degree\n        Celsius\\\",\\\"nodata\\\":\\\"nan\\\",\\\"data_type\\\":\\\"float32\\\",\\\"spatial_resolution\\\":5000}]},\\\"tmax_std\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"raster:bands\\\":[{\\\"unit\\\":\\\"degree\n        Celsius\\\",\\\"nodata\\\":\\\"nan\\\",\\\"data_type\\\":\\\"float32\\\",\\\"spatial_resolution\\\":5000}]},\\\"tmin_max\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"raster:bands\\\":[{\\\"unit\\\":\\\"degree\n        Celsius\\\",\\\"nodata\\\":\\\"nan\\\",\\\"data_type\\\":\\\"float32\\\",\\\"spatial_resolution\\\":5000}]},\\\"tmin_min\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"raster:bands\\\":[{\\\"unit\\\":\\\"degree\n        Celsius\\\",\\\"nodata\\\":\\\"nan\\\",\\\"data_type\\\":\\\"float32\\\",\\\"spatial_resolution\\\":5000}]},\\\"tmin_std\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"raster:bands\\\":[{\\\"unit\\\":\\\"degree\n        Celsius\\\",\\\"nodata\\\":\\\"nan\\\",\\\"data_type\\\":\\\"float32\\\",\\\"spatial_resolution\\\":5000}]},\\\"prcp_flag\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"raster:bands\\\":[{\\\"unit\\\":\\\"months\\\",\\\"nodata\\\":0,\\\"data_type\\\":\\\"float32\\\",\\\"spatial_resolution\\\":5000}]},\\\"prcp_norm\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"raster:bands\\\":[{\\\"unit\\\":\\\"millimeter\\\",\\\"nodata\\\":\\\"nan\\\",\\\"data_type\\\":\\\"float32\\\",\\\"spatial_resolution\\\":5000}]},\\\"tavg_flag\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"raster:bands\\\":[{\\\"unit\\\":\\\"months\\\",\\\"nodata\\\":0,\\\"data_type\\\":\\\"float32\\\",\\\"spatial_resolution\\\":5000}]},\\\"tavg_norm\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"raster:bands\\\":[{\\\"unit\\\":\\\"degree\n        Celsius\\\",\\\"nodata\\\":\\\"nan\\\",\\\"data_type\\\":\\\"float32\\\",\\\"spatial_resolution\\\":5000}]},\\\"tmax_flag\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"raster:bands\\\":[{\\\"unit\\\":\\\"months\\\",\\\"nodata\\\":0,\\\"data_type\\\":\\\"float32\\\",\\\"spatial_resolution\\\":5000}]},\\\"tmax_norm\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"raster:bands\\\":[{\\\"unit\\\":\\\"degree\n        Celsius\\\",\\\"nodata\\\":\\\"nan\\\",\\\"data_type\\\":\\\"float32\\\",\\\"spatial_resolution\\\":5000}]},\\\"tmin_flag\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"raster:bands\\\":[{\\\"unit\\\":\\\"months\\\",\\\"nodata\\\":0,\\\"data_type\\\":\\\"float32\\\",\\\"spatial_resolution\\\":5000}]},\\\"tmin_norm\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"raster:bands\\\":[{\\\"unit\\\":\\\"degree\n        Celsius\\\",\\\"nodata\\\":\\\"nan\\\",\\\"data_type\\\":\\\"float32\\\",\\\"spatial_resolution\\\":5000}]},\\\"m2dprcp_norm\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"description\\\":\\\"Month-To-Day\n        Precipitation normals\\\",\\\"raster:bands\\\":[{\\\"unit\\\":\\\"millimeter\\\",\\\"nodata\\\":\\\"nan\\\",\\\"data_type\\\":\\\"float32\\\",\\\"spatial_resolution\\\":5000}]},\\\"y2dprcp_norm\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"description\\\":\\\"Year-To-Day\n        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\n        Climate Normals for the contiguous United States in Cloud Optimized GeoTIFF\n        (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\n        Domain\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/aster-l1t\\\",\\\"type\\\":\\\"text/html\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/aster-l1t\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"ASTER\n        L1T\\\",\\\"assets\\\":{\\\"thumbnail\\\":{\\\"href\\\":\\\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/aster.png\\\",\\\"type\\\":\\\"image/png\\\",\\\"roles\\\":[\\\"thumbnail\\\"],\\\"title\\\":\\\"ASTER\n        L1T\\\"},\\\"geoparquet-items\\\":{\\\"href\\\":\\\"abfs://items/aster-l1t.parquet\\\",\\\"type\\\":\\\"application/x-parquet\\\",\\\"roles\\\":[\\\"stac-items\\\"],\\\"title\\\":\\\"GeoParquet\n        STAC items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        yellow/green\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.08},{\\\"gsd\\\":15,\\\"name\\\":\\\"VNIR_Band2\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"visible\n        red\\\",\\\"center_wavelength\\\":0.66,\\\"full_width_half_max\\\":0.06},{\\\"gsd\\\":15,\\\"name\\\":\\\"VNIR_Band3N\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"near\n        infrared\\\",\\\"center_wavelength\\\":0.82,\\\"full_width_half_max\\\":0.08},{\\\"gsd\\\":30,\\\"name\\\":\\\"SWIR_Band4\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"short-wave\n        infrared\\\",\\\"center_wavelength\\\":1.65,\\\"full_width_half_max\\\":0.1},{\\\"gsd\\\":30,\\\"name\\\":\\\"SWIR_Band5\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"short-wave\n        infrared\\\",\\\"center_wavelength\\\":2.165,\\\"full_width_half_max\\\":0.04},{\\\"gsd\\\":30,\\\"name\\\":\\\"SWIR_Band6\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"short-wave\n        infrared\\\",\\\"center_wavelength\\\":2.205,\\\"full_width_half_max\\\":0.04},{\\\"gsd\\\":30,\\\"name\\\":\\\"SWIR_Band7\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"short-wave\n        infrared\\\",\\\"center_wavelength\\\":2.26,\\\"full_width_half_max\\\":0.05},{\\\"gsd\\\":30,\\\"name\\\":\\\"SWIR_Band8\\\",\\\"description\\\":\\\"short-wave\n        infrared\\\",\\\"center_wavelength\\\":2.339,\\\"full_width_half_max\\\":0.07},{\\\"gsd\\\":30,\\\"name\\\":\\\"SWIR_Band9\\\",\\\"description\\\":\\\"short-wave\n        infrared\\\",\\\"center_wavelength\\\":2.395,\\\"full_width_half_max\\\":0.07},{\\\"gsd\\\":90,\\\"name\\\":\\\"TIR_Band10\\\",\\\"common_name\\\":\\\"lwir\\\",\\\"description\\\":\\\"thermal\n        infrared\\\",\\\"center_wavelength\\\":8.3,\\\"full_width_half_max\\\":0.35},{\\\"gsd\\\":90,\\\"name\\\":\\\"TIR_Band11\\\",\\\"common_name\\\":\\\"lwir\\\",\\\"description\\\":\\\"thermal\n        infrared\\\",\\\"center_wavelength\\\":8.65,\\\"full_width_half_max\\\":0.35},{\\\"gsd\\\":90,\\\"name\\\":\\\"TIR_Band12\\\",\\\"common_name\\\":\\\"lwir\\\",\\\"description\\\":\\\"thermal\n        infrared\\\",\\\"center_wavelength\\\":9.11,\\\"full_width_half_max\\\":0.35},{\\\"gsd\\\":90,\\\"name\\\":\\\"TIR_Band13\\\",\\\"common_name\\\":\\\"lwir\\\",\\\"description\\\":\\\"thermal\n        infrared\\\",\\\"center_wavelength\\\":10.6,\\\"full_width_half_max\\\":0.7},{\\\"gsd\\\":90,\\\"name\\\":\\\"TIR_Band14\\\",\\\"common_name\\\":\\\"lwir\\\",\\\"description\\\":\\\"thermal\n        infrared\\\",\\\"center_wavelength\\\":11.3,\\\"full_width_half_max\\\":0.7}],\\\"platform\\\":[\\\"terra\\\"],\\\"instruments\\\":[\\\"aster\\\"]},\\\"description\\\":\\\"The\n        [ASTER](https://terra.nasa.gov/about/terra-instruments/aster) instrument,\n        launched on-board NASA's [Terra](https://terra.nasa.gov/) satellite in 1999,\n        provides multispectral images of the Earth at 15m-90m resolution.  ASTER images\n        provide information about land surface temperature, color, elevation, and\n        mineral composition.\\\\n\\\\nThis dataset represents ASTER [L1T](https://lpdaac.usgs.gov/products/ast_l1tv003/)\n        data from 2000-2006.  L1T images have been terrain-corrected and rotated to\n        a north-up UTM projection.  Images are in [cloud-optimized GeoTIFF](https://www.cogeo.org/)\n        format.\\\\n\\\",\\\"item_assets\\\":{\\\"TIR\\\":{\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"TIR\n        Swath data\\\",\\\"eo:bands\\\":[{\\\"gsd\\\":90,\\\"name\\\":\\\"TIR_Band10\\\",\\\"common_name\\\":\\\"lwir\\\",\\\"description\\\":\\\"thermal\n        infrared\\\",\\\"center_wavelength\\\":8.3,\\\"full_width_half_max\\\":0.35},{\\\"gsd\\\":90,\\\"name\\\":\\\"TIR_Band11\\\",\\\"common_name\\\":\\\"lwir\\\",\\\"description\\\":\\\"thermal\n        infrared\\\",\\\"center_wavelength\\\":8.65,\\\"full_width_half_max\\\":0.35},{\\\"gsd\\\":90,\\\"name\\\":\\\"TIR_Band12\\\",\\\"common_name\\\":\\\"lwir\\\",\\\"description\\\":\\\"thermal\n        infrared\\\",\\\"center_wavelength\\\":9.11,\\\"full_width_half_max\\\":0.35},{\\\"gsd\\\":90,\\\"name\\\":\\\"TIR_Band13\\\",\\\"common_name\\\":\\\"lwir\\\",\\\"description\\\":\\\"thermal\n        infrared\\\",\\\"center_wavelength\\\":10.6,\\\"full_width_half_max\\\":0.7},{\\\"gsd\\\":90,\\\"name\\\":\\\"TIR_Band14\\\",\\\"common_name\\\":\\\"lwir\\\",\\\"description\\\":\\\"thermal\n        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\n        metadata\\\"},\\\"SWIR\\\":{\\\"type\\\":\\\"image/tiff; application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"SWIR\n        Swath data\\\",\\\"eo:bands\\\":[{\\\"gsd\\\":30,\\\"name\\\":\\\"SWIR_Band4\\\",\\\"common_name\\\":\\\"swir\\\",\\\"description\\\":\\\"short-wave\n        infrared\\\",\\\"center_wavelength\\\":1.65,\\\"full_width_half_max\\\":0.1},{\\\"gsd\\\":30,\\\"name\\\":\\\"SWIR_Band5\\\",\\\"common_name\\\":\\\"swir\\\",\\\"description\\\":\\\"short-wave\n        infrared\\\",\\\"center_wavelength\\\":2.165,\\\"full_width_half_max\\\":0.04},{\\\"gsd\\\":30,\\\"name\\\":\\\"SWIR_Band6\\\",\\\"common_name\\\":\\\"swir\\\",\\\"description\\\":\\\"short-wave\n        infrared\\\",\\\"center_wavelength\\\":2.205,\\\"full_width_half_max\\\":0.04},{\\\"gsd\\\":30,\\\"name\\\":\\\"SWIR_Band7\\\",\\\"common_name\\\":\\\"swir\\\",\\\"description\\\":\\\"short-wave\n        infrared\\\",\\\"center_wavelength\\\":2.26,\\\"full_width_half_max\\\":0.05},{\\\"gsd\\\":30,\\\"name\\\":\\\"SWIR_Band8\\\",\\\"common_name\\\":\\\"swir\\\",\\\"description\\\":\\\"short-wave\n        infrared\\\",\\\"center_wavelength\\\":2.339,\\\"full_width_half_max\\\":0.07},{\\\"gsd\\\":30,\\\"name\\\":\\\"SWIR_Band9\\\",\\\"common_name\\\":\\\"swir\\\",\\\"description\\\":\\\"short-wave\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"VNIR\n        Swath data\\\",\\\"eo:bands\\\":[{\\\"gsd\\\":15,\\\"name\\\":\\\"VNIR_Band1\\\",\\\"common_name\\\":\\\"yellow/green\\\",\\\"description\\\":\\\"visible\n        yellow/green\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.08},{\\\"gsd\\\":15,\\\"name\\\":\\\"VNIR_Band2\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"visible\n        red\\\",\\\"center_wavelength\\\":0.66,\\\"full_width_half_max\\\":0.06},{\\\"gsd\\\":15,\\\"name\\\":\\\"VNIR_Band3N\\\",\\\"common_name\\\":\\\"near\n        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\n        browse file\\\",\\\"description\\\":\\\"Geometric quality assessment report.\\\"},\\\"qa-browse\\\":{\\\"type\\\":\\\"image/jpeg\\\",\\\"roles\\\":[\\\"thumbnail\\\"],\\\"title\\\":\\\"QA\n        browse file\\\",\\\"description\\\":\\\"Single-band black and white reduced resolution\n        browse overlaid with red, green, and blue (RGB) markers for GCPs used during\n        the geometric verification quality check.\\\"},\\\"tir-browse\\\":{\\\"type\\\":\\\"image/jpeg\\\",\\\"roles\\\":[\\\"thumbnail\\\"],\\\"title\\\":\\\"Standalone\n        reduced resolution TIR\\\"},\\\"vnir-browse\\\":{\\\"type\\\":\\\"image/jpeg\\\",\\\"roles\\\":[\\\"thumbnail\\\"],\\\"title\\\":\\\"VNIR\n        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\n        ASTER instrument, launched on-board NASA's Terra satellite in 1999, provides\n        multispectral images of the Earth at 15m-90m resolution.  This dataset contains\n        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\n        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\n        homepage\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/cil-gdpcir-cc-by-sa\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"CIL\n        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\n        Impact Lab\\\",\\\"Rhodium Group\\\",\\\"Precipitation\\\",\\\"Temperature\\\"],\\\"providers\\\":[{\\\"url\\\":\\\"https://impactlab.org/\\\",\\\"name\\\":\\\"Climate\n        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\n        World Climate Research Programme's [6th Coupled Model Intercomparison Project\n        (CMIP6)](https://www.wcrp-climate.org/wgcm-cmip/wgcm-cmip6) represents an\n        enormous advance in the quality, detail, and scope of climate modeling.\\\\n\\\\nThe\n        [Global Downscaled Projections for Climate Impacts Research](https://github.com/ClimateImpactLab/downscaleCMIP6)\n        dataset makes this modeling more applicable to understanding the impacts of\n        changes in the climate on humans and society with two key developments: trend-preserving\n        bias correction and downscaling. In this dataset, the [Climate Impact Lab](https://impactlab.org)\n        provides global, daily minimum and maximum air temperature at the surface\n        (`tasmin` and `tasmax`) and daily cumulative surface precipitation (`pr`)\n        corresponding to the CMIP6 historical, ssp1-2.6, ssp2-4.5, ssp3-7.0, and ssp5-8.5\n        scenarios for 25 global climate models on a 1/4-degree regular global grid.\\\\n\\\\n##\n        Accessing the data\\\\n\\\\nGDPCIR data can be accessed on the Microsoft Planetary\n        Computer. The dataset is made of of three collections, distinguished by data\n        license:\\\\n* [Public domain (CC0-1.0) collection](https://planetarycomputer.microsoft.com/dataset/cil-gdpcir-cc0)\\\\n*\n        [Attribution (CC BY 4.0) collection](https://planetarycomputer.microsoft.com/dataset/cil-gdpcir-cc-by)\\\\n*\n        [Attribution-ShareAlike (CC BY SA 4.0) collection](https://planetarycomputer.microsoft.com/dataset/cil-gdpcir-cc-by-sa)\\\\n\\\\nEach\n        modeling center with bias corrected and downscaled data in this collection\n        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)\n        to see which model is in each collection, and see the section below on [Citing,\n        Licensing, and using data produced by this project](/dataset/cil-gdpcir-cc-by-sa#citing-licensing-and-using-data-produced-by-this-project)\n        for citations and additional information about each license.\\\\n\\\\n## Data\n        format & contents\\\\n\\\\nThe data is stored as partitioned zarr stores (see\n        [https://zarr.readthedocs.io](https://zarr.readthedocs.io)), each of which\n        includes thousands of data and metadata files covering the full time span\n        of the experiment. Historical zarr stores contain just over 50 GB, while SSP\n        zarr stores contain nearly 70GB. Each store is stored as a 32-bit float, with\n        dimensions time (daily datetime), lat (float latitude), and lon (float longitude).\n        The data is chunked at each interval of 365 days and 90 degree interval of\n        latitude and longitude. Therefore, each chunk is `(365, 360, 360)`, with each\n        chunk occupying approximately 179MB in memory.\\\\n\\\\nHistorical data is daily,\n        excluding leap days, from Jan 1, 1950 to Dec 31, 2014; SSP data is daily,\n        excluding leap days, from Jan 1, 2015 to either Dec 31, 2099 or Dec 31, 2100,\n        depending on data availability in the source GCM.\\\\n\\\\nThe spatial domain\n        covers all 0.25-degree grid cells, indexed by the grid center, with grid edges\n        on the quarter-degree, using a -180 to 180 longitude convention. Thus, the\n        \\u201Clon\\u201D coordinate extends from -179.875 to 179.875, and the \\u201Clat\\u201D\n        coordinate extends from -89.875 to 89.875, with intermediate values at each\n        0.25-degree increment between (e.g. -179.875, -179.625, -179.375, etc).\\\\n\\\\n##\n        Available institutions, models, and scenarios by license collection\\\\n\\\\n|\n        Modeling institution |   Source model    |           Available experiments\n        \\           |   License collection   |\\\\n| -------------------- | -----------------\n        | ------------------------------------------ | ---------------------- |\\\\n|\n        CAS                  | FGOALS-g3 [^1]    | SSP2-4.5, SSP3-7.0, and SSP5-8.5\n        \\          | Public domain datasets |\\\\n| INM                  | INM-CM4-8\n        \\        | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | Public domain datasets\n        |\\\\n| INM                  | INM-CM5-0         | SSP1-2.6, SSP2-4.5, SSP3-7.0,\n        and SSP5-8.5 | Public domain datasets |\\\\n| BCC                  | BCC-CSM2-MR\n        \\      | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40]              |\\\\n|\n        CMCC                 | CMCC-CM2-SR5      | ssp1-2.6, ssp2-4.5, ssp3-7.0, ssp5-8.5\n        \\    | CC-BY-40]              |\\\\n| CMCC                 | CMCC-ESM2         |\n        ssp1-2.6, ssp2-4.5, ssp3-7.0, ssp5-8.5     | CC-BY-40]              |\\\\n|\n        CSIRO-ARCCSS         | ACCESS-CM2        | SSP2-4.5 and SSP3-7.0                      |\n        CC-BY-40]              |\\\\n| CSIRO                | ACCESS-ESM1-5     | SSP1-2.6,\n        SSP2-4.5, and SSP3-7.0           | CC-BY-40]              |\\\\n| MIROC                |\n        MIROC-ES2L        | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40]\n        \\             |\\\\n| MIROC                | MIROC6            | SSP1-2.6, SSP2-4.5,\n        SSP3-7.0, and SSP5-8.5 | CC-BY-40]              |\\\\n| MOHC                 |\n        HadGEM3-GC31-LL   | SSP1-2.6, SSP2-4.5, and SSP5-8.5           | CC-BY-40]\n        \\             |\\\\n| MOHC                 | UKESM1-0-LL       | SSP1-2.6, SSP2-4.5,\n        SSP3-7.0, and SSP5-8.5 | CC-BY-40]              |\\\\n| MPI-M                |\n        MPI-ESM1-2-LR     | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40]\n        \\             |\\\\n| MPI-M/DKRZ [^2]      | MPI-ESM1-2-HR     | SSP1-2.6 and\n        SSP5-8.5                      | CC-BY-40]              |\\\\n| NCC                  |\n        NorESM2-LM        | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40]\n        \\             |\\\\n| NCC                  | NorESM2-MM        | SSP1-2.6, SSP2-4.5,\n        SSP3-7.0, and SSP5-8.5 | CC-BY-40]              |\\\\n| NOAA-GFDL            |\n        GFDL-CM4          | SSP2-4.5 and SSP5-8.5                      | CC-BY-40]\n        \\             |\\\\n| NOAA-GFDL            | GFDL-ESM4         | SSP1-2.6, SSP2-4.5,\n        SSP3-7.0, and SSP5-8.5 | CC-BY-40]              |\\\\n| NUIST                |\n        NESM3             | SSP1-2.6, SSP2-4.5, and SSP5-8.5           | CC-BY-40]\n        \\             |\\\\n| EC-Earth-Consortium  | EC-Earth3         | ssp1-2.6, ssp2-4.5,\n        ssp3-7.0, and ssp5-8.5 | CC-BY-40]              |\\\\n| EC-Earth-Consortium\n        \\ | EC-Earth3-AerChem | ssp370                                     | CC-BY-40]\n        \\             |\\\\n| EC-Earth-Consortium  | EC-Earth3-CC      | ssp245 and\n        ssp585                          | CC-BY-40]              |\\\\n| EC-Earth-Consortium\n        \\ | EC-Earth3-Veg     | ssp1-2.6, ssp2-4.5, ssp3-7.0, and ssp5-8.5 | CC-BY-40]\n        \\             |\\\\n| EC-Earth-Consortium  | EC-Earth3-Veg-LR  | ssp1-2.6, ssp2-4.5,\n        ssp3-7.0, and ssp5-8.5 | CC-BY-40]              |\\\\n| CCCma                |\n        CanESM5           | ssp1-2.6, ssp2-4.5, ssp3-7.0, ssp5-8.5     | CC-BY-SA-40]\n        \\          |\\\\n\\\\n*Notes:*\\\\n\\\\n[^1]: At the time of running, no ssp1-2.6\n        precipitation data was available. Therefore, we provide `tasmin` and `tamax`\n        for this model and experiment, but not `pr`. All other model/experiment combinations\n        in the above table include all three variables.\\\\n\\\\n[^2]: The institution\n        which ran MPI-ESM1-2-HR\\u2019s historical (CMIP) simulations is `MPI-M`, while\n        the future (ScenarioMIP) simulations were run by `DKRZ`. Therefore, the institution\n        component of `MPI-ESM1-2-HR` filepaths differ between `historical` and `SSP`\n        scenarios.\\\\n\\\\n## Project methods\\\\n\\\\nThis project makes use of statistical\n        bias correction and downscaling algorithms, which are specifically designed\n        to accurately represent changes in the extremes. For this reason, we selected\n        Quantile Delta Mapping (QDM), following the method introduced by [Cannon et\n        al. (2015)](https://doi.org/10.1175/JCLI-D-14-00754.1), which preserves quantile-specific\n        trends from the GCM while fitting the full distribution for a given day-of-year\n        to a reference dataset (ERA5).\\\\n\\\\nWe then introduce a similar method tailored\n        to increase spatial resolution while preserving extreme behavior, Quantile-Preserving\n        Localized-Analog Downscaling (QPLAD).\\\\n\\\\nTogether, these methods provide\n        a robust means to handle both the central and tail behavior seen in climate\n        model output, while aligning the full distribution to a state-of-the-art reanalysis\n        dataset and providing the spatial granularity needed to study surface impacts.\\\\n\\\\nFor\n        further documentation, see [Global downscaled projections for climate impacts\n        research (GDPCIR): preserving extremes for modeling future climate impacts](https://egusphere.copernicus.org/preprints/2023/egusphere-2022-1513/)\n        (EGUsphere, 2022 [preprint]).\\\\n\\\\n## Citing, licensing, and using data produced\n        by this project\\\\n\\\\nProjects making use of the data produced as part of the\n        Climate Impact Lab Global Downscaled Projections for Climate Impacts Research\n        (CIL GDPCIR) project are requested to cite both this project and the source\n        datasets from which these results are derived. Additionally, the use of data\n        derived from some GCMs *requires* citations, and some modeling centers impose\n        licensing restrictions & requirements on derived works. See each GCM's license\n        info in the links below for more information.\\\\n\\\\n### CIL GDPCIR\\\\n\\\\nUsers\n        are requested to cite this project in derived works. Our method documentation\n        paper may be cited using the following:\\\\n\\\\n> Gergel, D. R., Malevich, S.\n        B., McCusker, K. E., Tenezakis, E., Delgado, M. T., Fish, M. A., and Kopp,\n        R. E.: Global downscaled projections for climate impacts research (GDPCIR):\n        preserving extremes for modeling future climate impacts, EGUsphere [preprint],\n        https://doi.org/10.5194/egusphere-2022-1513, 2023. \\\\n\\\\nThe code repository\n        may be cited using the following:\\\\n\\\\n> Diana Gergel, Kelly McCusker, Brewster\n        Malevich, Emile Tenezakis, Meredith Fish, Michael Delgado (2022). ClimateImpactLab/downscaleCMIP6:\n        (v1.0.0). Zenodo. https://doi.org/10.5281/zenodo.6403794\\\\n\\\\n### ERA5\\\\n\\\\nAdditionally,\n        we request you cite the historical dataset used in bias correction and downscaling,\n        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>\n        Hersbach, H, et al. The ERA5 global reanalysis. Q J R Meteorol Soc.2020; 146:\n        1999\\u20132049. DOI: [10.1002/qj.3803](https://doi.org/10.1002/qj.3803)\\\\n>\\\\n>\n        Mu\\xF1oz Sabater, J., (2019): ERA5-Land hourly data from 1981 to present.\n        Copernicus Climate Change Service (C3S) Climate Data Store (CDS). (Accessed\n        on June 4, 2021), DOI: [10.24381/cds.e2161bac](https://doi.org/10.24381/cds.e2161bac)\\\\n>\\\\n>\n        Mu\\xF1oz Sabater, J., (2021): ERA5-Land hourly data from 1950 to 1980. Copernicus\n        Climate Change Service (C3S) Climate Data Store (CDS). (Accessed on June 4,\n        2021), DOI: [10.24381/cds.e2161bac](https://doi.org/10.24381/cds.e2161bac)\\\\n\\\\n###\n        GCM-specific citations & licenses\\\\n\\\\nThe CMIP6 simulation data made available\n        through the Earth System Grid Federation (ESGF) are subject to Creative Commons\n        [BY-SA 4.0](https://creativecommons.org/licenses/by-sa/4.0/) or [BY-NC-SA\n        4.0](https://creativecommons.org/licenses/by-nc-sa/4.0/) licenses. The Climate\n        Impact Lab has reached out to each of the modeling institutions to request\n        waivers from these terms so the outputs of this project may be used with fewer\n        restrictions, and has been granted permission to release the data using the\n        licenses listed here.\\\\n\\\\n#### Public Domain Datasets\\\\n\\\\nThe following\n        bias corrected and downscaled model simulations are available in the public\n        domain using a [CC0 1.0 Universal Public Domain Declaration](https://creativecommons.org/publicdomain/zero/1.0/).\n        Access the collection on Planetary Computer at https://planetarycomputer.microsoft.com/dataset/cil-gdpcir-cc0.\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > Li, Lijuan **(2019)**. *CAS FGOALS-g3 model output\n        prepared for CMIP6 CMIP*. Version 20190826. Earth System Grid Federation.\n        https://doi.org/10.22033/ESGF/CMIP6.1783\\\\n\\\\n  ScenarioMIP Citation:\\\\n\\\\n\n        \\ > Li, Lijuan **(2019)**. *CAS FGOALS-g3 model output prepared for CMIP6\n        ScenarioMIP*. SSP1-2.6 version 20190818; SSP2-4.5 version 20190818; SSP3-7.0\n        version 20190820; SSP5-8.5 tasmax version 20190819; SSP5-8.5 tasmin version\n        20190819; SSP5-8.5 pr version 20190818. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.2056\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > Volodin, Evgeny; Mortikov, Evgeny; Gritsun, Andrey;\n        Lykossov, Vasily; Galin, Vener; Diansky, Nikolay; Gusev, Anatoly; Kostrykin,\n        Sergey; Iakovlev, Nikolay; Shestakova, Anna; Emelina, Svetlana **(2019)**.\n        *INM INM-CM4-8 model output prepared for CMIP6 CMIP*. Version 20190530. Earth\n        System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1422\\\\n\\\\n  ScenarioMIP\n        Citation:\\\\n\\\\n  > Volodin, Evgeny; Mortikov, Evgeny; Gritsun, Andrey; Lykossov,\n        Vasily; Galin, Vener; Diansky, Nikolay; Gusev, Anatoly; Kostrykin, Sergey;\n        Iakovlev, Nikolay; Shestakova, Anna; Emelina, Svetlana **(2019)**. *INM INM-CM4-8\n        model output prepared for CMIP6 ScenarioMIP*. Version 20190603. Earth System\n        Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.12321\\\\n\\\\n\\\\n* **INM-CM5-0**\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > Volodin, Evgeny; Mortikov, Evgeny; Gritsun, Andrey;\n        Lykossov, Vasily; Galin, Vener; Diansky, Nikolay; Gusev, Anatoly; Kostrykin,\n        Sergey; Iakovlev, Nikolay; Shestakova, Anna; Emelina, Svetlana **(2019)**.\n        *INM INM-CM5-0 model output prepared for CMIP6 CMIP*. Version 20190610. Earth\n        System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1423\\\\n\\\\n  ScenarioMIP\n        Citation:\\\\n\\\\n  > Volodin, Evgeny; Mortikov, Evgeny; Gritsun, Andrey; Lykossov,\n        Vasily; Galin, Vener; Diansky, Nikolay; Gusev, Anatoly; Kostrykin, Sergey;\n        Iakovlev, Nikolay; Shestakova, Anna; Emelina, Svetlana **(2019)**. *INM INM-CM5-0\n        model output prepared for CMIP6 ScenarioMIP*. SSP1-2.6 version 20190619; SSP2-4.5\n        version 20190619; SSP3-7.0 version 20190618; SSP5-8.5 version 20190724. Earth\n        System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.12322\\\\n\\\\n\\\\n####\n        CC-BY-4.0\\\\n\\\\nThe following bias corrected and downscaled model simulations\n        are licensed under a [Creative Commons Attribution 4.0 International License](https://creativecommons.org/licenses/by/4.0/).\n        Note that this license requires citation of the source model output (included\n        here). Please see https://creativecommons.org/licenses/by/4.0/ for more information.\n        Access the collection on Planetary Computer at https://planetarycomputer.microsoft.com/dataset/cil-gdpcir-cc-by.\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > Dix, Martin; Bi, Doahua; Dobrohotoff, Peter; Fiedler,\n        Russell; Harman, Ian; Law, Rachel; Mackallah, Chloe; Marsland, Simon; O'Farrell,\n        Siobhan; Rashid, Harun; Srbinovsky, Jhan; Sullivan, Arnold; Trenham, Claire;\n        Vohralik, Peter; Watterson, Ian; Williams, Gareth; Woodhouse, Matthew; Bodman,\n        Roger; Dias, Fabio Boeira; Domingues, Catia; Hannah, Nicholas; Heerdegen,\n        Aidan; Savita, Abhishek; Wales, Scott; Allen, Chris; Druken, Kelsey; Evans,\n        Ben; Richards, Clare; Ridzwan, Syazwan Mohamed; Roberts, Dale; Smillie, Jon;\n        Snow, Kate; Ward, Marshall; Yang, Rui **(2019)**. *CSIRO-ARCCSS ACCESS-CM2\n        model output prepared for CMIP6 CMIP*. Version 20191108. Earth System Grid\n        Federation. https://doi.org/10.22033/ESGF/CMIP6.2281\\\\n\\\\n  ScenarioMIP Citation:\\\\n\\\\n\n        \\ > Dix, Martin; Bi, Doahua; Dobrohotoff, Peter; Fiedler, Russell; Harman,\n        Ian; Law, Rachel; Mackallah, Chloe; Marsland, Simon; O'Farrell, Siobhan; Rashid,\n        Harun; Srbinovsky, Jhan; Sullivan, Arnold; Trenham, Claire; Vohralik, Peter;\n        Watterson, Ian; Williams, Gareth; Woodhouse, Matthew; Bodman, Roger; Dias,\n        Fabio Boeira; Domingues, Catia; Hannah, Nicholas; Heerdegen, Aidan; Savita,\n        Abhishek; Wales, Scott; Allen, Chris; Druken, Kelsey; Evans, Ben; Richards,\n        Clare; Ridzwan, Syazwan Mohamed; Roberts, Dale; Smillie, Jon; Snow, Kate;\n        Ward, Marshall; Yang, Rui **(2019)**. *CSIRO-ARCCSS ACCESS-CM2 model output\n        prepared for CMIP6 ScenarioMIP*. Version 20191108. Earth System Grid Federation.\n        https://doi.org/10.22033/ESGF/CMIP6.2285\\\\n\\\\n\\\\n* **ACCESS-ESM1-5**\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > Ziehn, Tilo; Chamberlain, Matthew; Lenton, Andrew;\n        Law, Rachel; Bodman, Roger; Dix, Martin; Wang, Yingping; Dobrohotoff, Peter;\n        Srbinovsky, Jhan; Stevens, Lauren; Vohralik, Peter; Mackallah, Chloe; Sullivan,\n        Arnold; O'Farrell, Siobhan; Druken, Kelsey **(2019)**. *CSIRO ACCESS-ESM1.5\n        model output prepared for CMIP6 CMIP*. Version 20191115. Earth System Grid\n        Federation. https://doi.org/10.22033/ESGF/CMIP6.2288\\\\n\\\\n  ScenarioMIP Citation:\\\\n\\\\n\n        \\ > Ziehn, Tilo; Chamberlain, Matthew; Lenton, Andrew; Law, Rachel; Bodman,\n        Roger; Dix, Martin; Wang, Yingping; Dobrohotoff, Peter; Srbinovsky, Jhan;\n        Stevens, Lauren; Vohralik, Peter; Mackallah, Chloe; Sullivan, Arnold; O'Farrell,\n        Siobhan; Druken, Kelsey **(2019)**. *CSIRO ACCESS-ESM1.5 model output prepared\n        for CMIP6 ScenarioMIP*. Version 20191115. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.2291\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > Xin, Xiaoge; Zhang, Jie; Zhang, Fang; Wu, Tongwen;\n        Shi, Xueli; Li, Jianglong; Chu, Min; Liu, Qianxia; Yan, Jinghui; Ma, Qiang;\n        Wei, Min **(2018)**. *BCC BCC-CSM2MR model output prepared for CMIP6 CMIP*.\n        Version 20181126. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1725\\\\n\\\\n\n        \\ ScenarioMIP Citation:\\\\n\\\\n  > Xin, Xiaoge; Wu, Tongwen; Shi, Xueli; Zhang,\n        Fang; Li, Jianglong; Chu, Min; Liu, Qianxia; Yan, Jinghui; Ma, Qiang; Wei,\n        Min **(2019)**. *BCC BCC-CSM2MR model output prepared for CMIP6 ScenarioMIP*.\n        SSP1-2.6 version 20190315; SSP2-4.5 version 20190318; SSP3-7.0 version 20190318;\n        SSP5-8.5 version 20190318. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1732\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > Lovato, Tomas; Peano, Daniele **(2020)**. *CMCC\n        CMCC-CM2-SR5 model output prepared for CMIP6 CMIP*. Version 20200616. Earth\n        System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1362\\\\n\\\\n  ScenarioMIP\n        Citation:\\\\n\\\\n  > Lovato, Tomas; Peano, Daniele **(2020)**. *CMCC CMCC-CM2-SR5\n        model output prepared for CMIP6 ScenarioMIP*. SSP1-2.6 version 20200717; SSP2-4.5\n        version 20200617; SSP3-7.0 version 20200622; SSP5-8.5 version 20200622. Earth\n        System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1365\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > Lovato, Tomas; Peano, Daniele; Butensch\\xF6n, Momme\n        **(2021)**. *CMCC CMCC-ESM2 model output prepared for CMIP6 CMIP*. Version\n        20210114. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.13164\\\\n\\\\n\n        \\ ScenarioMIP Citation:\\\\n\\\\n  > Lovato, Tomas; Peano, Daniele; Butensch\\xF6n,\n        Momme **(2021)**. *CMCC CMCC-ESM2 model output prepared for CMIP6 ScenarioMIP*.\n        SSP1-2.6 version 20210126; SSP2-4.5 version 20210129; SSP3-7.0 version 20210202;\n        SSP5-8.5 version 20210126. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.13168\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > EC-Earth Consortium (EC-Earth) **(2020)**. *EC-Earth-Consortium\n        EC-Earth3-AerChem model output prepared for CMIP6 CMIP*. Version 20200624.\n        Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.639\\\\n\\\\n\n        \\ ScenarioMIP Citation:\\\\n\\\\n  > EC-Earth Consortium (EC-Earth) **(2020)**.\n        *EC-Earth-Consortium EC-Earth3-AerChem model output prepared for CMIP6 ScenarioMIP*.\n        Version 20200827. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.724\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > EC-Earth Consortium (EC-Earth) **(2020)**. *EC-Earth-Consortium\n        EC-Earth-3-CC model output prepared for CMIP6 CMIP*. Version 20210113. Earth\n        System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.640\\\\n\\\\n  ScenarioMIP\n        Citation:\\\\n\\\\n  > EC-Earth Consortium (EC-Earth) **(2021)**. *EC-Earth-Consortium\n        EC-Earth3-CC model output prepared for CMIP6 ScenarioMIP*. Version 20210113.\n        Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.15327\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > EC-Earth Consortium (EC-Earth) **(2020)**. *EC-Earth-Consortium\n        EC-Earth3-Veg-LR model output prepared for CMIP6 CMIP*. Version 20200217.\n        Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.643\\\\n\\\\n\n        \\ ScenarioMIP Citation:\\\\n\\\\n  > EC-Earth Consortium (EC-Earth) **(2020)**.\n        *EC-Earth-Consortium EC-Earth3-Veg-LR model output prepared for CMIP6 ScenarioMIP*.\n        SSP1-2.6 version 20201201; SSP2-4.5 version 20201123; SSP3-7.0 version 20201123;\n        SSP5-8.5 version 20201201. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.728\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > EC-Earth Consortium (EC-Earth) **(2019)**. *EC-Earth-Consortium\n        EC-Earth3-Veg model output prepared for CMIP6 CMIP*. Version 20200225. Earth\n        System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.642\\\\n\\\\n  ScenarioMIP\n        Citation:\\\\n\\\\n  > EC-Earth Consortium (EC-Earth) **(2019)**. *EC-Earth-Consortium\n        EC-Earth3-Veg model output prepared for CMIP6 ScenarioMIP*. Version 20200225.\n        Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.727\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > EC-Earth Consortium (EC-Earth) **(2019)**. *EC-Earth-Consortium\n        EC-Earth3 model output prepared for CMIP6 CMIP*. Version 20200310. Earth System\n        Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.181\\\\n\\\\n  ScenarioMIP\n        Citation:\\\\n\\\\n  > EC-Earth Consortium (EC-Earth) **(2019)**. *EC-Earth-Consortium\n        EC-Earth3 model output prepared for CMIP6 ScenarioMIP*. Version 20200310.\n        Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.251\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > Guo, Huan; John, Jasmin G; Blanton, Chris; McHugh,\n        Colleen; Nikonov, Serguei; Radhakrishnan, Aparna; Rand, Kristopher; Zadeh,\n        Niki T.; Balaji, V; Durachta, Jeff; Dupuis, Christopher; Menzel, Raymond;\n        Robinson, Thomas; Underwood, Seth; Vahlenkamp, Hans; Bushuk, Mitchell; Dunne,\n        Krista A.; Dussin, Raphael; Gauthier, Paul PG; Ginoux, Paul; Griffies, Stephen\n        M.; Hallberg, Robert; Harrison, Matthew; Hurlin, William; Lin, Pu; Malyshev,\n        Sergey; Naik, Vaishali; Paulot, Fabien; Paynter, David J; Ploshay, Jeffrey;\n        Reichl, Brandon G; Schwarzkopf, Daniel M; Seman, Charles J; Shao, Andrew;\n        Silvers, Levi; Wyman, Bruce; Yan, Xiaoqin; Zeng, Yujin; Adcroft, Alistair;\n        Dunne, John P.; Held, Isaac M; Krasting, John P.; Horowitz, Larry W.; Milly,\n        P.C.D; Shevliakova, Elena; Winton, Michael; Zhao, Ming; Zhang, Rong **(2018)**.\n        *NOAA-GFDL GFDL-CM4 model output*. Version 20180701. Earth System Grid Federation.\n        https://doi.org/10.22033/ESGF/CMIP6.1402\\\\n\\\\n  ScenarioMIP Citation:\\\\n\\\\n\n        \\ > Guo, Huan; John, Jasmin G; Blanton, Chris; McHugh, Colleen; Nikonov, Serguei;\n        Radhakrishnan, Aparna; Rand, Kristopher; Zadeh, Niki T.; Balaji, V; Durachta,\n        Jeff; Dupuis, Christopher; Menzel, Raymond; Robinson, Thomas; Underwood, Seth;\n        Vahlenkamp, Hans; Dunne, Krista A.; Gauthier, Paul PG; Ginoux, Paul; Griffies,\n        Stephen M.; Hallberg, Robert; Harrison, Matthew; Hurlin, William; Lin, Pu;\n        Malyshev, Sergey; Naik, Vaishali; Paulot, Fabien; Paynter, David J; Ploshay,\n        Jeffrey; Schwarzkopf, Daniel M; Seman, Charles J; Shao, Andrew; Silvers, Levi;\n        Wyman, Bruce; Yan, Xiaoqin; Zeng, Yujin; Adcroft, Alistair; Dunne, John P.;\n        Held, Isaac M; Krasting, John P.; Horowitz, Larry W.; Milly, Chris; Shevliakova,\n        Elena; Winton, Michael; Zhao, Ming; Zhang, Rong **(2018)**. *NOAA-GFDL GFDL-CM4\n        model output prepared for CMIP6 ScenarioMIP*. Version 20180701. Earth System\n        Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.9242\\\\n\\\\n\\\\n* **GFDL-ESM4**\\\\n\\\\n\n        \\ License description: [data_licenses/GFDL-ESM4.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/GFDL-ESM4.txt)\\\\n\\\\n\n        \\ CMIP Citation:\\\\n\\\\n  > Krasting, John P.; John, Jasmin G; Blanton, Chris;\n        McHugh, Colleen; Nikonov, Serguei; Radhakrishnan, Aparna; Rand, Kristopher;\n        Zadeh, Niki T.; Balaji, V; Durachta, Jeff; Dupuis, Christopher; Menzel, Raymond;\n        Robinson, Thomas; Underwood, Seth; Vahlenkamp, Hans; Dunne, Krista A.; Gauthier,\n        Paul PG; Ginoux, Paul; Griffies, Stephen M.; Hallberg, Robert; Harrison, Matthew;\n        Hurlin, William; Malyshev, Sergey; Naik, Vaishali; Paulot, Fabien; Paynter,\n        David J; Ploshay, Jeffrey; Reichl, Brandon G; Schwarzkopf, Daniel M; Seman,\n        Charles J; Silvers, Levi; Wyman, Bruce; Zeng, Yujin; Adcroft, Alistair; Dunne,\n        John P.; Dussin, Raphael; Guo, Huan; He, Jian; Held, Isaac M; Horowitz, Larry\n        W.; Lin, Pu; Milly, P.C.D; Shevliakova, Elena; Stock, Charles; Winton, Michael;\n        Wittenberg, Andrew T.; Xie, Yuanyu; Zhao, Ming **(2018)**. *NOAA-GFDL GFDL-ESM4\n        model output prepared for CMIP6 CMIP*. Version 20190726. Earth System Grid\n        Federation. https://doi.org/10.22033/ESGF/CMIP6.1407\\\\n\\\\n  ScenarioMIP Citation:\\\\n\\\\n\n        \\ > John, Jasmin G; Blanton, Chris; McHugh, Colleen; Radhakrishnan, Aparna;\n        Rand, Kristopher; Vahlenkamp, Hans; Wilson, Chandin; Zadeh, Niki T.; Dunne,\n        John P.; Dussin, Raphael; Horowitz, Larry W.; Krasting, John P.; Lin, Pu;\n        Malyshev, Sergey; Naik, Vaishali; Ploshay, Jeffrey; Shevliakova, Elena; Silvers,\n        Levi; Stock, Charles; Winton, Michael; Zeng, Yujin **(2018)**. *NOAA-GFDL\n        GFDL-ESM4 model output prepared for CMIP6 ScenarioMIP*. Version 20180701.\n        Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1414\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > Ridley, Jeff; Menary, Matthew; Kuhlbrodt, Till;\n        Andrews, Martin; Andrews, Tim **(2018)**. *MOHC HadGEM3-GC31-LL model output\n        prepared for CMIP6 CMIP*. Version 20190624. Earth System Grid Federation.\n        https://doi.org/10.22033/ESGF/CMIP6.419\\\\n\\\\n  ScenarioMIP Citation:\\\\n\\\\n\n        \\ > Good, Peter **(2019)**. *MOHC HadGEM3-GC31-LL model output prepared for\n        CMIP6 ScenarioMIP*. SSP1-2.6 version 20200114; SSP2-4.5 version 20190908;\n        SSP5-8.5 version 20200114. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.10845\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > Hajima, Tomohiro; Abe, Manabu; Arakawa, Osamu; Suzuki,\n        Tatsuo; Komuro, Yoshiki; Ogura, Tomoo; Ogochi, Koji; Watanabe, Michio; Yamamoto,\n        Akitomo; Tatebe, Hiroaki; Noguchi, Maki A.; Ohgaito, Rumi; Ito, Akinori; Yamazaki,\n        Dai; Ito, Akihiko; Takata, Kumiko; Watanabe, Shingo; Kawamiya, Michio; Tachiiri,\n        Kaoru **(2019)**. *MIROC MIROC-ES2L model output prepared for CMIP6 CMIP*.\n        Version 20191129. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.902\\\\n\\\\n\n        \\ ScenarioMIP Citation:\\\\n\\\\n  > Tachiiri, Kaoru; Abe, Manabu; Hajima, Tomohiro;\n        Arakawa, Osamu; Suzuki, Tatsuo; Komuro, Yoshiki; Ogochi, Koji; Watanabe, Michio;\n        Yamamoto, Akitomo; Tatebe, Hiroaki; Noguchi, Maki A.; Ohgaito, Rumi; Ito,\n        Akinori; Yamazaki, Dai; Ito, Akihiko; Takata, Kumiko; Watanabe, Shingo; Kawamiya,\n        Michio **(2019)**. *MIROC MIROC-ES2L model output prepared for CMIP6 ScenarioMIP*.\n        Version 20200318. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.936\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > Tatebe, Hiroaki; Watanabe, Masahiro **(2018)**.\n        *MIROC MIROC6 model output prepared for CMIP6 CMIP*. Version 20191016. Earth\n        System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.881\\\\n\\\\n  ScenarioMIP\n        Citation:\\\\n\\\\n  > Shiogama, Hideo; Abe, Manabu; Tatebe, Hiroaki **(2019)**.\n        *MIROC MIROC6 model output prepared for CMIP6 ScenarioMIP*. Version 20191016.\n        Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.898\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > Jungclaus, Johann; Bittner, Matthias; Wieners, Karl-Hermann;\n        Wachsmann, Fabian; Schupfner, Martin; Legutke, Stephanie; Giorgetta, Marco;\n        Reick, Christian; Gayler, Veronika; Haak, Helmuth; de Vrese, Philipp; Raddatz,\n        Thomas; Esch, Monika; Mauritsen, Thorsten; von Storch, Jin-Song; Behrens,\n        J\\xF6rg; Brovkin, Victor; Claussen, Martin; Crueger, Traute; Fast, Irina;\n        Fiedler, Stephanie; Hagemann, Stefan; Hohenegger, Cathy; Jahns, Thomas; Kloster,\n        Silvia; Kinne, Stefan; Lasslop, Gitta; Kornblueh, Luis; Marotzke, Jochem;\n        Matei, Daniela; Meraner, Katharina; Mikolajewicz, Uwe; Modali, Kameswarrao;\n        M\\xFCller, Wolfgang; Nabel, Julia; Notz, Dirk; Peters-von Gehlen, Karsten;\n        Pincus, Robert; Pohlmann, Holger; Pongratz, Julia; Rast, Sebastian; Schmidt,\n        Hauke; Schnur, Reiner; Schulzweida, Uwe; Six, Katharina; Stevens, Bjorn; Voigt,\n        Aiko; Roeckner, Erich **(2019)**. *MPI-M MPIESM1.2-HR model output prepared\n        for CMIP6 CMIP*. Version 20190710. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.741\\\\n\\\\n\n        \\ ScenarioMIP Citation:\\\\n\\\\n  > Schupfner, Martin; Wieners, Karl-Hermann;\n        Wachsmann, Fabian; Steger, Christian; Bittner, Matthias; Jungclaus, Johann;\n        Fr\\xFCh, Barbara; Pankatz, Klaus; Giorgetta, Marco; Reick, Christian; Legutke,\n        Stephanie; Esch, Monika; Gayler, Veronika; Haak, Helmuth; de Vrese, Philipp;\n        Raddatz, Thomas; Mauritsen, Thorsten; von Storch, Jin-Song; Behrens, J\\xF6rg;\n        Brovkin, Victor; Claussen, Martin; Crueger, Traute; Fast, Irina; Fiedler,\n        Stephanie; Hagemann, Stefan; Hohenegger, Cathy; Jahns, Thomas; Kloster, Silvia;\n        Kinne, Stefan; Lasslop, Gitta; Kornblueh, Luis; Marotzke, Jochem; Matei, Daniela;\n        Meraner, Katharina; Mikolajewicz, Uwe; Modali, Kameswarrao; M\\xFCller, Wolfgang;\n        Nabel, Julia; Notz, Dirk; Peters-von Gehlen, Karsten; Pincus, Robert; Pohlmann,\n        Holger; Pongratz, Julia; Rast, Sebastian; Schmidt, Hauke; Schnur, Reiner;\n        Schulzweida, Uwe; Six, Katharina; Stevens, Bjorn; Voigt, Aiko; Roeckner, Erich\n        **(2019)**. *DKRZ MPI-ESM1.2-HR model output prepared for CMIP6 ScenarioMIP*.\n        Version 20190710. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.2450\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > Wieners, Karl-Hermann; Giorgetta, Marco; Jungclaus,\n        Johann; Reick, Christian; Esch, Monika; Bittner, Matthias; Legutke, Stephanie;\n        Schupfner, Martin; Wachsmann, Fabian; Gayler, Veronika; Haak, Helmuth; de\n        Vrese, Philipp; Raddatz, Thomas; Mauritsen, Thorsten; von Storch, Jin-Song;\n        Behrens, J\\xF6rg; Brovkin, Victor; Claussen, Martin; Crueger, Traute; Fast,\n        Irina; Fiedler, Stephanie; Hagemann, Stefan; Hohenegger, Cathy; Jahns, Thomas;\n        Kloster, Silvia; Kinne, Stefan; Lasslop, Gitta; Kornblueh, Luis; Marotzke,\n        Jochem; Matei, Daniela; Meraner, Katharina; Mikolajewicz, Uwe; Modali, Kameswarrao;\n        M\\xFCller, Wolfgang; Nabel, Julia; Notz, Dirk; Peters-von Gehlen, Karsten;\n        Pincus, Robert; Pohlmann, Holger; Pongratz, Julia; Rast, Sebastian; Schmidt,\n        Hauke; Schnur, Reiner; Schulzweida, Uwe; Six, Katharina; Stevens, Bjorn; Voigt,\n        Aiko; Roeckner, Erich **(2019)**. *MPI-M MPIESM1.2-LR model output prepared\n        for CMIP6 CMIP*. Version 20190710. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.742\\\\n\\\\n\n        \\ ScenarioMIP Citation:\\\\n\\\\n  > Wieners, Karl-Hermann; Giorgetta, Marco;\n        Jungclaus, Johann; Reick, Christian; Esch, Monika; Bittner, Matthias; Gayler,\n        Veronika; Haak, Helmuth; de Vrese, Philipp; Raddatz, Thomas; Mauritsen, Thorsten;\n        von Storch, Jin-Song; Behrens, J\\xF6rg; Brovkin, Victor; Claussen, Martin;\n        Crueger, Traute; Fast, Irina; Fiedler, Stephanie; Hagemann, Stefan; Hohenegger,\n        Cathy; Jahns, Thomas; Kloster, Silvia; Kinne, Stefan; Lasslop, Gitta; Kornblueh,\n        Luis; Marotzke, Jochem; Matei, Daniela; Meraner, Katharina; Mikolajewicz,\n        Uwe; Modali, Kameswarrao; M\\xFCller, Wolfgang; Nabel, Julia; Notz, Dirk; Peters-von\n        Gehlen, Karsten; Pincus, Robert; Pohlmann, Holger; Pongratz, Julia; Rast,\n        Sebastian; Schmidt, Hauke; Schnur, Reiner; Schulzweida, Uwe; Six, Katharina;\n        Stevens, Bjorn; Voigt, Aiko; Roeckner, Erich **(2019)**. *MPI-M MPIESM1.2-LR\n        model output prepared for CMIP6 ScenarioMIP*. Version 20190710. Earth System\n        Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.793\\\\n\\\\n\\\\n* **NESM3**\\\\n\\\\n\n        \\ License description: [data_licenses/NESM3.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/NESM3.txt)\\\\n\\\\n\n        \\ CMIP Citation:\\\\n\\\\n  > Cao, Jian; Wang, Bin **(2019)**. *NUIST NESMv3 model\n        output prepared for CMIP6 CMIP*. Version 20190812. Earth System Grid Federation.\n        https://doi.org/10.22033/ESGF/CMIP6.2021\\\\n\\\\n  ScenarioMIP Citation:\\\\n\\\\n\n        \\ > Cao, Jian **(2019)**. *NUIST NESMv3 model output prepared for CMIP6 ScenarioMIP*.\n        SSP1-2.6 version 20190806; SSP2-4.5 version 20190805; SSP5-8.5 version 20190811.\n        Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.2027\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > Seland, \\xD8yvind; Bentsen, Mats; Olivi\\xE8, Dirk\n        Jan Leo; Toniazzo, Thomas; Gjermundsen, Ada; Graff, Lise Seland; Debernard,\n        Jens Boldingh; Gupta, Alok Kumar; He, Yanchun; Kirkev\\xE5g, Alf; Schwinger,\n        J\\xF6rg; Tjiputra, Jerry; Aas, Kjetil Schanke; Bethke, Ingo; Fan, Yuanchao;\n        Griesfeller, Jan; Grini, Alf; Guo, Chuncheng; Ilicak, Mehmet; Karset, Inger\n        Helene Hafsahl; Landgren, Oskar Andreas; Liakka, Johan; Moseid, Kine Onsum;\n        Nummelin, Aleksi; Spensberger, Clemens; Tang, Hui; Zhang, Zhongshi; Heinze,\n        Christoph; Iversen, Trond; Schulz, Michael **(2019)**. *NCC NorESM2-LM model\n        output prepared for CMIP6 CMIP*. Version 20190815. Earth System Grid Federation.\n        https://doi.org/10.22033/ESGF/CMIP6.502\\\\n\\\\n  ScenarioMIP Citation:\\\\n\\\\n\n        \\ > Seland, \\xD8yvind; Bentsen, Mats; Olivi\\xE8, Dirk Jan Leo; Toniazzo, Thomas;\n        Gjermundsen, Ada; Graff, Lise Seland; Debernard, Jens Boldingh; Gupta, Alok\n        Kumar; He, Yanchun; Kirkev\\xE5g, Alf; Schwinger, J\\xF6rg; Tjiputra, Jerry;\n        Aas, Kjetil Schanke; Bethke, Ingo; Fan, Yuanchao; Griesfeller, Jan; Grini,\n        Alf; Guo, Chuncheng; Ilicak, Mehmet; Karset, Inger Helene Hafsahl; Landgren,\n        Oskar Andreas; Liakka, Johan; Moseid, Kine Onsum; Nummelin, Aleksi; Spensberger,\n        Clemens; Tang, Hui; Zhang, Zhongshi; Heinze, Christoph; Iversen, Trond; Schulz,\n        Michael **(2019)**. *NCC NorESM2-LM model output prepared for CMIP6 ScenarioMIP*.\n        Version 20191108. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.604\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > Bentsen, Mats; Olivi\\xE8, Dirk Jan Leo; Seland,\n        \\xD8yvind; Toniazzo, Thomas; Gjermundsen, Ada; Graff, Lise Seland; Debernard,\n        Jens Boldingh; Gupta, Alok Kumar; He, Yanchun; Kirkev\\xE5g, Alf; Schwinger,\n        J\\xF6rg; Tjiputra, Jerry; Aas, Kjetil Schanke; Bethke, Ingo; Fan, Yuanchao;\n        Griesfeller, Jan; Grini, Alf; Guo, Chuncheng; Ilicak, Mehmet; Karset, Inger\n        Helene Hafsahl; Landgren, Oskar Andreas; Liakka, Johan; Moseid, Kine Onsum;\n        Nummelin, Aleksi; Spensberger, Clemens; Tang, Hui; Zhang, Zhongshi; Heinze,\n        Christoph; Iversen, Trond; Schulz, Michael **(2019)**. *NCC NorESM2-MM model\n        output prepared for CMIP6 CMIP*. Version 20191108. Earth System Grid Federation.\n        https://doi.org/10.22033/ESGF/CMIP6.506\\\\n\\\\n  ScenarioMIP Citation:\\\\n\\\\n\n        \\ > Bentsen, Mats; Olivi\\xE8, Dirk Jan Leo; Seland, \\xD8yvind; Toniazzo, Thomas;\n        Gjermundsen, Ada; Graff, Lise Seland; Debernard, Jens Boldingh; Gupta, Alok\n        Kumar; He, Yanchun; Kirkev\\xE5g, Alf; Schwinger, J\\xF6rg; Tjiputra, Jerry;\n        Aas, Kjetil Schanke; Bethke, Ingo; Fan, Yuanchao; Griesfeller, Jan; Grini,\n        Alf; Guo, Chuncheng; Ilicak, Mehmet; Karset, Inger Helene Hafsahl; Landgren,\n        Oskar Andreas; Liakka, Johan; Moseid, Kine Onsum; Nummelin, Aleksi; Spensberger,\n        Clemens; Tang, Hui; Zhang, Zhongshi; Heinze, Christoph; Iversen, Trond; Schulz,\n        Michael **(2019)**. *NCC NorESM2-MM model output prepared for CMIP6 ScenarioMIP*.\n        Version 20191108. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.608\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > Tang, Yongming; Rumbold, Steve; Ellis, Rich; Kelley,\n        Douglas; Mulcahy, Jane; Sellar, Alistair; Walton, Jeremy; Jones, Colin **(2019)**.\n        *MOHC UKESM1.0-LL model output prepared for CMIP6 CMIP*. Version 20190627.\n        Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1569\\\\n\\\\n\n        \\ ScenarioMIP Citation:\\\\n\\\\n  > Good, Peter; Sellar, Alistair; Tang, Yongming;\n        Rumbold, Steve; Ellis, Rich; Kelley, Douglas; Kuhlbrodt, Till; Walton, Jeremy\n        **(2019)**. *MOHC UKESM1.0-LL model output prepared for CMIP6 ScenarioMIP*.\n        SSP1-2.6 version 20190708; SSP2-4.5 version 20190715; SSP3-7.0 version 20190726;\n        SSP5-8.5 version 20190726. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1567\\\\n\\\\n\\\\n####\n        CC-BY-SA-4.0\\\\n\\\\nThe following bias corrected and downscaled model simulations\n        are licensed under a [Creative Commons Attribution-ShareAlike 4.0 International\n        License](https://creativecommons.org/licenses/by-sa/4.0/). Note that this\n        license requires citation of the source model output (included here) and requires\n        that derived works be shared under the same license. Please see https://creativecommons.org/licenses/by-sa/4.0/\n        for more information. Access the collection on Planetary Computer at https://planetarycomputer.microsoft.com/dataset/cil-gdpcir-cc-by-sa.\\\\n\\\\n*\n        **CanESM5**\\\\n\\\\n  License description: [data_licenses/CanESM5.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/CanESM5.txt)\\\\n\\\\n\n        \\ CMIP Citation:\\\\n\\\\n  > Swart, Neil Cameron; Cole, Jason N.S.; Kharin, Viatcheslav\n        V.; Lazare, Mike; Scinocca, John F.; Gillett, Nathan P.; Anstey, James; Arora,\n        Vivek; Christian, James R.; Jiao, Yanjun; Lee, Warren G.; Majaess, Fouad;\n        Saenko, Oleg A.; Seiler, Christian; Seinen, Clint; Shao, Andrew; Solheim,\n        Larry; von Salzen, Knut; Yang, Duo; Winter, Barbara; Sigmond, Michael **(2019)**.\n        *CCCma CanESM5 model output prepared for CMIP6 CMIP*. Version 20190429. Earth\n        System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1303\\\\n\\\\n  ScenarioMIP\n        Citation:\\\\n\\\\n  > Swart, Neil Cameron; Cole, Jason N.S.; Kharin, Viatcheslav\n        V.; Lazare, Mike; Scinocca, John F.; Gillett, Nathan P.; Anstey, James; Arora,\n        Vivek; Christian, James R.; Jiao, Yanjun; Lee, Warren G.; Majaess, Fouad;\n        Saenko, Oleg A.; Seiler, Christian; Seinen, Clint; Shao, Andrew; Solheim,\n        Larry; von Salzen, Knut; Yang, Duo; Winter, Barbara; Sigmond, Michael **(2019)**.\n        *CCCma CanESM5 model output prepared for CMIP6 ScenarioMIP*. Version 20190429.\n        Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1317\\\\n\\\\n##\n        Acknowledgements\\\\n\\\\nThis work is the result of many years worth of work\n        by members of the [Climate Impact Lab](https://impactlab.org), but would not\n        have been possible without many contributions from across the wider scientific\n        and computing communities.\\\\n\\\\nSpecifically, we would like to acknowledge\n        the World Climate Research Programme's Working Group on Coupled Modeling,\n        which is responsible for CMIP, and we would like to thank the climate modeling\n        groups for producing and making their model output available. We would particularly\n        like to thank the modeling institutions whose results are included as an input\n        to this repository (listed above) for their contributions to the CMIP6 project\n        and for responding to and granting our requests for license waivers.\\\\n\\\\nWe\n        would also like to thank Lamont-Doherty Earth Observatory, the [Pangeo Consortium](https://github.com/pangeo-data)\n        (and especially the [ESGF Cloud Data Working Group](https://pangeo-data.github.io/pangeo-cmip6-cloud/#))\n        and Google Cloud and the Google Public Datasets program for making the [CMIP6\n        Google Cloud collection](https://console.cloud.google.com/marketplace/details/noaa-public/cmip6)\n        possible. In particular we're extremely grateful to [Ryan Abernathey](https://github.com/rabernat),\n        [Naomi Henderson](https://github.com/naomi-henderson), [Charles Blackmon-Luca](https://github.com/charlesbluca),\n        [Aparna Radhakrishnan](https://github.com/aradhakrishnanGFDL), [Julius Busecke](https://github.com/jbusecke),\n        and [Charles Stern](https://github.com/cisaacstern) for the huge amount of\n        work they've done to translate the ESGF CMIP6 netCDF archives into consistently-formattted,\n        analysis-ready zarr stores on Google Cloud.\\\\n\\\\nWe're also grateful to the\n        [xclim developers](https://github.com/Ouranosinc/xclim/graphs/contributors)\n        ([DOI: 10.5281/zenodo.2795043](https://doi.org/10.5281/zenodo.2795043)), in\n        particular [Pascal Bourgault](https://github.com/aulemahal), [David Huard](https://github.com/huard),\n        and [Travis Logan](https://github.com/tlogan2000), for implementing the QDM\n        bias correction method in the xclim python package, supporting our QPLAD implementation\n        into the package, and ongoing support in integrating dask into downscaling\n        workflows. For method advice and useful conversations, we would like to thank\n        Keith Dixon, Dennis Adams-Smith, and [Joe Hamman](https://github.com/jhamman).\\\\n\\\\n##\n        Financial support\\\\n\\\\nThis research has been supported by The Rockefeller\n        Foundation and the Microsoft AI for Earth Initiative.\\\\n\\\\n## Additional links:\\\\n\\\\n*\n        CIL GDPCIR project homepage: [github.com/ClimateImpactLab/downscaleCMIP6](https://github.com/ClimateImpactLab/downscaleCMIP6)\\\\n*\n        Project listing on zenodo: https://doi.org/10.5281/zenodo.6403794\\\\n* Climate\n        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\n        Maximum Near-Surface Air Temperature\\\",\\\"description\\\":\\\"Daily Maximum Near-Surface\n        Air Temperature\\\"},\\\"tasmin\\\":{\\\"type\\\":\\\"application/vnd+zarr\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Daily\n        Minimum Near-Surface Air Temperature\\\",\\\"description\\\":\\\"Daily Minimum Near-Surface\n        Air Temperature\\\"}},\\\"stac_version\\\":\\\"1.0.0\\\",\\\"msft:group_id\\\":\\\"cil-gdpcir\\\",\\\"cube:variables\\\":{\\\"pr\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"mm\n        day-1\\\",\\\"attrs\\\":{\\\"units\\\":\\\"mm day-1\\\"},\\\"dimensions\\\":[\\\"time\\\",\\\"lat\\\",\\\"lon\\\"]},\\\"tasmax\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"K\\\",\\\"attrs\\\":{\\\"units\\\":\\\"K\\\",\\\"comment\\\":\\\"maximum\n        near-surface (usually, 2 meter) air temperature (add cell_method attribute\n        'time: max')\\\",\\\"long_name\\\":\\\"Daily Maximum Near-Surface Air Temperature\\\",\\\"coordinates\\\":\\\"height\\\",\\\"cell_methods\\\":\\\"area:\n        mean time: maximum (interval: 5 minutes)\\\",\\\"cell_measures\\\":\\\"area: areacella\\\",\\\"original_name\\\":\\\"TREFHTMX\\\",\\\"standard_name\\\":\\\"air_temperature\\\"},\\\"dimensions\\\":[\\\"time\\\",\\\"lat\\\",\\\"lon\\\"],\\\"description\\\":\\\"Daily\n        Maximum Near-Surface Air Temperature\\\"},\\\"tasmin\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"K\\\",\\\"attrs\\\":{\\\"units\\\":\\\"K\\\",\\\"comment\\\":\\\"minimum\n        near-surface (usually, 2 meter) air temperature (add cell_method attribute\n        'time: min')\\\",\\\"long_name\\\":\\\"Daily Minimum Near-Surface Air Temperature\\\",\\\"coordinates\\\":\\\"height\\\",\\\"cell_methods\\\":\\\"area:\n        mean time: minimum (interval: 5 minutes)\\\",\\\"cell_measures\\\":\\\"area: areacella\\\",\\\"original_name\\\":\\\"TREFHTMN\\\",\\\"standard_name\\\":\\\"air_temperature\\\"},\\\"dimensions\\\":[\\\"time\\\",\\\"lat\\\",\\\"lon\\\"],\\\"description\\\":\\\"Daily\n        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\n        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\n        Domain\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/naip\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"NAIP:\n        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\n        thumbnail\\\"},\\\"geoparquet-items\\\":{\\\"href\\\":\\\"abfs://items/naip.parquet\\\",\\\"type\\\":\\\"application/x-parquet\\\",\\\"roles\\\":[\\\"stac-items\\\"],\\\"title\\\":\\\"GeoParquet\n        STAC items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        States\\\"],\\\"providers\\\":[{\\\"url\\\":\\\"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/\\\",\\\"name\\\":\\\"USDA\n        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\n        red\\\"},{\\\"name\\\":\\\"Green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"visible\n        green\\\"},{\\\"name\\\":\\\"Blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"visible\n        blue\\\"},{\\\"name\\\":\\\"NIR\\\",\\\"common_name\\\":\\\"nir\\\",\\\"description\\\":\\\"near-infrared\\\"}]},\\\"description\\\":\\\"The\n        [National Agriculture Imagery Program](https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/)\n        (NAIP) \\\\nprovides U.S.-wide, high-resolution aerial imagery, with four spectral\n        bands (R, G, B, IR). \\\\nNAIP is administered by the [Aerial Field Photography\n        Office](https://www.fsa.usda.gov/programs-and-services/aerial-photography/)\n        (AFPO) \\\\nwithin the [US Department of Agriculture](https://www.usda.gov/)\n        (USDA). \\\\nData are captured at least once every three years for each state.\n        \\\\nThis dataset represents NAIP data from 2010-present, in [cloud-optimized\n        GeoTIFF](https://www.cogeo.org/) format.\\\\nYou can visualize the coverage\n        of current and past collections [here](https://naip-usdaonline.hub.arcgis.com/).\n        \\\\n\\\",\\\"item_assets\\\":{\\\"image\\\":{\\\"type\\\":\\\"image/tiff; application=geotiff;\n        profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"RGBIR COG tile\\\",\\\"eo:bands\\\":[{\\\"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\n        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\n        provides US-wide, high-resolution aerial imagery.  This dataset includes NAIP\n        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\n        BY 4.0\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/io-lulc-9-class\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"10m\n        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\n        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\n        STAC items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        Cover\\\",\\\"Land Use\\\",\\\"Sentinel\\\"],\\\"providers\\\":[{\\\"url\\\":\\\"https://www.esri.com/\\\",\\\"name\\\":\\\"Esri\\\",\\\"roles\\\":[\\\"licensor\\\"]},{\\\"url\\\":\\\"https://www.impactobservatory.com/\\\",\\\"name\\\":\\\"Impact\n        Observatory\\\",\\\"roles\\\":[\\\"processor\\\",\\\"producer\\\",\\\"licensor\\\"]},{\\\"url\\\":\\\"https://planetarycomputer.microsoft.com\\\",\\\"name\\\":\\\"Microsoft\\\",\\\"roles\\\":[\\\"host\\\"]}],\\\"summaries\\\":{\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"spatial_resolution\\\":10}]},\\\"description\\\":\\\"__Note__:\n        _A new version of this item is available for your use. This mature version\n        of the map remains available for use in existing applications. This item will\n        be retired in December 2024. There is 2023 data available in the newer [9-class\n        v2 dataset](https://planetarycomputer.microsoft.com/dataset/io-lulc-annual-v02)._\\\\n\\\\nTime\n        series of annual global maps of land use and land cover (LULC). It currently\n        has data from 2017-2022. The maps are derived from ESA Sentinel-2 imagery\n        at 10m resolution. Each map is a composite of LULC predictions for 9 classes\n        throughout the year in order to generate a representative snapshot of each\n        year.\\\\n\\\\nThis dataset was generated by [Impact Observatory](http://impactobservatory.com/),\n        who used billions of human-labeled pixels (curated by the National Geographic\n        Society) to train a deep learning model for land classification. The global\n        map was produced by applying this model to the Sentinel-2 annual scene collections\n        on the Planetary Computer. Each of the maps has an assessed average accuracy\n        of over 75%.\\\\n\\\\nThis map uses an updated model from the [10-class model](https://planetarycomputer.microsoft.com/dataset/io-lulc)\n        and combines Grass(formerly class 3) and Scrub (formerly class 6) into a single\n        Rangeland class (class 11). The original Esri 2020 Land Cover collection uses\n        10 classes (Grass and Scrub separate) and an older version of the underlying\n        deep learning model.  The Esri 2020 Land Cover map was also produced by Impact\n        Observatory.  The map remains available for use in existing applications.\n        New applications should use the updated version of 2020 once it is available\n        in this collection, especially when using data from multiple years of this\n        time series, to ensure consistent classification.\\\\n\\\\nAll years are available\n        under a Creative Commons BY-4.0.\\\",\\\"item_assets\\\":{\\\"data\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Global\n        land cover data\\\",\\\"file:values\\\":[{\\\"values\\\":[0],\\\"summary\\\":\\\"No Data\\\"},{\\\"values\\\":[1],\\\"summary\\\":\\\"Water\\\"},{\\\"values\\\":[2],\\\"summary\\\":\\\"Trees\\\"},{\\\"values\\\":[4],\\\"summary\\\":\\\"Flooded\n        vegetation\\\"},{\\\"values\\\":[5],\\\"summary\\\":\\\"Crops\\\"},{\\\"values\\\":[7],\\\"summary\\\":\\\"Built\n        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\n        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\n        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\n        White Paper\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/io-biodiversity\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"Biodiversity\n        Intactness\\\",\\\"assets\\\":{\\\"thumbnail\\\":{\\\"href\\\":\\\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/io-biodiversity-thumb.png\\\",\\\"title\\\":\\\"Biodiversity\n        Intactness\\\",\\\"media_type\\\":\\\"image/png\\\"},\\\"geoparquet-items\\\":{\\\"href\\\":\\\"abfs://items/io-biodiversity.parquet\\\",\\\"type\\\":\\\"application/x-parquet\\\",\\\"roles\\\":[\\\"stac-items\\\"],\\\"title\\\":\\\"GeoParquet\n        STAC items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        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\n        by [Impact Observatory](https://www.impactobservatory.com/), in collaboration\n        with [Vizzuality](https://www.vizzuality.com/), these datasets estimate terrestrial\n        Biodiversity Intactness as 100-meter gridded maps for the years 2017-2020.\\\\n\\\\nMaps\n        depicting the intactness of global biodiversity have become a critical tool\n        for spatial planning and management, monitoring the extent of biodiversity\n        across Earth, and identifying critical remaining intact habitat. Yet, these\n        maps are often years out of date by the time they are available to scientists\n        and policy-makers. The datasets in this STAC Collection build on past studies\n        that map Biodiversity Intactness using the [PREDICTS database](https://onlinelibrary.wiley.com/doi/full/10.1002/ece3.2579)\n        of spatially referenced observations of biodiversity across 32,000 sites from\n        over 750 studies. The approach differs from previous work by modeling the\n        relationship between observed biodiversity metrics and contemporary, global,\n        geospatial layers of human pressures, with the intention of providing a high\n        resolution monitoring product into the future.\\\\n\\\\nBiodiversity intactness\n        is estimated as a combination of two metrics: Abundance, the quantity of individuals,\n        and Compositional Similarity, how similar the composition of species is to\n        an intact baseline. Linear mixed effects models are fit to estimate the predictive\n        capacity of spatial datasets of human pressures on each of these metrics and\n        project results spatially across the globe. These methods, as well as comparisons\n        to other leading datasets and guidance on interpreting results, are further\n        explained in a methods [white paper](https://ai4edatasetspublicassets.blob.core.windows.net/assets/pdfs/io-biodiversity/Biodiversity_Intactness_whitepaper.pdf)\n        entitled \\u201CGlobal 100m Projections of Biodiversity Intactness for the\n        years 2017-2020.\\u201D\\\\n\\\\nAll years are available under a Creative Commons\n        BY-4.0 license.\\\\n\\\",\\\"item_assets\\\":{\\\"data\\\":{\\\"type\\\":\\\"image/tiff; application=geotiff;\n        profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Biodiversity Intactness\\\",\\\"description\\\":\\\"Terrestrial\n        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\n        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\n        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\n        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\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"Sea\n        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\n        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\n        STAC items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        Centers for Environmental Information\\\",\\\"roles\\\":[\\\"producer\\\",\\\"processor\\\",\\\"licensor\\\"],\\\"description\\\":\\\"NCEI\n        is the Nation's leading authority for environmental data, and manage one of\n        the largest archives of atmospheric, coastal, geophysical, and oceanic research\n        in the world. NCEI contributes to the NESDIS mission by developing new products\n        and services that span the science disciplines and enable better data discovery.\\\"},{\\\"url\\\":\\\"https://planetarycomputer.microsoft.com\\\",\\\"name\\\":\\\"Microsoft\\\",\\\"roles\\\":[\\\"processor\\\",\\\"host\\\"]}],\\\"description\\\":\\\"The\n        Sea Surface Temperature-Woods Hole Oceanographic Institution (WHOI) Climate\n        Data Record (CDR) is one of three CDRs which combine to form the NOAA Ocean\n        Surface Bundle (OSB) CDR. The resultant sea surface temperature (SST) data\n        are produced through modeling the diurnal variability in combination with\n        AVHRR SST observations. The final record is output to a 3-hourly 0.25\\xB0\n        resolution grid over the global ice-free oceans from January 1988\\u2014present.\\\\n\\\\nThese\n        Cloud Optimized GeoTIFFs (COGs) were created from NetCDF files which are delivered\n        to Azure as part of the [NOAA Open Data Dissemination (NODD) Program](https://www.noaa.gov/information-technology/open-data-dissemination).\\\\nFor\n        the NetCDF files, see collection `noaa-cdr-sea-surface-temperature-whoi-netcdf`.\\\\n\\\",\\\"item_assets\\\":{\\\"fill_missing_qc\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"raster:bands\\\":[{\\\"nodata\\\":\\\"nan\\\",\\\"data_type\\\":\\\"float32\\\"}]},\\\"sea_surface_temperature\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"raster:bands\\\":[{\\\"unit\\\":\\\"degree\n        Celsius\\\",\\\"nodata\\\":\\\"nan\\\",\\\"data_type\\\":\\\"float32\\\"}]}},\\\"msft:region\\\":\\\"eastus\\\",\\\"sci:citation\\\":\\\"Clayson,\n        Carol Anne; Brown, Jeremiah; and NOAA CDR Program (2016). NOAA Climate Data\n        Record (CDR) of Sea Surface Temperature - WHOI, Version 2. NOAA National Climatic\n        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\n        Sea Surface Temperature-Woods Hole Oceanographic Institution (WHOI) Climate\n        Data Record (CDR) is one of three CDRs which combine to form the NOAA Ocean\n        Surface Bundle (OSB) CDR. The resultant sea surface temperature (SST) data\n        are produced through modeling the diurnal variability in combination with\n        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\n        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\n        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\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"Global\n        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\n        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\n        STAC items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        Centers for Environmental Information\\\",\\\"roles\\\":[\\\"producer\\\",\\\"processor\\\",\\\"licensor\\\"],\\\"description\\\":\\\"NCEI\n        is the Nation's leading authority for environmental data, and manage one of\n        the largest archives of atmospheric, coastal, geophysical, and oceanic research\n        in the world. NCEI contributes to the NESDIS mission by developing new products\n        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\n        Ocean Heat Content Climate Data Record (CDR) is a set of ocean heat content\n        anomaly (OHCA) time-series for 1955-present on 3-monthly, yearly, and pentadal\n        (five-yearly) scales. This CDR quantifies ocean heat content change over time,\n        which is an essential metric for understanding climate change and the Earth's\n        energy budget. It provides time-series for multiple depth ranges in the global\n        ocean and each of the major basins (Atlantic, Pacific, and Indian) divided\n        by hemisphere (Northern, Southern).\\\\n\\\\nThese Cloud Optimized GeoTIFFs (COGs)\n        were created from NetCDF files which are delivered to Azure as part of the\n        [NOAA Open Data Dissemination (NODD) Program](https://www.noaa.gov/information-technology/open-data-dissemination).\\\\nFor\n        the NetCDF files, see collection `noaa-cdr-ocean-heat-content-netcdf`.\\\\n\\\",\\\"item_assets\\\":{\\\"heat_content\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Ocean\n        Heat Content anomalies from WOA09\\\",\\\"raster:bands\\\":[{\\\"unit\\\":\\\"10^18 joules\\\",\\\"nodata\\\":\\\"nan\\\",\\\"data_type\\\":\\\"float32\\\"}]},\\\"mean_salinity\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Mean\n        salinity anomalies from WOA09\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":\\\"nan\\\",\\\"data_type\\\":\\\"float32\\\"}]},\\\"mean_temperature\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Mean\n        temperature anomalies from WOA09\\\",\\\"raster:bands\\\":[{\\\"unit\\\":\\\"degrees Celsius\\\",\\\"nodata\\\":\\\"nan\\\",\\\"data_type\\\":\\\"float32\\\"}]},\\\"mean_halosteric_sea_level\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Mean\n        halosteric sea level anomalies from WOA09\\\",\\\"raster:bands\\\":[{\\\"unit\\\":\\\"millimeters\\\",\\\"nodata\\\":\\\"nan\\\",\\\"data_type\\\":\\\"float32\\\"}]},\\\"mean_thermosteric_sea_level\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Mean\n        thermosteric sea level anomalies from WOA09\\\",\\\"raster:bands\\\":[{\\\"unit\\\":\\\"millimeters\\\",\\\"nodata\\\":\\\"nan\\\",\\\"data_type\\\":\\\"float32\\\"}]},\\\"mean_total_steric_sea_level\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Mean\n        total steric sea level anomalies from WOA09\\\",\\\"raster:bands\\\":[{\\\"unit\\\":\\\"millimeters\\\",\\\"nodata\\\":\\\"nan\\\",\\\"data_type\\\":\\\"float32\\\"}]}},\\\"msft:region\\\":\\\"eastus\\\",\\\"sci:citation\\\":\\\"Levitus,\n        Sydney; Antonov, John I.; Boyer, Tim P.; Baranova, Olga K.; Garc\\xEDa, Hern\\xE1n\n        E.; Locarnini, Ricardo A.; Mishonov, Alexey V.; Reagan, James R.; [Seidov,\n        Dan; Yarosh, Evgeney; Zweng, Melissa M. (2017). NCEI ocean heat content, temperature\n        anomalies, salinity anomalies, thermosteric sea level anomalies, halosteric\n        sea level anomalies, and total steric sea level anomalies from 1955 to present\n        calculated from in situ oceanographic subsurface profile data (NCEI Accession\n        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\n        Ocean Heat Content Climate Data Record (CDR) is a set of ocean heat content\n        anomaly (OHCA) time-series for 1955-present on 3-monthly, yearly, and pentadal\n        (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\n        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\n        homepage\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/cil-gdpcir-cc0\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"CIL\n        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\n        Impact Lab\\\",\\\"Rhodium Group\\\",\\\"Precipitation\\\",\\\"Temperature\\\"],\\\"providers\\\":[{\\\"url\\\":\\\"https://impactlab.org/\\\",\\\"name\\\":\\\"Climate\n        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\n        World Climate Research Programme's [6th Coupled Model Intercomparison Project\n        (CMIP6)](https://www.wcrp-climate.org/wgcm-cmip/wgcm-cmip6) represents an\n        enormous advance in the quality, detail, and scope of climate modeling.\\\\n\\\\nThe\n        [Global Downscaled Projections for Climate Impacts Research](https://github.com/ClimateImpactLab/downscaleCMIP6)\n        dataset makes this modeling more applicable to understanding the impacts of\n        changes in the climate on humans and society with two key developments: trend-preserving\n        bias correction and downscaling. In this dataset, the [Climate Impact Lab](https://impactlab.org)\n        provides global, daily minimum and maximum air temperature at the surface\n        (`tasmin` and `tasmax`) and daily cumulative surface precipitation (`pr`)\n        corresponding to the CMIP6 historical, ssp1-2.6, ssp2-4.5, ssp3-7.0, and ssp5-8.5\n        scenarios for 25 global climate models on a 1/4-degree regular global grid.\\\\n\\\\n##\n        Accessing the data\\\\n\\\\nGDPCIR data can be accessed on the Microsoft Planetary\n        Computer. The dataset is made of of three collections, distinguished by data\n        license:\\\\n* [Public domain (CC0-1.0) collection](https://planetarycomputer.microsoft.com/dataset/cil-gdpcir-cc0)\\\\n*\n        [Attribution (CC BY 4.0) collection](https://planetarycomputer.microsoft.com/dataset/cil-gdpcir-cc-by)\\\\n\\\\nEach\n        modeling center with bias corrected and downscaled data in this collection\n        falls into one of these license categories - see the [table below](/dataset/cil-gdpcir-cc0#available-institutions-models-and-scenarios-by-license-collection)\n        to see which model is in each collection, and see the section below on [Citing,\n        Licensing, and using data produced by this project](/dataset/cil-gdpcir-cc0#citing-licensing-and-using-data-produced-by-this-project)\n        for citations and additional information about each license.\\\\n\\\\n## Data\n        format & contents\\\\n\\\\nThe data is stored as partitioned zarr stores (see\n        [https://zarr.readthedocs.io](https://zarr.readthedocs.io)), each of which\n        includes thousands of data and metadata files covering the full time span\n        of the experiment. Historical zarr stores contain just over 50 GB, while SSP\n        zarr stores contain nearly 70GB. Each store is stored as a 32-bit float, with\n        dimensions time (daily datetime), lat (float latitude), and lon (float longitude).\n        The data is chunked at each interval of 365 days and 90 degree interval of\n        latitude and longitude. Therefore, each chunk is `(365, 360, 360)`, with each\n        chunk occupying approximately 180MB in memory.\\\\n\\\\nHistorical data is daily,\n        excluding leap days, from Jan 1, 1950 to Dec 31, 2014; SSP data is daily,\n        excluding leap days, from Jan 1, 2015 to either Dec 31, 2099 or Dec 31, 2100,\n        depending on data availability in the source GCM.\\\\n\\\\nThe spatial domain\n        covers all 0.25-degree grid cells, indexed by the grid center, with grid edges\n        on the quarter-degree, using a -180 to 180 longitude convention. Thus, the\n        \\u201Clon\\u201D coordinate extends from -179.875 to 179.875, and the \\u201Clat\\u201D\n        coordinate extends from -89.875 to 89.875, with intermediate values at each\n        0.25-degree increment between (e.g. -179.875, -179.625, -179.375, etc).\\\\n\\\\n##\n        Available institutions, models, and scenarios by license collection\\\\n\\\\n|\n        Modeling institution |   Source model    |           Available experiments\n        \\           |   License collection   |\\\\n| -------------------- | -----------------\n        | ------------------------------------------ | ---------------------- |\\\\n|\n        CAS                  | FGOALS-g3 [^1]    | SSP2-4.5, SSP3-7.0, and SSP5-8.5\n        \\          | Public domain datasets |\\\\n| INM                  | INM-CM4-8\n        \\        | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | Public domain datasets\n        |\\\\n| INM                  | INM-CM5-0         | SSP1-2.6, SSP2-4.5, SSP3-7.0,\n        and SSP5-8.5 | Public domain datasets |\\\\n| BCC                  | BCC-CSM2-MR\n        \\      | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40               |\\\\n|\n        CMCC                 | CMCC-CM2-SR5      | ssp1-2.6, ssp2-4.5, ssp3-7.0, ssp5-8.5\n        \\    | CC-BY-40               |\\\\n| CMCC                 | CMCC-ESM2         |\n        ssp1-2.6, ssp2-4.5, ssp3-7.0, ssp5-8.5     | CC-BY-40               |\\\\n|\n        CSIRO-ARCCSS         | ACCESS-CM2        | SSP2-4.5 and SSP3-7.0                      |\n        CC-BY-40               |\\\\n| CSIRO                | ACCESS-ESM1-5     | SSP1-2.6,\n        SSP2-4.5, and SSP3-7.0           | CC-BY-40               |\\\\n| MIROC                |\n        MIROC-ES2L        | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40\n        \\              |\\\\n| MIROC                | MIROC6            | SSP1-2.6,\n        SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40               |\\\\n| MOHC                 |\n        HadGEM3-GC31-LL   | SSP1-2.6, SSP2-4.5, and SSP5-8.5           | CC-BY-40\n        \\              |\\\\n| MOHC                 | UKESM1-0-LL       | SSP1-2.6,\n        SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40               |\\\\n| MPI-M                |\n        MPI-ESM1-2-LR     | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40\n        \\              |\\\\n| MPI-M/DKRZ [^2]      | MPI-ESM1-2-HR     | SSP1-2.6 and\n        SSP5-8.5                      | CC-BY-40               |\\\\n| NCC                  |\n        NorESM2-LM        | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40\n        \\              |\\\\n| NCC                  | NorESM2-MM        | SSP1-2.6,\n        SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40               |\\\\n| NOAA-GFDL\n        \\           | GFDL-CM4          | SSP2-4.5 and SSP5-8.5                      |\n        CC-BY-40               |\\\\n| NOAA-GFDL            | GFDL-ESM4         | SSP1-2.6,\n        SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40               |\\\\n| NUIST                |\n        NESM3             | SSP1-2.6, SSP2-4.5, and SSP5-8.5           | CC-BY-40\n        \\              |\\\\n| EC-Earth-Consortium  | EC-Earth3         | ssp1-2.6,\n        ssp2-4.5, ssp3-7.0, and ssp5-8.5 | CC-BY-40               |\\\\n| EC-Earth-Consortium\n        \\ | EC-Earth3-AerChem | ssp370                                     | CC-BY-40\n        \\              |\\\\n| EC-Earth-Consortium  | EC-Earth3-CC      | ssp245 and\n        ssp585                          | CC-BY-40               |\\\\n| EC-Earth-Consortium\n        \\ | EC-Earth3-Veg     | ssp1-2.6, ssp2-4.5, ssp3-7.0, and ssp5-8.5 | CC-BY-40\n        \\              |\\\\n| EC-Earth-Consortium  | EC-Earth3-Veg-LR  | ssp1-2.6,\n        ssp2-4.5, ssp3-7.0, and ssp5-8.5 | CC-BY-40               |\\\\n| CCCma                |\n        CanESM5           | ssp1-2.6, ssp2-4.5, ssp3-7.0, ssp5-8.5     | CC-BY-40[^3]\n        \\          |\\\\n\\\\n*Notes:*\\\\n\\\\n[^1]: At the time of running, no ssp1-2.6\n        precipitation data was available. Therefore, we provide `tasmin` and `tamax`\n        for this model and experiment, but not `pr`. All other model/experiment combinations\n        in the above table include all three variables.\\\\n\\\\n[^2]: The institution\n        which ran MPI-ESM1-2-HR\\u2019s historical (CMIP) simulations is `MPI-M`, while\n        the future (ScenarioMIP) simulations were run by `DKRZ`. Therefore, the institution\n        component of `MPI-ESM1-2-HR` filepaths differ between `historical` and `SSP`\n        scenarios.\\\\n\\\\n[^3]: This dataset was previously licensed as [CC BY-SA 4.0](https://creativecommons.org/licenses/by-sa/4.0/),\n        but was relicensed under [CC BY 4.0](https://creativecommons.org/licenses/by/4.0)\n        in March, 2023. \\\\n\\\\n## Project methods\\\\n\\\\nThis project makes use of statistical\n        bias correction and downscaling algorithms, which are specifically designed\n        to accurately represent changes in the extremes. For this reason, we selected\n        Quantile Delta Mapping (QDM), following the method introduced by [Cannon et\n        al. (2015)](https://doi.org/10.1175/JCLI-D-14-00754.1), which preserves quantile-specific\n        trends from the GCM while fitting the full distribution for a given day-of-year\n        to a reference dataset (ERA5).\\\\n\\\\nWe then introduce a similar method tailored\n        to increase spatial resolution while preserving extreme behavior, Quantile-Preserving\n        Localized-Analog Downscaling (QPLAD).\\\\n\\\\nTogether, these methods provide\n        a robust means to handle both the central and tail behavior seen in climate\n        model output, while aligning the full distribution to a state-of-the-art reanalysis\n        dataset and providing the spatial granularity needed to study surface impacts.\\\\n\\\\nFor\n        further documentation, see [Global downscaled projections for climate impacts\n        research (GDPCIR): preserving extremes for modeling future climate impacts](https://egusphere.copernicus.org/preprints/2023/egusphere-2022-1513/)\n        (EGUsphere, 2022 [preprint]).\\\\n\\\\n\\\\n## Citing, licensing, and using data\n        produced by this project\\\\n\\\\nProjects making use of the data produced as\n        part of the Climate Impact Lab Global Downscaled Projections for Climate Impacts\n        Research (CIL GDPCIR) project are requested to cite both this project and\n        the source datasets from which these results are derived. Additionally, the\n        use of data derived from some GCMs *requires* citations, and some modeling\n        centers impose licensing restrictions & requirements on derived works. See\n        each GCM's license info in the links below for more information.\\\\n\\\\n###\n        CIL GDPCIR\\\\n\\\\nUsers are requested to cite this project in derived works.\n        Our method documentation paper may be cited using the following:\\\\n\\\\n> Gergel,\n        D. R., Malevich, S. B., McCusker, K. E., Tenezakis, E., Delgado, M. T., Fish,\n        M. A., and Kopp, R. E.: Global downscaled projections for climate impacts\n        research (GDPCIR): preserving extremes for modeling future climate impacts,\n        EGUsphere [preprint], https://doi.org/10.5194/egusphere-2022-1513, 2023. \\\\n\\\\nThe\n        code repository may be cited using the following:\\\\n\\\\n> Diana Gergel, Kelly\n        McCusker, Brewster Malevich, Emile Tenezakis, Meredith Fish, Michael Delgado\n        (2022). ClimateImpactLab/downscaleCMIP6: (v1.0.0). Zenodo. https://doi.org/10.5281/zenodo.6403794\\\\n\\\\n###\n        ERA5\\\\n\\\\nAdditionally, we request you cite the historical dataset used in\n        bias correction and downscaling, ERA5. See the [ECMWF guide to citing a dataset\n        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>\n        Hersbach, H, et al. The ERA5 global reanalysis. Q J R Meteorol Soc.2020; 146:\n        1999\\u20132049. DOI: [10.1002/qj.3803](https://doi.org/10.1002/qj.3803)\\\\n>\\\\n>\n        Mu\\xF1oz Sabater, J., (2019): ERA5-Land hourly data from 1981 to present.\n        Copernicus Climate Change Service (C3S) Climate Data Store (CDS). (Accessed\n        on June 4, 2021), DOI: [10.24381/cds.e2161bac](https://doi.org/10.24381/cds.e2161bac)\\\\n>\\\\n>\n        Mu\\xF1oz Sabater, J., (2021): ERA5-Land hourly data from 1950 to 1980. Copernicus\n        Climate Change Service (C3S) Climate Data Store (CDS). (Accessed on June 4,\n        2021), DOI: [10.24381/cds.e2161bac](https://doi.org/10.24381/cds.e2161bac)\\\\n\\\\n###\n        GCM-specific citations & licenses\\\\n\\\\nThe CMIP6 simulation data made available\n        through the Earth System Grid Federation (ESGF) are subject to Creative Commons\n        [BY-SA 4.0](https://creativecommons.org/licenses/by-sa/4.0/) or [BY-NC-SA\n        4.0](https://creativecommons.org/licenses/by-nc-sa/4.0/) licenses. The Climate\n        Impact Lab has reached out to each of the modeling institutions to request\n        waivers from these terms so the outputs of this project may be used with fewer\n        restrictions, and has been granted permission to release the data using the\n        licenses listed here.\\\\n\\\\n#### Public Domain Datasets\\\\n\\\\nThe following\n        bias corrected and downscaled model simulations are available in the public\n        domain using a [CC0 1.0 Universal Public Domain Declaration](https://creativecommons.org/publicdomain/zero/1.0/).\n        Access the collection on Planetary Computer at https://planetarycomputer.microsoft.com/dataset/cil-gdpcir-cc0.\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > Li, Lijuan **(2019)**. *CAS FGOALS-g3 model output\n        prepared for CMIP6 CMIP*. Version 20190826. Earth System Grid Federation.\n        https://doi.org/10.22033/ESGF/CMIP6.1783\\\\n\\\\n  ScenarioMIP Citation:\\\\n\\\\n\n        \\ > Li, Lijuan **(2019)**. *CAS FGOALS-g3 model output prepared for CMIP6\n        ScenarioMIP*. SSP1-2.6 version 20190818; SSP2-4.5 version 20190818; SSP3-7.0\n        version 20190820; SSP5-8.5 tasmax version 20190819; SSP5-8.5 tasmin version\n        20190819; SSP5-8.5 pr version 20190818. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.2056\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > Volodin, Evgeny; Mortikov, Evgeny; Gritsun, Andrey;\n        Lykossov, Vasily; Galin, Vener; Diansky, Nikolay; Gusev, Anatoly; Kostrykin,\n        Sergey; Iakovlev, Nikolay; Shestakova, Anna; Emelina, Svetlana **(2019)**.\n        *INM INM-CM4-8 model output prepared for CMIP6 CMIP*. Version 20190530. Earth\n        System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1422\\\\n\\\\n  ScenarioMIP\n        Citation:\\\\n\\\\n  > Volodin, Evgeny; Mortikov, Evgeny; Gritsun, Andrey; Lykossov,\n        Vasily; Galin, Vener; Diansky, Nikolay; Gusev, Anatoly; Kostrykin, Sergey;\n        Iakovlev, Nikolay; Shestakova, Anna; Emelina, Svetlana **(2019)**. *INM INM-CM4-8\n        model output prepared for CMIP6 ScenarioMIP*. Version 20190603. Earth System\n        Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.12321\\\\n\\\\n\\\\n* **INM-CM5-0**\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > Volodin, Evgeny; Mortikov, Evgeny; Gritsun, Andrey;\n        Lykossov, Vasily; Galin, Vener; Diansky, Nikolay; Gusev, Anatoly; Kostrykin,\n        Sergey; Iakovlev, Nikolay; Shestakova, Anna; Emelina, Svetlana **(2019)**.\n        *INM INM-CM5-0 model output prepared for CMIP6 CMIP*. Version 20190610. Earth\n        System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1423\\\\n\\\\n  ScenarioMIP\n        Citation:\\\\n\\\\n  > Volodin, Evgeny; Mortikov, Evgeny; Gritsun, Andrey; Lykossov,\n        Vasily; Galin, Vener; Diansky, Nikolay; Gusev, Anatoly; Kostrykin, Sergey;\n        Iakovlev, Nikolay; Shestakova, Anna; Emelina, Svetlana **(2019)**. *INM INM-CM5-0\n        model output prepared for CMIP6 ScenarioMIP*. SSP1-2.6 version 20190619; SSP2-4.5\n        version 20190619; SSP3-7.0 version 20190618; SSP5-8.5 version 20190724. Earth\n        System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.12322\\\\n\\\\n\\\\n####\n        CC-BY-4.0\\\\n\\\\nThe following bias corrected and downscaled model simulations\n        are licensed under a [Creative Commons Attribution 4.0 International License](https://creativecommons.org/licenses/by/4.0/).\n        Note that this license requires citation of the source model output (included\n        here). Please see https://creativecommons.org/licenses/by/4.0/ for more information.\n        Access the collection on Planetary Computer at https://planetarycomputer.microsoft.com/dataset/cil-gdpcir-cc-by.\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > Dix, Martin; Bi, Doahua; Dobrohotoff, Peter; Fiedler,\n        Russell; Harman, Ian; Law, Rachel; Mackallah, Chloe; Marsland, Simon; O'Farrell,\n        Siobhan; Rashid, Harun; Srbinovsky, Jhan; Sullivan, Arnold; Trenham, Claire;\n        Vohralik, Peter; Watterson, Ian; Williams, Gareth; Woodhouse, Matthew; Bodman,\n        Roger; Dias, Fabio Boeira; Domingues, Catia; Hannah, Nicholas; Heerdegen,\n        Aidan; Savita, Abhishek; Wales, Scott; Allen, Chris; Druken, Kelsey; Evans,\n        Ben; Richards, Clare; Ridzwan, Syazwan Mohamed; Roberts, Dale; Smillie, Jon;\n        Snow, Kate; Ward, Marshall; Yang, Rui **(2019)**. *CSIRO-ARCCSS ACCESS-CM2\n        model output prepared for CMIP6 CMIP*. Version 20191108. Earth System Grid\n        Federation. https://doi.org/10.22033/ESGF/CMIP6.2281\\\\n\\\\n  ScenarioMIP Citation:\\\\n\\\\n\n        \\ > Dix, Martin; Bi, Doahua; Dobrohotoff, Peter; Fiedler, Russell; Harman,\n        Ian; Law, Rachel; Mackallah, Chloe; Marsland, Simon; O'Farrell, Siobhan; Rashid,\n        Harun; Srbinovsky, Jhan; Sullivan, Arnold; Trenham, Claire; Vohralik, Peter;\n        Watterson, Ian; Williams, Gareth; Woodhouse, Matthew; Bodman, Roger; Dias,\n        Fabio Boeira; Domingues, Catia; Hannah, Nicholas; Heerdegen, Aidan; Savita,\n        Abhishek; Wales, Scott; Allen, Chris; Druken, Kelsey; Evans, Ben; Richards,\n        Clare; Ridzwan, Syazwan Mohamed; Roberts, Dale; Smillie, Jon; Snow, Kate;\n        Ward, Marshall; Yang, Rui **(2019)**. *CSIRO-ARCCSS ACCESS-CM2 model output\n        prepared for CMIP6 ScenarioMIP*. Version 20191108. Earth System Grid Federation.\n        https://doi.org/10.22033/ESGF/CMIP6.2285\\\\n\\\\n\\\\n* **ACCESS-ESM1-5**\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > Ziehn, Tilo; Chamberlain, Matthew; Lenton, Andrew;\n        Law, Rachel; Bodman, Roger; Dix, Martin; Wang, Yingping; Dobrohotoff, Peter;\n        Srbinovsky, Jhan; Stevens, Lauren; Vohralik, Peter; Mackallah, Chloe; Sullivan,\n        Arnold; O'Farrell, Siobhan; Druken, Kelsey **(2019)**. *CSIRO ACCESS-ESM1.5\n        model output prepared for CMIP6 CMIP*. Version 20191115. Earth System Grid\n        Federation. https://doi.org/10.22033/ESGF/CMIP6.2288\\\\n\\\\n  ScenarioMIP Citation:\\\\n\\\\n\n        \\ > Ziehn, Tilo; Chamberlain, Matthew; Lenton, Andrew; Law, Rachel; Bodman,\n        Roger; Dix, Martin; Wang, Yingping; Dobrohotoff, Peter; Srbinovsky, Jhan;\n        Stevens, Lauren; Vohralik, Peter; Mackallah, Chloe; Sullivan, Arnold; O'Farrell,\n        Siobhan; Druken, Kelsey **(2019)**. *CSIRO ACCESS-ESM1.5 model output prepared\n        for CMIP6 ScenarioMIP*. Version 20191115. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.2291\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > Xin, Xiaoge; Zhang, Jie; Zhang, Fang; Wu, Tongwen;\n        Shi, Xueli; Li, Jianglong; Chu, Min; Liu, Qianxia; Yan, Jinghui; Ma, Qiang;\n        Wei, Min **(2018)**. *BCC BCC-CSM2MR model output prepared for CMIP6 CMIP*.\n        Version 20181126. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1725\\\\n\\\\n\n        \\ ScenarioMIP Citation:\\\\n\\\\n  > Xin, Xiaoge; Wu, Tongwen; Shi, Xueli; Zhang,\n        Fang; Li, Jianglong; Chu, Min; Liu, Qianxia; Yan, Jinghui; Ma, Qiang; Wei,\n        Min **(2019)**. *BCC BCC-CSM2MR model output prepared for CMIP6 ScenarioMIP*.\n        SSP1-2.6 version 20190315; SSP2-4.5 version 20190318; SSP3-7.0 version 20190318;\n        SSP5-8.5 version 20190318. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1732\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > Lovato, Tomas; Peano, Daniele **(2020)**. *CMCC\n        CMCC-CM2-SR5 model output prepared for CMIP6 CMIP*. Version 20200616. Earth\n        System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1362\\\\n\\\\n  ScenarioMIP\n        Citation:\\\\n\\\\n  > Lovato, Tomas; Peano, Daniele **(2020)**. *CMCC CMCC-CM2-SR5\n        model output prepared for CMIP6 ScenarioMIP*. SSP1-2.6 version 20200717; SSP2-4.5\n        version 20200617; SSP3-7.0 version 20200622; SSP5-8.5 version 20200622. Earth\n        System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1365\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > Lovato, Tomas; Peano, Daniele; Butensch\\xF6n, Momme\n        **(2021)**. *CMCC CMCC-ESM2 model output prepared for CMIP6 CMIP*. Version\n        20210114. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.13164\\\\n\\\\n\n        \\ ScenarioMIP Citation:\\\\n\\\\n  > Lovato, Tomas; Peano, Daniele; Butensch\\xF6n,\n        Momme **(2021)**. *CMCC CMCC-ESM2 model output prepared for CMIP6 ScenarioMIP*.\n        SSP1-2.6 version 20210126; SSP2-4.5 version 20210129; SSP3-7.0 version 20210202;\n        SSP5-8.5 version 20210126. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.13168\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > EC-Earth Consortium (EC-Earth) **(2020)**. *EC-Earth-Consortium\n        EC-Earth3-AerChem model output prepared for CMIP6 CMIP*. Version 20200624.\n        Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.639\\\\n\\\\n\n        \\ ScenarioMIP Citation:\\\\n\\\\n  > EC-Earth Consortium (EC-Earth) **(2020)**.\n        *EC-Earth-Consortium EC-Earth3-AerChem model output prepared for CMIP6 ScenarioMIP*.\n        Version 20200827. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.724\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > EC-Earth Consortium (EC-Earth) **(2020)**. *EC-Earth-Consortium\n        EC-Earth-3-CC model output prepared for CMIP6 CMIP*. Version 20210113. Earth\n        System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.640\\\\n\\\\n  ScenarioMIP\n        Citation:\\\\n\\\\n  > EC-Earth Consortium (EC-Earth) **(2021)**. *EC-Earth-Consortium\n        EC-Earth3-CC model output prepared for CMIP6 ScenarioMIP*. Version 20210113.\n        Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.15327\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > EC-Earth Consortium (EC-Earth) **(2020)**. *EC-Earth-Consortium\n        EC-Earth3-Veg-LR model output prepared for CMIP6 CMIP*. Version 20200217.\n        Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.643\\\\n\\\\n\n        \\ ScenarioMIP Citation:\\\\n\\\\n  > EC-Earth Consortium (EC-Earth) **(2020)**.\n        *EC-Earth-Consortium EC-Earth3-Veg-LR model output prepared for CMIP6 ScenarioMIP*.\n        SSP1-2.6 version 20201201; SSP2-4.5 version 20201123; SSP3-7.0 version 20201123;\n        SSP5-8.5 version 20201201. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.728\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > EC-Earth Consortium (EC-Earth) **(2019)**. *EC-Earth-Consortium\n        EC-Earth3-Veg model output prepared for CMIP6 CMIP*. Version 20200225. Earth\n        System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.642\\\\n\\\\n  ScenarioMIP\n        Citation:\\\\n\\\\n  > EC-Earth Consortium (EC-Earth) **(2019)**. *EC-Earth-Consortium\n        EC-Earth3-Veg model output prepared for CMIP6 ScenarioMIP*. Version 20200225.\n        Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.727\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > EC-Earth Consortium (EC-Earth) **(2019)**. *EC-Earth-Consortium\n        EC-Earth3 model output prepared for CMIP6 CMIP*. Version 20200310. Earth System\n        Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.181\\\\n\\\\n  ScenarioMIP\n        Citation:\\\\n\\\\n  > EC-Earth Consortium (EC-Earth) **(2019)**. *EC-Earth-Consortium\n        EC-Earth3 model output prepared for CMIP6 ScenarioMIP*. Version 20200310.\n        Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.251\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > Guo, Huan; John, Jasmin G; Blanton, Chris; McHugh,\n        Colleen; Nikonov, Serguei; Radhakrishnan, Aparna; Rand, Kristopher; Zadeh,\n        Niki T.; Balaji, V; Durachta, Jeff; Dupuis, Christopher; Menzel, Raymond;\n        Robinson, Thomas; Underwood, Seth; Vahlenkamp, Hans; Bushuk, Mitchell; Dunne,\n        Krista A.; Dussin, Raphael; Gauthier, Paul PG; Ginoux, Paul; Griffies, Stephen\n        M.; Hallberg, Robert; Harrison, Matthew; Hurlin, William; Lin, Pu; Malyshev,\n        Sergey; Naik, Vaishali; Paulot, Fabien; Paynter, David J; Ploshay, Jeffrey;\n        Reichl, Brandon G; Schwarzkopf, Daniel M; Seman, Charles J; Shao, Andrew;\n        Silvers, Levi; Wyman, Bruce; Yan, Xiaoqin; Zeng, Yujin; Adcroft, Alistair;\n        Dunne, John P.; Held, Isaac M; Krasting, John P.; Horowitz, Larry W.; Milly,\n        P.C.D; Shevliakova, Elena; Winton, Michael; Zhao, Ming; Zhang, Rong **(2018)**.\n        *NOAA-GFDL GFDL-CM4 model output*. Version 20180701. Earth System Grid Federation.\n        https://doi.org/10.22033/ESGF/CMIP6.1402\\\\n\\\\n  ScenarioMIP Citation:\\\\n\\\\n\n        \\ > Guo, Huan; John, Jasmin G; Blanton, Chris; McHugh, Colleen; Nikonov, Serguei;\n        Radhakrishnan, Aparna; Rand, Kristopher; Zadeh, Niki T.; Balaji, V; Durachta,\n        Jeff; Dupuis, Christopher; Menzel, Raymond; Robinson, Thomas; Underwood, Seth;\n        Vahlenkamp, Hans; Dunne, Krista A.; Gauthier, Paul PG; Ginoux, Paul; Griffies,\n        Stephen M.; Hallberg, Robert; Harrison, Matthew; Hurlin, William; Lin, Pu;\n        Malyshev, Sergey; Naik, Vaishali; Paulot, Fabien; Paynter, David J; Ploshay,\n        Jeffrey; Schwarzkopf, Daniel M; Seman, Charles J; Shao, Andrew; Silvers, Levi;\n        Wyman, Bruce; Yan, Xiaoqin; Zeng, Yujin; Adcroft, Alistair; Dunne, John P.;\n        Held, Isaac M; Krasting, John P.; Horowitz, Larry W.; Milly, Chris; Shevliakova,\n        Elena; Winton, Michael; Zhao, Ming; Zhang, Rong **(2018)**. *NOAA-GFDL GFDL-CM4\n        model output prepared for CMIP6 ScenarioMIP*. Version 20180701. Earth System\n        Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.9242\\\\n\\\\n\\\\n* **GFDL-ESM4**\\\\n\\\\n\n        \\ License description: [data_licenses/GFDL-ESM4.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/GFDL-ESM4.txt)\\\\n\\\\n\n        \\ CMIP Citation:\\\\n\\\\n  > Krasting, John P.; John, Jasmin G; Blanton, Chris;\n        McHugh, Colleen; Nikonov, Serguei; Radhakrishnan, Aparna; Rand, Kristopher;\n        Zadeh, Niki T.; Balaji, V; Durachta, Jeff; Dupuis, Christopher; Menzel, Raymond;\n        Robinson, Thomas; Underwood, Seth; Vahlenkamp, Hans; Dunne, Krista A.; Gauthier,\n        Paul PG; Ginoux, Paul; Griffies, Stephen M.; Hallberg, Robert; Harrison, Matthew;\n        Hurlin, William; Malyshev, Sergey; Naik, Vaishali; Paulot, Fabien; Paynter,\n        David J; Ploshay, Jeffrey; Reichl, Brandon G; Schwarzkopf, Daniel M; Seman,\n        Charles J; Silvers, Levi; Wyman, Bruce; Zeng, Yujin; Adcroft, Alistair; Dunne,\n        John P.; Dussin, Raphael; Guo, Huan; He, Jian; Held, Isaac M; Horowitz, Larry\n        W.; Lin, Pu; Milly, P.C.D; Shevliakova, Elena; Stock, Charles; Winton, Michael;\n        Wittenberg, Andrew T.; Xie, Yuanyu; Zhao, Ming **(2018)**. *NOAA-GFDL GFDL-ESM4\n        model output prepared for CMIP6 CMIP*. Version 20190726. Earth System Grid\n        Federation. https://doi.org/10.22033/ESGF/CMIP6.1407\\\\n\\\\n  ScenarioMIP Citation:\\\\n\\\\n\n        \\ > John, Jasmin G; Blanton, Chris; McHugh, Colleen; Radhakrishnan, Aparna;\n        Rand, Kristopher; Vahlenkamp, Hans; Wilson, Chandin; Zadeh, Niki T.; Dunne,\n        John P.; Dussin, Raphael; Horowitz, Larry W.; Krasting, John P.; Lin, Pu;\n        Malyshev, Sergey; Naik, Vaishali; Ploshay, Jeffrey; Shevliakova, Elena; Silvers,\n        Levi; Stock, Charles; Winton, Michael; Zeng, Yujin **(2018)**. *NOAA-GFDL\n        GFDL-ESM4 model output prepared for CMIP6 ScenarioMIP*. Version 20180701.\n        Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1414\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > Ridley, Jeff; Menary, Matthew; Kuhlbrodt, Till;\n        Andrews, Martin; Andrews, Tim **(2018)**. *MOHC HadGEM3-GC31-LL model output\n        prepared for CMIP6 CMIP*. Version 20190624. Earth System Grid Federation.\n        https://doi.org/10.22033/ESGF/CMIP6.419\\\\n\\\\n  ScenarioMIP Citation:\\\\n\\\\n\n        \\ > Good, Peter **(2019)**. *MOHC HadGEM3-GC31-LL model output prepared for\n        CMIP6 ScenarioMIP*. SSP1-2.6 version 20200114; SSP2-4.5 version 20190908;\n        SSP5-8.5 version 20200114. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.10845\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > Hajima, Tomohiro; Abe, Manabu; Arakawa, Osamu; Suzuki,\n        Tatsuo; Komuro, Yoshiki; Ogura, Tomoo; Ogochi, Koji; Watanabe, Michio; Yamamoto,\n        Akitomo; Tatebe, Hiroaki; Noguchi, Maki A.; Ohgaito, Rumi; Ito, Akinori; Yamazaki,\n        Dai; Ito, Akihiko; Takata, Kumiko; Watanabe, Shingo; Kawamiya, Michio; Tachiiri,\n        Kaoru **(2019)**. *MIROC MIROC-ES2L model output prepared for CMIP6 CMIP*.\n        Version 20191129. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.902\\\\n\\\\n\n        \\ ScenarioMIP Citation:\\\\n\\\\n  > Tachiiri, Kaoru; Abe, Manabu; Hajima, Tomohiro;\n        Arakawa, Osamu; Suzuki, Tatsuo; Komuro, Yoshiki; Ogochi, Koji; Watanabe, Michio;\n        Yamamoto, Akitomo; Tatebe, Hiroaki; Noguchi, Maki A.; Ohgaito, Rumi; Ito,\n        Akinori; Yamazaki, Dai; Ito, Akihiko; Takata, Kumiko; Watanabe, Shingo; Kawamiya,\n        Michio **(2019)**. *MIROC MIROC-ES2L model output prepared for CMIP6 ScenarioMIP*.\n        Version 20200318. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.936\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > Tatebe, Hiroaki; Watanabe, Masahiro **(2018)**.\n        *MIROC MIROC6 model output prepared for CMIP6 CMIP*. Version 20191016. Earth\n        System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.881\\\\n\\\\n  ScenarioMIP\n        Citation:\\\\n\\\\n  > Shiogama, Hideo; Abe, Manabu; Tatebe, Hiroaki **(2019)**.\n        *MIROC MIROC6 model output prepared for CMIP6 ScenarioMIP*. Version 20191016.\n        Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.898\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > Jungclaus, Johann; Bittner, Matthias; Wieners, Karl-Hermann;\n        Wachsmann, Fabian; Schupfner, Martin; Legutke, Stephanie; Giorgetta, Marco;\n        Reick, Christian; Gayler, Veronika; Haak, Helmuth; de Vrese, Philipp; Raddatz,\n        Thomas; Esch, Monika; Mauritsen, Thorsten; von Storch, Jin-Song; Behrens,\n        J\\xF6rg; Brovkin, Victor; Claussen, Martin; Crueger, Traute; Fast, Irina;\n        Fiedler, Stephanie; Hagemann, Stefan; Hohenegger, Cathy; Jahns, Thomas; Kloster,\n        Silvia; Kinne, Stefan; Lasslop, Gitta; Kornblueh, Luis; Marotzke, Jochem;\n        Matei, Daniela; Meraner, Katharina; Mikolajewicz, Uwe; Modali, Kameswarrao;\n        M\\xFCller, Wolfgang; Nabel, Julia; Notz, Dirk; Peters-von Gehlen, Karsten;\n        Pincus, Robert; Pohlmann, Holger; Pongratz, Julia; Rast, Sebastian; Schmidt,\n        Hauke; Schnur, Reiner; Schulzweida, Uwe; Six, Katharina; Stevens, Bjorn; Voigt,\n        Aiko; Roeckner, Erich **(2019)**. *MPI-M MPIESM1.2-HR model output prepared\n        for CMIP6 CMIP*. Version 20190710. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.741\\\\n\\\\n\n        \\ ScenarioMIP Citation:\\\\n\\\\n  > Schupfner, Martin; Wieners, Karl-Hermann;\n        Wachsmann, Fabian; Steger, Christian; Bittner, Matthias; Jungclaus, Johann;\n        Fr\\xFCh, Barbara; Pankatz, Klaus; Giorgetta, Marco; Reick, Christian; Legutke,\n        Stephanie; Esch, Monika; Gayler, Veronika; Haak, Helmuth; de Vrese, Philipp;\n        Raddatz, Thomas; Mauritsen, Thorsten; von Storch, Jin-Song; Behrens, J\\xF6rg;\n        Brovkin, Victor; Claussen, Martin; Crueger, Traute; Fast, Irina; Fiedler,\n        Stephanie; Hagemann, Stefan; Hohenegger, Cathy; Jahns, Thomas; Kloster, Silvia;\n        Kinne, Stefan; Lasslop, Gitta; Kornblueh, Luis; Marotzke, Jochem; Matei, Daniela;\n        Meraner, Katharina; Mikolajewicz, Uwe; Modali, Kameswarrao; M\\xFCller, Wolfgang;\n        Nabel, Julia; Notz, Dirk; Peters-von Gehlen, Karsten; Pincus, Robert; Pohlmann,\n        Holger; Pongratz, Julia; Rast, Sebastian; Schmidt, Hauke; Schnur, Reiner;\n        Schulzweida, Uwe; Six, Katharina; Stevens, Bjorn; Voigt, Aiko; Roeckner, Erich\n        **(2019)**. *DKRZ MPI-ESM1.2-HR model output prepared for CMIP6 ScenarioMIP*.\n        Version 20190710. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.2450\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > Wieners, Karl-Hermann; Giorgetta, Marco; Jungclaus,\n        Johann; Reick, Christian; Esch, Monika; Bittner, Matthias; Legutke, Stephanie;\n        Schupfner, Martin; Wachsmann, Fabian; Gayler, Veronika; Haak, Helmuth; de\n        Vrese, Philipp; Raddatz, Thomas; Mauritsen, Thorsten; von Storch, Jin-Song;\n        Behrens, J\\xF6rg; Brovkin, Victor; Claussen, Martin; Crueger, Traute; Fast,\n        Irina; Fiedler, Stephanie; Hagemann, Stefan; Hohenegger, Cathy; Jahns, Thomas;\n        Kloster, Silvia; Kinne, Stefan; Lasslop, Gitta; Kornblueh, Luis; Marotzke,\n        Jochem; Matei, Daniela; Meraner, Katharina; Mikolajewicz, Uwe; Modali, Kameswarrao;\n        M\\xFCller, Wolfgang; Nabel, Julia; Notz, Dirk; Peters-von Gehlen, Karsten;\n        Pincus, Robert; Pohlmann, Holger; Pongratz, Julia; Rast, Sebastian; Schmidt,\n        Hauke; Schnur, Reiner; Schulzweida, Uwe; Six, Katharina; Stevens, Bjorn; Voigt,\n        Aiko; Roeckner, Erich **(2019)**. *MPI-M MPIESM1.2-LR model output prepared\n        for CMIP6 CMIP*. Version 20190710. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.742\\\\n\\\\n\n        \\ ScenarioMIP Citation:\\\\n\\\\n  > Wieners, Karl-Hermann; Giorgetta, Marco;\n        Jungclaus, Johann; Reick, Christian; Esch, Monika; Bittner, Matthias; Gayler,\n        Veronika; Haak, Helmuth; de Vrese, Philipp; Raddatz, Thomas; Mauritsen, Thorsten;\n        von Storch, Jin-Song; Behrens, J\\xF6rg; Brovkin, Victor; Claussen, Martin;\n        Crueger, Traute; Fast, Irina; Fiedler, Stephanie; Hagemann, Stefan; Hohenegger,\n        Cathy; Jahns, Thomas; Kloster, Silvia; Kinne, Stefan; Lasslop, Gitta; Kornblueh,\n        Luis; Marotzke, Jochem; Matei, Daniela; Meraner, Katharina; Mikolajewicz,\n        Uwe; Modali, Kameswarrao; M\\xFCller, Wolfgang; Nabel, Julia; Notz, Dirk; Peters-von\n        Gehlen, Karsten; Pincus, Robert; Pohlmann, Holger; Pongratz, Julia; Rast,\n        Sebastian; Schmidt, Hauke; Schnur, Reiner; Schulzweida, Uwe; Six, Katharina;\n        Stevens, Bjorn; Voigt, Aiko; Roeckner, Erich **(2019)**. *MPI-M MPIESM1.2-LR\n        model output prepared for CMIP6 ScenarioMIP*. Version 20190710. Earth System\n        Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.793\\\\n\\\\n\\\\n* **NESM3**\\\\n\\\\n\n        \\ License description: [data_licenses/NESM3.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/NESM3.txt)\\\\n\\\\n\n        \\ CMIP Citation:\\\\n\\\\n  > Cao, Jian; Wang, Bin **(2019)**. *NUIST NESMv3 model\n        output prepared for CMIP6 CMIP*. Version 20190812. Earth System Grid Federation.\n        https://doi.org/10.22033/ESGF/CMIP6.2021\\\\n\\\\n  ScenarioMIP Citation:\\\\n\\\\n\n        \\ > Cao, Jian **(2019)**. *NUIST NESMv3 model output prepared for CMIP6 ScenarioMIP*.\n        SSP1-2.6 version 20190806; SSP2-4.5 version 20190805; SSP5-8.5 version 20190811.\n        Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.2027\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > Seland, \\xD8yvind; Bentsen, Mats; Olivi\\xE8, Dirk\n        Jan Leo; Toniazzo, Thomas; Gjermundsen, Ada; Graff, Lise Seland; Debernard,\n        Jens Boldingh; Gupta, Alok Kumar; He, Yanchun; Kirkev\\xE5g, Alf; Schwinger,\n        J\\xF6rg; Tjiputra, Jerry; Aas, Kjetil Schanke; Bethke, Ingo; Fan, Yuanchao;\n        Griesfeller, Jan; Grini, Alf; Guo, Chuncheng; Ilicak, Mehmet; Karset, Inger\n        Helene Hafsahl; Landgren, Oskar Andreas; Liakka, Johan; Moseid, Kine Onsum;\n        Nummelin, Aleksi; Spensberger, Clemens; Tang, Hui; Zhang, Zhongshi; Heinze,\n        Christoph; Iversen, Trond; Schulz, Michael **(2019)**. *NCC NorESM2-LM model\n        output prepared for CMIP6 CMIP*. Version 20190815. Earth System Grid Federation.\n        https://doi.org/10.22033/ESGF/CMIP6.502\\\\n\\\\n  ScenarioMIP Citation:\\\\n\\\\n\n        \\ > Seland, \\xD8yvind; Bentsen, Mats; Olivi\\xE8, Dirk Jan Leo; Toniazzo, Thomas;\n        Gjermundsen, Ada; Graff, Lise Seland; Debernard, Jens Boldingh; Gupta, Alok\n        Kumar; He, Yanchun; Kirkev\\xE5g, Alf; Schwinger, J\\xF6rg; Tjiputra, Jerry;\n        Aas, Kjetil Schanke; Bethke, Ingo; Fan, Yuanchao; Griesfeller, Jan; Grini,\n        Alf; Guo, Chuncheng; Ilicak, Mehmet; Karset, Inger Helene Hafsahl; Landgren,\n        Oskar Andreas; Liakka, Johan; Moseid, Kine Onsum; Nummelin, Aleksi; Spensberger,\n        Clemens; Tang, Hui; Zhang, Zhongshi; Heinze, Christoph; Iversen, Trond; Schulz,\n        Michael **(2019)**. *NCC NorESM2-LM model output prepared for CMIP6 ScenarioMIP*.\n        Version 20191108. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.604\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > Bentsen, Mats; Olivi\\xE8, Dirk Jan Leo; Seland,\n        \\xD8yvind; Toniazzo, Thomas; Gjermundsen, Ada; Graff, Lise Seland; Debernard,\n        Jens Boldingh; Gupta, Alok Kumar; He, Yanchun; Kirkev\\xE5g, Alf; Schwinger,\n        J\\xF6rg; Tjiputra, Jerry; Aas, Kjetil Schanke; Bethke, Ingo; Fan, Yuanchao;\n        Griesfeller, Jan; Grini, Alf; Guo, Chuncheng; Ilicak, Mehmet; Karset, Inger\n        Helene Hafsahl; Landgren, Oskar Andreas; Liakka, Johan; Moseid, Kine Onsum;\n        Nummelin, Aleksi; Spensberger, Clemens; Tang, Hui; Zhang, Zhongshi; Heinze,\n        Christoph; Iversen, Trond; Schulz, Michael **(2019)**. *NCC NorESM2-MM model\n        output prepared for CMIP6 CMIP*. Version 20191108. Earth System Grid Federation.\n        https://doi.org/10.22033/ESGF/CMIP6.506\\\\n\\\\n  ScenarioMIP Citation:\\\\n\\\\n\n        \\ > Bentsen, Mats; Olivi\\xE8, Dirk Jan Leo; Seland, \\xD8yvind; Toniazzo, Thomas;\n        Gjermundsen, Ada; Graff, Lise Seland; Debernard, Jens Boldingh; Gupta, Alok\n        Kumar; He, Yanchun; Kirkev\\xE5g, Alf; Schwinger, J\\xF6rg; Tjiputra, Jerry;\n        Aas, Kjetil Schanke; Bethke, Ingo; Fan, Yuanchao; Griesfeller, Jan; Grini,\n        Alf; Guo, Chuncheng; Ilicak, Mehmet; Karset, Inger Helene Hafsahl; Landgren,\n        Oskar Andreas; Liakka, Johan; Moseid, Kine Onsum; Nummelin, Aleksi; Spensberger,\n        Clemens; Tang, Hui; Zhang, Zhongshi; Heinze, Christoph; Iversen, Trond; Schulz,\n        Michael **(2019)**. *NCC NorESM2-MM model output prepared for CMIP6 ScenarioMIP*.\n        Version 20191108. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.608\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > Tang, Yongming; Rumbold, Steve; Ellis, Rich; Kelley,\n        Douglas; Mulcahy, Jane; Sellar, Alistair; Walton, Jeremy; Jones, Colin **(2019)**.\n        *MOHC UKESM1.0-LL model output prepared for CMIP6 CMIP*. Version 20190627.\n        Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1569\\\\n\\\\n\n        \\ ScenarioMIP Citation:\\\\n\\\\n  > Good, Peter; Sellar, Alistair; Tang, Yongming;\n        Rumbold, Steve; Ellis, Rich; Kelley, Douglas; Kuhlbrodt, Till; Walton, Jeremy\n        **(2019)**. *MOHC UKESM1.0-LL model output prepared for CMIP6 ScenarioMIP*.\n        SSP1-2.6 version 20190708; SSP2-4.5 version 20190715; SSP3-7.0 version 20190726;\n        SSP5-8.5 version 20190726. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1567\\\\n\\\\n\\\\n*\n        **CanESM5**\\\\n\\\\n  License description: [data_licenses/CanESM5.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/CanESM5.txt).\n        Note: this dataset was previously licensed\\\\n  under CC BY-SA 4.0, but was\n        relicensed as CC BY 4.0 in March, 2023.\\\\n\\\\n  CMIP Citation:\\\\n\\\\n  > Swart,\n        Neil Cameron; Cole, Jason N.S.; Kharin, Viatcheslav V.; Lazare, Mike; Scinocca,\n        John F.; Gillett, Nathan P.; Anstey, James; Arora, Vivek; Christian, James\n        R.; Jiao, Yanjun; Lee, Warren G.; Majaess, Fouad; Saenko, Oleg A.; Seiler,\n        Christian; Seinen, Clint; Shao, Andrew; Solheim, Larry; von Salzen, Knut;\n        Yang, Duo; Winter, Barbara; Sigmond, Michael **(2019)**. *CCCma CanESM5 model\n        output prepared for CMIP6 CMIP*. Version 20190429. Earth System Grid Federation.\n        https://doi.org/10.22033/ESGF/CMIP6.1303\\\\n\\\\n  ScenarioMIP Citation:\\\\n\\\\n\n        \\ > Swart, Neil Cameron; Cole, Jason N.S.; Kharin, Viatcheslav V.; Lazare,\n        Mike; Scinocca, John F.; Gillett, Nathan P.; Anstey, James; Arora, Vivek;\n        Christian, James R.; Jiao, Yanjun; Lee, Warren G.; Majaess, Fouad; Saenko,\n        Oleg A.; Seiler, Christian; Seinen, Clint; Shao, Andrew; Solheim, Larry; von\n        Salzen, Knut; Yang, Duo; Winter, Barbara; Sigmond, Michael **(2019)**. *CCCma\n        CanESM5 model output prepared for CMIP6 ScenarioMIP*. Version 20190429. Earth\n        System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1317\\\\n\\\\n## Acknowledgements\\\\n\\\\nThis\n        work is the result of many years worth of work by members of the [Climate\n        Impact Lab](https://impactlab.org), but would not have been possible without\n        many contributions from across the wider scientific and computing communities.\\\\n\\\\nSpecifically,\n        we would like to acknowledge the World Climate Research Programme's Working\n        Group on Coupled Modeling, which is responsible for CMIP, and we would like\n        to thank the climate modeling groups for producing and making their model\n        output available. We would particularly like to thank the modeling institutions\n        whose results are included as an input to this repository (listed above) for\n        their contributions to the CMIP6 project and for responding to and granting\n        our requests for license waivers.\\\\n\\\\nWe would also like to thank Lamont-Doherty\n        Earth Observatory, the [Pangeo Consortium](https://github.com/pangeo-data)\n        (and especially the [ESGF Cloud Data Working Group](https://pangeo-data.github.io/pangeo-cmip6-cloud/#))\n        and Google Cloud and the Google Public Datasets program for making the [CMIP6\n        Google Cloud collection](https://console.cloud.google.com/marketplace/details/noaa-public/cmip6)\n        possible. In particular we're extremely grateful to [Ryan Abernathey](https://github.com/rabernat),\n        [Naomi Henderson](https://github.com/naomi-henderson), [Charles Blackmon-Luca](https://github.com/charlesbluca),\n        [Aparna Radhakrishnan](https://github.com/aradhakrishnanGFDL), [Julius Busecke](https://github.com/jbusecke),\n        and [Charles Stern](https://github.com/cisaacstern) for the huge amount of\n        work they've done to translate the ESGF CMIP6 netCDF archives into consistently-formattted,\n        analysis-ready zarr stores on Google Cloud.\\\\n\\\\nWe're also grateful to the\n        [xclim developers](https://github.com/Ouranosinc/xclim/graphs/contributors)\n        ([DOI: 10.5281/zenodo.2795043](https://doi.org/10.5281/zenodo.2795043)), in\n        particular [Pascal Bourgault](https://github.com/aulemahal), [David Huard](https://github.com/huard),\n        and [Travis Logan](https://github.com/tlogan2000), for implementing the QDM\n        bias correction method in the xclim python package, supporting our QPLAD implementation\n        into the package, and ongoing support in integrating dask into downscaling\n        workflows. For method advice and useful conversations, we would like to thank\n        Keith Dixon, Dennis Adams-Smith, and [Joe Hamman](https://github.com/jhamman).\\\\n\\\\n##\n        Financial support\\\\n\\\\nThis research has been supported by The Rockefeller\n        Foundation and the Microsoft AI for Earth Initiative.\\\\n\\\\n## Additional links:\\\\n\\\\n*\n        CIL GDPCIR project homepage: [github.com/ClimateImpactLab/downscaleCMIP6](https://github.com/ClimateImpactLab/downscaleCMIP6)\\\\n*\n        Project listing on zenodo: https://doi.org/10.5281/zenodo.6403794\\\\n* Climate\n        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\n        Maximum Near-Surface Air Temperature\\\",\\\"description\\\":\\\"Daily Maximum Near-Surface\n        Air Temperature\\\"},\\\"tasmin\\\":{\\\"type\\\":\\\"application/vnd+zarr\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Daily\n        Minimum Near-Surface Air Temperature\\\",\\\"description\\\":\\\"Daily Minimum Near-Surface\n        Air Temperature\\\"}},\\\"msft:region\\\":\\\"westeurope\\\",\\\"stac_version\\\":\\\"1.0.0\\\",\\\"msft:group_id\\\":\\\"cil-gdpcir\\\",\\\"cube:variables\\\":{\\\"pr\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"mm\n        day-1\\\",\\\"attrs\\\":{\\\"units\\\":\\\"mm day-1\\\"},\\\"dimensions\\\":[\\\"time\\\",\\\"lat\\\",\\\"lon\\\"]},\\\"tasmax\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"K\\\",\\\"attrs\\\":{\\\"units\\\":\\\"K\\\",\\\"comment\\\":\\\"maximum\n        near-surface (usually, 2 meter) air temperature (add cell_method attribute\n        'time: max')\\\",\\\"long_name\\\":\\\"Daily Maximum Near-Surface Air Temperature\\\",\\\"coordinates\\\":\\\"height\\\",\\\"cell_methods\\\":\\\"area:\n        mean time: maximum (interval: 5 minutes)\\\",\\\"cell_measures\\\":\\\"area: areacella\\\",\\\"original_name\\\":\\\"TREFHTMX\\\",\\\"standard_name\\\":\\\"air_temperature\\\"},\\\"dimensions\\\":[\\\"time\\\",\\\"lat\\\",\\\"lon\\\"],\\\"description\\\":\\\"Daily\n        Maximum Near-Surface Air Temperature\\\"},\\\"tasmin\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"K\\\",\\\"attrs\\\":{\\\"units\\\":\\\"K\\\",\\\"comment\\\":\\\"minimum\n        near-surface (usually, 2 meter) air temperature (add cell_method attribute\n        'time: min')\\\",\\\"long_name\\\":\\\"Daily Minimum Near-Surface Air Temperature\\\",\\\"coordinates\\\":\\\"height\\\",\\\"cell_methods\\\":\\\"area:\n        mean time: minimum (interval: 5 minutes)\\\",\\\"cell_measures\\\":\\\"area: areacella\\\",\\\"original_name\\\":\\\"TREFHTMN\\\",\\\"standard_name\\\":\\\"air_temperature\\\"},\\\"dimensions\\\":[\\\"time\\\",\\\"lat\\\",\\\"lon\\\"],\\\"description\\\":\\\"Daily\n        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\n        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\n        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\n        homepage\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/cil-gdpcir-cc-by\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"CIL\n        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\n        STAC items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        Impact Lab\\\",\\\"Rhodium Group\\\",\\\"Precipitation\\\",\\\"Temperature\\\"],\\\"providers\\\":[{\\\"url\\\":\\\"https://impactlab.org/\\\",\\\"name\\\":\\\"Climate\n        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\n        World Climate Research Programme's [6th Coupled Model Intercomparison Project\n        (CMIP6)](https://www.wcrp-climate.org/wgcm-cmip/wgcm-cmip6) represents an\n        enormous advance in the quality, detail, and scope of climate modeling.\\\\n\\\\nThe\n        [Global Downscaled Projections for Climate Impacts Research](https://github.com/ClimateImpactLab/downscaleCMIP6)\n        dataset makes this modeling more applicable to understanding the impacts of\n        changes in the climate on humans and society with two key developments: trend-preserving\n        bias correction and downscaling. In this dataset, the [Climate Impact Lab](https://impactlab.org)\n        provides global, daily minimum and maximum air temperature at the surface\n        (`tasmin` and `tasmax`) and daily cumulative surface precipitation (`pr`)\n        corresponding to the CMIP6 historical, ssp1-2.6, ssp2-4.5, ssp3-7.0, and ssp5-8.5\n        scenarios for 25 global climate models on a 1/4-degree regular global grid.\\\\n\\\\n##\n        Accessing the data\\\\n\\\\nGDPCIR data can be accessed on the Microsoft Planetary\n        Computer. The dataset is made of of three collections, distinguished by data\n        license:\\\\n* [Public domain (CC0-1.0) collection](https://planetarycomputer.microsoft.com/dataset/cil-gdpcir-cc0)\\\\n*\n        [Attribution (CC BY 4.0) collection](https://planetarycomputer.microsoft.com/dataset/cil-gdpcir-cc-by)\\\\n\\\\nEach\n        modeling center with bias corrected and downscaled data in this collection\n        falls into one of these license categories - see the [table below](/dataset/cil-gdpcir-cc-by#available-institutions-models-and-scenarios-by-license-collection)\n        to see which model is in each collection, and see the section below on [Citing,\n        Licensing, and using data produced by this project](/dataset/cil-gdpcir-cc-by#citing-licensing-and-using-data-produced-by-this-project)\n        for citations and additional information about each license.\\\\n\\\\n## Data\n        format & contents\\\\n\\\\nThe data is stored as partitioned zarr stores (see\n        [https://zarr.readthedocs.io](https://zarr.readthedocs.io)), each of which\n        includes thousands of data and metadata files covering the full time span\n        of the experiment. Historical zarr stores contain just over 50 GB, while SSP\n        zarr stores contain nearly 70GB. Each store is stored as a 32-bit float, with\n        dimensions time (daily datetime), lat (float latitude), and lon (float longitude).\n        The data is chunked at each interval of 365 days and 90 degree interval of\n        latitude and longitude. Therefore, each chunk is `(365, 360, 360)`, with each\n        chunk occupying approximately 180MB in memory.\\\\n\\\\nHistorical data is daily,\n        excluding leap days, from Jan 1, 1950 to Dec 31, 2014; SSP data is daily,\n        excluding leap days, from Jan 1, 2015 to either Dec 31, 2099 or Dec 31, 2100,\n        depending on data availability in the source GCM.\\\\n\\\\nThe spatial domain\n        covers all 0.25-degree grid cells, indexed by the grid center, with grid edges\n        on the quarter-degree, using a -180 to 180 longitude convention. Thus, the\n        \\u201Clon\\u201D coordinate extends from -179.875 to 179.875, and the \\u201Clat\\u201D\n        coordinate extends from -89.875 to 89.875, with intermediate values at each\n        0.25-degree increment between (e.g. -179.875, -179.625, -179.375, etc).\\\\n\\\\n##\n        Available institutions, models, and scenarios by license collection\\\\n\\\\n|\n        Modeling institution |   Source model    |           Available experiments\n        \\           |   License collection   |\\\\n| -------------------- | -----------------\n        | ------------------------------------------ | ---------------------- |\\\\n|\n        CAS                  | FGOALS-g3 [^1]    | SSP2-4.5, SSP3-7.0, and SSP5-8.5\n        \\          | Public domain datasets |\\\\n| INM                  | INM-CM4-8\n        \\        | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | Public domain datasets\n        |\\\\n| INM                  | INM-CM5-0         | SSP1-2.6, SSP2-4.5, SSP3-7.0,\n        and SSP5-8.5 | Public domain datasets |\\\\n| BCC                  | BCC-CSM2-MR\n        \\      | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40               |\\\\n|\n        CMCC                 | CMCC-CM2-SR5      | ssp1-2.6, ssp2-4.5, ssp3-7.0, ssp5-8.5\n        \\    | CC-BY-40               |\\\\n| CMCC                 | CMCC-ESM2         |\n        ssp1-2.6, ssp2-4.5, ssp3-7.0, ssp5-8.5     | CC-BY-40               |\\\\n|\n        CSIRO-ARCCSS         | ACCESS-CM2        | SSP2-4.5 and SSP3-7.0                      |\n        CC-BY-40               |\\\\n| CSIRO                | ACCESS-ESM1-5     | SSP1-2.6,\n        SSP2-4.5, and SSP3-7.0           | CC-BY-40               |\\\\n| MIROC                |\n        MIROC-ES2L        | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40\n        \\              |\\\\n| MIROC                | MIROC6            | SSP1-2.6,\n        SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40               |\\\\n| MOHC                 |\n        HadGEM3-GC31-LL   | SSP1-2.6, SSP2-4.5, and SSP5-8.5           | CC-BY-40\n        \\              |\\\\n| MOHC                 | UKESM1-0-LL       | SSP1-2.6,\n        SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40               |\\\\n| MPI-M                |\n        MPI-ESM1-2-LR     | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40\n        \\              |\\\\n| MPI-M/DKRZ [^2]      | MPI-ESM1-2-HR     | SSP1-2.6 and\n        SSP5-8.5                      | CC-BY-40               |\\\\n| NCC                  |\n        NorESM2-LM        | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40\n        \\              |\\\\n| NCC                  | NorESM2-MM        | SSP1-2.6,\n        SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40               |\\\\n| NOAA-GFDL\n        \\           | GFDL-CM4          | SSP2-4.5 and SSP5-8.5                      |\n        CC-BY-40               |\\\\n| NOAA-GFDL            | GFDL-ESM4         | SSP1-2.6,\n        SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40               |\\\\n| NUIST                |\n        NESM3             | SSP1-2.6, SSP2-4.5, and SSP5-8.5           | CC-BY-40\n        \\              |\\\\n| EC-Earth-Consortium  | EC-Earth3         | ssp1-2.6,\n        ssp2-4.5, ssp3-7.0, and ssp5-8.5 | CC-BY-40               |\\\\n| EC-Earth-Consortium\n        \\ | EC-Earth3-AerChem | ssp370                                     | CC-BY-40\n        \\              |\\\\n| EC-Earth-Consortium  | EC-Earth3-CC      | ssp245 and\n        ssp585                          | CC-BY-40               |\\\\n| EC-Earth-Consortium\n        \\ | EC-Earth3-Veg     | ssp1-2.6, ssp2-4.5, ssp3-7.0, and ssp5-8.5 | CC-BY-40\n        \\              |\\\\n| EC-Earth-Consortium  | EC-Earth3-Veg-LR  | ssp1-2.6,\n        ssp2-4.5, ssp3-7.0, and ssp5-8.5 | CC-BY-40               |\\\\n| CCCma                |\n        CanESM5           | ssp1-2.6, ssp2-4.5, ssp3-7.0, ssp5-8.5     | CC-BY-40[^3]\n        \\          |\\\\n\\\\n*Notes:*\\\\n\\\\n[^1]: At the time of running, no ssp1-2.6\n        precipitation data was available. Therefore, we provide `tasmin` and `tamax`\n        for this model and experiment, but not `pr`. All other model/experiment combinations\n        in the above table include all three variables.\\\\n\\\\n[^2]: The institution\n        which ran MPI-ESM1-2-HR\\u2019s historical (CMIP) simulations is `MPI-M`, while\n        the future (ScenarioMIP) simulations were run by `DKRZ`. Therefore, the institution\n        component of `MPI-ESM1-2-HR` filepaths differ between `historical` and `SSP`\n        scenarios.\\\\n\\\\n[^3]: This dataset was previously licensed as [CC BY-SA 4.0](https://creativecommons.org/licenses/by-sa/4.0/),\n        but was relicensed under [CC BY 4.0](https://creativecommons.org/licenses/by/4.0)\n        in March, 2023. \\\\n\\\\n## Project methods\\\\n\\\\nThis project makes use of statistical\n        bias correction and downscaling algorithms, which are specifically designed\n        to accurately represent changes in the extremes. For this reason, we selected\n        Quantile Delta Mapping (QDM), following the method introduced by [Cannon et\n        al. (2015)](https://doi.org/10.1175/JCLI-D-14-00754.1), which preserves quantile-specific\n        trends from the GCM while fitting the full distribution for a given day-of-year\n        to a reference dataset (ERA5).\\\\n\\\\nWe then introduce a similar method tailored\n        to increase spatial resolution while preserving extreme behavior, Quantile-Preserving\n        Localized-Analog Downscaling (QPLAD).\\\\n\\\\nTogether, these methods provide\n        a robust means to handle both the central and tail behavior seen in climate\n        model output, while aligning the full distribution to a state-of-the-art reanalysis\n        dataset and providing the spatial granularity needed to study surface impacts.\\\\n\\\\nFor\n        further documentation, see [Global downscaled projections for climate impacts\n        research (GDPCIR): preserving extremes for modeling future climate impacts](https://egusphere.copernicus.org/preprints/2023/egusphere-2022-1513/)\n        (EGUsphere, 2022 [preprint]).\\\\n\\\\n## Citing, licensing, and using data produced\n        by this project\\\\n\\\\nProjects making use of the data produced as part of the\n        Climate Impact Lab Global Downscaled Projections for Climate Impacts Research\n        (CIL GDPCIR) project are requested to cite both this project and the source\n        datasets from which these results are derived. Additionally, the use of data\n        derived from some GCMs *requires* citations, and some modeling centers impose\n        licensing restrictions & requirements on derived works. See each GCM's license\n        info in the links below for more information.\\\\n\\\\n### CIL GDPCIR\\\\n\\\\nUsers\n        are requested to cite this project in derived works. Our method documentation\n        paper may be cited using the following:\\\\n\\\\n> Gergel, D. R., Malevich, S.\n        B., McCusker, K. E., Tenezakis, E., Delgado, M. T., Fish, M. A., and Kopp,\n        R. E.: Global downscaled projections for climate impacts research (GDPCIR):\n        preserving extremes for modeling future climate impacts, EGUsphere [preprint],\n        https://doi.org/10.5194/egusphere-2022-1513, 2023. \\\\n\\\\nThe code repository\n        may be cited using the following:\\\\n\\\\n> Diana Gergel, Kelly McCusker, Brewster\n        Malevich, Emile Tenezakis, Meredith Fish, Michael Delgado (2022). ClimateImpactLab/downscaleCMIP6:\n        (v1.0.0). Zenodo. https://doi.org/10.5281/zenodo.6403794\\\\n\\\\n### ERA5\\\\n\\\\nAdditionally,\n        we request you cite the historical dataset used in bias correction and downscaling,\n        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>\n        Hersbach, H, et al. The ERA5 global reanalysis. Q J R Meteorol Soc.2020; 146:\n        1999\\u20132049. DOI: [10.1002/qj.3803](https://doi.org/10.1002/qj.3803)\\\\n>\\\\n>\n        Mu\\xF1oz Sabater, J., (2019): ERA5-Land hourly data from 1981 to present.\n        Copernicus Climate Change Service (C3S) Climate Data Store (CDS). (Accessed\n        on June 4, 2021), DOI: [10.24381/cds.e2161bac](https://doi.org/10.24381/cds.e2161bac)\\\\n>\\\\n>\n        Mu\\xF1oz Sabater, J., (2021): ERA5-Land hourly data from 1950 to 1980. Copernicus\n        Climate Change Service (C3S) Climate Data Store (CDS). (Accessed on June 4,\n        2021), DOI: [10.24381/cds.e2161bac](https://doi.org/10.24381/cds.e2161bac)\\\\n\\\\n###\n        GCM-specific citations & licenses\\\\n\\\\nThe CMIP6 simulation data made available\n        through the Earth System Grid Federation (ESGF) are subject to Creative Commons\n        [BY-SA 4.0](https://creativecommons.org/licenses/by-sa/4.0/) or [BY-NC-SA\n        4.0](https://creativecommons.org/licenses/by-nc-sa/4.0/) licenses. The Climate\n        Impact Lab has reached out to each of the modeling institutions to request\n        waivers from these terms so the outputs of this project may be used with fewer\n        restrictions, and has been granted permission to release the data using the\n        licenses listed here.\\\\n\\\\n#### Public Domain Datasets\\\\n\\\\nThe following\n        bias corrected and downscaled model simulations are available in the public\n        domain using a [CC0 1.0 Universal Public Domain Declaration](https://creativecommons.org/publicdomain/zero/1.0/).\n        Access the collection on Planetary Computer at https://planetarycomputer.microsoft.com/dataset/cil-gdpcir-cc0.\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > Li, Lijuan **(2019)**. *CAS FGOALS-g3 model output\n        prepared for CMIP6 CMIP*. Version 20190826. Earth System Grid Federation.\n        https://doi.org/10.22033/ESGF/CMIP6.1783\\\\n\\\\n  ScenarioMIP Citation:\\\\n\\\\n\n        \\ > Li, Lijuan **(2019)**. *CAS FGOALS-g3 model output prepared for CMIP6\n        ScenarioMIP*. SSP1-2.6 version 20190818; SSP2-4.5 version 20190818; SSP3-7.0\n        version 20190820; SSP5-8.5 tasmax version 20190819; SSP5-8.5 tasmin version\n        20190819; SSP5-8.5 pr version 20190818. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.2056\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > Volodin, Evgeny; Mortikov, Evgeny; Gritsun, Andrey;\n        Lykossov, Vasily; Galin, Vener; Diansky, Nikolay; Gusev, Anatoly; Kostrykin,\n        Sergey; Iakovlev, Nikolay; Shestakova, Anna; Emelina, Svetlana **(2019)**.\n        *INM INM-CM4-8 model output prepared for CMIP6 CMIP*. Version 20190530. Earth\n        System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1422\\\\n\\\\n  ScenarioMIP\n        Citation:\\\\n\\\\n  > Volodin, Evgeny; Mortikov, Evgeny; Gritsun, Andrey; Lykossov,\n        Vasily; Galin, Vener; Diansky, Nikolay; Gusev, Anatoly; Kostrykin, Sergey;\n        Iakovlev, Nikolay; Shestakova, Anna; Emelina, Svetlana **(2019)**. *INM INM-CM4-8\n        model output prepared for CMIP6 ScenarioMIP*. Version 20190603. Earth System\n        Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.12321\\\\n\\\\n\\\\n* **INM-CM5-0**\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > Volodin, Evgeny; Mortikov, Evgeny; Gritsun, Andrey;\n        Lykossov, Vasily; Galin, Vener; Diansky, Nikolay; Gusev, Anatoly; Kostrykin,\n        Sergey; Iakovlev, Nikolay; Shestakova, Anna; Emelina, Svetlana **(2019)**.\n        *INM INM-CM5-0 model output prepared for CMIP6 CMIP*. Version 20190610. Earth\n        System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1423\\\\n\\\\n  ScenarioMIP\n        Citation:\\\\n\\\\n  > Volodin, Evgeny; Mortikov, Evgeny; Gritsun, Andrey; Lykossov,\n        Vasily; Galin, Vener; Diansky, Nikolay; Gusev, Anatoly; Kostrykin, Sergey;\n        Iakovlev, Nikolay; Shestakova, Anna; Emelina, Svetlana **(2019)**. *INM INM-CM5-0\n        model output prepared for CMIP6 ScenarioMIP*. SSP1-2.6 version 20190619; SSP2-4.5\n        version 20190619; SSP3-7.0 version 20190618; SSP5-8.5 version 20190724. Earth\n        System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.12322\\\\n\\\\n\\\\n####\n        CC-BY-4.0\\\\n\\\\nThe following bias corrected and downscaled model simulations\n        are licensed under a [Creative Commons Attribution 4.0 International License](https://creativecommons.org/licenses/by/4.0/).\n        Note that this license requires citation of the source model output (included\n        here). Please see https://creativecommons.org/licenses/by/4.0/ for more information.\n        Access the collection on Planetary Computer at https://planetarycomputer.microsoft.com/dataset/cil-gdpcir-cc-by.\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > Dix, Martin; Bi, Doahua; Dobrohotoff, Peter; Fiedler,\n        Russell; Harman, Ian; Law, Rachel; Mackallah, Chloe; Marsland, Simon; O'Farrell,\n        Siobhan; Rashid, Harun; Srbinovsky, Jhan; Sullivan, Arnold; Trenham, Claire;\n        Vohralik, Peter; Watterson, Ian; Williams, Gareth; Woodhouse, Matthew; Bodman,\n        Roger; Dias, Fabio Boeira; Domingues, Catia; Hannah, Nicholas; Heerdegen,\n        Aidan; Savita, Abhishek; Wales, Scott; Allen, Chris; Druken, Kelsey; Evans,\n        Ben; Richards, Clare; Ridzwan, Syazwan Mohamed; Roberts, Dale; Smillie, Jon;\n        Snow, Kate; Ward, Marshall; Yang, Rui **(2019)**. *CSIRO-ARCCSS ACCESS-CM2\n        model output prepared for CMIP6 CMIP*. Version 20191108. Earth System Grid\n        Federation. https://doi.org/10.22033/ESGF/CMIP6.2281\\\\n\\\\n  ScenarioMIP Citation:\\\\n\\\\n\n        \\ > Dix, Martin; Bi, Doahua; Dobrohotoff, Peter; Fiedler, Russell; Harman,\n        Ian; Law, Rachel; Mackallah, Chloe; Marsland, Simon; O'Farrell, Siobhan; Rashid,\n        Harun; Srbinovsky, Jhan; Sullivan, Arnold; Trenham, Claire; Vohralik, Peter;\n        Watterson, Ian; Williams, Gareth; Woodhouse, Matthew; Bodman, Roger; Dias,\n        Fabio Boeira; Domingues, Catia; Hannah, Nicholas; Heerdegen, Aidan; Savita,\n        Abhishek; Wales, Scott; Allen, Chris; Druken, Kelsey; Evans, Ben; Richards,\n        Clare; Ridzwan, Syazwan Mohamed; Roberts, Dale; Smillie, Jon; Snow, Kate;\n        Ward, Marshall; Yang, Rui **(2019)**. *CSIRO-ARCCSS ACCESS-CM2 model output\n        prepared for CMIP6 ScenarioMIP*. Version 20191108. Earth System Grid Federation.\n        https://doi.org/10.22033/ESGF/CMIP6.2285\\\\n\\\\n\\\\n* **ACCESS-ESM1-5**\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > Ziehn, Tilo; Chamberlain, Matthew; Lenton, Andrew;\n        Law, Rachel; Bodman, Roger; Dix, Martin; Wang, Yingping; Dobrohotoff, Peter;\n        Srbinovsky, Jhan; Stevens, Lauren; Vohralik, Peter; Mackallah, Chloe; Sullivan,\n        Arnold; O'Farrell, Siobhan; Druken, Kelsey **(2019)**. *CSIRO ACCESS-ESM1.5\n        model output prepared for CMIP6 CMIP*. Version 20191115. Earth System Grid\n        Federation. https://doi.org/10.22033/ESGF/CMIP6.2288\\\\n\\\\n  ScenarioMIP Citation:\\\\n\\\\n\n        \\ > Ziehn, Tilo; Chamberlain, Matthew; Lenton, Andrew; Law, Rachel; Bodman,\n        Roger; Dix, Martin; Wang, Yingping; Dobrohotoff, Peter; Srbinovsky, Jhan;\n        Stevens, Lauren; Vohralik, Peter; Mackallah, Chloe; Sullivan, Arnold; O'Farrell,\n        Siobhan; Druken, Kelsey **(2019)**. *CSIRO ACCESS-ESM1.5 model output prepared\n        for CMIP6 ScenarioMIP*. Version 20191115. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.2291\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > Xin, Xiaoge; Zhang, Jie; Zhang, Fang; Wu, Tongwen;\n        Shi, Xueli; Li, Jianglong; Chu, Min; Liu, Qianxia; Yan, Jinghui; Ma, Qiang;\n        Wei, Min **(2018)**. *BCC BCC-CSM2MR model output prepared for CMIP6 CMIP*.\n        Version 20181126. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1725\\\\n\\\\n\n        \\ ScenarioMIP Citation:\\\\n\\\\n  > Xin, Xiaoge; Wu, Tongwen; Shi, Xueli; Zhang,\n        Fang; Li, Jianglong; Chu, Min; Liu, Qianxia; Yan, Jinghui; Ma, Qiang; Wei,\n        Min **(2019)**. *BCC BCC-CSM2MR model output prepared for CMIP6 ScenarioMIP*.\n        SSP1-2.6 version 20190315; SSP2-4.5 version 20190318; SSP3-7.0 version 20190318;\n        SSP5-8.5 version 20190318. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1732\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > Lovato, Tomas; Peano, Daniele **(2020)**. *CMCC\n        CMCC-CM2-SR5 model output prepared for CMIP6 CMIP*. Version 20200616. Earth\n        System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1362\\\\n\\\\n  ScenarioMIP\n        Citation:\\\\n\\\\n  > Lovato, Tomas; Peano, Daniele **(2020)**. *CMCC CMCC-CM2-SR5\n        model output prepared for CMIP6 ScenarioMIP*. SSP1-2.6 version 20200717; SSP2-4.5\n        version 20200617; SSP3-7.0 version 20200622; SSP5-8.5 version 20200622. Earth\n        System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1365\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > Lovato, Tomas; Peano, Daniele; Butensch\\xF6n, Momme\n        **(2021)**. *CMCC CMCC-ESM2 model output prepared for CMIP6 CMIP*. Version\n        20210114. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.13164\\\\n\\\\n\n        \\ ScenarioMIP Citation:\\\\n\\\\n  > Lovato, Tomas; Peano, Daniele; Butensch\\xF6n,\n        Momme **(2021)**. *CMCC CMCC-ESM2 model output prepared for CMIP6 ScenarioMIP*.\n        SSP1-2.6 version 20210126; SSP2-4.5 version 20210129; SSP3-7.0 version 20210202;\n        SSP5-8.5 version 20210126. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.13168\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > EC-Earth Consortium (EC-Earth) **(2020)**. *EC-Earth-Consortium\n        EC-Earth3-AerChem model output prepared for CMIP6 CMIP*. Version 20200624.\n        Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.639\\\\n\\\\n\n        \\ ScenarioMIP Citation:\\\\n\\\\n  > EC-Earth Consortium (EC-Earth) **(2020)**.\n        *EC-Earth-Consortium EC-Earth3-AerChem model output prepared for CMIP6 ScenarioMIP*.\n        Version 20200827. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.724\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > EC-Earth Consortium (EC-Earth) **(2020)**. *EC-Earth-Consortium\n        EC-Earth-3-CC model output prepared for CMIP6 CMIP*. Version 20210113. Earth\n        System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.640\\\\n\\\\n  ScenarioMIP\n        Citation:\\\\n\\\\n  > EC-Earth Consortium (EC-Earth) **(2021)**. *EC-Earth-Consortium\n        EC-Earth3-CC model output prepared for CMIP6 ScenarioMIP*. Version 20210113.\n        Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.15327\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > EC-Earth Consortium (EC-Earth) **(2020)**. *EC-Earth-Consortium\n        EC-Earth3-Veg-LR model output prepared for CMIP6 CMIP*. Version 20200217.\n        Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.643\\\\n\\\\n\n        \\ ScenarioMIP Citation:\\\\n\\\\n  > EC-Earth Consortium (EC-Earth) **(2020)**.\n        *EC-Earth-Consortium EC-Earth3-Veg-LR model output prepared for CMIP6 ScenarioMIP*.\n        SSP1-2.6 version 20201201; SSP2-4.5 version 20201123; SSP3-7.0 version 20201123;\n        SSP5-8.5 version 20201201. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.728\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > EC-Earth Consortium (EC-Earth) **(2019)**. *EC-Earth-Consortium\n        EC-Earth3-Veg model output prepared for CMIP6 CMIP*. Version 20200225. Earth\n        System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.642\\\\n\\\\n  ScenarioMIP\n        Citation:\\\\n\\\\n  > EC-Earth Consortium (EC-Earth) **(2019)**. *EC-Earth-Consortium\n        EC-Earth3-Veg model output prepared for CMIP6 ScenarioMIP*. Version 20200225.\n        Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.727\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > EC-Earth Consortium (EC-Earth) **(2019)**. *EC-Earth-Consortium\n        EC-Earth3 model output prepared for CMIP6 CMIP*. Version 20200310. Earth System\n        Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.181\\\\n\\\\n  ScenarioMIP\n        Citation:\\\\n\\\\n  > EC-Earth Consortium (EC-Earth) **(2019)**. *EC-Earth-Consortium\n        EC-Earth3 model output prepared for CMIP6 ScenarioMIP*. Version 20200310.\n        Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.251\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > Guo, Huan; John, Jasmin G; Blanton, Chris; McHugh,\n        Colleen; Nikonov, Serguei; Radhakrishnan, Aparna; Rand, Kristopher; Zadeh,\n        Niki T.; Balaji, V; Durachta, Jeff; Dupuis, Christopher; Menzel, Raymond;\n        Robinson, Thomas; Underwood, Seth; Vahlenkamp, Hans; Bushuk, Mitchell; Dunne,\n        Krista A.; Dussin, Raphael; Gauthier, Paul PG; Ginoux, Paul; Griffies, Stephen\n        M.; Hallberg, Robert; Harrison, Matthew; Hurlin, William; Lin, Pu; Malyshev,\n        Sergey; Naik, Vaishali; Paulot, Fabien; Paynter, David J; Ploshay, Jeffrey;\n        Reichl, Brandon G; Schwarzkopf, Daniel M; Seman, Charles J; Shao, Andrew;\n        Silvers, Levi; Wyman, Bruce; Yan, Xiaoqin; Zeng, Yujin; Adcroft, Alistair;\n        Dunne, John P.; Held, Isaac M; Krasting, John P.; Horowitz, Larry W.; Milly,\n        P.C.D; Shevliakova, Elena; Winton, Michael; Zhao, Ming; Zhang, Rong **(2018)**.\n        *NOAA-GFDL GFDL-CM4 model output*. Version 20180701. Earth System Grid Federation.\n        https://doi.org/10.22033/ESGF/CMIP6.1402\\\\n\\\\n  ScenarioMIP Citation:\\\\n\\\\n\n        \\ > Guo, Huan; John, Jasmin G; Blanton, Chris; McHugh, Colleen; Nikonov, Serguei;\n        Radhakrishnan, Aparna; Rand, Kristopher; Zadeh, Niki T.; Balaji, V; Durachta,\n        Jeff; Dupuis, Christopher; Menzel, Raymond; Robinson, Thomas; Underwood, Seth;\n        Vahlenkamp, Hans; Dunne, Krista A.; Gauthier, Paul PG; Ginoux, Paul; Griffies,\n        Stephen M.; Hallberg, Robert; Harrison, Matthew; Hurlin, William; Lin, Pu;\n        Malyshev, Sergey; Naik, Vaishali; Paulot, Fabien; Paynter, David J; Ploshay,\n        Jeffrey; Schwarzkopf, Daniel M; Seman, Charles J; Shao, Andrew; Silvers, Levi;\n        Wyman, Bruce; Yan, Xiaoqin; Zeng, Yujin; Adcroft, Alistair; Dunne, John P.;\n        Held, Isaac M; Krasting, John P.; Horowitz, Larry W.; Milly, Chris; Shevliakova,\n        Elena; Winton, Michael; Zhao, Ming; Zhang, Rong **(2018)**. *NOAA-GFDL GFDL-CM4\n        model output prepared for CMIP6 ScenarioMIP*. Version 20180701. Earth System\n        Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.9242\\\\n\\\\n\\\\n* **GFDL-ESM4**\\\\n\\\\n\n        \\ License description: [data_licenses/GFDL-ESM4.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/GFDL-ESM4.txt)\\\\n\\\\n\n        \\ CMIP Citation:\\\\n\\\\n  > Krasting, John P.; John, Jasmin G; Blanton, Chris;\n        McHugh, Colleen; Nikonov, Serguei; Radhakrishnan, Aparna; Rand, Kristopher;\n        Zadeh, Niki T.; Balaji, V; Durachta, Jeff; Dupuis, Christopher; Menzel, Raymond;\n        Robinson, Thomas; Underwood, Seth; Vahlenkamp, Hans; Dunne, Krista A.; Gauthier,\n        Paul PG; Ginoux, Paul; Griffies, Stephen M.; Hallberg, Robert; Harrison, Matthew;\n        Hurlin, William; Malyshev, Sergey; Naik, Vaishali; Paulot, Fabien; Paynter,\n        David J; Ploshay, Jeffrey; Reichl, Brandon G; Schwarzkopf, Daniel M; Seman,\n        Charles J; Silvers, Levi; Wyman, Bruce; Zeng, Yujin; Adcroft, Alistair; Dunne,\n        John P.; Dussin, Raphael; Guo, Huan; He, Jian; Held, Isaac M; Horowitz, Larry\n        W.; Lin, Pu; Milly, P.C.D; Shevliakova, Elena; Stock, Charles; Winton, Michael;\n        Wittenberg, Andrew T.; Xie, Yuanyu; Zhao, Ming **(2018)**. *NOAA-GFDL GFDL-ESM4\n        model output prepared for CMIP6 CMIP*. Version 20190726. Earth System Grid\n        Federation. https://doi.org/10.22033/ESGF/CMIP6.1407\\\\n\\\\n  ScenarioMIP Citation:\\\\n\\\\n\n        \\ > John, Jasmin G; Blanton, Chris; McHugh, Colleen; Radhakrishnan, Aparna;\n        Rand, Kristopher; Vahlenkamp, Hans; Wilson, Chandin; Zadeh, Niki T.; Dunne,\n        John P.; Dussin, Raphael; Horowitz, Larry W.; Krasting, John P.; Lin, Pu;\n        Malyshev, Sergey; Naik, Vaishali; Ploshay, Jeffrey; Shevliakova, Elena; Silvers,\n        Levi; Stock, Charles; Winton, Michael; Zeng, Yujin **(2018)**. *NOAA-GFDL\n        GFDL-ESM4 model output prepared for CMIP6 ScenarioMIP*. Version 20180701.\n        Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1414\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > Ridley, Jeff; Menary, Matthew; Kuhlbrodt, Till;\n        Andrews, Martin; Andrews, Tim **(2018)**. *MOHC HadGEM3-GC31-LL model output\n        prepared for CMIP6 CMIP*. Version 20190624. Earth System Grid Federation.\n        https://doi.org/10.22033/ESGF/CMIP6.419\\\\n\\\\n  ScenarioMIP Citation:\\\\n\\\\n\n        \\ > Good, Peter **(2019)**. *MOHC HadGEM3-GC31-LL model output prepared for\n        CMIP6 ScenarioMIP*. SSP1-2.6 version 20200114; SSP2-4.5 version 20190908;\n        SSP5-8.5 version 20200114. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.10845\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > Hajima, Tomohiro; Abe, Manabu; Arakawa, Osamu; Suzuki,\n        Tatsuo; Komuro, Yoshiki; Ogura, Tomoo; Ogochi, Koji; Watanabe, Michio; Yamamoto,\n        Akitomo; Tatebe, Hiroaki; Noguchi, Maki A.; Ohgaito, Rumi; Ito, Akinori; Yamazaki,\n        Dai; Ito, Akihiko; Takata, Kumiko; Watanabe, Shingo; Kawamiya, Michio; Tachiiri,\n        Kaoru **(2019)**. *MIROC MIROC-ES2L model output prepared for CMIP6 CMIP*.\n        Version 20191129. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.902\\\\n\\\\n\n        \\ ScenarioMIP Citation:\\\\n\\\\n  > Tachiiri, Kaoru; Abe, Manabu; Hajima, Tomohiro;\n        Arakawa, Osamu; Suzuki, Tatsuo; Komuro, Yoshiki; Ogochi, Koji; Watanabe, Michio;\n        Yamamoto, Akitomo; Tatebe, Hiroaki; Noguchi, Maki A.; Ohgaito, Rumi; Ito,\n        Akinori; Yamazaki, Dai; Ito, Akihiko; Takata, Kumiko; Watanabe, Shingo; Kawamiya,\n        Michio **(2019)**. *MIROC MIROC-ES2L model output prepared for CMIP6 ScenarioMIP*.\n        Version 20200318. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.936\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > Tatebe, Hiroaki; Watanabe, Masahiro **(2018)**.\n        *MIROC MIROC6 model output prepared for CMIP6 CMIP*. Version 20191016. Earth\n        System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.881\\\\n\\\\n  ScenarioMIP\n        Citation:\\\\n\\\\n  > Shiogama, Hideo; Abe, Manabu; Tatebe, Hiroaki **(2019)**.\n        *MIROC MIROC6 model output prepared for CMIP6 ScenarioMIP*. Version 20191016.\n        Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.898\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > Jungclaus, Johann; Bittner, Matthias; Wieners, Karl-Hermann;\n        Wachsmann, Fabian; Schupfner, Martin; Legutke, Stephanie; Giorgetta, Marco;\n        Reick, Christian; Gayler, Veronika; Haak, Helmuth; de Vrese, Philipp; Raddatz,\n        Thomas; Esch, Monika; Mauritsen, Thorsten; von Storch, Jin-Song; Behrens,\n        J\\xF6rg; Brovkin, Victor; Claussen, Martin; Crueger, Traute; Fast, Irina;\n        Fiedler, Stephanie; Hagemann, Stefan; Hohenegger, Cathy; Jahns, Thomas; Kloster,\n        Silvia; Kinne, Stefan; Lasslop, Gitta; Kornblueh, Luis; Marotzke, Jochem;\n        Matei, Daniela; Meraner, Katharina; Mikolajewicz, Uwe; Modali, Kameswarrao;\n        M\\xFCller, Wolfgang; Nabel, Julia; Notz, Dirk; Peters-von Gehlen, Karsten;\n        Pincus, Robert; Pohlmann, Holger; Pongratz, Julia; Rast, Sebastian; Schmidt,\n        Hauke; Schnur, Reiner; Schulzweida, Uwe; Six, Katharina; Stevens, Bjorn; Voigt,\n        Aiko; Roeckner, Erich **(2019)**. *MPI-M MPIESM1.2-HR model output prepared\n        for CMIP6 CMIP*. Version 20190710. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.741\\\\n\\\\n\n        \\ ScenarioMIP Citation:\\\\n\\\\n  > Schupfner, Martin; Wieners, Karl-Hermann;\n        Wachsmann, Fabian; Steger, Christian; Bittner, Matthias; Jungclaus, Johann;\n        Fr\\xFCh, Barbara; Pankatz, Klaus; Giorgetta, Marco; Reick, Christian; Legutke,\n        Stephanie; Esch, Monika; Gayler, Veronika; Haak, Helmuth; de Vrese, Philipp;\n        Raddatz, Thomas; Mauritsen, Thorsten; von Storch, Jin-Song; Behrens, J\\xF6rg;\n        Brovkin, Victor; Claussen, Martin; Crueger, Traute; Fast, Irina; Fiedler,\n        Stephanie; Hagemann, Stefan; Hohenegger, Cathy; Jahns, Thomas; Kloster, Silvia;\n        Kinne, Stefan; Lasslop, Gitta; Kornblueh, Luis; Marotzke, Jochem; Matei, Daniela;\n        Meraner, Katharina; Mikolajewicz, Uwe; Modali, Kameswarrao; M\\xFCller, Wolfgang;\n        Nabel, Julia; Notz, Dirk; Peters-von Gehlen, Karsten; Pincus, Robert; Pohlmann,\n        Holger; Pongratz, Julia; Rast, Sebastian; Schmidt, Hauke; Schnur, Reiner;\n        Schulzweida, Uwe; Six, Katharina; Stevens, Bjorn; Voigt, Aiko; Roeckner, Erich\n        **(2019)**. *DKRZ MPI-ESM1.2-HR model output prepared for CMIP6 ScenarioMIP*.\n        Version 20190710. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.2450\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > Wieners, Karl-Hermann; Giorgetta, Marco; Jungclaus,\n        Johann; Reick, Christian; Esch, Monika; Bittner, Matthias; Legutke, Stephanie;\n        Schupfner, Martin; Wachsmann, Fabian; Gayler, Veronika; Haak, Helmuth; de\n        Vrese, Philipp; Raddatz, Thomas; Mauritsen, Thorsten; von Storch, Jin-Song;\n        Behrens, J\\xF6rg; Brovkin, Victor; Claussen, Martin; Crueger, Traute; Fast,\n        Irina; Fiedler, Stephanie; Hagemann, Stefan; Hohenegger, Cathy; Jahns, Thomas;\n        Kloster, Silvia; Kinne, Stefan; Lasslop, Gitta; Kornblueh, Luis; Marotzke,\n        Jochem; Matei, Daniela; Meraner, Katharina; Mikolajewicz, Uwe; Modali, Kameswarrao;\n        M\\xFCller, Wolfgang; Nabel, Julia; Notz, Dirk; Peters-von Gehlen, Karsten;\n        Pincus, Robert; Pohlmann, Holger; Pongratz, Julia; Rast, Sebastian; Schmidt,\n        Hauke; Schnur, Reiner; Schulzweida, Uwe; Six, Katharina; Stevens, Bjorn; Voigt,\n        Aiko; Roeckner, Erich **(2019)**. *MPI-M MPIESM1.2-LR model output prepared\n        for CMIP6 CMIP*. Version 20190710. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.742\\\\n\\\\n\n        \\ ScenarioMIP Citation:\\\\n\\\\n  > Wieners, Karl-Hermann; Giorgetta, Marco;\n        Jungclaus, Johann; Reick, Christian; Esch, Monika; Bittner, Matthias; Gayler,\n        Veronika; Haak, Helmuth; de Vrese, Philipp; Raddatz, Thomas; Mauritsen, Thorsten;\n        von Storch, Jin-Song; Behrens, J\\xF6rg; Brovkin, Victor; Claussen, Martin;\n        Crueger, Traute; Fast, Irina; Fiedler, Stephanie; Hagemann, Stefan; Hohenegger,\n        Cathy; Jahns, Thomas; Kloster, Silvia; Kinne, Stefan; Lasslop, Gitta; Kornblueh,\n        Luis; Marotzke, Jochem; Matei, Daniela; Meraner, Katharina; Mikolajewicz,\n        Uwe; Modali, Kameswarrao; M\\xFCller, Wolfgang; Nabel, Julia; Notz, Dirk; Peters-von\n        Gehlen, Karsten; Pincus, Robert; Pohlmann, Holger; Pongratz, Julia; Rast,\n        Sebastian; Schmidt, Hauke; Schnur, Reiner; Schulzweida, Uwe; Six, Katharina;\n        Stevens, Bjorn; Voigt, Aiko; Roeckner, Erich **(2019)**. *MPI-M MPIESM1.2-LR\n        model output prepared for CMIP6 ScenarioMIP*. Version 20190710. Earth System\n        Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.793\\\\n\\\\n\\\\n* **NESM3**\\\\n\\\\n\n        \\ License description: [data_licenses/NESM3.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/NESM3.txt)\\\\n\\\\n\n        \\ CMIP Citation:\\\\n\\\\n  > Cao, Jian; Wang, Bin **(2019)**. *NUIST NESMv3 model\n        output prepared for CMIP6 CMIP*. Version 20190812. Earth System Grid Federation.\n        https://doi.org/10.22033/ESGF/CMIP6.2021\\\\n\\\\n  ScenarioMIP Citation:\\\\n\\\\n\n        \\ > Cao, Jian **(2019)**. *NUIST NESMv3 model output prepared for CMIP6 ScenarioMIP*.\n        SSP1-2.6 version 20190806; SSP2-4.5 version 20190805; SSP5-8.5 version 20190811.\n        Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.2027\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > Seland, \\xD8yvind; Bentsen, Mats; Olivi\\xE8, Dirk\n        Jan Leo; Toniazzo, Thomas; Gjermundsen, Ada; Graff, Lise Seland; Debernard,\n        Jens Boldingh; Gupta, Alok Kumar; He, Yanchun; Kirkev\\xE5g, Alf; Schwinger,\n        J\\xF6rg; Tjiputra, Jerry; Aas, Kjetil Schanke; Bethke, Ingo; Fan, Yuanchao;\n        Griesfeller, Jan; Grini, Alf; Guo, Chuncheng; Ilicak, Mehmet; Karset, Inger\n        Helene Hafsahl; Landgren, Oskar Andreas; Liakka, Johan; Moseid, Kine Onsum;\n        Nummelin, Aleksi; Spensberger, Clemens; Tang, Hui; Zhang, Zhongshi; Heinze,\n        Christoph; Iversen, Trond; Schulz, Michael **(2019)**. *NCC NorESM2-LM model\n        output prepared for CMIP6 CMIP*. Version 20190815. Earth System Grid Federation.\n        https://doi.org/10.22033/ESGF/CMIP6.502\\\\n\\\\n  ScenarioMIP Citation:\\\\n\\\\n\n        \\ > Seland, \\xD8yvind; Bentsen, Mats; Olivi\\xE8, Dirk Jan Leo; Toniazzo, Thomas;\n        Gjermundsen, Ada; Graff, Lise Seland; Debernard, Jens Boldingh; Gupta, Alok\n        Kumar; He, Yanchun; Kirkev\\xE5g, Alf; Schwinger, J\\xF6rg; Tjiputra, Jerry;\n        Aas, Kjetil Schanke; Bethke, Ingo; Fan, Yuanchao; Griesfeller, Jan; Grini,\n        Alf; Guo, Chuncheng; Ilicak, Mehmet; Karset, Inger Helene Hafsahl; Landgren,\n        Oskar Andreas; Liakka, Johan; Moseid, Kine Onsum; Nummelin, Aleksi; Spensberger,\n        Clemens; Tang, Hui; Zhang, Zhongshi; Heinze, Christoph; Iversen, Trond; Schulz,\n        Michael **(2019)**. *NCC NorESM2-LM model output prepared for CMIP6 ScenarioMIP*.\n        Version 20191108. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.604\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > Bentsen, Mats; Olivi\\xE8, Dirk Jan Leo; Seland,\n        \\xD8yvind; Toniazzo, Thomas; Gjermundsen, Ada; Graff, Lise Seland; Debernard,\n        Jens Boldingh; Gupta, Alok Kumar; He, Yanchun; Kirkev\\xE5g, Alf; Schwinger,\n        J\\xF6rg; Tjiputra, Jerry; Aas, Kjetil Schanke; Bethke, Ingo; Fan, Yuanchao;\n        Griesfeller, Jan; Grini, Alf; Guo, Chuncheng; Ilicak, Mehmet; Karset, Inger\n        Helene Hafsahl; Landgren, Oskar Andreas; Liakka, Johan; Moseid, Kine Onsum;\n        Nummelin, Aleksi; Spensberger, Clemens; Tang, Hui; Zhang, Zhongshi; Heinze,\n        Christoph; Iversen, Trond; Schulz, Michael **(2019)**. *NCC NorESM2-MM model\n        output prepared for CMIP6 CMIP*. Version 20191108. Earth System Grid Federation.\n        https://doi.org/10.22033/ESGF/CMIP6.506\\\\n\\\\n  ScenarioMIP Citation:\\\\n\\\\n\n        \\ > Bentsen, Mats; Olivi\\xE8, Dirk Jan Leo; Seland, \\xD8yvind; Toniazzo, Thomas;\n        Gjermundsen, Ada; Graff, Lise Seland; Debernard, Jens Boldingh; Gupta, Alok\n        Kumar; He, Yanchun; Kirkev\\xE5g, Alf; Schwinger, J\\xF6rg; Tjiputra, Jerry;\n        Aas, Kjetil Schanke; Bethke, Ingo; Fan, Yuanchao; Griesfeller, Jan; Grini,\n        Alf; Guo, Chuncheng; Ilicak, Mehmet; Karset, Inger Helene Hafsahl; Landgren,\n        Oskar Andreas; Liakka, Johan; Moseid, Kine Onsum; Nummelin, Aleksi; Spensberger,\n        Clemens; Tang, Hui; Zhang, Zhongshi; Heinze, Christoph; Iversen, Trond; Schulz,\n        Michael **(2019)**. *NCC NorESM2-MM model output prepared for CMIP6 ScenarioMIP*.\n        Version 20191108. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.608\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > Tang, Yongming; Rumbold, Steve; Ellis, Rich; Kelley,\n        Douglas; Mulcahy, Jane; Sellar, Alistair; Walton, Jeremy; Jones, Colin **(2019)**.\n        *MOHC UKESM1.0-LL model output prepared for CMIP6 CMIP*. Version 20190627.\n        Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1569\\\\n\\\\n\n        \\ ScenarioMIP Citation:\\\\n\\\\n  > Good, Peter; Sellar, Alistair; Tang, Yongming;\n        Rumbold, Steve; Ellis, Rich; Kelley, Douglas; Kuhlbrodt, Till; Walton, Jeremy\n        **(2019)**. *MOHC UKESM1.0-LL model output prepared for CMIP6 ScenarioMIP*.\n        SSP1-2.6 version 20190708; SSP2-4.5 version 20190715; SSP3-7.0 version 20190726;\n        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).\n        Note: this dataset was previously licensed\\\\n  under CC BY-SA 4.0, but was\n        relicensed as CC BY 4.0 in March, 2023.\\\\n\\\\n  CMIP Citation:\\\\n\\\\n  > Swart,\n        Neil Cameron; Cole, Jason N.S.; Kharin, Viatcheslav V.; Lazare, Mike; Scinocca,\n        John F.; Gillett, Nathan P.; Anstey, James; Arora, Vivek; Christian, James\n        R.; Jiao, Yanjun; Lee, Warren G.; Majaess, Fouad; Saenko, Oleg A.; Seiler,\n        Christian; Seinen, Clint; Shao, Andrew; Solheim, Larry; von Salzen, Knut;\n        Yang, Duo; Winter, Barbara; Sigmond, Michael **(2019)**. *CCCma CanESM5 model\n        output prepared for CMIP6 CMIP*. Version 20190429. Earth System Grid Federation.\n        https://doi.org/10.22033/ESGF/CMIP6.1303\\\\n\\\\n  ScenarioMIP Citation:\\\\n\\\\n\n        \\ > Swart, Neil Cameron; Cole, Jason N.S.; Kharin, Viatcheslav V.; Lazare,\n        Mike; Scinocca, John F.; Gillett, Nathan P.; Anstey, James; Arora, Vivek;\n        Christian, James R.; Jiao, Yanjun; Lee, Warren G.; Majaess, Fouad; Saenko,\n        Oleg A.; Seiler, Christian; Seinen, Clint; Shao, Andrew; Solheim, Larry; von\n        Salzen, Knut; Yang, Duo; Winter, Barbara; Sigmond, Michael **(2019)**. *CCCma\n        CanESM5 model output prepared for CMIP6 ScenarioMIP*. Version 20190429. Earth\n        System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1317\\\\n\\\\n## Acknowledgements\\\\n\\\\nThis\n        work is the result of many years worth of work by members of the [Climate\n        Impact Lab](https://impactlab.org), but would not have been possible without\n        many contributions from across the wider scientific and computing communities.\\\\n\\\\nSpecifically,\n        we would like to acknowledge the World Climate Research Programme's Working\n        Group on Coupled Modeling, which is responsible for CMIP, and we would like\n        to thank the climate modeling groups for producing and making their model\n        output available. We would particularly like to thank the modeling institutions\n        whose results are included as an input to this repository (listed above) for\n        their contributions to the CMIP6 project and for responding to and granting\n        our requests for license waivers.\\\\n\\\\nWe would also like to thank Lamont-Doherty\n        Earth Observatory, the [Pangeo Consortium](https://github.com/pangeo-data)\n        (and especially the [ESGF Cloud Data Working Group](https://pangeo-data.github.io/pangeo-cmip6-cloud/#))\n        and Google Cloud and the Google Public Datasets program for making the [CMIP6\n        Google Cloud collection](https://console.cloud.google.com/marketplace/details/noaa-public/cmip6)\n        possible. In particular we're extremely grateful to [Ryan Abernathey](https://github.com/rabernat),\n        [Naomi Henderson](https://github.com/naomi-henderson), [Charles Blackmon-Luca](https://github.com/charlesbluca),\n        [Aparna Radhakrishnan](https://github.com/aradhakrishnanGFDL), [Julius Busecke](https://github.com/jbusecke),\n        and [Charles Stern](https://github.com/cisaacstern) for the huge amount of\n        work they've done to translate the ESGF CMIP6 netCDF archives into consistently-formattted,\n        analysis-ready zarr stores on Google Cloud.\\\\n\\\\nWe're also grateful to the\n        [xclim developers](https://github.com/Ouranosinc/xclim/graphs/contributors)\n        ([DOI: 10.5281/zenodo.2795043](https://doi.org/10.5281/zenodo.2795043)), in\n        particular [Pascal Bourgault](https://github.com/aulemahal), [David Huard](https://github.com/huard),\n        and [Travis Logan](https://github.com/tlogan2000), for implementing the QDM\n        bias correction method in the xclim python package, supporting our QPLAD implementation\n        into the package, and ongoing support in integrating dask into downscaling\n        workflows. For method advice and useful conversations, we would like to thank\n        Keith Dixon, Dennis Adams-Smith, and [Joe Hamman](https://github.com/jhamman).\\\\n\\\\n##\n        Financial support\\\\n\\\\nThis research has been supported by The Rockefeller\n        Foundation and the Microsoft AI for Earth Initiative.\\\\n\\\\n## Additional links:\\\\n\\\\n*\n        CIL GDPCIR project homepage: [github.com/ClimateImpactLab/downscaleCMIP6](https://github.com/ClimateImpactLab/downscaleCMIP6)\\\\n*\n        Project listing on zenodo: https://doi.org/10.5281/zenodo.6403794\\\\n* Climate\n        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\n        Maximum Near-Surface Air Temperature\\\",\\\"description\\\":\\\"Daily Maximum Near-Surface\n        Air Temperature\\\"},\\\"tasmin\\\":{\\\"type\\\":\\\"application/vnd+zarr\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Daily\n        Minimum Near-Surface Air Temperature\\\",\\\"description\\\":\\\"Daily Minimum Near-Surface\n        Air Temperature\\\"}},\\\"msft:region\\\":\\\"westeurope\\\",\\\"stac_version\\\":\\\"1.0.0\\\",\\\"msft:group_id\\\":\\\"cil-gdpcir\\\",\\\"cube:variables\\\":{\\\"pr\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"mm\n        day-1\\\",\\\"attrs\\\":{\\\"units\\\":\\\"mm day-1\\\"},\\\"dimensions\\\":[\\\"time\\\",\\\"lat\\\",\\\"lon\\\"]},\\\"tasmax\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"K\\\",\\\"attrs\\\":{\\\"units\\\":\\\"K\\\",\\\"comment\\\":\\\"maximum\n        near-surface (usually, 2 meter) air temperature (add cell_method attribute\n        'time: max')\\\",\\\"long_name\\\":\\\"Daily Maximum Near-Surface Air Temperature\\\",\\\"coordinates\\\":\\\"height\\\",\\\"cell_methods\\\":\\\"area:\n        mean time: maximum (interval: 5 minutes)\\\",\\\"cell_measures\\\":\\\"area: areacella\\\",\\\"original_name\\\":\\\"TREFHTMX\\\",\\\"standard_name\\\":\\\"air_temperature\\\"},\\\"dimensions\\\":[\\\"time\\\",\\\"lat\\\",\\\"lon\\\"],\\\"description\\\":\\\"Daily\n        Maximum Near-Surface Air Temperature\\\"},\\\"tasmin\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"K\\\",\\\"attrs\\\":{\\\"units\\\":\\\"K\\\",\\\"comment\\\":\\\"minimum\n        near-surface (usually, 2 meter) air temperature (add cell_method attribute\n        'time: min')\\\",\\\"long_name\\\":\\\"Daily Minimum Near-Surface Air Temperature\\\",\\\"coordinates\\\":\\\"height\\\",\\\"cell_methods\\\":\\\"area:\n        mean time: minimum (interval: 5 minutes)\\\",\\\"cell_measures\\\":\\\"area: areacella\\\",\\\"original_name\\\":\\\"TREFHTMN\\\",\\\"standard_name\\\":\\\"air_temperature\\\"},\\\"dimensions\\\":[\\\"time\\\",\\\"lat\\\",\\\"lon\\\"],\\\"description\\\":\\\"Daily\n        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\n        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\n        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\n        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\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"Sea\n        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\n        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\n        STAC items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        Centers for Environmental Information\\\",\\\"roles\\\":[\\\"producer\\\",\\\"processor\\\",\\\"licensor\\\"],\\\"description\\\":\\\"NCEI\n        is the Nation's leading authority for environmental data, and manage one of\n        the largest archives of atmospheric, coastal, geophysical, and oceanic research\n        in the world. NCEI contributes to the NESDIS mission by developing new products\n        and services that span the science disciplines and enable better data discovery.\\\"},{\\\"url\\\":\\\"https://planetarycomputer.microsoft.com\\\",\\\"name\\\":\\\"Microsoft\\\",\\\"roles\\\":[\\\"processor\\\",\\\"host\\\"]}],\\\"description\\\":\\\"The\n        Sea Surface Temperature-Woods Hole Oceanographic Institution (WHOI) Climate\n        Data Record (CDR) is one of three CDRs which combine to form the NOAA Ocean\n        Surface Bundle (OSB) CDR. The resultant sea surface temperature (SST) data\n        are produced through modeling the diurnal variability in combination with\n        AVHRR SST observations. The final record is output to a 3-hourly 0.25\\xB0\n        resolution grid over the global ice-free oceans from January 1988\\u2014present.\\\\n\\\\nThis\n        is a NetCDF-only collection, for Cloud-Optimized GeoTIFFs use collection `noaa-cdr-sea-surface-temperature-whoi`.\\\\nThe\n        NetCDF files are delivered to Azure as part of the [NOAA Open Data Dissemination\n        (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,\n        Carol Anne; Brown, Jeremiah; and NOAA CDR Program (2016). NOAA Climate Data\n        Record (CDR) of Sea Surface Temperature - WHOI, Version 2. NOAA National Climatic\n        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\n        Sea Surface Temperature-Woods Hole Oceanographic Institution (WHOI) Climate\n        Data Record (CDR) is one of three CDRs which combine to form the NOAA Ocean\n        Surface Bundle (OSB) CDR. The resultant sea surface temperature (SST) data\n        are produced through modeling the diurnal variability in combination with\n        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\n        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\n        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\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"Sea\n        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\n        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\n        STAC items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        Centers for Environmental Information\\\",\\\"roles\\\":[\\\"producer\\\",\\\"processor\\\",\\\"licensor\\\"],\\\"description\\\":\\\"NCEI\n        is the Nation's leading authority for environmental data, and manage one of\n        the largest archives of atmospheric, coastal, geophysical, and oceanic research\n        in the world. NCEI contributes to the NESDIS mission by developing new products\n        and services that span the science disciplines and enable better data discovery.\\\"},{\\\"url\\\":\\\"https://planetarycomputer.microsoft.com\\\",\\\"name\\\":\\\"Microsoft\\\",\\\"roles\\\":[\\\"processor\\\",\\\"host\\\"]}],\\\"description\\\":\\\"The\n        NOAA 1/4\\xB0 daily Optimum Interpolation Sea Surface Temperature (or daily\n        OISST) Climate Data Record (CDR) provides complete ocean temperature fields\n        constructed by combining bias-adjusted observations from different platforms\n        (satellites, ships, buoys) on a regular global grid, with gaps filled in by\n        interpolation. The main input source is satellite data from the Advanced Very\n        High Resolution Radiometer (AVHRR), which provides high temporal-spatial coverage\n        from late 1981-present. This input must be adjusted to the buoys due to erroneous\n        cold SST data following the Mt Pinatubo and El Chichon eruptions. Applications\n        include climate modeling, resource management, ecological studies on annual\n        to daily scales.\\\\n\\\\nThese Cloud Optimized GeoTIFFs (COGs) were created from\n        NetCDF files which are delivered to Azure as part of the [NOAA Open Data Dissemination\n        (NODD) Program](https://www.noaa.gov/information-technology/open-data-dissemination).\\\\nFor\n        the NetCDF files, see collection `noaa-cdr-sea-surface-temperature-optimum-interpolation-netcdf`.\\\\n\\\",\\\"item_assets\\\":{\\\"err\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"raster:bands\\\":[{\\\"unit\\\":\\\"Celsius\\\",\\\"scale\\\":0.009999999776482582,\\\"nodata\\\":-999,\\\"data_type\\\":\\\"int16\\\"}]},\\\"ice\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"raster:bands\\\":[{\\\"unit\\\":\\\"%\\\",\\\"scale\\\":0.009999999776482582,\\\"nodata\\\":-999,\\\"data_type\\\":\\\"int16\\\"}]},\\\"sst\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"raster:bands\\\":[{\\\"unit\\\":\\\"Celsius\\\",\\\"scale\\\":0.009999999776482582,\\\"nodata\\\":-999,\\\"data_type\\\":\\\"int16\\\"}]},\\\"anom\\\":{\\\"type\\\":\\\"image/tiff;\n        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,\n        Boyin; Liu, Chunying; Banzon, Viva F.; Freeman, Eric; Graham, Garrett; Hankins,\n        Bill; Smith, Thomas M.; Zhang, Huai-Min. (2020): NOAA 0.25-degree Daily Optimum\n        Interpolation Sea Surface Temperature (OISST), Version 2.1. NOAA National\n        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\n        NOAA 1/4\\xB0 daily Optimum Interpolation Sea Surface Temperature (or daily\n        OISST) Climate Data Record (CDR) provides complete ocean temperature fields\n        constructed by combining bias-adjusted observations from different platforms\n        (satellites, ships, buoys) on a regular global grid, with gaps filled in by\n        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\n        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\n        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\n        and Copyright | National Snow and Ice Data Center\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/modis-10A1-061\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"MODIS\n        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\n        Snow Cover Daily thumbnail\\\"},\\\"geoparquet-items\\\":{\\\"href\\\":\\\"abfs://items/modis-10A1-061.parquet\\\",\\\"type\\\":\\\"application/x-parquet\\\",\\\"roles\\\":[\\\"stac-items\\\"],\\\"title\\\":\\\"GeoParquet\n        STAC items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        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\n        global Level-3 (L3) data set provides a daily composite of snow cover and\n        albedo derived from the 'MODIS Snow Cover 5-Min L2 Swath 500m' data set. Each\n        data granule is a 10degx10deg tile projected to a 500 m sinusoidal grid.\\\",\\\"item_assets\\\":{\\\"hdf\\\":{\\\"type\\\":\\\"application/x-hdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Source\n        data containing all bands\\\"},\\\"NDSI\\\":{\\\"type\\\":\\\"image/tiff; application=geotiff;\n        profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Raw NDSI values\n        (i.e. prior to screening).\\\",\\\"raster:bands\\\":[{\\\"scale\\\":0.0001,\\\"data_type\\\":\\\"int16\\\",\\\"spatial_resolution\\\":500}]},\\\"metadata\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"Federal\n        Geographic Data Committee (FGDC) Metadata\\\"},\\\"orbit_pnt\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Pointer\n        to the orbit of the swath mapped into each grid cell.\\\",\\\"raster:bands\\\":[{\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":500}]},\\\"granule_pnt\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Pointer\n        for identifying the swath mapped into each grid cell.\\\",\\\"raster:bands\\\":[{\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":500}]},\\\"NDSI_Snow_Cover\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Gridded\n        NDSI snow cover and data flag values.\\\",\\\"raster:bands\\\":[{\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":500}]},\\\"Snow_Albedo_Daily_Tile\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Daily\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"A\n        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\n        (not used)\\\"},{\\\"value\\\":4,\\\"description\\\":\\\"other (not used)\\\"}]},\\\"NDSI_Snow_Cover_Algorithm_Flags_QA\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Algorithm-specific\n        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,\n        D. K., &amp; Riggs, G. A. (2021). <i>MODIS/Aqua Snow Cover Daily L3 Global\n        500m Grid, Version 61</i> [Data set]. NASA National Snow and Ice Data Center\n        DAAC. https://doi.org/10.5067/MODIS/MOD10A1.061\\\"},{\\\"doi\\\":\\\"10.5067/MODIS/MYD10A1.061\\\",\\\"citation\\\":\\\"Hall,\n        D. K., &amp; Riggs, G. A. (2021). <i>MODIS/Aqua Snow Cover Daily L3 Global\n        500m Grid, Version 61</i> [Data set]. NASA National Snow and Ice Data Center\n        DAAC. https://doi.org/10.5067/MODIS/MYD10A1.061\\\"}],\\\"msft:storage_account\\\":\\\"modiseuwest\\\",\\\"msft:short_description\\\":\\\"MODIS\n        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\n        Data License\\\"},{\\\"rel\\\":\\\"about\\\",\\\"href\\\":\\\"https://sentinel.esa.int/web/sentinel/missions/sentinel-5p\\\",\\\"type\\\":\\\"text/html\\\",\\\"title\\\":\\\"Sentinel-5\n        Precursor Mission\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/sentinel-5p-l2-netcdf\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"Sentinel-5P\n        Level-2\\\",\\\"assets\\\":{\\\"thumbnail\\\":{\\\"href\\\":\\\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/sentinel-5p-l2-netcdf-thumb.png\\\",\\\"title\\\":\\\"Sentinel-5P\n        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\n        STAC Items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        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\n        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\n        Copernicus [Sentinel-5 Precursor](https://sentinels.copernicus.eu/web/sentinel/missions/sentinel-5p)\n        mission provides high spatio-temporal resolution measurements of the Earth's\n        atmosphere. The mission consists of one satellite carrying the [TROPOspheric\n        Monitoring Instrument](http://www.tropomi.eu/) (TROPOMI). The satellite flies\n        in loose formation with NASA's [Suomi NPP](https://www.nasa.gov/mission_pages/NPP/main/index.html)\n        spacecraft, allowing utilization of co-located cloud mask data provided by\n        the [Visible Infrared Imaging Radiometer Suite](https://www.nesdis.noaa.gov/current-satellite-missions/currently-flying/joint-polar-satellite-system/visible-infrared-imaging)\n        (VIIRS) instrument onboard Suomi NPP during processing of the TROPOMI methane\n        product.\\\\n\\\\nThe Sentinel-5 Precursor mission aims to reduce the global atmospheric\n        data gap between the retired [ENVISAT](https://earth.esa.int/eogateway/missions/envisat)\n        and [AURA](https://www.nasa.gov/mission_pages/aura/main/index.html) missions\n        and the future [Sentinel-5](https://sentinels.copernicus.eu/web/sentinel/missions/sentinel-5)\n        mission. Sentinel-5 Precursor [Level 2 data](http://www.tropomi.eu/data-products/level-2-products)\n        provide total columns of ozone, sulfur dioxide, nitrogen dioxide, carbon monoxide\n        and formaldehyde, tropospheric columns of ozone, vertical profiles of ozone\n        and cloud & aerosol information. These measurements are used for improving\n        air quality forecasts and monitoring the concentrations of atmospheric constituents.\\\\n\\\\nThis\n        STAC Collection provides Sentinel-5 Precursor Level 2 data, in NetCDF format,\n        since April 2018 for the following products:\\\\n\\\\n* [`L2__AER_AI`](http://www.tropomi.eu/data-products/uv-aerosol-index):\n        Ultraviolet aerosol index\\\\n* [`L2__AER_LH`](http://www.tropomi.eu/data-products/aerosol-layer-height):\n        Aerosol layer height\\\\n* [`L2__CH4___`](http://www.tropomi.eu/data-products/methane):\n        Methane (CH<sub>4</sub>) total column\\\\n* [`L2__CLOUD_`](http://www.tropomi.eu/data-products/cloud):\n        Cloud fraction, albedo, and top pressure\\\\n* [`L2__CO____`](http://www.tropomi.eu/data-products/carbon-monoxide):\n        Carbon monoxide (CO) total column\\\\n* [`L2__HCHO__`](http://www.tropomi.eu/data-products/formaldehyde):\n        Formaldehyde (HCHO) total column\\\\n* [`L2__NO2___`](http://www.tropomi.eu/data-products/nitrogen-dioxide):\n        Nitrogen dioxide (NO<sub>2</sub>) total column\\\\n* [`L2__O3____`](http://www.tropomi.eu/data-products/total-ozone-column):\n        Ozone (O<sub>3</sub>) total column\\\\n* [`L2__O3_TCL`](http://www.tropomi.eu/data-products/tropospheric-ozone-column):\n        Ozone (O<sub>3</sub>) tropospheric column\\\\n* [`L2__SO2___`](http://www.tropomi.eu/data-products/sulphur-dioxide):\n        Sulfur dioxide (SO<sub>2</sub>) total column\\\\n* [`L2__NP_BD3`](http://www.tropomi.eu/data-products/auxiliary):\n        Cloud from the Suomi NPP mission, band 3\\\\n* [`L2__NP_BD6`](http://www.tropomi.eu/data-products/auxiliary):\n        Cloud from the Suomi NPP mission, band 6\\\\n* [`L2__NP_BD7`](http://www.tropomi.eu/data-products/auxiliary):\n        Cloud from the Suomi NPP mission, band 7\\\\n\\\",\\\"item_assets\\\":{\\\"co\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Carbon\n        Monoxide Total Column\\\"},\\\"o3\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Ozone\n        Total Column\\\"},\\\"ch4\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Methane\n        Total Column\\\"},\\\"no2\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Nitrogen\n        Dioxide Total Column\\\"},\\\"so2\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Sulphur\n        Dioxide Total Column\\\"},\\\"hcho\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Formaldehyde\n        Total Column\\\"},\\\"cloud\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Cloud\n        Fraction, Albedo, and Top Pressure\\\"},\\\"aer-ai\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Ultraviolet\n        Aerosol Index\\\"},\\\"aer-lh\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Aerosol\n        Layer Height\\\"},\\\"np-bd3\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"VIIRS/NPP\n        Band 3 Cloud Mask\\\"},\\\"np-bd6\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"VIIRS/NPP\n        Band 6 Cloud Mask\\\"},\\\"np-bd7\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"VIIRS/NPP\n        Band 7 Cloud Mask\\\"},\\\"o3-tcl\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Ozone\n        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\n        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\n        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\n        Water (LRR and LFR) Product User Guide\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/sentinel-3-olci-wfr-l2-netcdf\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"Sentinel-3\n        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\n        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\n        STAC Items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        1 - Aerosol correction, improved water constituent retrieval\\\",\\\"center_wavelength\\\":0.4,\\\"full_width_half_max\\\":0.015},{\\\"name\\\":\\\"Oa02\\\",\\\"description\\\":\\\"Band\n        2 - Yellow substance and detrital pigments (turbidity)\\\",\\\"center_wavelength\\\":0.4125,\\\"full_width_half_max\\\":0.01},{\\\"name\\\":\\\"Oa03\\\",\\\"description\\\":\\\"Band\n        3 - Chlorophyll absorption maximum, biogeochemistry, vegetation\\\",\\\"center_wavelength\\\":0.4425,\\\"full_width_half_max\\\":0.01},{\\\"name\\\":\\\"Oa04\\\",\\\"description\\\":\\\"Band\n        4 - Chlorophyll\\\",\\\"center_wavelength\\\":0.49,\\\"full_width_half_max\\\":0.01},{\\\"name\\\":\\\"Oa05\\\",\\\"description\\\":\\\"Band\n        5 - Chlorophyll, sediment, turbidity, red tide\\\",\\\"center_wavelength\\\":0.51,\\\"full_width_half_max\\\":0.01},{\\\"name\\\":\\\"Oa06\\\",\\\"description\\\":\\\"Band\n        6 - Chlorophyll reference (minimum)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.01},{\\\"name\\\":\\\"Oa07\\\",\\\"description\\\":\\\"Band\n        7 - Sediment loading\\\",\\\"center_wavelength\\\":0.62,\\\"full_width_half_max\\\":0.01},{\\\"name\\\":\\\"Oa08\\\",\\\"description\\\":\\\"Band\n        8 - 2nd Chlorophyll absorption maximum, sediment, yellow substance / vegetation\\\",\\\"center_wavelength\\\":0.665,\\\"full_width_half_max\\\":0.01},{\\\"name\\\":\\\"Oa09\\\",\\\"description\\\":\\\"Band\n        9 - Improved fluorescence retrieval\\\",\\\"center_wavelength\\\":0.67375,\\\"full_width_half_max\\\":0.0075},{\\\"name\\\":\\\"Oa10\\\",\\\"description\\\":\\\"Band\n        10 - Chlorophyll fluorescence peak, red edge\\\",\\\"center_wavelength\\\":0.68125,\\\"full_width_half_max\\\":0.0075},{\\\"name\\\":\\\"Oa11\\\",\\\"description\\\":\\\"Band\n        11 - Chlorophyll fluorescence baseline, red edge transition\\\",\\\"center_wavelength\\\":0.70875,\\\"full_width_half_max\\\":0.01},{\\\"name\\\":\\\"Oa12\\\",\\\"description\\\":\\\"Band\n        12 - O2 absorption / clouds, vegetation\\\",\\\"center_wavelength\\\":0.75375,\\\"full_width_half_max\\\":0.0075},{\\\"name\\\":\\\"Oa16\\\",\\\"description\\\":\\\"Band\n        16 - Atmospheric / aerosol correction\\\",\\\"center_wavelength\\\":0.77875,\\\"full_width_half_max\\\":0.015},{\\\"name\\\":\\\"Oa17\\\",\\\"description\\\":\\\"Band\n        17 - Atmospheric / aerosol correction, clouds, pixel co-registration\\\",\\\"center_wavelength\\\":0.865,\\\"full_width_half_max\\\":0.02},{\\\"name\\\":\\\"Oa18\\\",\\\"description\\\":\\\"Band\n        18 - Water vapour absorption reference. Common reference band with SLSTR.\n        Vegetation monitoring\\\",\\\"center_wavelength\\\":0.885,\\\"full_width_half_max\\\":0.01},{\\\"name\\\":\\\"Oa19\\\",\\\"description\\\":\\\"Band\n        19 - Water vapour absorption, vegetation monitoring (maximum REFLECTANCE)\\\",\\\"center_wavelength\\\":0.9,\\\"full_width_half_max\\\":0.01},{\\\"name\\\":\\\"Oa21\\\",\\\"description\\\":\\\"Band\n        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\n        Collection provides Sentinel-3 Full Resolution [OLCI Level-2 Water][olci-l2]\n        products containing data on water-leaving reflectance, ocean color, and more.\\\\n\\\\n##\n        Data files\\\\n\\\\nThis dataset includes data on:\\\\n\\\\n- Surface directional\n        reflectance\\\\n- Chlorophyll-a concentration\\\\n- Suspended matter concentration\\\\n-\n        Energy flux\\\\n- Aerosol load\\\\n- Integrated water vapor column\\\\n\\\\nEach variable\n        is contained within NetCDF files. Error estimates are available for each product.\\\\n\\\\n##\n        Processing overview\\\\n\\\\nThe values in the data files have been converted\n        from Top of Atmosphere radiance to reflectance, and include various corrections\n        for gaseous absorption and pixel classification. More information about the\n        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)\n        and [Technical Guide](https://sentinel.esa.int/web/sentinel/technical-guides/sentinel-3-olci/level-2/processing).\\\\n\\\\nThis\n        Collection contains Level-2 data in NetCDF files from November 2017 to present.\\\\n\\\\n[olci-l2]:\n        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\n        18 - Water vapour absorption reference. Common reference band with SLSTR.\n        Vegetation monitoring\\\",\\\"center_wavelength\\\":0.885,\\\"full_width_half_max\\\":0.01},{\\\"name\\\":\\\"Oa19\\\",\\\"description\\\":\\\"Band\n        19 - Water vapour absorption, vegetation monitoring (maximum REFLECTANCE)\\\",\\\"center_wavelength\\\":0.9,\\\"full_width_half_max\\\":0.01}],\\\"description\\\":\\\"Integrated\n        water vapour column\\\"},\\\"par\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"description\\\":\\\"Photosynthetically\n        active radiation\\\"},\\\"trsp\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"eo:bands\\\":[{\\\"name\\\":\\\"Oa04\\\",\\\"description\\\":\\\"Band\n        4 - Chlorophyll\\\",\\\"center_wavelength\\\":0.49,\\\"full_width_half_max\\\":0.01},{\\\"name\\\":\\\"Oa06\\\",\\\"description\\\":\\\"Band\n        6 - Chlorophyll reference (minimum)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.01}],\\\"description\\\":\\\"Transparency\n        properties of water\\\"},\\\"wqsf\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"description\\\":\\\"Water\n        quality and science flags\\\"},\\\"w-aer\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"eo:bands\\\":[{\\\"name\\\":\\\"Oa05\\\",\\\"description\\\":\\\"Band\n        5 - Chlorophyll, sediment, turbidity, red tide\\\",\\\"center_wavelength\\\":0.51,\\\"full_width_half_max\\\":0.01},{\\\"name\\\":\\\"Oa06\\\",\\\"description\\\":\\\"Band\n        6 - Chlorophyll reference (minimum)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.01},{\\\"name\\\":\\\"Oa17\\\",\\\"description\\\":\\\"Band\n        17 - Atmospheric / aerosol correction, clouds, pixel co-registration\\\",\\\"center_wavelength\\\":0.865,\\\"full_width_half_max\\\":0.02}],\\\"description\\\":\\\"Aerosol\n        over water\\\"},\\\"chl-nn\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"eo:bands\\\":[{\\\"name\\\":\\\"Oa01\\\",\\\"description\\\":\\\"Band\n        1 - Aerosol correction, improved water constituent retrieval\\\",\\\"center_wavelength\\\":0.4,\\\"full_width_half_max\\\":0.015},{\\\"name\\\":\\\"Oa02\\\",\\\"description\\\":\\\"Band\n        2 - Yellow substance and detrital pigments (turbidity)\\\",\\\"center_wavelength\\\":0.4125,\\\"full_width_half_max\\\":0.01},{\\\"name\\\":\\\"Oa03\\\",\\\"description\\\":\\\"Band\n        3 - Chlorophyll absorption maximum, biogeochemistry, vegetation\\\",\\\"center_wavelength\\\":0.4425,\\\"full_width_half_max\\\":0.01},{\\\"name\\\":\\\"Oa04\\\",\\\"description\\\":\\\"Band\n        4 - Chlorophyll\\\",\\\"center_wavelength\\\":0.49,\\\"full_width_half_max\\\":0.01},{\\\"name\\\":\\\"Oa05\\\",\\\"description\\\":\\\"Band\n        5 - Chlorophyll, sediment, turbidity, red tide\\\",\\\"center_wavelength\\\":0.51,\\\"full_width_half_max\\\":0.01},{\\\"name\\\":\\\"Oa06\\\",\\\"description\\\":\\\"Band\n        6 - Chlorophyll reference (minimum)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.01},{\\\"name\\\":\\\"Oa07\\\",\\\"description\\\":\\\"Band\n        7 - Sediment loading\\\",\\\"center_wavelength\\\":0.62,\\\"full_width_half_max\\\":0.01},{\\\"name\\\":\\\"Oa08\\\",\\\"description\\\":\\\"Band\n        8 - 2nd Chlorophyll absorption maximum, sediment, yellow substance / vegetation\\\",\\\"center_wavelength\\\":0.665,\\\"full_width_half_max\\\":0.01},{\\\"name\\\":\\\"Oa09\\\",\\\"description\\\":\\\"Band\n        9 - Improved fluorescence retrieval\\\",\\\"center_wavelength\\\":0.67375,\\\"full_width_half_max\\\":0.0075},{\\\"name\\\":\\\"Oa10\\\",\\\"description\\\":\\\"Band\n        10 - Chlorophyll fluorescence peak, red edge\\\",\\\"center_wavelength\\\":0.68125,\\\"full_width_half_max\\\":0.0075},{\\\"name\\\":\\\"Oa11\\\",\\\"description\\\":\\\"Band\n        11 - Chlorophyll fluorescence baseline, red edge transition\\\",\\\"center_wavelength\\\":0.70875,\\\"full_width_half_max\\\":0.01},{\\\"name\\\":\\\"Oa12\\\",\\\"description\\\":\\\"Band\n        12 - O2 absorption / clouds, vegetation\\\",\\\"center_wavelength\\\":0.75375,\\\"full_width_half_max\\\":0.0075},{\\\"name\\\":\\\"Oa16\\\",\\\"description\\\":\\\"Band\n        16 - Atmospheric / aerosol correction\\\",\\\"center_wavelength\\\":0.77875,\\\"full_width_half_max\\\":0.015},{\\\"name\\\":\\\"Oa17\\\",\\\"description\\\":\\\"Band\n        17 - Atmospheric / aerosol correction, clouds, pixel co-registration\\\",\\\"center_wavelength\\\":0.865,\\\"full_width_half_max\\\":0.02},{\\\"name\\\":\\\"Oa18\\\",\\\"description\\\":\\\"Band\n        18 - Water vapour absorption reference. Common reference band with SLSTR.\n        Vegetation monitoring\\\",\\\"center_wavelength\\\":0.885,\\\"full_width_half_max\\\":0.01},{\\\"name\\\":\\\"Oa21\\\",\\\"description\\\":\\\"Band\n        21 - Water vapour absorption, atmospheric / aerosol correction\\\",\\\"center_wavelength\\\":1.02,\\\"full_width_half_max\\\":0.04}],\\\"description\\\":\\\"Neural\n        net chlorophyll concentration\\\"},\\\"iop-nn\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"eo:bands\\\":[{\\\"name\\\":\\\"Oa01\\\",\\\"description\\\":\\\"Band\n        1 - Aerosol correction, improved water constituent retrieval\\\",\\\"center_wavelength\\\":0.4,\\\"full_width_half_max\\\":0.015},{\\\"name\\\":\\\"Oa12\\\",\\\"description\\\":\\\"Band\n        12 - O2 absorption / clouds, vegetation\\\",\\\"center_wavelength\\\":0.75375,\\\"full_width_half_max\\\":0.0075},{\\\"name\\\":\\\"Oa16\\\",\\\"description\\\":\\\"Band\n        16 - Atmospheric / aerosol correction\\\",\\\"center_wavelength\\\":0.77875,\\\"full_width_half_max\\\":0.015},{\\\"name\\\":\\\"Oa17\\\",\\\"description\\\":\\\"Band\n        17 - Atmospheric / aerosol correction, clouds, pixel co-registration\\\",\\\"center_wavelength\\\":0.865,\\\"full_width_half_max\\\":0.02},{\\\"name\\\":\\\"Oa21\\\",\\\"description\\\":\\\"Band\n        21 - Water vapour absorption, atmospheric / aerosol correction\\\",\\\"center_wavelength\\\":1.02,\\\"full_width_half_max\\\":0.04}],\\\"description\\\":\\\"Inherent\n        optical properties of water\\\"},\\\"tsm-nn\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"eo:bands\\\":[{\\\"name\\\":\\\"Oa01\\\",\\\"description\\\":\\\"Band\n        1 - Aerosol correction, improved water constituent retrieval\\\",\\\"center_wavelength\\\":0.4,\\\"full_width_half_max\\\":0.015},{\\\"name\\\":\\\"Oa02\\\",\\\"description\\\":\\\"Band\n        2 - Yellow substance and detrital pigments (turbidity)\\\",\\\"center_wavelength\\\":0.4125,\\\"full_width_half_max\\\":0.01},{\\\"name\\\":\\\"Oa03\\\",\\\"description\\\":\\\"Band\n        3 - Chlorophyll absorption maximum, biogeochemistry, vegetation\\\",\\\"center_wavelength\\\":0.4425,\\\"full_width_half_max\\\":0.01},{\\\"name\\\":\\\"Oa04\\\",\\\"description\\\":\\\"Band\n        4 - Chlorophyll\\\",\\\"center_wavelength\\\":0.49,\\\"full_width_half_max\\\":0.01},{\\\"name\\\":\\\"Oa05\\\",\\\"description\\\":\\\"Band\n        5 - Chlorophyll, sediment, turbidity, red tide\\\",\\\"center_wavelength\\\":0.51,\\\"full_width_half_max\\\":0.01},{\\\"name\\\":\\\"Oa06\\\",\\\"description\\\":\\\"Band\n        6 - Chlorophyll reference (minimum)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.01},{\\\"name\\\":\\\"Oa07\\\",\\\"description\\\":\\\"Band\n        7 - Sediment loading\\\",\\\"center_wavelength\\\":0.62,\\\"full_width_half_max\\\":0.01},{\\\"name\\\":\\\"Oa08\\\",\\\"description\\\":\\\"Band\n        8 - 2nd Chlorophyll absorption maximum, sediment, yellow substance / vegetation\\\",\\\"center_wavelength\\\":0.665,\\\"full_width_half_max\\\":0.01},{\\\"name\\\":\\\"Oa09\\\",\\\"description\\\":\\\"Band\n        9 - Improved fluorescence retrieval\\\",\\\"center_wavelength\\\":0.67375,\\\"full_width_half_max\\\":0.0075},{\\\"name\\\":\\\"Oa10\\\",\\\"description\\\":\\\"Band\n        10 - Chlorophyll fluorescence peak, red edge\\\",\\\"center_wavelength\\\":0.68125,\\\"full_width_half_max\\\":0.0075},{\\\"name\\\":\\\"Oa11\\\",\\\"description\\\":\\\"Band\n        11 - Chlorophyll fluorescence baseline, red edge transition\\\",\\\"center_wavelength\\\":0.70875,\\\"full_width_half_max\\\":0.01},{\\\"name\\\":\\\"Oa12\\\",\\\"description\\\":\\\"Band\n        12 - O2 absorption / clouds, vegetation\\\",\\\"center_wavelength\\\":0.75375,\\\"full_width_half_max\\\":0.0075},{\\\"name\\\":\\\"Oa16\\\",\\\"description\\\":\\\"Band\n        16 - Atmospheric / aerosol correction\\\",\\\"center_wavelength\\\":0.77875,\\\"full_width_half_max\\\":0.015},{\\\"name\\\":\\\"Oa17\\\",\\\"description\\\":\\\"Band\n        17 - Atmospheric / aerosol correction, clouds, pixel co-registration\\\",\\\"center_wavelength\\\":0.865,\\\"full_width_half_max\\\":0.02},{\\\"name\\\":\\\"Oa18\\\",\\\"description\\\":\\\"Band\n        18 - Water vapour absorption reference. Common reference band with SLSTR.\n        Vegetation monitoring\\\",\\\"center_wavelength\\\":0.885,\\\"full_width_half_max\\\":0.01},{\\\"name\\\":\\\"Oa21\\\",\\\"description\\\":\\\"Band\n        21 - Water vapour absorption, atmospheric / aerosol correction\\\",\\\"center_wavelength\\\":1.02,\\\"full_width_half_max\\\":0.04}],\\\"description\\\":\\\"Total\n        suspended matter concentration\\\"},\\\"chl-oc4me\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"eo:bands\\\":[{\\\"name\\\":\\\"Oa03\\\",\\\"description\\\":\\\"Band\n        3 - Chlorophyll absorption maximum, biogeochemistry, vegetation\\\",\\\"center_wavelength\\\":0.4425,\\\"full_width_half_max\\\":0.01},{\\\"name\\\":\\\"Oa04\\\",\\\"description\\\":\\\"Band\n        4 - Chlorophyll\\\",\\\"center_wavelength\\\":0.49,\\\"full_width_half_max\\\":0.01},{\\\"name\\\":\\\"Oa05\\\",\\\"description\\\":\\\"Band\n        5 - Chlorophyll, sediment, turbidity, red tide\\\",\\\"center_wavelength\\\":0.51,\\\"full_width_half_max\\\":0.01},{\\\"name\\\":\\\"Oa06\\\",\\\"description\\\":\\\"Band\n        6 - Chlorophyll reference (minimum)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.01}],\\\"description\\\":\\\"OC4Me\n        algorithm chlorophyll concentration\\\"},\\\"tie-meteo\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"description\\\":\\\"Tie-point\n        meteo annotations\\\"},\\\"browse-jpg\\\":{\\\"type\\\":\\\"image/jpeg\\\",\\\"roles\\\":[\\\"thumbnail\\\"],\\\"description\\\":\\\"Preview\n        image produced by the European Organisation for the Exploitation of Meteorological\n        Satellites (EUMETSAT)\\\"},\\\"eop-metadata\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"description\\\":\\\"Metadata\n        produced by the European Organisation for the Exploitation of Meteorological\n        Satellites (EUMETSAT)\\\"},\\\"safe-manifest\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"description\\\":\\\"SAFE\n        product manifest\\\"},\\\"tie-geometries\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"description\\\":\\\"Tie-point\n        geometry annotations\\\"},\\\"geo-coordinates\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"description\\\":\\\"Geo\n        coordinate annotations\\\"},\\\"instrument-data\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"description\\\":\\\"Instrument\n        annotations\\\"},\\\"oa01-reflectance\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"eo:bands\\\":[{\\\"name\\\":\\\"Oa01\\\",\\\"description\\\":\\\"Band\n        1 - Aerosol correction, improved water constituent retrieval\\\",\\\"center_wavelength\\\":0.4,\\\"full_width_half_max\\\":0.015}],\\\"description\\\":\\\"Reflectance\n        for OLCI acquisition band Oa01\\\"},\\\"oa02-reflectance\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"eo:bands\\\":[{\\\"name\\\":\\\"Oa02\\\",\\\"description\\\":\\\"Band\n        2 - Yellow substance and detrital pigments (turbidity)\\\",\\\"center_wavelength\\\":0.4125,\\\"full_width_half_max\\\":0.01}],\\\"description\\\":\\\"Reflectance\n        for OLCI acquisition band Oa02\\\"},\\\"oa03-reflectance\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"eo:bands\\\":[{\\\"name\\\":\\\"Oa03\\\",\\\"description\\\":\\\"Band\n        3 - Chlorophyll absorption maximum, biogeochemistry, vegetation\\\",\\\"center_wavelength\\\":0.4425,\\\"full_width_half_max\\\":0.01}],\\\"description\\\":\\\"Reflectance\n        for OLCI acquisition band Oa03\\\"},\\\"oa04-reflectance\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"eo:bands\\\":[{\\\"name\\\":\\\"Oa04\\\",\\\"description\\\":\\\"Band\n        4 - Chlorophyll\\\",\\\"center_wavelength\\\":0.49,\\\"full_width_half_max\\\":0.01}],\\\"description\\\":\\\"Reflectance\n        for OLCI acquisition band Oa04\\\"},\\\"oa05-reflectance\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"eo:bands\\\":[{\\\"name\\\":\\\"Oa05\\\",\\\"description\\\":\\\"Band\n        5 - Chlorophyll, sediment, turbidity, red tide\\\",\\\"center_wavelength\\\":0.51,\\\"full_width_half_max\\\":0.01}],\\\"description\\\":\\\"Reflectance\n        for OLCI acquisition band Oa05\\\"},\\\"oa06-reflectance\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"eo:bands\\\":[{\\\"name\\\":\\\"Oa06\\\",\\\"description\\\":\\\"Band\n        6 - Chlorophyll reference (minimum)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.01}],\\\"description\\\":\\\"Reflectance\n        for OLCI acquisition band Oa06\\\"},\\\"oa07-reflectance\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"eo:bands\\\":[{\\\"name\\\":\\\"Oa07\\\",\\\"description\\\":\\\"Band\n        7 - Sediment loading\\\",\\\"center_wavelength\\\":0.62,\\\"full_width_half_max\\\":0.01}],\\\"description\\\":\\\"Reflectance\n        for OLCI acquisition band Oa07\\\"},\\\"oa08-reflectance\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"eo:bands\\\":[{\\\"name\\\":\\\"Oa08\\\",\\\"description\\\":\\\"Band\n        8 - 2nd Chlorophyll absorption maximum, sediment, yellow substance / vegetation\\\",\\\"center_wavelength\\\":0.665,\\\"full_width_half_max\\\":0.01}],\\\"description\\\":\\\"Reflectance\n        for OLCI acquisition band Oa08\\\"},\\\"oa09-reflectance\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"eo:bands\\\":[{\\\"name\\\":\\\"Oa09\\\",\\\"description\\\":\\\"Band\n        9 - Improved fluorescence retrieval\\\",\\\"center_wavelength\\\":0.67375,\\\"full_width_half_max\\\":0.0075}],\\\"description\\\":\\\"Reflectance\n        for OLCI acquisition band Oa09\\\"},\\\"oa10-reflectance\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"eo:bands\\\":[{\\\"name\\\":\\\"Oa10\\\",\\\"description\\\":\\\"Band\n        10 - Chlorophyll fluorescence peak, red edge\\\",\\\"center_wavelength\\\":0.68125,\\\"full_width_half_max\\\":0.0075}],\\\"description\\\":\\\"Reflectance\n        for OLCI acquisition band Oa10\\\"},\\\"oa11-reflectance\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"eo:bands\\\":[{\\\"name\\\":\\\"Oa11\\\",\\\"description\\\":\\\"Band\n        11 - Chlorophyll fluorescence baseline, red edge transition\\\",\\\"center_wavelength\\\":0.70875,\\\"full_width_half_max\\\":0.01}],\\\"description\\\":\\\"Reflectance\n        for OLCI acquisition band Oa11\\\"},\\\"oa12-reflectance\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"eo:bands\\\":[{\\\"name\\\":\\\"Oa12\\\",\\\"description\\\":\\\"Band\n        12 - O2 absorption / clouds, vegetation\\\",\\\"center_wavelength\\\":0.75375,\\\"full_width_half_max\\\":0.0075}],\\\"description\\\":\\\"Reflectance\n        for OLCI acquisition band Oa12\\\"},\\\"oa16-reflectance\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"eo:bands\\\":[{\\\"name\\\":\\\"Oa16\\\",\\\"description\\\":\\\"Band\n        16 - Atmospheric / aerosol correction\\\",\\\"center_wavelength\\\":0.77875,\\\"full_width_half_max\\\":0.015}],\\\"description\\\":\\\"Reflectance\n        for OLCI acquisition band Oa16\\\"},\\\"oa17-reflectance\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"eo:bands\\\":[{\\\"name\\\":\\\"Oa17\\\",\\\"description\\\":\\\"Band\n        17 - Atmospheric / aerosol correction, clouds, pixel co-registration\\\",\\\"center_wavelength\\\":0.865,\\\"full_width_half_max\\\":0.02}],\\\"description\\\":\\\"Reflectance\n        for OLCI acquisition band Oa17\\\"},\\\"oa18-reflectance\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"eo:bands\\\":[{\\\"name\\\":\\\"Oa18\\\",\\\"description\\\":\\\"Band\n        18 - Water vapour absorption reference. Common reference band with SLSTR.\n        Vegetation monitoring\\\",\\\"center_wavelength\\\":0.885,\\\"full_width_half_max\\\":0.01}],\\\"description\\\":\\\"Reflectance\n        for OLCI acquisition band Oa18\\\"},\\\"oa21-reflectance\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"eo:bands\\\":[{\\\"name\\\":\\\"Oa21\\\",\\\"description\\\":\\\"Band\n        21 - Water vapour absorption, atmospheric / aerosol correction\\\",\\\"center_wavelength\\\":1.02,\\\"full_width_half_max\\\":0.04}],\\\"description\\\":\\\"Reflectance\n        for OLCI acquisition band Oa21\\\"},\\\"time-coordinates\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"description\\\":\\\"Time\n        coordinate annotations\\\"},\\\"tie-geo-coordinates\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"description\\\":\\\"Tie-point\n        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\n        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\n        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\n        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\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"Global\n        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\n        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\n        STAC items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        Centers for Environmental Information\\\",\\\"roles\\\":[\\\"producer\\\",\\\"processor\\\",\\\"licensor\\\"],\\\"description\\\":\\\"NCEI\n        is the Nation's leading authority for environmental data, and manage one of\n        the largest archives of atmospheric, coastal, geophysical, and oceanic research\n        in the world. NCEI contributes to the NESDIS mission by developing new products\n        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\n        Ocean Heat Content Climate Data Record (CDR) is a set of ocean heat content\n        anomaly (OHCA) time-series for 1955-present on 3-monthly, yearly, and pentadal\n        (five-yearly) scales. This CDR quantifies ocean heat content change over time,\n        which is an essential metric for understanding climate change and the Earth's\n        energy budget. It provides time-series for multiple depth ranges in the global\n        ocean and each of the major basins (Atlantic, Pacific, and Indian) divided\n        by hemisphere (Northern, Southern).\\\\n\\\\nThis is a NetCDF-only collection,\n        for Cloud-Optimized GeoTIFFs use collection `noaa-cdr-ocean-heat-content`.\\\\nThe\n        NetCDF files are delivered to Azure as part of the [NOAA Open Data Dissemination\n        (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,\n        Sydney; Antonov, John I.; Boyer, Tim P.; Baranova, Olga K.; Garc\\xEDa, Hern\\xE1n\n        E.; Locarnini, Ricardo A.; Mishonov, Alexey V.; Reagan, James R.; [Seidov,\n        Dan; Yarosh, Evgeney; Zweng, Melissa M. (2017). NCEI ocean heat content, temperature\n        anomalies, salinity anomalies, thermosteric sea level anomalies, halosteric\n        sea level anomalies, and total steric sea level anomalies from 1955 to present\n        calculated from in situ oceanographic subsurface profile data (NCEI Accession\n        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\n        Ocean Heat Content Climate Data Record (CDR) is a set of ocean heat content\n        anomaly (OHCA) time-series for 1955-present on 3-monthly, yearly, and pentadal\n        (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\n        DAAC - Data Citation and Policies\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/hls2-l30\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"Harmonized\n        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\n        Landsat Collection Thumbnail\\\"},\\\"geoparquet-items\\\":{\\\"href\\\":\\\"abfs://items/hls2-l30.parquet\\\",\\\"type\\\":\\\"application/x-parquet\\\",\\\"roles\\\":[\\\"stac-items\\\"],\\\"title\\\":\\\"GeoParquet\n        STAC items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        DAAC\\\",\\\"roles\\\":[\\\"producer\\\",\\\"licensor\\\"]},{\\\"url\\\":\\\"https://planetarycomputer.microsoft.com\\\",\\\"name\\\":\\\"Microsoft\\\",\\\"roles\\\":[\\\"host\\\"]}],\\\"summaries\\\":{\\\"gsd\\\":[30],\\\"platform\\\":[\\\"Landsat\n        8\\\",\\\"Landsat 9\\\"]},\\\"description\\\":\\\"Harmonized Landsat Sentinel-2 (HLS)\n        Version 2.0 provides consistent surface reflectance (SR)\\\\nand top of atmosphere\n        (TOA) brightness data from the Operational Land Imager (OLI) aboard the\\\\njoint\n        NASA/USGS Landsat 8 and Landsat 9 satellites and the Multi-Spectral Instrument\n        (MSI)\\\\naboard the ESA (European Space Agency) Sentinel-2A, Sentinel-2B, and\n        Sentinel-2C satellites.\\\\nThe combined measurement enables global observations\n        of the land every 2-3 days at 30 meter\\\\n(m) spatial resolution. The HLS-S30\n        and HLS-L30 products are gridded to the same resolution and\\\\nMilitary Grid\n        Reference System (MGRS) tiling system and are \\\\\\\"stackable\\\\\\\" for time series\n        analysis.\\\\nThis dataset is in the form of cloud-optimized GeoTIFFs. The HLS\n        v2.0 data is generated by NASA's\\\\nIMPACT team at Marshall Space Flight Center.\n        The product latency is 1.7 days, from the satellite\\\\noverpass to the HLS\n        data availability at NASA's Land Processes Distributed Active Archive Center\\\\n(LP\n        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\n        collection contains HLS data collected from Landsat-8 and Landsat-9.\\\\nHLS\n        data generated from Sentinel-2 satellites can be found in a separate collection.\\\\n\\\",\\\"item_assets\\\":{\\\"B01\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Coastal\n        Aerosol\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"B01\\\",\\\"common_name\\\":\\\"coastal\\\",\\\"center_wavelength\\\":0.48,\\\"full_width_half_max\\\":0.02}]},\\\"B02\\\":{\\\"type\\\":\\\"image/tiff;\n        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;\n        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;\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"NIR\n        Narrow\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"B05\\\",\\\"common_name\\\":\\\"nir\\\",\\\"center_wavelength\\\":0.86,\\\"full_width_half_max\\\":0.03}]},\\\"B06\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"SWIR\n        1\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"B06\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"center_wavelength\\\":1.6,\\\"full_width_half_max\\\":0.08}]},\\\"B07\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"SWIR\n        2\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"B07\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"center_wavelength\\\":2.2,\\\"full_width_half_max\\\":0.2}]},\\\"B09\\\":{\\\"type\\\":\\\"image/tiff;\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Thermal\n        Infrared 1\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"B10\\\",\\\"common_name\\\":\\\"lwir11\\\",\\\"center_wavelength\\\":10.9,\\\"full_width_half_max\\\":0.8}]},\\\"B11\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Thermal\n        Infrared 2\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"B11\\\",\\\"common_name\\\":\\\"lwir12\\\",\\\"center_wavelength\\\":12.0,\\\"full_width_half_max\\\":1.0}]},\\\"SAA\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"SAA\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"SAA\\\"}]},\\\"SZA\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"SZA\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"SZA\\\"}]},\\\"VAA\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"VAA\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"VAA\\\"}]},\\\"VZA\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"VZA\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"VZA\\\"}]},\\\"Fmask\\\":{\\\"type\\\":\\\"image/tiff;\n        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\n        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\n        Data License\\\"},{\\\"rel\\\":\\\"about\\\",\\\"href\\\":\\\"https://sentinels.copernicus.eu/web/sentinel/level-2-aod\\\",\\\"type\\\":\\\"text/html\\\",\\\"title\\\":\\\"Sentinel-3\n        Global Aerosol Product User Guide\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/sentinel-3-synergy-aod-l2-netcdf\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"Sentinel-3\n        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\n        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\n        STAC Items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        nadir and oblique channel S5\\\",\\\"center_wavelength\\\":1.61,\\\"full_width_half_max\\\":0.06},{\\\"name\\\":\\\"SYN_2250\\\",\\\"description\\\":\\\"SLSTR\n        nadir and oblique channel S6\\\",\\\"center_wavelength\\\":2.25,\\\"full_width_half_max\\\":0.05},{\\\"name\\\":\\\"SYN_440\\\",\\\"description\\\":\\\"OLCI\n        channel Oa03\\\",\\\"center_wavelength\\\":0.4425,\\\"full_width_half_max\\\":0.01},{\\\"name\\\":\\\"SYN_550\\\",\\\"description\\\":\\\"SLSTR\n        nadir and oblique channel S1\\\",\\\"center_wavelength\\\":0.55,\\\"full_width_half_max\\\":0.02},{\\\"name\\\":\\\"SYN_670\\\",\\\"description\\\":\\\"SLSTR\n        nadir and oblique channel S2\\\",\\\"center_wavelength\\\":0.659,\\\"full_width_half_max\\\":0.02},{\\\"name\\\":\\\"SYN_865\\\",\\\"description\\\":\\\"OLCI\n        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\n        Collection provides the Sentinel-3 [Synergy Level-2 Aerosol Optical Depth](https://sentinels.copernicus.eu/web/sentinel/level-2-aod)\n        product, which is a downstream development of the Sentinel-2 Level-1 [OLCI\n        Full Resolution](https://sentinels.copernicus.eu/web/sentinel/user-guides/sentinel-3-olci/data-formats/level-1)\n        and [SLSTR Radiances and Brightness Temperatures](https://sentinels.copernicus.eu/web/sentinel/user-guides/Sentinel-3-slstr/data-formats/level-1)\n        products. The dataset provides both retrieved and diagnostic global aerosol\n        parameters at super-pixel (4.5 km x 4.5 km) resolution in a single NetCDF\n        file for all regions over land and ocean free of snow/ice cover, excluding\n        high cloud fraction data. The retrieved and derived aerosol parameters are:\\\\n\\\\n-\n        Aerosol Optical Depth (AOD) at 440, 550, 670, 985, 1600 and 2250 nm\\\\n- Error\n        estimates (i.e. standard deviation) in AOD at 440, 550, 670, 985, 1600 and\n        2250 nm\\\\n- Single Scattering Albedo (SSA) at 440, 550, 670, 985, 1600 and\n        2250 nm\\\\n- Fine-mode AOD at 550nm\\\\n- Aerosol Angstrom parameter between\n        550 and 865nm\\\\n- Dust AOD at 550nm\\\\n- Aerosol absorption optical depth at\n        550nm\\\\n\\\\nAtmospherically corrected nadir surface directional reflectances\n        at 440, 550, 670, 985, 1600 and 2250 nm at super-pixel (4.5 km x 4.5 km) resolution\n        are also provided. More information about the product and data processing\n        can be found in the [User Guide](https://sentinels.copernicus.eu/web/sentinel/level-2-aod)\n        and [Technical Guide](https://sentinel.esa.int/web/sentinel/technical-guides/sentinel-3-synergy/products-algorithms/level-2-aod-algorithms-and-products).\\\\n\\\\nThis\n        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\n        channel Oa03\\\",\\\"center_wavelength\\\":0.4425,\\\"full_width_half_max\\\":0.01},{\\\"name\\\":\\\"SYN_550\\\",\\\"description\\\":\\\"SLSTR\n        nadir and oblique channel S1\\\",\\\"center_wavelength\\\":0.55,\\\"full_width_half_max\\\":0.02},{\\\"name\\\":\\\"SYN_670\\\",\\\"description\\\":\\\"SLSTR\n        nadir and oblique channel S2\\\",\\\"center_wavelength\\\":0.659,\\\"full_width_half_max\\\":0.02},{\\\"name\\\":\\\"SYN_865\\\",\\\"description\\\":\\\"OLCI\n        channel Oa17, SLSTR nadir and oblique channel S2\\\",\\\"center_wavelength\\\":0.865,\\\"full_width_half_max\\\":0.02},{\\\"name\\\":\\\"SYN_1600\\\",\\\"description\\\":\\\"SLSTR\n        nadir and oblique channel S5\\\",\\\"center_wavelength\\\":1.61,\\\"full_width_half_max\\\":0.06},{\\\"name\\\":\\\"SYN_2250\\\",\\\"description\\\":\\\"SLSTR\n        nadir and oblique channel S6\\\",\\\"center_wavelength\\\":2.25,\\\"full_width_half_max\\\":0.05}],\\\"description\\\":\\\"Global\n        aerosol parameters\\\"},\\\"safe-manifest\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"description\\\":\\\"SAFE\n        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\n        global aerosol and surface reflectance at super-pixel (4.5km) resolution (SYNERGY\n        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\n        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\n        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\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"Sentinel-3\n        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\n        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\n        STAC Items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        channels Oa02, Oa03\\\",\\\"center_wavelength\\\":0.45,\\\"full_width_half_max\\\":0.02},{\\\"name\\\":\\\"B2\\\",\\\"description\\\":\\\"OLCI\n        channels Oa06, Oa07, Oa08, Oa09, Oa10\\\",\\\"center_wavelength\\\":0.645,\\\"full_width_half_max\\\":0.035},{\\\"name\\\":\\\"B3\\\",\\\"description\\\":\\\"OLCI\n        channels Oa16, Oa17, Oa18, Oa21\\\",\\\"center_wavelength\\\":0.835,\\\"full_width_half_max\\\":0.055},{\\\"name\\\":\\\"MIR\\\",\\\"description\\\":\\\"SLSTR\n        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\n        Collection provides the Sentinel-3 [Synergy Level-2 10-Day Surface Reflectance\n        and NDVI](https://sentinels.copernicus.eu/web/sentinel/user-guides/sentinel-3-synergy/product-types/level-2-vg1-v10)\n        products, which are SPOT VEGETATION Continuity Products similar to those obtained\n        from the [VEGETATION instrument](https://docs.terrascope.be/#/Satellites/SPOT-VGT/MissionInstruments)\n        onboard the SPOT-4 and SPOT-5 satellites. The primary variables are a maximum\n        Normalized Difference Vegetation Index (NDVI) composite, which is derived\n        from ground reflectance during a 10-day window, and four surface reflectance\n        bands:\\\\n\\\\n- B0 (Blue, 450nm)\\\\n- B2 (Red, 645nm)\\\\n- B3 (NIR, 835nm)\\\\n-\n        MIR (SWIR, 1665nm)\\\\n\\\\nThe four reflectance bands have center wavelengths\n        matching those on the original SPOT VEGETATION instrument. The NDVI variable,\n        which is an indicator of the amount of vegetation, is derived from the B3\n        and B2 bands.\\\\n\\\\n## Data files\\\\n\\\\nThe four reflectance bands and NDVI\n        values are each contained in dedicated NetCDF files. Additional metadata are\n        delivered in annotation NetCDF files, each containing a single variable, including\n        the geometric viewing and illumination conditions, the total water vapour\n        and ozone columns, and the aerosol optical depth.\\\\n\\\\nEach 10-day product\n        is delivered as a set of 10 rectangular scenes:\\\\n\\\\n- AFRICA\\\\n- NORTH_AMERICA\\\\n-\n        SOUTH_AMERICA\\\\n- CENTRAL_AMERICA\\\\n- NORTH_ASIA\\\\n- WEST_ASIA\\\\n- SOUTH_EAST_ASIA\\\\n-\n        ASIAN_ISLANDS\\\\n- AUSTRALASIA\\\\n- EUROPE\\\\n\\\\nMore information about the product\n        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)\n        and [Technical Guide](https://sentinel.esa.int/web/sentinel/technical-guides/sentinel-3-synergy/vgt-s/v10-product).\\\\n\\\\nThis\n        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\n        optical thickness data\\\"},\\\"b0\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"eo:bands\\\":[{\\\"name\\\":\\\"B0\\\",\\\"description\\\":\\\"OLCI\n        channels Oa02, Oa03\\\",\\\"center_wavelength\\\":0.45,\\\"full_width_half_max\\\":0.02}],\\\"description\\\":\\\"Surface\n        Reflectance Data Set associated with VGT-B0 channel\\\"},\\\"b2\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"eo:bands\\\":[{\\\"name\\\":\\\"B2\\\",\\\"description\\\":\\\"OLCI\n        channels Oa06, Oa07, Oa08, Oa09, Oa10\\\",\\\"center_wavelength\\\":0.645,\\\"full_width_half_max\\\":0.035}],\\\"description\\\":\\\"Surface\n        Reflectance Data Set associated with VGT-B2 channel\\\"},\\\"b3\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"eo:bands\\\":[{\\\"name\\\":\\\"B3\\\",\\\"description\\\":\\\"OLCI\n        channels Oa16, Oa17, Oa18, Oa21\\\",\\\"center_wavelength\\\":0.835,\\\"full_width_half_max\\\":0.055}],\\\"description\\\":\\\"Surface\n        Reflectance Data Set associated with VGT-B3 channel\\\"},\\\"og\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"description\\\":\\\"Total\n        Ozone column data\\\"},\\\"sm\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"description\\\":\\\"Status\n        Map data\\\"},\\\"tg\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"description\\\":\\\"Synthesis\n        time data\\\"},\\\"mir\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"eo:bands\\\":[{\\\"name\\\":\\\"MIR\\\",\\\"description\\\":\\\"SLSTR\n        nadir and oblique channels S5, S6\\\",\\\"center_wavelength\\\":1.665,\\\"full_width_half_max\\\":0.085}],\\\"description\\\":\\\"Surface\n        Reflectance Data Set associated with VGT-MIR channel\\\"},\\\"saa\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"description\\\":\\\"Solar\n        azimuth angle data\\\"},\\\"sza\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"description\\\":\\\"Solar\n        zenith angle data\\\"},\\\"vaa\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"description\\\":\\\"View\n        azimuth angle data\\\"},\\\"vza\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"description\\\":\\\"View\n        zenith angle data\\\"},\\\"wvg\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"description\\\":\\\"Total\n        column Water vapour data\\\"},\\\"ndvi\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"eo:bands\\\":[{\\\"name\\\":\\\"B2\\\",\\\"description\\\":\\\"OLCI\n        channels Oa06, Oa07, Oa08, Oa09, Oa10\\\",\\\"center_wavelength\\\":0.645,\\\"full_width_half_max\\\":0.035},{\\\"name\\\":\\\"B3\\\",\\\"description\\\":\\\"OLCI\n        channels Oa16, Oa17, Oa18, Oa21\\\",\\\"center_wavelength\\\":0.835,\\\"full_width_half_max\\\":0.055}],\\\"description\\\":\\\"Normalised\n        difference vegetation index\\\"},\\\"safe-manifest\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"description\\\":\\\"SAFE\n        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\n        10-day surface reflectance and NDVI (SYNERGY V10, a SPOT VEGETATION Continuity\n        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\n        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\n        Land (LRR and LFR) Product User Guide\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/sentinel-3-olci-lfr-l2-netcdf\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"Sentinel-3\n        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\n        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\n        STAC Items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        3 - Chlorophyll absorption maximum, biogeochemistry, vegetation\\\",\\\"center_wavelength\\\":0.4425,\\\"full_width_half_max\\\":0.01},{\\\"name\\\":\\\"Oa10\\\",\\\"description\\\":\\\"Band\n        10 - Chlorophyll fluorescence peak, red edge\\\",\\\"center_wavelength\\\":0.68125,\\\"full_width_half_max\\\":0.0075},{\\\"name\\\":\\\"Oa11\\\",\\\"description\\\":\\\"Band\n        11 - Chlorophyll fluorescence baseline, red edge transition\\\",\\\"center_wavelength\\\":0.70875,\\\"full_width_half_max\\\":0.01},{\\\"name\\\":\\\"Oa12\\\",\\\"description\\\":\\\"Band\n        12 - O2 absorption / clouds, vegetation\\\",\\\"center_wavelength\\\":0.75375,\\\"full_width_half_max\\\":0.0075},{\\\"name\\\":\\\"Oa17\\\",\\\"description\\\":\\\"Band\n        17 - Atmospheric / aerosol correction, clouds, pixel co-registration\\\",\\\"center_wavelength\\\":0.865,\\\"full_width_half_max\\\":0.02},{\\\"name\\\":\\\"Oa18\\\",\\\"description\\\":\\\"Band\n        18 - Water vapour absorption reference. Common reference band with SLSTR.\n        Vegetation monitoring\\\",\\\"center_wavelength\\\":0.885,\\\"full_width_half_max\\\":0.01},{\\\"name\\\":\\\"Oa19\\\",\\\"description\\\":\\\"Band\n        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\n        collection provides Sentinel-3 Full Resolution [OLCI Level-2 Land][olci-l2]\n        products containing data on global vegetation, chlorophyll, and water vapor.\\\\n\\\\n##\n        Data files\\\\n\\\\nThis dataset includes data on three primary variables:\\\\n\\\\n*\n        OLCI global vegetation index file\\\\n* terrestrial Chlorophyll index file\\\\n*\n        integrated water vapor over water file.\\\\n\\\\nEach variable is contained within\n        a separate NetCDF file, and is cataloged as an asset in each Item.\\\\n\\\\nSeveral\n        associated variables are also provided in the annotations data files:\\\\n\\\\n*\n        rectified reflectance for red and NIR channels (RC681 and RC865)\\\\n* classification,\n        quality and science flags (LQSF)\\\\n* common data such as the ortho-geolocation\n        of land pixels, solar and satellite angles, atmospheric and meteorological\n        data, time stamp or instrument information. These variables are inherited\n        from Level-1B products.\\\\n\\\\nThis full resolution product offers a spatial\n        sampling of approximately 300 m.\\\\n\\\\n## Processing overview\\\\n\\\\nThe values\n        in the data files have been converted from Top of Atmosphere radiance to reflectance,\n        and include various corrections for gaseous absorption and pixel classification.\n        More information about the product and data processing can be found in the\n        [User Guide](https://sentinel.esa.int/web/sentinel/user-guides/sentinel-3-olci/product-types/level-2-land)\n        and [Technical Guide](https://sentinel.esa.int/web/sentinel/technical-guides/sentinel-3-olci/level-2/processing).\\\\n\\\\nThis\n        Collection contains Level-2 data in NetCDF files from April 2016 to present.\\\\n\\\\n[olci-l2]:\n        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\n        18 - Water vapour absorption reference. Common reference band with SLSTR.\n        Vegetation monitoring\\\",\\\"center_wavelength\\\":0.885,\\\"full_width_half_max\\\":0.01},{\\\"name\\\":\\\"Oa19\\\",\\\"description\\\":\\\"Band\n        19 - Water vapour absorption, vegetation monitoring (maximum REFLECTANCE)\\\",\\\"center_wavelength\\\":0.9,\\\"full_width_half_max\\\":0.01}],\\\"description\\\":\\\"Integrated\n        water vapour column\\\"},\\\"lqsf\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"description\\\":\\\"Land\n        quality and science flags\\\"},\\\"ogvi\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"eo:bands\\\":[{\\\"name\\\":\\\"Oa03\\\",\\\"description\\\":\\\"Band\n        3 - Chlorophyll absorption maximum, biogeochemistry, vegetation\\\",\\\"center_wavelength\\\":0.4425,\\\"full_width_half_max\\\":0.01},{\\\"name\\\":\\\"Oa10\\\",\\\"description\\\":\\\"Band\n        10 - Chlorophyll fluorescence peak, red edge\\\",\\\"center_wavelength\\\":0.68125,\\\"full_width_half_max\\\":0.0075},{\\\"name\\\":\\\"Oa17\\\",\\\"description\\\":\\\"Band\n        17 - Atmospheric / aerosol correction, clouds, pixel co-registration\\\",\\\"center_wavelength\\\":0.865,\\\"full_width_half_max\\\":0.02}],\\\"description\\\":\\\"OLCI\n        Global Vegetation Index (OGVI)\\\"},\\\"otci\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"eo:bands\\\":[{\\\"name\\\":\\\"Oa10\\\",\\\"description\\\":\\\"Band\n        10 - Chlorophyll fluorescence peak, red edge\\\",\\\"center_wavelength\\\":0.68125,\\\"full_width_half_max\\\":0.0075},{\\\"name\\\":\\\"Oa11\\\",\\\"description\\\":\\\"Band\n        11 - Chlorophyll fluorescence baseline, red edge transition\\\",\\\"center_wavelength\\\":0.70875,\\\"full_width_half_max\\\":0.01},{\\\"name\\\":\\\"Oa12\\\",\\\"description\\\":\\\"Band\n        12 - O2 absorption / clouds, vegetation\\\",\\\"center_wavelength\\\":0.75375,\\\"full_width_half_max\\\":0.0075}],\\\"description\\\":\\\"OLCI\n        Terrestrial Chlorophyll Index (OTCI)\\\"},\\\"gifapar\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"eo:bands\\\":[{\\\"name\\\":\\\"Oa03\\\",\\\"description\\\":\\\"Band\n        3 - Chlorophyll absorption maximum, biogeochemistry, vegetation\\\",\\\"center_wavelength\\\":0.4425,\\\"full_width_half_max\\\":0.01},{\\\"name\\\":\\\"Oa10\\\",\\\"description\\\":\\\"Band\n        10 - Chlorophyll fluorescence peak, red edge\\\",\\\"center_wavelength\\\":0.68125,\\\"full_width_half_max\\\":0.0075},{\\\"name\\\":\\\"Oa17\\\",\\\"description\\\":\\\"Band\n        17 - Atmospheric / aerosol correction, clouds, pixel co-registration\\\",\\\"center_wavelength\\\":0.865,\\\"full_width_half_max\\\":0.02}],\\\"description\\\":\\\"Green\n        instantaneous Fraction of Absorbed Photosynthetically Active Radiation (FAPAR)\\\"},\\\"rc-ogvi\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"eo:bands\\\":[{\\\"name\\\":\\\"Oa10\\\",\\\"description\\\":\\\"Band\n        10 - Chlorophyll fluorescence peak, red edge\\\",\\\"center_wavelength\\\":0.68125,\\\"full_width_half_max\\\":0.0075},{\\\"name\\\":\\\"Oa17\\\",\\\"description\\\":\\\"Band\n        17 - Atmospheric / aerosol correction, clouds, pixel co-registration\\\",\\\"center_wavelength\\\":0.865,\\\"full_width_half_max\\\":0.02}],\\\"description\\\":\\\"Rectified\n        reflectance\\\"},\\\"tie-meteo\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"description\\\":\\\"Tie-point\n        meteo annotations\\\"},\\\"rc-gifapar\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"description\\\":\\\"Rectified\n        reflectance\\\"},\\\"safe-manifest\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"description\\\":\\\"SAFE\n        product manifest\\\"},\\\"tie-geometries\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"description\\\":\\\"Tie-point\n        geometry annotations\\\"},\\\"geo-coordinates\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"description\\\":\\\"Geo\n        coordinate annotations\\\"},\\\"instrument-data\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"description\\\":\\\"Instrument\n        annotations\\\"},\\\"time-coordinates\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"description\\\":\\\"Time\n        coordinate annotations\\\"},\\\"tie-geo-coordinates\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"description\\\":\\\"Tie-point\n        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\n        Land Full Resolution vegetation index, chlorophyll index, and water vapor\n        (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\n        Data License\\\"},{\\\"rel\\\":\\\"about\\\",\\\"href\\\":\\\"https://sentinels.copernicus.eu/web/sentinel/user-guides/sentinel-3-altimetry/product-types\\\",\\\"type\\\":\\\"text/html\\\",\\\"title\\\":\\\"Sentinel-3\n        Land Radar Altimetry Product User Guide\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/sentinel-3-sral-lan-l2-netcdf\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"Sentinel-3\n        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\n        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\n        STAC Items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        Collection provides Sentinel-3 [SRAL Level-2 Land Altimetry](https://sentinel.esa.int/web/sentinel/technical-guides/sentinel-3-altimetry/level-2-algorithms-products)\n        products, which contain data on land radar altimetry measurements. Each product\n        contains three NetCDF files:\\\\n\\\\n- A reduced data file containing a subset\n        of the 1 Hz Ku-band parameters.\\\\n- A standard data file containing the standard\n        1 Hz and 20 Hz Ku- and C-band parameters.\\\\n- An enhanced data file containing\n        the standard 1 Hz and 20 Hz Ku- and C-band parameters along with the waveforms\n        and parameters necessary to reprocess the data.\\\\n\\\\nMore information about\n        the product and data processing can be found in the [User Guide](https://sentinels.copernicus.eu/web/sentinel/user-guides/sentinel-3-altimetry/overview)\n        and [Technical Guide](https://sentinel.esa.int/web/sentinel/technical-guides/sentinel-3-altimetry).\\\\n\\\\nThis\n        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\n        product manifest\\\"},\\\"reduced-measurement\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"description\\\":\\\"Reduced\n        measurement data file\\\",\\\"s3:altimetry_bands\\\":[{\\\"band_width\\\":0.32,\\\"description\\\":\\\"Band\n        Ku - Range measurements\\\",\\\"frequency_band\\\":\\\"Ku\\\",\\\"center_frequency\\\":13.575000064}]},\\\"enhanced-measurement\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"description\\\":\\\"Enhanced\n        measurement data file\\\",\\\"s3:altimetry_bands\\\":[{\\\"band_width\\\":0.29,\\\"description\\\":\\\"Band\n        C - Ionospheric correction\\\",\\\"frequency_band\\\":\\\"C\\\",\\\"center_frequency\\\":5.409999872},{\\\"band_width\\\":0.32,\\\"description\\\":\\\"Band\n        Ku - Range measurements\\\",\\\"frequency_band\\\":\\\"Ku\\\",\\\"center_frequency\\\":13.575000064}]},\\\"standard-measurement\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"description\\\":\\\"Standard\n        measurement data file\\\",\\\"s3:altimetry_bands\\\":[{\\\"band_width\\\":0.29,\\\"description\\\":\\\"Band\n        C - Ionospheric correction\\\",\\\"frequency_band\\\":\\\"C\\\",\\\"center_frequency\\\":5.409999872},{\\\"band_width\\\":0.32,\\\"description\\\":\\\"Band\n        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\n        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\n        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\n        Land Surface Temperature Product User Guide\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/sentinel-3-slstr-lst-l2-netcdf\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"Sentinel-3\n        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\n        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\n        STAC Items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        8 - SST, LST, Active fire\\\",\\\"center_wavelength\\\":10.854,\\\"full_width_half_max\\\":0.776},{\\\"name\\\":\\\"S9\\\",\\\"description\\\":\\\"Band\n        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\n        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)\n        products containing data on land surface temperature measurements on a 1km\n        grid. Radiance is measured in two channels to determine the temperature of\n        the Earth's surface skin in the instrument field of view, where the term \\\\\\\"skin\\\\\\\"\n        refers to the top surface of bare soil or the effective emitting temperature\n        of vegetation canopies as viewed from above.\\\\n\\\\n## Data files\\\\n\\\\nThe dataset\n        includes data on the primary measurement variable, land surface temperature,\n        in a single NetCDF file, `LST_in.nc`. A second file, `LST_ancillary.nc`, contains\n        several ancillary variables:\\\\n\\\\n- Normalized Difference Vegetation Index\\\\n-\n        Surface biome classification\\\\n- Fractional vegetation cover\\\\n- Total water\n        vapor column\\\\n\\\\nIn addition to the primary and ancillary data files, a standard\n        set of annotation data files provide meteorological information, geolocation\n        and time coordinates, geometry information, and quality flags. More information\n        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)\n        and [Technical Guide](https://sentinel.esa.int/web/sentinel/technical-guides/sentinel-3-slstr/level-2/lst-processing).\\\\n\\\\nThis\n        Collection contains Level-2 data in NetCDF files from April 2016 to present.\\\\n\\\\n##\n        STAC Item geometries\\\\n\\\\nThe Collection contains small \\\\\\\"chips\\\\\\\" and\n        long \\\\\\\"stripes\\\\\\\" of data collected along the satellite direction of travel.\n        Approximately five percent of the STAC Items describing long stripes of data\n        contain geometries that encompass a larger area than an exact concave hull\n        of the data extents. This may require additional filtering when searching\n        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\n        8 - SST, LST, Active fire\\\",\\\"center_wavelength\\\":10.854,\\\"full_width_half_max\\\":0.776},{\\\"name\\\":\\\"S9\\\",\\\"description\\\":\\\"Band\n        9 - SST, LST\\\",\\\"center_wavelength\\\":12.0225,\\\"full_width_half_max\\\":0.905}],\\\"description\\\":\\\"Land\n        Surface Temperature (LST) values\\\"},\\\"slstr-met-tx\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"description\\\":\\\"Meteorological\n        parameters regridded onto the 16km tie points\\\"},\\\"safe-manifest\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"description\\\":\\\"SAFE\n        product manifest\\\"},\\\"slstr-time-in\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"description\\\":\\\"Time\n        annotations for the 1km grid\\\"},\\\"slstr-flags-in\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"description\\\":\\\"Global\n        flags for the 1km TIR grid, nadir view\\\"},\\\"lst-ancillary-ds\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"description\\\":\\\"LST\n        ancillary measurement dataset\\\"},\\\"slstr-indices-in\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"description\\\":\\\"Scan,\n        pixel and detector indices annotations for the 1km TIR grid, nadir view\\\"},\\\"slstr-geodetic-in\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"description\\\":\\\"Full\n        resolution geodetic coordinates for the 1km TIR grid, nadir view\\\"},\\\"slstr-geodetic-tx\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"description\\\":\\\"16km\n        geodetic coordinates\\\"},\\\"slstr-geometry-tn\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"description\\\":\\\"16km\n        solar and satellite geometry annotations, nadir view\\\"},\\\"slstr-cartesian-in\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"description\\\":\\\"Full\n        resolution cartesian coordinates for the 1km TIR grid, nadir view\\\"},\\\"slstr-cartesian-tx\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"description\\\":\\\"16km\n        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\n        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\n        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\n        Sea Surface Temperature Product User Guide\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/sentinel-3-slstr-wst-l2-netcdf\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"Sentinel-3\n        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\n        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\n        STAC Items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        7 - SST, LST, Active fire\\\",\\\"center_wavelength\\\":3.742,\\\"full_width_half_max\\\":0.398},{\\\"name\\\":\\\"S8\\\",\\\"description\\\":\\\"Band\n        8 - SST, LST, Active fire\\\",\\\"center_wavelength\\\":10.854,\\\"full_width_half_max\\\":0.776},{\\\"name\\\":\\\"S9\\\",\\\"description\\\":\\\"Band\n        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\n        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)\n        products containing data on sea surface temperature measurements on a 1km\n        grid. Each product consists of a single NetCDF file containing all data variables:\\\\n\\\\n-\n        Sea Surface Temperature (SST) value\\\\n- SST total uncertainty\\\\n- Latitude\n        and longitude coordinates\\\\n- SST time deviation\\\\n- Single Sensor Error Statistic\n        (SSES) bias and standard deviation estimate\\\\n- Contextual parameters such\n        as wind speed at 10 m and fractional sea-ice contamination\\\\n- Quality flag\\\\n-\n        Satellite zenith angle\\\\n- Top Of Atmosphere (TOA) Brightness Temperature\n        (BT)\\\\n- TOA noise equivalent BT\\\\n\\\\nMore information about the product and\n        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)\n        and [Technical Guide](https://sentinel.esa.int/web/sentinel/technical-guides/sentinel-3-slstr/level-2/sst-processing).\\\\n\\\\nThis\n        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\n        7 - SST, LST, Active fire\\\",\\\"center_wavelength\\\":3.742,\\\"full_width_half_max\\\":0.398},{\\\"name\\\":\\\"S8\\\",\\\"description\\\":\\\"Band\n        8 - SST, LST, Active fire\\\",\\\"center_wavelength\\\":10.854,\\\"full_width_half_max\\\":0.776},{\\\"name\\\":\\\"S9\\\",\\\"description\\\":\\\"Band\n        9 - SST, LST\\\",\\\"center_wavelength\\\":12.0225,\\\"full_width_half_max\\\":0.905}],\\\"description\\\":\\\"Skin\n        Sea Surface Temperature (SST) values\\\"},\\\"browse-jpg\\\":{\\\"type\\\":\\\"image/jpeg\\\",\\\"roles\\\":[\\\"thumbnail\\\"],\\\"description\\\":\\\"Preview\n        image produced by the European Organisation for the Exploitation of Meteorological\n        Satellites (EUMETSAT)\\\"},\\\"eop-metadata\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"description\\\":\\\"Metadata\n        produced by the European Organisation for the Exploitation of Meteorological\n        Satellites (EUMETSAT)\\\"},\\\"safe-manifest\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"description\\\":\\\"SAFE\n        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\n        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\n        Data License\\\"},{\\\"rel\\\":\\\"about\\\",\\\"href\\\":\\\"https://sentinels.copernicus.eu/web/sentinel/user-guides/sentinel-3-altimetry/product-types\\\",\\\"type\\\":\\\"text/html\\\",\\\"title\\\":\\\"Sentinel-3\n        Ocean Radar Altimetry Product User Guide\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/sentinel-3-sral-wat-l2-netcdf\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"Sentinel-3\n        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\n        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\n        STAC Items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        Collection provides Sentinel-3 [SRAL Level-2 Ocean Altimetry](https://sentinel.esa.int/web/sentinel/technical-guides/sentinel-3-altimetry/level-2-algorithms-products)\n        products, which contain data on ocean radar altimetry measurements. Each product\n        contains three NetCDF files:\\\\n\\\\n- A reduced data file containing a subset\n        of the 1 Hz Ku-band parameters.\\\\n- A standard data file containing the standard\n        1 Hz and 20 Hz Ku- and C-band parameters.\\\\n- An enhanced data file containing\n        the standard 1 Hz and 20 Hz Ku- and C-band parameters along with the waveforms\n        and parameters necessary to reprocess the data.\\\\n\\\\nMore information about\n        the product and data processing can be found in the [User Guide](https://sentinels.copernicus.eu/web/sentinel/user-guides/sentinel-3-altimetry/overview)\n        and [Technical Guide](https://sentinel.esa.int/web/sentinel/technical-guides/sentinel-3-altimetry).\\\\n\\\\nThis\n        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\n        metadata file produced by the European Organisation for the Exploitation of\n        Meteorological Satellites (EUMETSAT)\\\"},\\\"safe-manifest\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"description\\\":\\\"SAFE\n        product manifest\\\"},\\\"reduced-measurement\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"description\\\":\\\"Reduced\n        measurement data file\\\",\\\"s3:altimetry_bands\\\":[{\\\"band_width\\\":0.32,\\\"description\\\":\\\"Band\n        Ku - Range measurements\\\",\\\"frequency_band\\\":\\\"Ku\\\",\\\"center_frequency\\\":13.575000064}]},\\\"enhanced-measurement\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"description\\\":\\\"Enhanced\n        measurement data file\\\",\\\"s3:altimetry_bands\\\":[{\\\"band_width\\\":0.29,\\\"description\\\":\\\"Band\n        C - Ionospheric correction\\\",\\\"frequency_band\\\":\\\"C\\\",\\\"center_frequency\\\":5.409999872},{\\\"band_width\\\":0.32,\\\"description\\\":\\\"Band\n        Ku - Range measurements\\\",\\\"frequency_band\\\":\\\"Ku\\\",\\\"center_frequency\\\":13.575000064}]},\\\"standard-measurement\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"description\\\":\\\"Standard\n        measurement data file\\\",\\\"s3:altimetry_bands\\\":[{\\\"band_width\\\":0.29,\\\"description\\\":\\\"Band\n        C - Ionospheric correction\\\",\\\"frequency_band\\\":\\\"C\\\",\\\"center_frequency\\\":5.409999872},{\\\"band_width\\\":0.32,\\\"description\\\":\\\"Band\n        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\n        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\n        DAAC - Data Citation and Policies\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/hls2-s30\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"Harmonized\n        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\n        Sentinel Collection Thumbnail\\\"},\\\"geoparquet-items\\\":{\\\"href\\\":\\\"abfs://items/hls2-s30.parquet\\\",\\\"type\\\":\\\"application/x-parquet\\\",\\\"roles\\\":[\\\"stac-items\\\"],\\\"title\\\":\\\"GeoParquet\n        STAC items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        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\n        Landsat Sentinel-2 (HLS) Version 2.0 provides consistent surface reflectance\n        (SR)\\\\nand top of atmosphere (TOA) brightness data from the Operational Land\n        Imager (OLI) aboard the\\\\njoint NASA/USGS Landsat 8 and Landsat 9 satellites\n        and the Multi-Spectral Instrument (MSI)\\\\naboard the ESA (European Space Agency)\n        Sentinel-2A, Sentinel-2B, and Sentinel-2C satellites.\\\\nThe combined measurement\n        enables global observations of the land every 2-3 days at 30 meter\\\\n(m) spatial\n        resolution. The HLS-S30 and HLS-L30 products are gridded to the same resolution\n        and\\\\nMilitary Grid Reference System (MGRS) tiling system and are \\\\\\\"stackable\\\\\\\"\n        for time series analysis.\\\\nThis dataset is in the form of cloud-optimized\n        GeoTIFFs. The HLS v2.0 data is generated by NASA's\\\\nIMPACT team at Marshall\n        Space Flight Center. The product latency is 1.7 days, from the satellite\\\\noverpass\n        to the HLS data availability at NASA's Land Processes Distributed Active Archive\n        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\n        collection contains HLS data collected from Sentinel-2A, Sentinel-2B, and\n        Sentinel-2C.\\\\nHLS data generated from Landsat can be found in a separate\n        collection.\\\\n\\\",\\\"item_assets\\\":{\\\"B01\\\":{\\\"type\\\":\\\"image/tiff; application=geotiff;\n        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;\n        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;\n        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;\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Red-Edge\n        1\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"B05\\\",\\\"center_wavelength\\\":0.7039,\\\"full_width_half_max\\\":0.019}]},\\\"B06\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Red-Edge\n        2\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"B06\\\",\\\"center_wavelength\\\":0.7402,\\\"full_width_half_max\\\":0.018}]},\\\"B07\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Red-Edge\n        3\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"B07\\\",\\\"center_wavelength\\\":0.7825,\\\"full_width_half_max\\\":0.028}]},\\\"B08\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"NIR\n        Broad\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"B08\\\",\\\"common_name\\\":\\\"nir\\\",\\\"center_wavelength\\\":0.8351,\\\"full_width_half_max\\\":0.145}]},\\\"B09\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Water\n        Vapor\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"B09\\\",\\\"center_wavelength\\\":0.945,\\\"full_width_half_max\\\":0.026}]},\\\"B10\\\":{\\\"type\\\":\\\"image/tiff;\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"SWIR\n        1\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"B11\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"center_wavelength\\\":1.6137,\\\"full_width_half_max\\\":0.143}]},\\\"B12\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"SWIR\n        2\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"B12\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"center_wavelength\\\":2.22024,\\\"full_width_half_max\\\":0.242}]},\\\"B8A\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"NIR\n        Narrow\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"B8A\\\",\\\"center_wavelength\\\":0.8648,\\\"full_width_half_max\\\":0.033}]},\\\"SAA\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"SAA\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"SAA\\\"}]},\\\"SZA\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"SZA\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"SZA\\\"}]},\\\"VAA\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"VAA\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"VAA\\\"}]},\\\"VZA\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"VZA\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"VZA\\\"}]},\\\"Fmask\\\":{\\\"type\\\":\\\"image/tiff;\n        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\n        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\n        License\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/ms-buildings\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"Microsoft\n        Building Footprints\\\",\\\"assets\\\":{\\\"delta\\\":{\\\"href\\\":\\\"az://footprints/delta/2023-04-25/ml-buildings.parquet/\\\",\\\"title\\\":\\\"Delta\n        table\\\",\\\"description\\\":\\\"Delta table with latest buildings footprints partitioned\n        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\n        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\n        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\n        Maps is releasing open building footprints around the world. We have detected\n        over 999 million buildings from Bing Maps imagery between 2014 and 2021 including\n        Maxar and Airbus imagery. The data is freely available for download and use\n        under ODbL. This dataset complements our other releases.\\\\n\\\\nFor more information,\n        see the [GlobalMLBuildingFootprints](https://github.com/microsoft/GlobalMLBuildingFootprints/)\n        repository on GitHub.\\\\n\\\\n## Building footprint creation\\\\n\\\\nThe building\n        extraction is done in two stages:\\\\n\\\\n1. Semantic Segmentation \\u2013 Recognizing\n        building pixels on an aerial image using deep neural networks (DNNs)\\\\n2.\n        Polygonization \\u2013 Converting building pixel detections into polygons\\\\n\\\\n**Stage\n        1: Semantic Segmentation**\\\\n\\\\n![Semantic segmentation](https://raw.githubusercontent.com/microsoft/GlobalMLBuildingFootprints/main/images/segmentation.jpg)\\\\n\\\\n**Stage\n        2: Polygonization**\\\\n\\\\n![Polygonization](https://github.com/microsoft/GlobalMLBuildingFootprints/raw/main/images/polygonization.jpg)\\\\n\\\\n##\n        Data assets\\\\n\\\\nThe building footprints are provided as a set of [geoparquet](https://github.com/opengeospatial/geoparquet)\n        datasets in [Delta][delta] table format.\\\\nThe data are partitioned by\\\\n\\\\n1.\n        Region\\\\n2. quadkey at [Bing Map Tiles][tiles] level 9\\\\n\\\\nEach `(Region,\n        quadkey)` pair will have one or more geoparquet files, depending on the density\n        of the of the buildings in that area.\\\\n\\\\nNote that older items in this dataset\n        are *not* spatially partitioned. We recommend using data with a processing\n        date\\\\nof 2023-04-25 or newer. This processing date is part of the URL for\n        each parquet file and is captured in the STAC metadata\\\\nfor each item (see\n        below).\\\\n\\\\n## Delta Format\\\\n\\\\nThe collection-level asset under the `delta`\n        key gives you the fsspec-style URL\\\\nto the Delta table. This can be used\n        to efficiently query for matching partitions\\\\nby `Region` and `quadkey`.\n        See the notebook for an example using Python.\\\\n\\\\n## STAC metadata\\\\n\\\\nThis\n        STAC collection has one STAC item per region. The `msbuildings:region`\\\\nproperty\n        can be used to filter items to a specific region, and the `msbuildings:quadkey`\\\\nproperty\n        can be used to filter items to a specific quadkey (though you can also search\\\\nby\n        the `geometry`).\\\\n\\\\nNote that older STAC items are not spatially partitioned.\n        We recommend filtering on\\\\nitems with an `msbuildings:processing-date` of\n        `2023-04-25` or newer. See the collection\\\\nsummary for `msbuildings:processing-date`\n        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\n        Footprints\\\",\\\"description\\\":\\\"Parquet dataset with the building footprints\n        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\n        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\n        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\n        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\n        Fire Radiative Power Product User Guide\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/sentinel-3-slstr-frp-l2-netcdf\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"Sentinel-3\n        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\n        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\n        STAC Items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        10 - Active fire\\\",\\\"center_wavelength\\\":3.742,\\\"full_width_half_max\\\":0.398},{\\\"name\\\":\\\"S5\\\",\\\"description\\\":\\\"Band\n        5 - Cloud clearing, ice, snow, vegetation monitoring\\\",\\\"center_wavelength\\\":1.6134,\\\"full_width_half_max\\\":0.06068},{\\\"name\\\":\\\"S6\\\",\\\"description\\\":\\\"Band\n        6 - Vegetation state and cloud clearing\\\",\\\"center_wavelength\\\":2.2557,\\\"full_width_half_max\\\":0.05015},{\\\"name\\\":\\\"S7\\\",\\\"description\\\":\\\"Band\n        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\n        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)\n        (FRP) products containing data on fires detected over land and ocean.\\\\n\\\\n##\n        Data files\\\\n\\\\nThe primary measurement data is contained in the `FRP_in.nc`\n        file and provides FRP and uncertainties, projected onto a 1km grid, for fires\n        detected in the thermal infrared (TIR) spectrum over land. Since February\n        2022, FRP and uncertainties are also provided for fires detected in the short\n        wave infrared (SWIR) spectrum over both land and ocean, with the delivered\n        data projected onto a 500m grid. The latter SWIR-detected fire data is only\n        available for night-time measurements and is contained in the `FRP_an.nc`\n        or `FRP_bn.nc` files.\\\\n\\\\nIn addition to the measurement data files, a standard\n        set of annotation data files provide meteorological information, geolocation\n        and time coordinates, geometry information, and quality flags.\\\\n\\\\n## Processing\\\\n\\\\nThe\n        TIR fire detection is based on measurements from the S7 and F1 bands of the\n        [SLSTR instrument](https://sentinels.copernicus.eu/web/sentinel/technical-guides/sentinel-3-slstr/instrument);\n        SWIR fire detection is based on the S5 and S6 bands. More information about\n        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)\n        and [Technical Guide](https://sentinel.esa.int/web/sentinel/technical-guides/sentinel-3-slstr/level-2/frp-processing).\\\\n\\\\nThis\n        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\n        5 - Cloud clearing, ice, snow, vegetation monitoring\\\",\\\"center_wavelength\\\":1.6134,\\\"full_width_half_max\\\":0.06068},{\\\"name\\\":\\\"S6\\\",\\\"description\\\":\\\"Band\n        6 - Vegetation state and cloud clearing\\\",\\\"center_wavelength\\\":2.2557,\\\"full_width_half_max\\\":0.05015},{\\\"name\\\":\\\"S7\\\",\\\"description\\\":\\\"Band\n        7 - SST, LST, Active fire\\\",\\\"center_wavelength\\\":3.742,\\\"full_width_half_max\\\":0.398},{\\\"name\\\":\\\"F1\\\",\\\"description\\\":\\\"Band\n        10 - Active fire\\\",\\\"center_wavelength\\\":3.742,\\\"full_width_half_max\\\":0.398}],\\\"description\\\":\\\"Fire\n        Radiative Power (FRP) dataset\\\"},\\\"slstr-met-tx\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"description\\\":\\\"Meteorological\n        parameters regridded onto the 16km tie points\\\"},\\\"safe-manifest\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"description\\\":\\\"SAFE\n        product manifest\\\"},\\\"slstr-time-in\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"description\\\":\\\"Time\n        annotations for the 1 KM grid\\\"},\\\"slstr-flags-fn\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"description\\\":\\\"Global\n        flags for the 1km F1 grid, nadir view\\\"},\\\"slstr-flags-in\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"description\\\":\\\"Global\n        flags for the 1km TIR grid, nadir view\\\"},\\\"slstr-indices-fn\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"description\\\":\\\"Scan,\n        pixel and detector annotations for the 1km F1 grid, nadir view\\\"},\\\"slstr-indices-in\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"description\\\":\\\"Scan,\n        pixel and detector annotations for the 1km TIR grid, nadir view\\\"},\\\"slstr-geodetic-fn\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"description\\\":\\\"Full\n        resolution geodetic coordinates for the 1km F1 grid, nadir view\\\"},\\\"slstr-geodetic-in\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"description\\\":\\\"Full\n        resolution geodetic coordinates for the 1km TIR grid, nadir view\\\"},\\\"slstr-geodetic-tx\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"description\\\":\\\"16km\n        geodetic coordinates\\\"},\\\"slstr-geometry-tn\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"description\\\":\\\"16km\n        solar and satellite geometry annotations, nadir view\\\"},\\\"slstr-cartesian-fn\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"description\\\":\\\"Full\n        resolution cartesian coordinates for the 1km F1 grid, nadir view\\\"},\\\"slstr-cartesian-in\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"description\\\":\\\"Full\n        resolution cartesian coordinates for the 1km TIR grid, nadir view\\\"},\\\"slstr-cartesian-tx\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"description\\\":\\\"16km\n        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\n        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\n        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\n        Land Surface Reflectance and Aerosol Product User Guide\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/sentinel-3-synergy-syn-l2-netcdf\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"Sentinel-3\n        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\n        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\n        STAC Items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        1 - Aerosol correction, improved water constituent retrieval\\\",\\\"center_wavelength\\\":0.4,\\\"full_width_half_max\\\":0.015},{\\\"name\\\":\\\"Oa02\\\",\\\"description\\\":\\\"Band\n        2 - Yellow substance and detrital pigments (turbidity)\\\",\\\"center_wavelength\\\":0.4125,\\\"full_width_half_max\\\":0.01},{\\\"name\\\":\\\"Oa03\\\",\\\"description\\\":\\\"Band\n        3 - Chlorophyll absorption maximum, biogeochemistry, vegetation\\\",\\\"center_wavelength\\\":0.4425,\\\"full_width_half_max\\\":0.01},{\\\"name\\\":\\\"Oa04\\\",\\\"description\\\":\\\"Band\n        4 - Chlorophyll\\\",\\\"center_wavelength\\\":0.49,\\\"full_width_half_max\\\":0.01},{\\\"name\\\":\\\"Oa05\\\",\\\"description\\\":\\\"Band\n        5 - Chlorophyll, sediment, turbidity, red tide\\\",\\\"center_wavelength\\\":0.51,\\\"full_width_half_max\\\":0.01},{\\\"name\\\":\\\"Oa06\\\",\\\"description\\\":\\\"Band\n        6 - Chlorophyll reference (minimum)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.01},{\\\"name\\\":\\\"Oa07\\\",\\\"description\\\":\\\"Band\n        7 - Sediment loading\\\",\\\"center_wavelength\\\":0.62,\\\"full_width_half_max\\\":0.01},{\\\"name\\\":\\\"Oa08\\\",\\\"description\\\":\\\"Band\n        8 - 2nd Chlorophyll absorption maximum, sediment, yellow substance / vegetation\\\",\\\"center_wavelength\\\":0.665,\\\"full_width_half_max\\\":0.01},{\\\"name\\\":\\\"Oa09\\\",\\\"description\\\":\\\"Band\n        9 - Improved fluorescence retrieval\\\",\\\"center_wavelength\\\":0.67375,\\\"full_width_half_max\\\":0.0075},{\\\"name\\\":\\\"Oa10\\\",\\\"description\\\":\\\"Band\n        10 - Chlorophyll fluorescence peak, red edge\\\",\\\"center_wavelength\\\":0.68125,\\\"full_width_half_max\\\":0.0075},{\\\"name\\\":\\\"Oa11\\\",\\\"description\\\":\\\"Band\n        11 - Chlorophyll fluorescence baseline, red edge transition\\\",\\\"center_wavelength\\\":0.70875,\\\"full_width_half_max\\\":0.01},{\\\"name\\\":\\\"Oa12\\\",\\\"description\\\":\\\"Band\n        12 - O2 absorption / clouds, vegetation\\\",\\\"center_wavelength\\\":0.75375,\\\"full_width_half_max\\\":0.0075},{\\\"name\\\":\\\"Oa13\\\",\\\"description\\\":\\\"Band\n        13 - O2 absorption / aerosol correction\\\",\\\"center_wavelength\\\":0.76125,\\\"full_width_half_max\\\":0.0025},{\\\"name\\\":\\\"Oa16\\\",\\\"description\\\":\\\"Band\n        16 - Atmospheric / aerosol correction\\\",\\\"center_wavelength\\\":0.77875,\\\"full_width_half_max\\\":0.015},{\\\"name\\\":\\\"Oa17\\\",\\\"description\\\":\\\"Band\n        17 - Atmospheric / aerosol correction, clouds, pixel co-registration\\\",\\\"center_wavelength\\\":0.865,\\\"full_width_half_max\\\":0.02},{\\\"name\\\":\\\"Oa18\\\",\\\"description\\\":\\\"Band\n        18 - Water vapour absorption reference. Common reference band with SLSTR.\n        Vegetation monitoring\\\",\\\"center_wavelength\\\":0.885,\\\"full_width_half_max\\\":0.01},{\\\"name\\\":\\\"Oa19\\\",\\\"description\\\":\\\"Band\n        19 - Water vapour absorption, vegetation monitoring (maximum REFLECTANCE)\\\",\\\"center_wavelength\\\":0.9,\\\"full_width_half_max\\\":0.01},{\\\"name\\\":\\\"Oa21\\\",\\\"description\\\":\\\"Band\n        21 - Water vapour absorption, atmospheric / aerosol correction\\\",\\\"center_wavelength\\\":1.02,\\\"full_width_half_max\\\":0.04},{\\\"name\\\":\\\"S1\\\",\\\"description\\\":\\\"Band\n        1 - Cloud screening, vegetation monitoring, aerosol\\\",\\\"center_wavelength\\\":0.55427,\\\"full_width_half_max\\\":0.01926},{\\\"name\\\":\\\"S2\\\",\\\"description\\\":\\\"Band\n        2 - NDVI, vegetation monitoring, aerosol\\\",\\\"center_wavelength\\\":0.65947,\\\"full_width_half_max\\\":0.01925},{\\\"name\\\":\\\"S3\\\",\\\"description\\\":\\\"Band\n        3 - NDVI, cloud flagging, pixel co-registration\\\",\\\"center_wavelength\\\":0.868,\\\"full_width_half_max\\\":0.0206},{\\\"name\\\":\\\"S4\\\",\\\"description\\\":\\\"Band\n        4 - Cirrus detection over land\\\",\\\"center_wavelength\\\":1.3748,\\\"full_width_half_max\\\":0.0208},{\\\"name\\\":\\\"S5\\\",\\\"description\\\":\\\"Band\n        5 - Cloud clearing, ice, snow, vegetation monitoring\\\",\\\"center_wavelength\\\":1.6134,\\\"full_width_half_max\\\":0.06068},{\\\"name\\\":\\\"S6\\\",\\\"description\\\":\\\"Band\n        6 - Vegetation state and cloud clearing\\\",\\\"center_wavelength\\\":2.2557,\\\"full_width_half_max\\\":0.05015},{\\\"name\\\":\\\"SYN01\\\",\\\"description\\\":\\\"OLCI\n        channel Oa01\\\",\\\"center_wavelength\\\":0.4,\\\"full_width_half_max\\\":0.015},{\\\"name\\\":\\\"SYN02\\\",\\\"description\\\":\\\"OLCI\n        channel Oa02\\\",\\\"center_wavelength\\\":0.4125,\\\"full_width_half_max\\\":0.01},{\\\"name\\\":\\\"SYN03\\\",\\\"description\\\":\\\"OLCI\n        channel Oa03\\\",\\\"center_wavelength\\\":0.4425,\\\"full_width_half_max\\\":0.01},{\\\"name\\\":\\\"SYN04\\\",\\\"description\\\":\\\"OLCI\n        channel Oa04\\\",\\\"center_wavelength\\\":0.49,\\\"full_width_half_max\\\":0.01},{\\\"name\\\":\\\"SYN05\\\",\\\"description\\\":\\\"OLCI\n        channel Oa05\\\",\\\"center_wavelength\\\":0.51,\\\"full_width_half_max\\\":0.01},{\\\"name\\\":\\\"SYN06\\\",\\\"description\\\":\\\"OLCI\n        channel Oa06\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.01},{\\\"name\\\":\\\"SYN07\\\",\\\"description\\\":\\\"OLCI\n        channel Oa07\\\",\\\"center_wavelength\\\":0.62,\\\"full_width_half_max\\\":0.01},{\\\"name\\\":\\\"SYN08\\\",\\\"description\\\":\\\"OLCI\n        channel Oa08\\\",\\\"center_wavelength\\\":0.665,\\\"full_width_half_max\\\":0.01},{\\\"name\\\":\\\"SYN09\\\",\\\"description\\\":\\\"OLCI\n        channel Oa09\\\",\\\"center_wavelength\\\":0.67375,\\\"full_width_half_max\\\":0.0075},{\\\"name\\\":\\\"SYN10\\\",\\\"description\\\":\\\"OLCI\n        channel Oa10\\\",\\\"center_wavelength\\\":0.68125,\\\"full_width_half_max\\\":0.0075},{\\\"name\\\":\\\"SYN11\\\",\\\"description\\\":\\\"OLCI\n        channel Oa11\\\",\\\"center_wavelength\\\":0.70875,\\\"full_width_half_max\\\":0.01},{\\\"name\\\":\\\"SYN12\\\",\\\"description\\\":\\\"OLCI\n        channel Oa12\\\",\\\"center_wavelength\\\":0.75375,\\\"full_width_half_max\\\":0.0075},{\\\"name\\\":\\\"SYN13\\\",\\\"description\\\":\\\"OLCI\n        channel Oa16\\\",\\\"center_wavelength\\\":0.7785,\\\"full_width_half_max\\\":0.015},{\\\"name\\\":\\\"SYN14\\\",\\\"description\\\":\\\"OLCI\n        channel Oa17\\\",\\\"center_wavelength\\\":0.865,\\\"full_width_half_max\\\":0.02},{\\\"name\\\":\\\"SYN15\\\",\\\"description\\\":\\\"OLCI\n        channel Oa18\\\",\\\"center_wavelength\\\":0.885,\\\"full_width_half_max\\\":0.01},{\\\"name\\\":\\\"SYN16\\\",\\\"description\\\":\\\"OLCI\n        channel Oa21\\\",\\\"center_wavelength\\\":1.02,\\\"full_width_half_max\\\":0.04},{\\\"name\\\":\\\"SYN17\\\",\\\"description\\\":\\\"SLSTR\n        nadir channel S1\\\",\\\"center_wavelength\\\":0.555,\\\"full_width_half_max\\\":0.02},{\\\"name\\\":\\\"SYN18\\\",\\\"description\\\":\\\"SLSTR\n        nadir channel S2\\\",\\\"center_wavelength\\\":0.659,\\\"full_width_half_max\\\":0.02},{\\\"name\\\":\\\"SYN19\\\",\\\"description\\\":\\\"SLSTR\n        nadir channel S3\\\",\\\"center_wavelength\\\":0.865,\\\"full_width_half_max\\\":0.02},{\\\"name\\\":\\\"SYN20\\\",\\\"description\\\":\\\"SLSTR\n        nadir channel S5\\\",\\\"center_wavelength\\\":1.61,\\\"full_width_half_max\\\":0.06},{\\\"name\\\":\\\"SYN21\\\",\\\"description\\\":\\\"SLSTR\n        nadir channel S6\\\",\\\"center_wavelength\\\":2.25,\\\"full_width_half_max\\\":0.05},{\\\"name\\\":\\\"SYN22\\\",\\\"description\\\":\\\"SLSTR\n        oblique channel S1\\\",\\\"center_wavelength\\\":0.555,\\\"full_width_half_max\\\":0.02},{\\\"name\\\":\\\"SYN23\\\",\\\"description\\\":\\\"SLSTR\n        oblique channel S2\\\",\\\"center_wavelength\\\":0.659,\\\"full_width_half_max\\\":0.02},{\\\"name\\\":\\\"SYN24\\\",\\\"description\\\":\\\"SLSTR\n        oblique channel S3\\\",\\\"center_wavelength\\\":0.865,\\\"full_width_half_max\\\":0.02},{\\\"name\\\":\\\"SYN25\\\",\\\"description\\\":\\\"SLSTR\n        oblique channel S5\\\",\\\"center_wavelength\\\":1.61,\\\"full_width_half_max\\\":0.06},{\\\"name\\\":\\\"SYN26\\\",\\\"description\\\":\\\"SLSTR\n        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\n        Collection provides the Sentinel-3 [Synergy Level-2 Land Surface Reflectance\n        and Aerosol](https://sentinels.copernicus.eu/web/sentinel/user-guides/sentinel-3-synergy/product-types/level-2-syn)\n        product, which contains data on Surface Directional Reflectance, Aerosol Optical\n        Thickness, and an Angstrom coefficient estimate over land.\\\\n\\\\n## Data Files\\\\n\\\\nIndividual\n        NetCDF files for the following variables:\\\\n\\\\n- Surface Directional Reflectance\n        (SDR) with their associated error estimates for the sun-reflective [SLSTR](https://sentinels.copernicus.eu/web/sentinel/user-guides/sentinel-3-slstr)\n        channels (S1 to S6 for both nadir and oblique views, except S4) and for all\n        [OLCI](https://sentinels.copernicus.eu/web/sentinel/user-guides/sentinel-3-olci)\n        channels, except for the oxygen absorption bands Oa13, Oa14, Oa15, and the\n        water vapor bands Oa19 and Oa20.\\\\n- Aerosol optical thickness at 550nm with\n        error estimates.\\\\n- Angstrom coefficient at 550nm.\\\\n\\\\nMore information\n        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)\n        and [Technical Guide](https://sentinel.esa.int/web/sentinel/technical-guides/sentinel-3-synergy/level-2/syn-level-2-product).\\\\n\\\\nThis\n        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\n        stamps annotation\\\"},\\\"syn-amin\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"description\\\":\\\"L2\n        Aerosol model index number data\\\"},\\\"syn-flags\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"description\\\":\\\"Classification\n        and quality Flags associated with OLCI, SLSTR and SYNERGY products\\\"},\\\"syn-ato550\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"eo:bands\\\":[{\\\"name\\\":\\\"S1\\\",\\\"description\\\":\\\"Band\n        1 - Cloud screening, vegetation monitoring, aerosol\\\",\\\"center_wavelength\\\":0.55427,\\\"full_width_half_max\\\":0.01926},{\\\"name\\\":\\\"S2\\\",\\\"description\\\":\\\"Band\n        2 - NDVI, vegetation monitoring, aerosol\\\",\\\"center_wavelength\\\":0.65947,\\\"full_width_half_max\\\":0.01925},{\\\"name\\\":\\\"S3\\\",\\\"description\\\":\\\"Band\n        3 - NDVI, cloud flagging, pixel co-registration\\\",\\\"center_wavelength\\\":0.868,\\\"full_width_half_max\\\":0.0206},{\\\"name\\\":\\\"S5\\\",\\\"description\\\":\\\"Band\n        5 - Cloud clearing, ice, snow, vegetation monitoring\\\",\\\"center_wavelength\\\":1.6134,\\\"full_width_half_max\\\":0.06068},{\\\"name\\\":\\\"S6\\\",\\\"description\\\":\\\"Band\n        6 - Vegetation state and cloud clearing\\\",\\\"center_wavelength\\\":2.2557,\\\"full_width_half_max\\\":0.05015},{\\\"name\\\":\\\"Oa01\\\",\\\"description\\\":\\\"Band\n        1 - Aerosol correction, improved water constituent retrieval\\\",\\\"center_wavelength\\\":0.4,\\\"full_width_half_max\\\":0.015},{\\\"name\\\":\\\"Oa02\\\",\\\"description\\\":\\\"Band\n        2 - Yellow substance and detrital pigments (turbidity)\\\",\\\"center_wavelength\\\":0.4125,\\\"full_width_half_max\\\":0.01},{\\\"name\\\":\\\"Oa03\\\",\\\"description\\\":\\\"Band\n        3 - Chlorophyll absorption maximum, biogeochemistry, vegetation\\\",\\\"center_wavelength\\\":0.4425,\\\"full_width_half_max\\\":0.01},{\\\"name\\\":\\\"Oa04\\\",\\\"description\\\":\\\"Band\n        4 - Chlorophyll\\\",\\\"center_wavelength\\\":0.49,\\\"full_width_half_max\\\":0.01},{\\\"name\\\":\\\"Oa05\\\",\\\"description\\\":\\\"Band\n        5 - Chlorophyll, sediment, turbidity, red tide\\\",\\\"center_wavelength\\\":0.51,\\\"full_width_half_max\\\":0.01},{\\\"name\\\":\\\"Oa06\\\",\\\"description\\\":\\\"Band\n        6 - Chlorophyll reference (minimum)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.01},{\\\"name\\\":\\\"Oa07\\\",\\\"description\\\":\\\"Band\n        7 - Sediment loading\\\",\\\"center_wavelength\\\":0.62,\\\"full_width_half_max\\\":0.01},{\\\"name\\\":\\\"Oa08\\\",\\\"description\\\":\\\"Band\n        8 - 2nd Chlorophyll absorption maximum, sediment, yellow substance / vegetation\\\",\\\"center_wavelength\\\":0.665,\\\"full_width_half_max\\\":0.01},{\\\"name\\\":\\\"Oa09\\\",\\\"description\\\":\\\"Band\n        9 - Improved fluorescence retrieval\\\",\\\"center_wavelength\\\":0.67375,\\\"full_width_half_max\\\":0.0075},{\\\"name\\\":\\\"Oa10\\\",\\\"description\\\":\\\"Band\n        10 - Chlorophyll fluorescence peak, red edge\\\",\\\"center_wavelength\\\":0.68125,\\\"full_width_half_max\\\":0.0075},{\\\"name\\\":\\\"Oa11\\\",\\\"description\\\":\\\"Band\n        11 - Chlorophyll fluorescence baseline, red edge transition\\\",\\\"center_wavelength\\\":0.70875,\\\"full_width_half_max\\\":0.01},{\\\"name\\\":\\\"Oa12\\\",\\\"description\\\":\\\"Band\n        12 - O2 absorption / clouds, vegetation\\\",\\\"center_wavelength\\\":0.75375,\\\"full_width_half_max\\\":0.0075},{\\\"name\\\":\\\"Oa16\\\",\\\"description\\\":\\\"Band\n        16 - Atmospheric / aerosol correction\\\",\\\"center_wavelength\\\":0.77875,\\\"full_width_half_max\\\":0.015},{\\\"name\\\":\\\"Oa17\\\",\\\"description\\\":\\\"Band\n        17 - Atmospheric / aerosol correction, clouds, pixel co-registration\\\",\\\"center_wavelength\\\":0.865,\\\"full_width_half_max\\\":0.02},{\\\"name\\\":\\\"Oa18\\\",\\\"description\\\":\\\"Band\n        18 - Water vapour absorption reference. Common reference band with SLSTR.\n        Vegetation monitoring\\\",\\\"center_wavelength\\\":0.885,\\\"full_width_half_max\\\":0.01},{\\\"name\\\":\\\"Oa21\\\",\\\"description\\\":\\\"Band\n        21 - Water vapour absorption, atmospheric / aerosol correction\\\",\\\"center_wavelength\\\":1.02,\\\"full_width_half_max\\\":0.04}],\\\"description\\\":\\\"Aerosol\n        Optical Thickness Data Set\\\"},\\\"geolocation\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"description\\\":\\\"High\n        resolution georeferencing data\\\"},\\\"safe-manifest\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"description\\\":\\\"SAFE\n        product manifest\\\"},\\\"tiepoints-olci\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"description\\\":\\\"Low\n        resolution georeferencing data and Sun and View angles associated with OLCI\n        products\\\"},\\\"tiepoints-meteo\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"description\\\":\\\"ECMWF\n        meteorology data\\\"},\\\"tiepoints-slstr-n\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"description\\\":\\\"Low\n        resolution georeferencing data and Sun and View angles associated with SLSTR\n        nadir view products\\\"},\\\"tiepoints-slstr-o\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"description\\\":\\\"Low\n        resolution georeferencing data and Sun and View angles associated with SLSTR\n        oblique view products\\\"},\\\"syn-angstrom-exp550\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"eo:bands\\\":[{\\\"name\\\":\\\"S1\\\",\\\"description\\\":\\\"Band\n        1 - Cloud screening, vegetation monitoring, aerosol\\\",\\\"center_wavelength\\\":0.55427,\\\"full_width_half_max\\\":0.01926},{\\\"name\\\":\\\"S2\\\",\\\"description\\\":\\\"Band\n        2 - NDVI, vegetation monitoring, aerosol\\\",\\\"center_wavelength\\\":0.65947,\\\"full_width_half_max\\\":0.01925},{\\\"name\\\":\\\"S3\\\",\\\"description\\\":\\\"Band\n        3 - NDVI, cloud flagging, pixel co-registration\\\",\\\"center_wavelength\\\":0.868,\\\"full_width_half_max\\\":0.0206},{\\\"name\\\":\\\"S5\\\",\\\"description\\\":\\\"Band\n        5 - Cloud clearing, ice, snow, vegetation monitoring\\\",\\\"center_wavelength\\\":1.6134,\\\"full_width_half_max\\\":0.06068},{\\\"name\\\":\\\"S6\\\",\\\"description\\\":\\\"Band\n        6 - Vegetation state and cloud clearing\\\",\\\"center_wavelength\\\":2.2557,\\\"full_width_half_max\\\":0.05015},{\\\"name\\\":\\\"Oa01\\\",\\\"description\\\":\\\"Band\n        1 - Aerosol correction, improved water constituent retrieval\\\",\\\"center_wavelength\\\":0.4,\\\"full_width_half_max\\\":0.015},{\\\"name\\\":\\\"Oa02\\\",\\\"description\\\":\\\"Band\n        2 - Yellow substance and detrital pigments (turbidity)\\\",\\\"center_wavelength\\\":0.4125,\\\"full_width_half_max\\\":0.01},{\\\"name\\\":\\\"Oa03\\\",\\\"description\\\":\\\"Band\n        3 - Chlorophyll absorption maximum, biogeochemistry, vegetation\\\",\\\"center_wavelength\\\":0.4425,\\\"full_width_half_max\\\":0.01},{\\\"name\\\":\\\"Oa04\\\",\\\"description\\\":\\\"Band\n        4 - Chlorophyll\\\",\\\"center_wavelength\\\":0.49,\\\"full_width_half_max\\\":0.01},{\\\"name\\\":\\\"Oa05\\\",\\\"description\\\":\\\"Band\n        5 - Chlorophyll, sediment, turbidity, red tide\\\",\\\"center_wavelength\\\":0.51,\\\"full_width_half_max\\\":0.01},{\\\"name\\\":\\\"Oa06\\\",\\\"description\\\":\\\"Band\n        6 - Chlorophyll reference (minimum)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.01},{\\\"name\\\":\\\"Oa07\\\",\\\"description\\\":\\\"Band\n        7 - Sediment loading\\\",\\\"center_wavelength\\\":0.62,\\\"full_width_half_max\\\":0.01},{\\\"name\\\":\\\"Oa08\\\",\\\"description\\\":\\\"Band\n        8 - 2nd Chlorophyll absorption maximum, sediment, yellow substance / vegetation\\\",\\\"center_wavelength\\\":0.665,\\\"full_width_half_max\\\":0.01},{\\\"name\\\":\\\"Oa09\\\",\\\"description\\\":\\\"Band\n        9 - Improved fluorescence retrieval\\\",\\\"center_wavelength\\\":0.67375,\\\"full_width_half_max\\\":0.0075},{\\\"name\\\":\\\"Oa10\\\",\\\"description\\\":\\\"Band\n        10 - Chlorophyll fluorescence peak, red edge\\\",\\\"center_wavelength\\\":0.68125,\\\"full_width_half_max\\\":0.0075},{\\\"name\\\":\\\"Oa11\\\",\\\"description\\\":\\\"Band\n        11 - Chlorophyll fluorescence baseline, red edge transition\\\",\\\"center_wavelength\\\":0.70875,\\\"full_width_half_max\\\":0.01},{\\\"name\\\":\\\"Oa12\\\",\\\"description\\\":\\\"Band\n        12 - O2 absorption / clouds, vegetation\\\",\\\"center_wavelength\\\":0.75375,\\\"full_width_half_max\\\":0.0075},{\\\"name\\\":\\\"Oa16\\\",\\\"description\\\":\\\"Band\n        16 - Atmospheric / aerosol correction\\\",\\\"center_wavelength\\\":0.77875,\\\"full_width_half_max\\\":0.015},{\\\"name\\\":\\\"Oa17\\\",\\\"description\\\":\\\"Band\n        17 - Atmospheric / aerosol correction, clouds, pixel co-registration\\\",\\\"center_wavelength\\\":0.865,\\\"full_width_half_max\\\":0.02},{\\\"name\\\":\\\"Oa18\\\",\\\"description\\\":\\\"Band\n        18 - Water vapour absorption reference. Common reference band with SLSTR.\n        Vegetation monitoring\\\",\\\"center_wavelength\\\":0.885,\\\"full_width_half_max\\\":0.01},{\\\"name\\\":\\\"Oa21\\\",\\\"description\\\":\\\"Band\n        21 - Water vapour absorption, atmospheric / aerosol correction\\\",\\\"center_wavelength\\\":1.02,\\\"full_width_half_max\\\":0.04}],\\\"description\\\":\\\"Aerosol\n        Angstrom Exponent Data Set\\\"},\\\"syn-s1n-reflectance\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"eo:bands\\\":[{\\\"name\\\":\\\"SYN17\\\",\\\"description\\\":\\\"SLSTR\n        nadir channel S1\\\",\\\"center_wavelength\\\":0.555,\\\"full_width_half_max\\\":0.02}],\\\"description\\\":\\\"Surface\n        directional reflectance associated with SLSTR channel 01 acquired in nadir\n        view\\\"},\\\"syn-s1o-reflectance\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"eo:bands\\\":[{\\\"name\\\":\\\"SYN22\\\",\\\"description\\\":\\\"SLSTR\n        oblique channel S1\\\",\\\"center_wavelength\\\":0.555,\\\"full_width_half_max\\\":0.02}],\\\"description\\\":\\\"Surface\n        directional reflectance associated with SLSTR channel 01 acquired in oblique\n        view\\\"},\\\"syn-s2n-reflectance\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"eo:bands\\\":[{\\\"name\\\":\\\"SYN18\\\",\\\"description\\\":\\\"SLSTR\n        nadir channel S2\\\",\\\"center_wavelength\\\":0.659,\\\"full_width_half_max\\\":0.02}],\\\"description\\\":\\\"Surface\n        directional reflectance associated with SLSTR channel 02 acquired in nadir\n        view\\\"},\\\"syn-s2o-reflectance\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"eo:bands\\\":[{\\\"name\\\":\\\"SYN23\\\",\\\"description\\\":\\\"SLSTR\n        oblique channel S2\\\",\\\"center_wavelength\\\":0.659,\\\"full_width_half_max\\\":0.02}],\\\"description\\\":\\\"Surface\n        directional reflectance associated with SLSTR channel 02 acquired in oblique\n        view\\\"},\\\"syn-s3n-reflectance\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"eo:bands\\\":[{\\\"name\\\":\\\"SYN19\\\",\\\"description\\\":\\\"SLSTR\n        nadir channel S3\\\",\\\"center_wavelength\\\":0.865,\\\"full_width_half_max\\\":0.02}],\\\"description\\\":\\\"Surface\n        directional reflectance associated with SLSTR channel 03 acquired in nadir\n        view\\\"},\\\"syn-s3o-reflectance\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"eo:bands\\\":[{\\\"name\\\":\\\"SYN24\\\",\\\"description\\\":\\\"SLSTR\n        oblique channel S3\\\",\\\"center_wavelength\\\":0.865,\\\"full_width_half_max\\\":0.02}],\\\"description\\\":\\\"Surface\n        directional reflectance associated with SLSTR channel 03 acquired in oblique\n        view\\\"},\\\"syn-s5n-reflectance\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"eo:bands\\\":[{\\\"name\\\":\\\"SYN20\\\",\\\"description\\\":\\\"SLSTR\n        nadir channel S5\\\",\\\"center_wavelength\\\":1.61,\\\"full_width_half_max\\\":0.06}],\\\"description\\\":\\\"Surface\n        directional reflectance associated with SLSTR channel 05 acquired in nadir\n        view\\\"},\\\"syn-s5o-reflectance\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"eo:bands\\\":[{\\\"name\\\":\\\"SYN25\\\",\\\"description\\\":\\\"SLSTR\n        oblique channel S5\\\",\\\"center_wavelength\\\":1.61,\\\"full_width_half_max\\\":0.06}],\\\"description\\\":\\\"Surface\n        directional reflectance associated with SLSTR channel 05 acquired in oblique\n        view\\\"},\\\"syn-s6n-reflectance\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"eo:bands\\\":[{\\\"name\\\":\\\"SYN21\\\",\\\"description\\\":\\\"SLSTR\n        nadir channel S6\\\",\\\"center_wavelength\\\":2.25,\\\"full_width_half_max\\\":0.05}],\\\"description\\\":\\\"Surface\n        directional reflectance associated with SLSTR channel 06 acquired in nadir\n        view\\\"},\\\"syn-s6o-reflectance\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"eo:bands\\\":[{\\\"name\\\":\\\"SYN26\\\",\\\"description\\\":\\\"SLSTR\n        oblique channel S6\\\",\\\"center_wavelength\\\":2.25,\\\"full_width_half_max\\\":0.05}],\\\"description\\\":\\\"Surface\n        directional reflectance associated with SLSTR channel 06 acquired in oblique\n        view\\\"},\\\"syn-oa01-reflectance\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"eo:bands\\\":[{\\\"name\\\":\\\"SYN01\\\",\\\"description\\\":\\\"OLCI\n        channel Oa01\\\",\\\"center_wavelength\\\":0.4,\\\"full_width_half_max\\\":0.015}],\\\"description\\\":\\\"Surface\n        directional reflectance associated with OLCI channel 01\\\"},\\\"syn-oa02-reflectance\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"eo:bands\\\":[{\\\"name\\\":\\\"SYN02\\\",\\\"description\\\":\\\"OLCI\n        channel Oa02\\\",\\\"center_wavelength\\\":0.4125,\\\"full_width_half_max\\\":0.01}],\\\"description\\\":\\\"Surface\n        directional reflectance associated with OLCI channel 02\\\"},\\\"syn-oa03-reflectance\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"eo:bands\\\":[{\\\"name\\\":\\\"SYN03\\\",\\\"description\\\":\\\"OLCI\n        channel Oa03\\\",\\\"center_wavelength\\\":0.4425,\\\"full_width_half_max\\\":0.01}],\\\"description\\\":\\\"Surface\n        directional reflectance associated with OLCI channel 03\\\"},\\\"syn-oa04-reflectance\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"eo:bands\\\":[{\\\"name\\\":\\\"SYN04\\\",\\\"description\\\":\\\"OLCI\n        channel Oa04\\\",\\\"center_wavelength\\\":0.49,\\\"full_width_half_max\\\":0.01}],\\\"description\\\":\\\"Surface\n        directional reflectance associated with OLCI channel 04\\\"},\\\"syn-oa05-reflectance\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"eo:bands\\\":[{\\\"name\\\":\\\"SYN05\\\",\\\"description\\\":\\\"OLCI\n        channel Oa05\\\",\\\"center_wavelength\\\":0.51,\\\"full_width_half_max\\\":0.01}],\\\"description\\\":\\\"Surface\n        directional reflectance associated with OLCI channel 05\\\"},\\\"syn-oa06-reflectance\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"eo:bands\\\":[{\\\"name\\\":\\\"SYN06\\\",\\\"description\\\":\\\"OLCI\n        channel Oa06\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.01}],\\\"description\\\":\\\"Surface\n        directional reflectance associated with OLCI channel 06\\\"},\\\"syn-oa07-reflectance\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"eo:bands\\\":[{\\\"name\\\":\\\"SYN07\\\",\\\"description\\\":\\\"OLCI\n        channel Oa07\\\",\\\"center_wavelength\\\":0.62,\\\"full_width_half_max\\\":0.01}],\\\"description\\\":\\\"Surface\n        directional reflectance associated with OLCI channel 07\\\"},\\\"syn-oa08-reflectance\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"eo:bands\\\":[{\\\"name\\\":\\\"SYN08\\\",\\\"description\\\":\\\"OLCI\n        channel Oa08\\\",\\\"center_wavelength\\\":0.665,\\\"full_width_half_max\\\":0.01}],\\\"description\\\":\\\"Surface\n        directional reflectance associated with OLCI channel 08\\\"},\\\"syn-oa09-reflectance\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"eo:bands\\\":[{\\\"name\\\":\\\"SYN09\\\",\\\"description\\\":\\\"OLCI\n        channel Oa09\\\",\\\"center_wavelength\\\":0.67375,\\\"full_width_half_max\\\":0.0075}],\\\"description\\\":\\\"Surface\n        directional reflectance associated with OLCI channel 09\\\"},\\\"syn-oa10-reflectance\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"eo:bands\\\":[{\\\"name\\\":\\\"SYN10\\\",\\\"description\\\":\\\"OLCI\n        channel Oa10\\\",\\\"center_wavelength\\\":0.68125,\\\"full_width_half_max\\\":0.0075}],\\\"description\\\":\\\"Surface\n        directional reflectance associated with OLCI channel 10\\\"},\\\"syn-oa11-reflectance\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"eo:bands\\\":[{\\\"name\\\":\\\"SYN11\\\",\\\"description\\\":\\\"OLCI\n        channel Oa11\\\",\\\"center_wavelength\\\":0.70875,\\\"full_width_half_max\\\":0.01}],\\\"description\\\":\\\"Surface\n        directional reflectance associated with OLCI channel 11\\\"},\\\"syn-oa12-reflectance\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"eo:bands\\\":[{\\\"name\\\":\\\"SYN12\\\",\\\"description\\\":\\\"OLCI\n        channel Oa12\\\",\\\"center_wavelength\\\":0.75375,\\\"full_width_half_max\\\":0.0075}],\\\"description\\\":\\\"Surface\n        directional reflectance associated with OLCI channel 12\\\"},\\\"syn-oa16-reflectance\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"eo:bands\\\":[{\\\"name\\\":\\\"SYN13\\\",\\\"description\\\":\\\"OLCI\n        channel Oa16\\\",\\\"center_wavelength\\\":0.7785,\\\"full_width_half_max\\\":0.015}],\\\"description\\\":\\\"Surface\n        directional reflectance associated with OLCI channel 16\\\"},\\\"syn-oa17-reflectance\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"eo:bands\\\":[{\\\"name\\\":\\\"SYN14\\\",\\\"description\\\":\\\"OLCI\n        channel Oa17\\\",\\\"center_wavelength\\\":0.865,\\\"full_width_half_max\\\":0.02}],\\\"description\\\":\\\"Surface\n        directional reflectance associated with OLCI channel 17\\\"},\\\"syn-oa18-reflectance\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"eo:bands\\\":[{\\\"name\\\":\\\"SYN15\\\",\\\"description\\\":\\\"OLCI\n        channel Oa18\\\",\\\"center_wavelength\\\":0.885,\\\"full_width_half_max\\\":0.01}],\\\"description\\\":\\\"Surface\n        directional reflectance associated with OLCI channel 18\\\"},\\\"syn-oa21-reflectance\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"eo:bands\\\":[{\\\"name\\\":\\\"SYN16\\\",\\\"description\\\":\\\"OLCI\n        channel Oa21\\\",\\\"center_wavelength\\\":1.02,\\\"full_width_half_max\\\":0.04}],\\\"description\\\":\\\"Surface\n        directional reflectance associated with OLCI channel 21\\\"},\\\"syn-sdr-removed-pixels\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"eo:bands\\\":[{\\\"name\\\":\\\"S1\\\",\\\"description\\\":\\\"Band\n        1 - Cloud screening, vegetation monitoring, aerosol\\\",\\\"center_wavelength\\\":0.55427,\\\"full_width_half_max\\\":0.01926},{\\\"name\\\":\\\"S2\\\",\\\"description\\\":\\\"Band\n        2 - NDVI, vegetation monitoring, aerosol\\\",\\\"center_wavelength\\\":0.65947,\\\"full_width_half_max\\\":0.01925},{\\\"name\\\":\\\"S3\\\",\\\"description\\\":\\\"Band\n        3 - NDVI, cloud flagging, pixel co-registration\\\",\\\"center_wavelength\\\":0.868,\\\"full_width_half_max\\\":0.0206},{\\\"name\\\":\\\"S4\\\",\\\"description\\\":\\\"Band\n        4 - Cirrus detection over land\\\",\\\"center_wavelength\\\":1.3748,\\\"full_width_half_max\\\":0.0208},{\\\"name\\\":\\\"S6\\\",\\\"description\\\":\\\"Band\n        6 - Vegetation state and cloud clearing\\\",\\\"center_wavelength\\\":2.2557,\\\"full_width_half_max\\\":0.05015},{\\\"name\\\":\\\"Oa01\\\",\\\"description\\\":\\\"Band\n        1 - Aerosol correction, improved water constituent retrieval\\\",\\\"center_wavelength\\\":0.4,\\\"full_width_half_max\\\":0.015},{\\\"name\\\":\\\"Oa02\\\",\\\"description\\\":\\\"Band\n        2 - Yellow substance and detrital pigments (turbidity)\\\",\\\"center_wavelength\\\":0.4125,\\\"full_width_half_max\\\":0.01},{\\\"name\\\":\\\"Oa03\\\",\\\"description\\\":\\\"Band\n        3 - Chlorophyll absorption maximum, biogeochemistry, vegetation\\\",\\\"center_wavelength\\\":0.4425,\\\"full_width_half_max\\\":0.01},{\\\"name\\\":\\\"Oa04\\\",\\\"description\\\":\\\"Band\n        4 - Chlorophyll\\\",\\\"center_wavelength\\\":0.49,\\\"full_width_half_max\\\":0.01},{\\\"name\\\":\\\"Oa05\\\",\\\"description\\\":\\\"Band\n        5 - Chlorophyll, sediment, turbidity, red tide\\\",\\\"center_wavelength\\\":0.51,\\\"full_width_half_max\\\":0.01},{\\\"name\\\":\\\"Oa06\\\",\\\"description\\\":\\\"Band\n        6 - Chlorophyll reference (minimum)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.01},{\\\"name\\\":\\\"Oa07\\\",\\\"description\\\":\\\"Band\n        7 - Sediment loading\\\",\\\"center_wavelength\\\":0.62,\\\"full_width_half_max\\\":0.01},{\\\"name\\\":\\\"Oa08\\\",\\\"description\\\":\\\"Band\n        8 - 2nd Chlorophyll absorption maximum, sediment, yellow substance / vegetation\\\",\\\"center_wavelength\\\":0.665,\\\"full_width_half_max\\\":0.01},{\\\"name\\\":\\\"Oa09\\\",\\\"description\\\":\\\"Band\n        9 - Improved fluorescence retrieval\\\",\\\"center_wavelength\\\":0.67375,\\\"full_width_half_max\\\":0.0075},{\\\"name\\\":\\\"Oa10\\\",\\\"description\\\":\\\"Band\n        10 - Chlorophyll fluorescence peak, red edge\\\",\\\"center_wavelength\\\":0.68125,\\\"full_width_half_max\\\":0.0075},{\\\"name\\\":\\\"Oa11\\\",\\\"description\\\":\\\"Band\n        11 - Chlorophyll fluorescence baseline, red edge transition\\\",\\\"center_wavelength\\\":0.70875,\\\"full_width_half_max\\\":0.01},{\\\"name\\\":\\\"Oa12\\\",\\\"description\\\":\\\"Band\n        12 - O2 absorption / clouds, vegetation\\\",\\\"center_wavelength\\\":0.75375,\\\"full_width_half_max\\\":0.0075},{\\\"name\\\":\\\"Oa13\\\",\\\"description\\\":\\\"Band\n        13 - O2 absorption / aerosol correction\\\",\\\"center_wavelength\\\":0.76125,\\\"full_width_half_max\\\":0.0025},{\\\"name\\\":\\\"Oa16\\\",\\\"description\\\":\\\"Band\n        16 - Atmospheric / aerosol correction\\\",\\\"center_wavelength\\\":0.77875,\\\"full_width_half_max\\\":0.015},{\\\"name\\\":\\\"Oa17\\\",\\\"description\\\":\\\"Band\n        17 - Atmospheric / aerosol correction, clouds, pixel co-registration\\\",\\\"center_wavelength\\\":0.865,\\\"full_width_half_max\\\":0.02},{\\\"name\\\":\\\"Oa18\\\",\\\"description\\\":\\\"Band\n        18 - Water vapour absorption reference. Common reference band with SLSTR.\n        Vegetation monitoring\\\",\\\"center_wavelength\\\":0.885,\\\"full_width_half_max\\\":0.01},{\\\"name\\\":\\\"Oa19\\\",\\\"description\\\":\\\"Band\n        19 - Water vapour absorption, vegetation monitoring (maximum REFLECTANCE)\\\",\\\"center_wavelength\\\":0.9,\\\"full_width_half_max\\\":0.01},{\\\"name\\\":\\\"Oa21\\\",\\\"description\\\":\\\"Band\n        21 - Water vapour absorption, atmospheric / aerosol correction\\\",\\\"center_wavelength\\\":1.02,\\\"full_width_half_max\\\":0.04}],\\\"description\\\":\\\"Surface\n        directional reflectance and aerosol parameters associated with removed pixel\\\"},\\\"annotations-removed-pixels\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"description\\\":\\\"Annotations\n        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\n        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\n        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\n        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\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"Sentinel-3\n        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\n        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\n        STAC Items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        channels Oa02, Oa03\\\",\\\"center_wavelength\\\":0.45,\\\"full_width_half_max\\\":0.02},{\\\"name\\\":\\\"B2\\\",\\\"description\\\":\\\"OLCI\n        channels Oa06, Oa07, Oa08, Oa09, Oa10\\\",\\\"center_wavelength\\\":0.645,\\\"full_width_half_max\\\":0.035},{\\\"name\\\":\\\"B3\\\",\\\"description\\\":\\\"OLCI\n        channels Oa16, Oa17, Oa18, Oa21\\\",\\\"center_wavelength\\\":0.835,\\\"full_width_half_max\\\":0.055},{\\\"name\\\":\\\"MIR\\\",\\\"description\\\":\\\"SLSTR\n        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\n        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)\n        product, which is a SPOT VEGETATION Continuity Product containing measurement\n        data similar to that obtained by the [VEGETATION instrument](https://docs.terrascope.be/#/Satellites/SPOT-VGT/MissionInstruments)\n        onboad the SPOT-3 and SPOT-4 satellites. The primary variables are four top\n        of atmosphere reflectance bands:\\\\n\\\\n- B0 (Blue, 450nm)\\\\n- B2 (Red, 645nm)\\\\n-\n        B3 (NIR, 835nm)\\\\n- MIR (SWIR, 1665nm)\\\\n\\\\nThe four reflectance bands have\n        center wavelengths matching those on the original SPOT VEGETATION instrument\n        and have been adapted for scientific applications requiring highly accurate\n        physical measurements through correction for systematic errors and re-sampling\n        to predefined geographic projections. The pixel brightness count is the ground\n        area's apparent reflectance as seen at the top of atmosphere.\\\\n\\\\n## Data\n        files\\\\n\\\\nNetCDF files are provided for the four reflectance bands. Additional\n        metadata are delivered in annotation NetCDF files, each containing a single\n        variable, including the geometric viewing and illumination conditions, the\n        total water vapour and ozone columns, and the aerosol optical depth.\\\\n\\\\nMore\n        information about the product and data processing can be found in the [User\n        Guide](https://sentinels.copernicus.eu/web/sentinel/user-guides/sentinel-3-synergy/product-types/level-2-vgp)\n        and [Technical Guide](https://sentinel.esa.int/web/sentinel/technical-guides/sentinel-3-synergy/level-2/vgt-p-product).\\\\n\\\\nThis\n        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\n        optical thickness data\\\"},\\\"b0\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"eo:bands\\\":[{\\\"name\\\":\\\"B0\\\",\\\"description\\\":\\\"OLCI\n        channels Oa02, Oa03\\\",\\\"center_wavelength\\\":0.45,\\\"full_width_half_max\\\":0.02}],\\\"description\\\":\\\"Top\n        of atmosphere reflectance data set associated with the VGT-B0 channel\\\"},\\\"b2\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"eo:bands\\\":[{\\\"name\\\":\\\"B2\\\",\\\"description\\\":\\\"OLCI\n        channels Oa06, Oa07, Oa08, Oa09, Oa10\\\",\\\"center_wavelength\\\":0.645,\\\"full_width_half_max\\\":0.035}],\\\"description\\\":\\\"Top\n        of atmosphere reflectance data set associated with the VGT-B2 channel\\\"},\\\"b3\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"eo:bands\\\":[{\\\"name\\\":\\\"B3\\\",\\\"description\\\":\\\"OLCI\n        channels Oa16, Oa17, Oa18, Oa21\\\",\\\"center_wavelength\\\":0.835,\\\"full_width_half_max\\\":0.055}],\\\"description\\\":\\\"Top\n        of atmosphere reflectance data set associated with the VGT-B3 channel\\\"},\\\"og\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"description\\\":\\\"Total\n        ozone column data\\\"},\\\"sm\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"description\\\":\\\"Status\n        map data\\\"},\\\"mir\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"eo:bands\\\":[{\\\"name\\\":\\\"MIR\\\",\\\"description\\\":\\\"SLSTR\n        nadir and oblique channels S5, S6\\\",\\\"center_wavelength\\\":1.665,\\\"full_width_half_max\\\":0.085}],\\\"description\\\":\\\"Top\n        of atmosphere Reflectance data set associated with the VGT-MIR channel\\\"},\\\"saa\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"description\\\":\\\"Solar\n        azimuth angle data\\\"},\\\"sza\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"description\\\":\\\"Solar\n        zenith angle data\\\"},\\\"vaa\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"description\\\":\\\"View\n        azimuth angle data\\\"},\\\"vza\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"description\\\":\\\"View\n        zenith angle data\\\"},\\\"wvg\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"description\\\":\\\"Total\n        column water vapour data\\\"},\\\"safe-manifest\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"description\\\":\\\"SAFE\n        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\n        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\n        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\n        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\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"Sentinel-3\n        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\n        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\n        STAC Items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        channels Oa02, Oa03\\\",\\\"center_wavelength\\\":0.45,\\\"full_width_half_max\\\":0.02},{\\\"name\\\":\\\"B2\\\",\\\"description\\\":\\\"OLCI\n        channels Oa06, Oa07, Oa08, Oa09, Oa10\\\",\\\"center_wavelength\\\":0.645,\\\"full_width_half_max\\\":0.035},{\\\"name\\\":\\\"B3\\\",\\\"description\\\":\\\"OLCI\n        channels Oa16, Oa17, Oa18, Oa21\\\",\\\"center_wavelength\\\":0.835,\\\"full_width_half_max\\\":0.055},{\\\"name\\\":\\\"MIR\\\",\\\"description\\\":\\\"SLSTR\n        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\n        Collection provides the Sentinel-3 [Synergy Level-2 1-Day Surface Reflectance\n        and NDVI](https://sentinels.copernicus.eu/web/sentinel/user-guides/sentinel-3-synergy/product-types/level-2-vg1-v10)\n        products, which are SPOT VEGETATION Continuity Products similar to those obtained\n        from the [VEGETATION instrument](https://docs.terrascope.be/#/Satellites/SPOT-VGT/MissionInstruments)\n        onboard the SPOT-4 and SPOT-5 satellites. The primary variables are a maximum\n        Normalized Difference Vegetation Index (NDVI) composite, which is derived\n        from daily ground reflecrtance, and four surface reflectance bands:\\\\n\\\\n-\n        B0 (Blue, 450nm)\\\\n- B2 (Red, 645nm)\\\\n- B3 (NIR, 835nm)\\\\n- MIR (SWIR, 1665nm)\\\\n\\\\nThe\n        four reflectance bands have center wavelengths matching those on the original\n        SPOT VEGETATION instrument. The NDVI variable, which is an indicator of the\n        amount of vegetation, is derived from the B3 and B2 bands.\\\\n\\\\n## Data files\\\\n\\\\nThe\n        four reflectance bands and NDVI values are each contained in dedicated NetCDF\n        files. Additional metadata are delivered in annotation NetCDF files, each\n        containing a single variable, including the geometric viewing and illumination\n        conditions, the total water vapour and ozone columns, and the aerosol optical\n        depth.\\\\n\\\\nEach 1-day product is delivered as a set of 10 rectangular scenes:\\\\n\\\\n-\n        AFRICA\\\\n- NORTH_AMERICA\\\\n- SOUTH_AMERICA\\\\n- CENTRAL_AMERICA\\\\n- NORTH_ASIA\\\\n-\n        WEST_ASIA\\\\n- SOUTH_EAST_ASIA\\\\n- ASIAN_ISLANDS\\\\n- AUSTRALASIA\\\\n- EUROPE\\\\n\\\\nMore\n        information about the product and data processing can be found in the [User\n        Guide](https://sentinels.copernicus.eu/web/sentinel/user-guides/sentinel-3-synergy/product-types/level-2-vg1-v10)\n        and [Technical Guide](https://sentinel.esa.int/web/sentinel/technical-guides/sentinel-3-synergy/vgt-s/vg1-product-surface-reflectance).\\\\n\\\\nThis\n        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\n        optical thickness data\\\"},\\\"b0\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"eo:bands\\\":[{\\\"name\\\":\\\"B0\\\",\\\"description\\\":\\\"OLCI\n        channels Oa02, Oa03\\\",\\\"center_wavelength\\\":0.45,\\\"full_width_half_max\\\":0.02}],\\\"description\\\":\\\"Surface\n        Reflectance Data Set associated with VGT-B0 channel\\\"},\\\"b2\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"eo:bands\\\":[{\\\"name\\\":\\\"B2\\\",\\\"description\\\":\\\"OLCI\n        channels Oa06, Oa07, Oa08, Oa09, Oa10\\\",\\\"center_wavelength\\\":0.645,\\\"full_width_half_max\\\":0.035}],\\\"description\\\":\\\"Surface\n        Reflectance Data Set associated with VGT-B2 channel\\\"},\\\"b3\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"eo:bands\\\":[{\\\"name\\\":\\\"B3\\\",\\\"description\\\":\\\"OLCI\n        channels Oa16, Oa17, Oa18, Oa21\\\",\\\"center_wavelength\\\":0.835,\\\"full_width_half_max\\\":0.055}],\\\"description\\\":\\\"Surface\n        Reflectance Data Set associated with VGT-B3 channel\\\"},\\\"og\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"description\\\":\\\"Total\n        Ozone column data\\\"},\\\"sm\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"description\\\":\\\"Status\n        Map data\\\"},\\\"tg\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"description\\\":\\\"Synthesis\n        time data\\\"},\\\"mir\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"eo:bands\\\":[{\\\"name\\\":\\\"MIR\\\",\\\"description\\\":\\\"SLSTR\n        nadir and oblique channels S5, S6\\\",\\\"center_wavelength\\\":1.665,\\\"full_width_half_max\\\":0.085}],\\\"description\\\":\\\"Surface\n        Reflectance Data Set associated with VGT-MIR channel\\\"},\\\"saa\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"description\\\":\\\"Solar\n        azimuth angle data\\\"},\\\"sza\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"description\\\":\\\"Solar\n        zenith angle data\\\"},\\\"vaa\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"description\\\":\\\"View\n        azimuth angle data\\\"},\\\"vza\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"description\\\":\\\"View\n        zenith angle data\\\"},\\\"wvg\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"description\\\":\\\"Total\n        column Water vapour data\\\"},\\\"ndvi\\\":{\\\"type\\\":\\\"application/x-netcdf\\\",\\\"roles\\\":[\\\"data\\\"],\\\"eo:bands\\\":[{\\\"name\\\":\\\"B2\\\",\\\"description\\\":\\\"OLCI\n        channels Oa06, Oa07, Oa08, Oa09, Oa10\\\",\\\"center_wavelength\\\":0.645,\\\"full_width_half_max\\\":0.035},{\\\"name\\\":\\\"B3\\\",\\\"description\\\":\\\"OLCI\n        channels Oa16, Oa17, Oa18, Oa21\\\",\\\"center_wavelength\\\":0.835,\\\"full_width_half_max\\\":0.055}],\\\"description\\\":\\\"Normalised\n        difference vegetation index\\\"},\\\"safe-manifest\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"description\\\":\\\"SAFE\n        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\n        1-day surface reflectance and NDVI (SYNERGY VG1, a SPOT VEGETATION Continuity\n        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\n        Commons Attribution 4.0 International License\\\"},{\\\"rel\\\":\\\"cite-as\\\",\\\"href\\\":\\\"https://doi.org/10.5281/zenodo.5571936\n        \\\",\\\"type\\\":\\\"text/html\\\",\\\"title\\\":\\\"2020 Data DOI\\\"},{\\\"rel\\\":\\\"cite-as\\\",\\\"href\\\":\\\"https://doi.org/10.5281/zenodo.7254221\\\",\\\"type\\\":\\\"text/html\\\",\\\"title\\\":\\\"2021\n        Data DOI\\\"},{\\\"rel\\\":\\\"about\\\",\\\"href\\\":\\\"https://esa-worldcover.s3.amazonaws.com/v100/2020/docs/WorldCover_PUM_V1.0.pdf\\\",\\\"type\\\":\\\"application/pdf\\\",\\\"title\\\":\\\"2020\n        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\n        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\n        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\n        Product Version 2.0.0 Validation Report\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/esa-worldcover\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"ESA\n        WorldCover\\\",\\\"assets\\\":{\\\"thumbnail\\\":{\\\"href\\\":\\\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/esa-worldcover-thumb.png\\\",\\\"type\\\":\\\"image/png\\\",\\\"roles\\\":[\\\"thumbnail\\\"],\\\"title\\\":\\\"ESA\n        WorldCover thumbnail\\\"},\\\"geoparquet-items\\\":{\\\"href\\\":\\\"abfs://items/esa-worldcover.parquet\\\",\\\"type\\\":\\\"application/x-parquet\\\",\\\"roles\\\":[\\\"stac-items\\\"],\\\"title\\\":\\\"GeoParquet\n        STAC items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        Cover\\\",\\\"Sentinel\\\",\\\"ESA\\\"],\\\"providers\\\":[{\\\"url\\\":\\\"https://esa-worldcover.org\\\",\\\"name\\\":\\\"ESA\\\",\\\"roles\\\":[\\\"licensor\\\",\\\"producer\\\"]},{\\\"url\\\":\\\"https://esa-worldcover.org\\\",\\\"name\\\":\\\"ESA\n        WorldCover Consortium\\\",\\\"roles\\\":[\\\"processor\\\"],\\\"description\\\":\\\"The WorldCover\n        product is developed by a consortium led by VITO Remote Sensing together with\n        partners Brockmann Consult, CS SI, Gamma Remote Sensing AG, IIASA and Wageningen\n        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\n        European Space Agency (ESA) [WorldCover](https://esa-worldcover.org/en) product\n        provides global land cover maps for the years 2020 and 2021 at 10 meter resolution\n        based on the combination of [Sentinel-1](https://sentinel.esa.int/web/sentinel/missions/sentinel-1)\n        radar data and [Sentinel-2](https://sentinel.esa.int/web/sentinel/missions/sentinel-2)\n        imagery. The discrete classification maps provide 11 classes defined using\n        the Land Cover Classification System (LCCS) developed by the United Nations\n        (UN) Food and Agriculture Organization (FAO). The map images are stored in\n        [cloud-optimized GeoTIFF](https://www.cogeo.org/) format.\\\\n\\\\nThe WorldCover\n        product is developed by a consortium of European service providers and research\n        organizations. [VITO](https://remotesensing.vito.be/) (Belgium) is the prime\n        contractor of the WorldCover consortium together with [Brockmann Consult](https://www.brockmann-consult.de/)\n        (Germany), [CS SI](https://www.c-s.fr/) (France), [Gamma Remote Sensing AG](https://www.gamma-rs.ch/)\n        (Switzerland), [International Institute for Applied Systems Analysis](https://www.iiasa.ac.at/)\n        (Austria), and [Wageningen University](https://www.wur.nl/nl/Wageningen-University.htm)\n        (The Netherlands).\\\\n\\\\nTwo versions of the WorldCover product are available:\\\\n\\\\n-\n        WorldCover 2020 produced using v100 of the algorithm\\\\n  - [WorldCover 2020\n        v100 User Manual](https://esa-worldcover.s3.eu-central-1.amazonaws.com/v100/2020/docs/WorldCover_PUM_V1.0.pdf)\\\\n\n        \\ - [WorldCover 2020 v100 Validation Report](<https://esa-worldcover.s3.eu-central-1.amazonaws.com/v100/2020/docs/WorldCover_PVR_V1.1.pdf>)\\\\n\\\\n-\n        WorldCover 2021 produced using v200 of the algorithm\\\\n  - [WorldCover 2021\n        v200 User Manual](<https://esa-worldcover.s3.eu-central-1.amazonaws.com/v200/2021/docs/WorldCover_PUM_V2.0.pdf>)\\\\n\n        \\ - [WorldCover 2021 v200 Validaton Report](<https://esa-worldcover.s3.eu-central-1.amazonaws.com/v200/2021/docs/WorldCover_PVR_V2.0.pdf>)\\\\n\\\\nSince\n        the WorldCover maps for 2020 and 2021 were generated with different algorithm\n        versions (v100 and v200, respectively), changes between the maps include both\n        changes in real land cover and changes due to the used algorithms.\\\\n\\\",\\\"item_assets\\\":{\\\"map\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Land\n        Cover Classes\\\",\\\"description\\\":\\\"Discrete classification according to the\n        Land Cover Classification System scheme developed by the United Nations Food\n        and Agriculture Organization\\\",\\\"raster:bands\\\":[{\\\"name\\\":\\\"Band1\\\",\\\"nodata\\\":0,\\\"sampling\\\":\\\"area\\\",\\\"data_type\\\":\\\"uint8\\\",\\\"description\\\":\\\"Classification\n        values\\\",\\\"spatial_resolution\\\":10}],\\\"classification:classes\\\":[{\\\"value\\\":10,\\\"color-hint\\\":\\\"006400\\\",\\\"description\\\":\\\"Tree\n        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\n        / sparse vegetation\\\"},{\\\"value\\\":70,\\\"color-hint\\\":\\\"F0F0F0\\\",\\\"description\\\":\\\"Snow\n        and ice\\\"},{\\\"value\\\":80,\\\"color-hint\\\":\\\"0064C8\\\",\\\"description\\\":\\\"Permanent\n        water bodies\\\"},{\\\"value\\\":90,\\\"color-hint\\\":\\\"0096A0\\\",\\\"description\\\":\\\"Herbaceous\n        wetland\\\"},{\\\"value\\\":95,\\\"color-hint\\\":\\\"00CF75\\\",\\\"description\\\":\\\"Mangroves\\\"},{\\\"value\\\":100,\\\"color-hint\\\":\\\"FAE6A0\\\",\\\"description\\\":\\\"Moss\n        and lichen\\\"}]},\\\"input_quality\\\":{\\\"type\\\":\\\"image/tiff; application=geotiff;\n        profile=cloud-optimized\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"Classification\n        Input Data Quality\\\",\\\"description\\\":\\\"Per pixel quality indicator showing\n        the quality of the input data.\\\",\\\"raster:bands\\\":[{\\\"name\\\":\\\"Band1\\\",\\\"nodata\\\":-1,\\\"sampling\\\":\\\"area\\\",\\\"data_type\\\":\\\"int16\\\",\\\"description\\\":\\\"Number\n        of Sentinel-1 GAMMA0 observations used in the classification workflow\\\",\\\"spatial_resolution\\\":60},{\\\"name\\\":\\\"Band2\\\",\\\"nodata\\\":-1,\\\"sampling\\\":\\\"area\\\",\\\"data_type\\\":\\\"int16\\\",\\\"description\\\":\\\"Number\n        of Sentinel-2 L2A observations used in the classification workflow\\\",\\\"spatial_resolution\\\":60},{\\\"name\\\":\\\"Band3\\\",\\\"nodata\\\":-1,\\\"sampling\\\":\\\"area\\\",\\\"data_type\\\":\\\"int16\\\",\\\"description\\\":\\\"Percentage\n        (0-100) of invalid S2 observations discarded in the classification workflow\n        (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\n        land cover product at 10 meter resolution based on Sentinel-1 and Sentinel-2\n        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\\\"}]}\"\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '205481'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:07:10 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150710Z-r17d779659c7hhsdhC1DEN7tww000000062g000000002r5a\n    status:\n      code: 200\n      message: OK\nversion: 1\n"
  },
  {
    "path": "tests/cassettes/test_client/TestAPICollectionSearch.test_search.yaml",
    "content": "interactions:\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://emc.spacebel.be/\n  response:\n    body:\n      string: \"{\\n  \\\"extent\\\": {\\n    \\\"spatial\\\": {\\\"bbox\\\": [[\\n      -180,\\n      -90,\\n\n        \\     180,\\n      90\\n    ]]},\\n    \\\"temporal\\\": {\\\"interval\\\": [[\\n      null,\\n\n        \\     null\\n    ]]}\\n  },\\n  \\\"stac_version\\\": \\\"1.0.0\\\",\\n  \\\"license\\\":\n        \\\"various\\\",\\n  \\\"description\\\": \\\"FedEO Clearinghouse provides interoperable\n        access, following ISO/OGC interface guidelines, to Earth Observation metadata\\\",\\n\n        \\ \\\"links\\\": [\\n    {\\n      \\\"rel\\\": \\\"self\\\",\\n      \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n\n        \\     \\\"type\\\": \\\"application/json\\\",\\n      \\\"title\\\": \\\"This document\\\"\\n\n        \\   },\\n    {\\n      \\\"rel\\\": \\\"search\\\",\\n      \\\"href\\\": \\\"https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%2Bxml\\\",\\n\n        \\     \\\"type\\\": \\\"application/opensearchdescription+xml\\\",\\n      \\\"title\\\":\n        \\\"OpenSearch Description Document\\\"\\n    },\\n    {\\n      \\\"rel\\\": \\\"service-desc\\\",\\n\n        \\     \\\"href\\\": \\\"https://emc.spacebel.be/api?httpAccept=application/vnd.oai.openapi%2Bjson;version=3.0\\\",\\n\n        \\     \\\"type\\\": \\\"application/vnd.oai.openapi+json;version=3.0\\\",\\n      \\\"title\\\":\n        \\\"OpenAPI definition in JSON format\\\"\\n    },\\n    {\\n      \\\"rel\\\": \\\"service-desc\\\",\\n\n        \\     \\\"href\\\": \\\"https://emc.spacebel.be/api?httpAccept=application/json;profile=http://explain.z3950.org/dtd/2.0/\\\",\\n\n        \\     \\\"type\\\": \\\"application/json;profile=\\\\\\\"http://explain.z3950.org/dtd/2.0/\\\\\\\"\\\",\\n\n        \\     \\\"title\\\": \\\"Explain Document\\\"\\n    },\\n    {\\n      \\\"rel\\\": \\\"service-desc\\\",\\n\n        \\     \\\"href\\\": \\\"https://emc.spacebel.be/api?httpAccept=application/sru%2Bxml\\\",\\n\n        \\     \\\"type\\\": \\\"application/sru+xml\\\",\\n      \\\"title\\\": \\\"Explain Document\\\"\\n\n        \\   },\\n    {\\n      \\\"rel\\\": \\\"data\\\",\\n      \\\"href\\\": \\\"https://emc.spacebel.be/collections\\\",\\n\n        \\     \\\"type\\\": \\\"application/json\\\",\\n      \\\"title\\\": \\\"Metadata about the\n        feature collections\\\"\\n    },\\n    {\\n      \\\"rel\\\": \\\"data\\\",\\n      \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections\\\",\\n      \\\"type\\\": \\\"application/ld+json\\\",\\n\n        \\     \\\"title\\\": \\\"Metadata about the feature collections\\\"\\n    },\\n    {\\n\n        \\     \\\"rel\\\": \\\"data\\\",\\n      \\\"href\\\": \\\"https://emc.spacebel.be/collections\\\",\\n\n        \\     \\\"type\\\": \\\"application/rdf+xml\\\",\\n      \\\"title\\\": \\\"Metadata about\n        the feature collections\\\"\\n    },\\n    {\\n      \\\"rel\\\": \\\"data\\\",\\n      \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections\\\",\\n      \\\"type\\\": \\\"text/turtle\\\",\\n\n        \\     \\\"title\\\": \\\"Metadata about the feature collections\\\"\\n    },\\n    {\\n\n        \\     \\\"rel\\\": \\\"conformance\\\",\\n      \\\"href\\\": \\\"https://emc.spacebel.be/conformance\\\",\\n\n        \\     \\\"type\\\": \\\"application/json\\\",\\n      \\\"title\\\": \\\"OGC conformance\n        classes implemented by this API\\\"\\n    },\\n    {\\n      \\\"rel\\\": \\\"service-doc\\\",\\n\n        \\     \\\"href\\\": \\\"https://emc.spacebel.be/readme.html\\\",\\n      \\\"type\\\":\n        \\\"text/html\\\",\\n      \\\"title\\\": \\\"API Documentation\\\"\\n    },\\n    {\\n      \\\"rel\\\":\n        \\\"service-doc\\\",\\n      \\\"href\\\": \\\"https://emc.spacebel.be/index.html\\\",\\n\n        \\     \\\"type\\\": \\\"text/html\\\",\\n      \\\"title\\\": \\\"API Documentation (Jupyter)\\\"\\n\n        \\   },\\n    {\\n      \\\"rel\\\": \\\"service-doc\\\",\\n      \\\"href\\\": \\\"https://redocly.github.io/redoc/?url=https://emc.spacebel.be/api&nocors\\\",\\n\n        \\     \\\"type\\\": \\\"text/html\\\",\\n      \\\"title\\\": \\\"API documentation in ReDoc\n        format\\\"\\n    },\\n    {\\n      \\\"rel\\\": \\\"service-doc\\\",\\n      \\\"href\\\":\n        \\\"http://petstore.swagger.io/?url=https://emc.spacebel.be/api\\\",\\n      \\\"type\\\":\n        \\\"text/html\\\",\\n      \\\"title\\\": \\\"API documentation in Swagger.io format\\\"\\n\n        \\   },\\n    {\\n      \\\"rel\\\": \\\"alternate\\\",\\n      \\\"href\\\": \\\"https://emc.spacebel.be?httpAccept=text/html\\\",\\n\n        \\     \\\"type\\\": \\\"text/html\\\",\\n      \\\"title\\\": \\\"Landing Page in HTML media\n        type.\\\"\\n    },\\n    {\\n      \\\"rel\\\": \\\"alternate\\\",\\n      \\\"href\\\": \\\"https://emc.spacebel.be?httpAccept=application/ld%2Bjson\\\",\\n\n        \\     \\\"type\\\": \\\"application/ld+json\\\",\\n      \\\"title\\\": \\\"Landing Page\n        in JSON-LD media type.\\\"\\n    },\\n    {\\n      \\\"method\\\": \\\"GET\\\",\\n      \\\"rel\\\":\n        \\\"search\\\",\\n      \\\"href\\\": \\\"https://emc.spacebel.be/search\\\",\\n      \\\"type\\\":\n        \\\"application/geo+json\\\",\\n      \\\"title\\\": \\\"STAC Search\\\"\\n    },\\n    {\\n\n        \\     \\\"method\\\": \\\"POST\\\",\\n      \\\"rel\\\": \\\"search\\\",\\n      \\\"href\\\": \\\"https://emc.spacebel.be/search\\\",\\n\n        \\     \\\"type\\\": \\\"application/geo+json\\\",\\n      \\\"title\\\": \\\"STAC Search\\\"\\n\n        \\   },\\n    {\\n      \\\"rel\\\": \\\"child\\\",\\n      \\\"href\\\": \\\"https://emc.spacebel.be/series\\\",\\n\n        \\     \\\"type\\\": \\\"application/json\\\",\\n      \\\"title\\\": \\\"Collections\\\"\\n\n        \\   },\\n    {\\n      \\\"rel\\\": \\\"child\\\",\\n      \\\"href\\\": \\\"https://emc.spacebel.be/services\\\",\\n\n        \\     \\\"type\\\": \\\"application/json\\\",\\n      \\\"title\\\": \\\"Services\\\"\\n    },\\n\n        \\   {\\n      \\\"rel\\\": \\\"root\\\",\\n      \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n\n        \\     \\\"type\\\": \\\"application/json\\\"\\n    }\\n  ],\\n  \\\"id\\\": \\\"fedeo\\\",\\n\n        \\ \\\"conformsTo\\\": [\\n    \\\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core\\\",\\n\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\n        \\   \\\"http://www.opengis.net/spec/ogcapi_common-2/1.0/conf/collections\\\",\\n\n        \\   \\\"http://www.opengis.net/spec/ogcapi-common-2/1.0/conf/simple-query\\\",\\n\n        \\   \\\"http://www.opengis.net/spec/ogcapi-records-1/1.0/req/cql-filter\\\",\\n\n        \\   \\\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson\\\",\\n\n        \\   \\\"http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/features-filter\\\",\\n\n        \\   \\\"http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter\\\",\\n    \\\"https://api.stacspec.org/v1.0.0/core\\\",\\n\n        \\   \\\"https://api.stacspec.org/v1.0.0/ogcapi-features\\\",\\n    \\\"https://api.stacspec.org/v1.0.0/collections\\\",\\n\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\n        \\   \\\"https://api.stacspec.org/v1.0.0-rc.1/collection-search#free-text\\\",\\n\n        \\   \\\"https://api.stacspec.org/v1.0.0-rc.1/collection-search#sort\\\",\\n    \\\"https://api.stacspec.org/v1.0.0/item-search\\\",\\n\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\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\n        \\   \\\"http://www.opengis.net/spec/cql2/1.0/conf/advanced-comparison-operators\\\",\\n\n        \\   \\\"https://api.stacspec.org/v1.0.0/item-search#sort\\\",\\n    \\\"https://api.stacspec.org/v1.0.0/ogcapi-features#sort\\\"\\n\n        \\ ],\\n  \\\"title\\\": \\\"FedEO Clearinghouse\\\",\\n  \\\"type\\\": \\\"Catalog\\\"\\n}\"\n    headers:\n      Access-Control-Allow-Headers:\n      - X-PINGOTHER, Content-Type, Authorization, Accept\n      Access-Control-Allow-Methods:\n      - POST,GET,PUT,HEAD,OPTIONS,DELETE\n      Access-Control-Allow-Origin:\n      - '*'\n      Cache-Control:\n      - no-cache, no-store, max-age=0, must-revalidate\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '5868'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:07:13 GMT\n      Expires:\n      - '0'\n      Pragma:\n      - no-cache\n      Server:\n      - openresty\n      Strict-Transport-Security:\n      - max-age=31536000 ; includeSubDomains\n      X-Content-Type-Options:\n      - nosniff\n      X-Frame-Options:\n      - DENY\n      X-Served-By:\n      - emc.spacebel.be\n      X-XSS-Protection:\n      - 1; mode=block\n    status:\n      code: 200\n      message: ''\nversion: 1\n"
  },
  {
    "path": "tests/cassettes/test_client/TestAPISearch.test_search_max_items_unlimited_default.yaml",
    "content": "interactions:\n- request:\n    body: '{\"bbox\": [-73.21, 43.99, -73.12, 45.05], \"datetime\": \"2014-01-01T00:00:00Z/2020-12-31T23:59:59Z\",\n      \"collections\": [\"naip\"]}'\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '122'\n      Content-Type:\n      - application/json\n      User-Agent:\n      - python-requests/2.32.4\n    method: POST\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/search\n  response:\n    body:\n      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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\"}]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '20103'\n      Content-Type:\n      - application/geo+json\n      Date:\n      - Thu, 31 Jul 2025 15:07:12 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150711Z-r17d779659c22gb9hC1DENxd5s00000004gg000000007we5\n    status:\n      code: 200\n      message: OK\nversion: 1\n"
  },
  {
    "path": "tests/cassettes/test_client/TestConformsTo.test_changing_conforms_to_changes_behavior.yaml",
    "content": "interactions:\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://earth-search.aws.element84.com/v0\n  response:\n    body:\n      string: '{\"stac_version\":\"1.0.0-beta.2\",\"stac_api_version\":\"0.9.0\",\"id\":\"earth-search\",\"title\":\"Earth\n        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/\"}]}'\n    headers:\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Origin:\n      - '*'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '1180'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:07:35 GMT\n      Via:\n      - 1.1 95ab38d462185df6df78ba1102868640.cloudfront.net (CloudFront)\n      X-Amz-Cf-Id:\n      - LjK4wU3-3pn_Eqy6m40WKcbFih6nNYTxiNE1wgKg-q8n9BLoeoG1Ug==\n      X-Amz-Cf-Pop:\n      - DEN52-C1\n      X-Amzn-Trace-Id:\n      - Root=1-688b86b6-6ded274a267a4c596cd5293d;Parent=5f6c5d12de5b0536;Sampled=0;Lineage=1:308471e4:0\n      X-Cache:\n      - Miss from cloudfront\n      x-amz-apigw-id:\n      - OlH8pEwcvHcERGA=\n      x-amzn-RequestId:\n      - bcb21656-12a7-4b89-918e-7d06fc4d2529\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://earth-search.aws.element84.com/v0/collections/sentinel-s2-l2a\n  response:\n    body:\n      string: '{\"id\":\"sentinel-s2-l2a\",\"stac_version\":\"1.0.0-beta.2\",\"description\":\"Sentinel-2a\n        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\n        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\n        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\n        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\n        JSON metadata\",\"type\":\"application/json\",\"roles\":[\"metadata\"]},\"metadata\":{\"title\":\"Original\n        XML metadata\",\"type\":\"application/xml\",\"roles\":[\"metadata\"]},\"visual\":{\"title\":\"True\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        Optical Thickness (AOT)\",\"type\":\"image/jp2\",\"roles\":[\"data\"]},\"WVP\":{\"title\":\"Water\n        Vapour (WVP)\",\"type\":\"image/jp2\",\"roles\":[\"data\"]},\"SCL\":{\"title\":\"Scene Classification\n        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\"}'\n    headers:\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Origin:\n      - '*'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '5465'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:07:35 GMT\n      Via:\n      - 1.1 e466a87164c3f9591e3c8ac45a4b2074.cloudfront.net (CloudFront)\n      X-Amz-Cf-Id:\n      - tmEmvLjo_kFtWK0AdgwBQLEZ2KRTOmITNOVqYYzuvRX3olGrBiplPw==\n      X-Amz-Cf-Pop:\n      - DEN52-C1\n      X-Amzn-Trace-Id:\n      - Root=1-688b86b7-6252f0cc7ac2831c416c5900;Parent=3e545cbb2cece886;Sampled=0;Lineage=1:308471e4:0\n      X-Cache:\n      - Miss from cloudfront\n      x-amz-apigw-id:\n      - OlH8rEWKvHcESCQ=\n      x-amzn-RequestId:\n      - 161017ab-43a3-4c21-8ed0-9f2a64158488\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://earth-search.aws.element84.com/v0/collections\n  response:\n    body:\n      string: '{\"collections\":[{\"id\":\"sentinel-s2-l2a\",\"stac_version\":\"1.0.0-beta.2\",\"description\":\"Sentinel-2a\n        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\n        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\n        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\n        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\n        JSON metadata\",\"type\":\"application/json\",\"roles\":[\"metadata\"]},\"metadata\":{\"title\":\"Original\n        XML metadata\",\"type\":\"application/xml\",\"roles\":[\"metadata\"]},\"visual\":{\"title\":\"True\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        Optical Thickness (AOT)\",\"type\":\"image/jp2\",\"roles\":[\"data\"]},\"WVP\":{\"title\":\"Water\n        Vapour (WVP)\",\"type\":\"image/jp2\",\"roles\":[\"data\"]},\"SCL\":{\"title\":\"Scene Classification\n        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\n        and Sentinel-2b imagery, processed to Level 1C (Top-Of-Atmosphere Geometrically\n        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\n        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\n        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\n        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\n        JSON metadata\",\"type\":\"application/json\",\"roles\":[\"metadata\"]},\"metadata\":{\"title\":\"Original\n        XML metadata\",\"type\":\"application/xml\",\"roles\":[\"metadata\"]},\"B01\":{\"title\":\"Band\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        and Sentinel-2b imagery, processed to Level 2A (Surface Reflectance) and converted\n        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\n        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\n        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\n        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\n        JSON metadata\",\"type\":\"application/json\",\"roles\":[\"metadata\"]},\"metadata\":{\"title\":\"Original\n        XML metadata\",\"type\":\"application/xml\",\"roles\":[\"metadata\"]},\"visual\":{\"title\":\"True\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        Optical Thickness (AOT)\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"]},\"WVP\":{\"title\":\"Water\n        Vapour (WVP)\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"]},\"SCL\":{\"title\":\"Scene\n        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\n        L1 Collection-1 imagery radiometrically calibrated and orthorectified using\n        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\n        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\n        L1 Collection-1\",\"keywords\":[\"landsat\",\"earth observation\",\"usgs\"],\"providers\":[{\"name\":\"USGS\",\"roles\":[\"producer\"],\"url\":\"https://landsat.usgs.gov/\"},{\"name\":\"Planet\n        Labs\",\"roles\":[\"processor\"],\"url\":\"https://github.com/landsat-pds/landsat_ingestor\"},{\"name\":\"AWS\",\"roles\":[\"host\"],\"url\":\"https://landsatonaws.com/\"},{\"name\":\"Element\n        84\",\"roles\":[\"processor\"],\"url\":\"https://element84.com/\"}],\"summaries\":{\"gsd\":[30],\"platform\":[\"landsat-8\"],\"instruments\":[\"oli\",\"tirs\"]},\"item_assets\":{\"index\":{\"type\":\"text/html\",\"title\":\"HTML\n        index page\"},\"thumbnail\":{\"title\":\"Thumbnail image\",\"type\":\"image/jpeg\"},\"ANG\":{\"title\":\"Angle\n        coefficients file\",\"type\":\"text/plain\"},\"MTL\":{\"title\":\"original metadata\n        file\",\"type\":\"text/plain\"},\"BQA\":{\"title\":\"Band quality data\",\"type\":\"image/tiff;\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        11 (lwir)\"}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2013-06-01T00:00:00Z\",null]]}},\"license\":\"PDDL-1.0\"}],\"links\":[]}'\n    headers:\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Origin:\n      - '*'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '19072'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:07:35 GMT\n      Via:\n      - 1.1 9d8f66b0c71d2e8a1b8c6f76102da8ca.cloudfront.net (CloudFront)\n      X-Amz-Cf-Id:\n      - SkliF140iF44LaTEdMJMK_188LfhBJAwVqmRY1CJIjEayhu5f0zcaQ==\n      X-Amz-Cf-Pop:\n      - DEN52-C1\n      X-Amzn-Trace-Id:\n      - Root=1-688b86b7-1a82829b0c790ab33b119348;Parent=52dc27e757eabbc7;Sampled=0;Lineage=1:308471e4:0\n      X-Cache:\n      - Miss from cloudfront\n      x-amz-apigw-id:\n      - OlH8sEDlPHcEejQ=\n      x-amzn-RequestId:\n      - f110bc8c-2849-4130-8f50-06589732d5d4\n    status:\n      code: 200\n      message: OK\nversion: 1\n"
  },
  {
    "path": "tests/cassettes/test_client/TestQueryables.test_get_queryables.yaml",
    "content": "interactions:\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.3\n    method: GET\n    uri: https://stac.sage.uvt.ro/\n  response:\n    body:\n      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\n        conformance classes implemented by this server\\\",\\\"href\\\":\\\"https://stac.sage.uvt.ro/conformance\\\"},{\\\"rel\\\":\\\"search\\\",\\\"type\\\":\\\"application/geo+json\\\",\\\"title\\\":\\\"STAC\n        search\\\",\\\"href\\\":\\\"https://stac.sage.uvt.ro/search\\\",\\\"method\\\":\\\"GET\\\"},{\\\"rel\\\":\\\"search\\\",\\\"type\\\":\\\"application/geo+json\\\",\\\"title\\\":\\\"STAC\n        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\n        DEM 30m\\\",\\\"href\\\":\\\"https://stac.sage.uvt.ro/collections/copernicus-dem-30\\\"},{\\\"rel\\\":\\\"child\\\",\\\"type\\\":\\\"application/json\\\",\\\"title\\\":\\\"Sentinel-2\n        Level-1C - Rom\\xE2nia\\\",\\\"href\\\":\\\"https://stac.sage.uvt.ro/collections/sentinel-2-l1c\\\"},{\\\"rel\\\":\\\"child\\\",\\\"type\\\":\\\"application/json\\\",\\\"title\\\":\\\"Sentinel-2\n        Level-1C - Rom\\xE2nia - Vegetation Index\\\",\\\"href\\\":\\\"https://stac.sage.uvt.ro/collections/sentinel-2-l1c-ndvi\\\"},{\\\"rel\\\":\\\"child\\\",\\\"type\\\":\\\"application/json\\\",\\\"title\\\":\\\"ANCPI\n        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\n        1 Level-1 Ground Range Detected (GRD)\\\",\\\"href\\\":\\\"https://stac.sage.uvt.ro/collections/sentinel-1-grd\\\"},{\\\"rel\\\":\\\"child\\\",\\\"type\\\":\\\"application/json\\\",\\\"title\\\":\\\"Corine\n        Land Cover 2018 (Vectorial)\\\",\\\"href\\\":\\\"https://stac.sage.uvt.ro/collections/clc-2018-20-vector\\\"},{\\\"rel\\\":\\\"child\\\",\\\"type\\\":\\\"application/json\\\",\\\"title\\\":\\\"Corine\n        Land Cover 2018 (Raster)\\\",\\\"href\\\":\\\"https://stac.sage.uvt.ro/collections/clc-2018-20\\\"},{\\\"rel\\\":\\\"child\\\",\\\"type\\\":\\\"application/json\\\",\\\"title\\\":\\\"Sentinel\n        1 Radiometrically Terrain Corrected (RTC)\\\",\\\"href\\\":\\\"https://stac.sage.uvt.ro/collections/sentinel-1-rtc\\\"},{\\\"rel\\\":\\\"child\\\",\\\"type\\\":\\\"application/json\\\",\\\"title\\\":\\\"MAJA\n        CAMS Products\\\",\\\"href\\\":\\\"https://stac.sage.uvt.ro/collections/maja-cams\\\"},{\\\"rel\\\":\\\"child\\\",\\\"type\\\":\\\"application/json\\\",\\\"title\\\":\\\"Sentinel-2\n        Level-2A MAJA - Rom\\xE2nia\\\",\\\"href\\\":\\\"https://stac.sage.uvt.ro/collections/sentinel-2-l2a-maja\\\"},{\\\"rel\\\":\\\"child\\\",\\\"type\\\":\\\"application/json\\\",\\\"title\\\":\\\"ESA\n        WorldCover 2020\\\",\\\"href\\\":\\\"https://stac.sage.uvt.ro/collections/esa-worldcover-2020\\\"},{\\\"rel\\\":\\\"child\\\",\\\"type\\\":\\\"application/json\\\",\\\"title\\\":\\\"ESA\n        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\n        service description\\\",\\\"href\\\":\\\"https://stac.sage.uvt.ro/api\\\"},{\\\"rel\\\":\\\"service-doc\\\",\\\"type\\\":\\\"text/html\\\",\\\"title\\\":\\\"OpenAPI\n        service documentation\\\",\\\"href\\\":\\\"https://stac.sage.uvt.ro/api.html\\\"}],\\\"stac_extensions\\\":[]}\"\n    headers:\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Range,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Expose-Headers:\n      - '*, X-CustomResponseHeader'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '896'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 17 Jul 2025 12:50:26 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.3\n    method: GET\n    uri: https://stac.sage.uvt.ro/queryables\n  response:\n    body:\n      string: '{\"$id\":\"https://stac.sage.uvt.ro/queryables\",\"type\":\"object\",\"title\":\"STAC\n        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\n        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\n        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}'\n    headers:\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Range,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Expose-Headers:\n      - '*, X-CustomResponseHeader'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '674'\n      Content-Type:\n      - application/schema+json\n      Date:\n      - Thu, 17 Jul 2025 12:50:26 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n    status:\n      code: 200\n      message: OK\nversion: 1\n"
  },
  {
    "path": "tests/cassettes/test_client/TestQueryables.test_get_queryables_collections.yaml",
    "content": "interactions:\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1\n  response:\n    body:\n      string: '{\"type\":\"Catalog\",\"id\":\"microsoft-pc\",\"title\":\"Microsoft Planetary\n        Computer STAC API\",\"description\":\"Searchable spatiotemporal metadata describing\n        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\",\"https://api.stacspec.org/v1.0.0/item-search#sort\",\"https://api.stacspec.org/v1.0.0/core\",\"https://api.stacspec.org/v1.0.0/item-search#fields\",\"https://api.stacspec.org/v1.0.0-rc.2/item-search#filter\",\"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-features-1/1.0/conf/core\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30\",\"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#query\",\"http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter\",\"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\n        conformance classes implemented by this server\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/conformance\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        search\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/search\",\"method\":\"GET\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        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\n        Annual Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Seamless DEMs\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Surface Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Forest\n        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\n        Annual North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Annual Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Tables\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HGB:\n        Harmonized Global Biomass for 2010\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        DEM GLO-30\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        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\n        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\n        IMERG\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Rasters\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Height above Ground\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        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\n        1 Radiometrically Terrain Corrected (RTC)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Intensity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Source\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MTBS:\n        Monitoring Trends in Burn Severity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"C-CAP\n        Regional Land Cover and Change\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Cloud\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Burned Area Monthly\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        Forest/Non-Forest Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Returns\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MoBI:\n        Map of Biodiversity Importance\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ERA5\n        - PDS\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chloris\n        Biomass\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HydroForecast\n        - Kwando & Upper Zambezi Rivers\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Planet-NICFI\n        Basemaps (Analytic)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Gross Primary Productivity 8-Day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Daily Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        3DEP Lidar Classification\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Terrain Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        Gap Land Cover\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Basemaps (Visual)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Global\n        Biodiversity Information Facility (GBIF)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        World 3D-30m\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        PALSAR Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Water Availability\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Net Evapotranspiration Yearly Gap-Filled\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Census\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"JRC\n        Global Surface Water\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Flood Maps\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Thermal Anomalies/Fire Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HREA:\n        High Resolution Electricity Access\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Vegetation Indices 16-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Level-2A\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Land Surface Temperature/Emissivity Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Vegetation Indices 16-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Land\n        Cover of Canada\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Snow Cover 8-day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ECMWF\n        Open Data (real-time)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        HGT v001\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Esri\n        10-Meter Land Cover (10-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-1\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Denver\n        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\n        Land Cover (7-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Cover (13-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Use\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        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\n        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\n        Cropland Data Layers (CDLs)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Urban\n        Innovation Eclipse Sensor Data\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ESA\n        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\n        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\n        National Wetlands Inventory\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        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\n        US Tabular Climate Normals\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        Lightning Detection\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel\n        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\n        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\n        L1T\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"CIL\n        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:\n        National Agriculture Imagery Program\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        Intactness\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sea\n        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\n        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\n        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\n        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\n        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\n        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\n        Snow Cover Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-5P\n        Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        Building Footprints\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        service description\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json\"},{\"rel\":\"service-doc\",\"type\":\"text/html\",\"title\":\"OpenAPI\n        service documentation\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/docs\"}],\"stac_extensions\":[]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '3364'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:07:31 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150730Z-r17d779659cmbwwwhC1DENxr0c00000003g0000000009hzz\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/\n  response:\n    body:\n      string: '{\"type\":\"Catalog\",\"id\":\"microsoft-pc\",\"title\":\"Microsoft Planetary\n        Computer STAC API\",\"description\":\"Searchable spatiotemporal metadata describing\n        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\",\"https://api.stacspec.org/v1.0.0/item-search#sort\",\"https://api.stacspec.org/v1.0.0/core\",\"https://api.stacspec.org/v1.0.0/item-search#fields\",\"https://api.stacspec.org/v1.0.0-rc.2/item-search#filter\",\"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-features-1/1.0/conf/core\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30\",\"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#query\",\"http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter\",\"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\n        conformance classes implemented by this server\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/conformance\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        search\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/search\",\"method\":\"GET\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        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\n        Annual Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Seamless DEMs\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Surface Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Forest\n        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\n        Annual North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Annual Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Tables\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HGB:\n        Harmonized Global Biomass for 2010\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        DEM GLO-30\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        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\n        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\n        IMERG\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Rasters\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Height above Ground\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        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\n        1 Radiometrically Terrain Corrected (RTC)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Intensity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Source\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MTBS:\n        Monitoring Trends in Burn Severity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"C-CAP\n        Regional Land Cover and Change\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Cloud\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Burned Area Monthly\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        Forest/Non-Forest Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Returns\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MoBI:\n        Map of Biodiversity Importance\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ERA5\n        - PDS\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chloris\n        Biomass\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HydroForecast\n        - Kwando & Upper Zambezi Rivers\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Planet-NICFI\n        Basemaps (Analytic)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Gross Primary Productivity 8-Day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Daily Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        3DEP Lidar Classification\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Terrain Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        Gap Land Cover\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Basemaps (Visual)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Global\n        Biodiversity Information Facility (GBIF)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        World 3D-30m\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        PALSAR Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Water Availability\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Net Evapotranspiration Yearly Gap-Filled\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Census\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"JRC\n        Global Surface Water\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Flood Maps\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Thermal Anomalies/Fire Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HREA:\n        High Resolution Electricity Access\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Vegetation Indices 16-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Level-2A\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Land Surface Temperature/Emissivity Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Vegetation Indices 16-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Land\n        Cover of Canada\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Snow Cover 8-day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ECMWF\n        Open Data (real-time)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        HGT v001\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Esri\n        10-Meter Land Cover (10-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-1\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Denver\n        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\n        Land Cover (7-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Cover (13-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Use\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        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\n        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\n        Cropland Data Layers (CDLs)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Urban\n        Innovation Eclipse Sensor Data\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ESA\n        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\n        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\n        National Wetlands Inventory\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        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\n        US Tabular Climate Normals\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        Lightning Detection\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel\n        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\n        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\n        L1T\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"CIL\n        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:\n        National Agriculture Imagery Program\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        Intactness\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sea\n        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\n        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\n        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\n        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\n        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\n        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\n        Snow Cover Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-5P\n        Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        Building Footprints\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        service description\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json\"},{\"rel\":\"service-doc\",\"type\":\"text/html\",\"title\":\"OpenAPI\n        service documentation\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/docs\"}],\"stac_extensions\":[]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '3364'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:07:31 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150731Z-r17d779659cgv7lqhC1DENzvbg00000003pg000000002zqq\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless\n  response:\n    body:\n      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\n        Domain\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/3dep-seamless\",\"title\":\"Human\n        readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"USGS\n        3DEP Seamless DEMs\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/threedep.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"USGS\n        3DEP\"},\"geoparquet-items\":{\"href\":\"abfs://items/3dep-seamless.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet\n        STAC items\",\"description\":\"Snapshot of the collection''s STAC items exported\n        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\n        digital elevation data at horizontal resolutions ranging from one to sixty\n        meters.\\n\\nThe [USGS 3D Elevation Program (3DEP) Datasets](https://www.usgs.gov/core-science-systems/ngp/3dep)\n        from the [National Map](https://www.usgs.gov/core-science-systems/national-geospatial-program/national-map)\n        are the primary elevation data product produced and distributed by the USGS.\n        The 3DEP program provides raster elevation data for the conterminous United\n        States, Alaska, Hawaii, and the island territories, at a variety of spatial\n        resolutions.  The seamless DEM layers produced by the 3DEP program are updated\n        frequently to integrate newly available, improved elevation source data.  \\n\\nDEM\n        layers are available nationally at grid spacings of 1 arc-second (approximately\n        30 meters) for the conterminous United States, and at approximately 1, 3,\n        and 9 meters for parts of the United States. Most seamless DEM data for Alaska\n        is available at a resolution of approximately 60 meters, where only lower\n        resolution source data exist.\\n\",\"item_assets\":{\"data\":{\"type\":\"image/tiff;\n        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\n        digital elevation data at horizontal resolutions ranging from one to sixty\n        meters\",\"msft:region\":\"westeurope\"}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '1451'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:07:32 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150731Z-r17d779659cjc42zhC1DENr5f80000000600000000006rsc\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless/queryables\n  response:\n    body:\n      string: '{\"$id\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless/queryables\",\"type\":\"object\",\"title\":\"STAC\n        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\n        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\n        Geometry\",\"description\":\"Item Geometry\"},\"proj:epsg\":{\"type\":[\"integer\",\"null\"],\"title\":\"EPSG\n        code\"},\"proj:shape\":{\"type\":\"array\",\"items\":{\"type\":\"integer\"},\"title\":\"Shape\",\"maxItems\":2,\"minItems\":2},\"end_datetime\":{\"type\":\"string\",\"title\":\"End\n        datetime\",\"format\":\"date-time\",\"pattern\":\"(\\\\+00:00|Z)$\",\"description\":\"End\n        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\n        datetime\",\"format\":\"date-time\",\"pattern\":\"(\\\\+00:00|Z)$\",\"description\":\"Start\n        datetime\"},\"threedep:region\":{\"type\":\"string\",\"title\":\"Region\"}}}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '524'\n      Content-Type:\n      - application/schema+json\n      Date:\n      - Thu, 31 Jul 2025 15:07:32 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150732Z-r17d779659cp5mbvhC1DEN7mgn00000003pg000000002xw3\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia\n  response:\n    body:\n      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\n        Open Access Data Use Agreement\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/fia\",\"title\":\"Human\n        readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Forest\n        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\n        Description and User Guide\"},\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/fia.png\",\"type\":\"image/gif\",\"title\":\"Forest\n        Inventory and Analysis\"},\"geoparquet-items\":{\"href\":\"abfs://items/fia.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet\n        STAC items\",\"description\":\"Snapshot of the collection''s STAC items exported\n        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\n        Service\"],\"providers\":[{\"url\":\"https://www.fia.fs.fed.us/\",\"name\":\"Forest\n        Inventory & Analysis\",\"roles\":[\"producer\",\"licensor\"]},{\"url\":\"https://carbonplan.org/\",\"name\":\"CarbonPlan\",\"roles\":[\"processor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"description\":\"Status\n        and trends on U.S. forest location, health, growth, mortality, and production,\n        from the U.S. Forest Service''s  [Forest Inventory and Analysis](https://www.fia.fs.fed.us/)\n        (FIA) program.\\n\\nThe Forest Inventory and Analysis (FIA) dataset is a nationwide\n        survey of the forest assets of the United States. The FIA research program\n        has been in existence since 1928.  FIA''s primary objective is to determine\n        the extent, condition, volume, growth, and use of trees on the nation''s forest\n        land.\\n\\nDomain: continental U.S., 1928-2018\\n\\nResolution: plot-level (irregular\n        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\n        root\",\"table:storage_options\":{\"account_name\":\"cpdataeuwest\"}}},\"stac_version\":\"1.0.0\",\"table:tables\":[{\"name\":\"Survey\n        Table\",\"description\":\"Survey table. This table contains one record for each\n        year an inventory is conducted in a State for annual inventory or one record\n        for each periodic inventory. <br><br>* SURVEY.CN = PLOT.SRV_CN links the unique\n        inventory record for a State and year to the plot records.\",\"msft:item_name\":\"survey\"},{\"name\":\"County\n        Table\",\"description\":\"County table. This table contains survey unit codes\n        and is also a reference table for the county codes and names. <br><br>* COUNTY.CN\n        = PLOT.CTY_CN links the unique county record to the plot record.\",\"msft:item_name\":\"county\"},{\"name\":\"Plot\n        Table\",\"description\":\"Plot table. This table provides information relevant\n        to the entire 1-acre field plot. This table links to most other tables, and\n        the linkage is made using PLOT.CN = TABLE_NAME.PLT_CN (TABLE_NAME is the name\n        of any table containing the column name PLT_CN). Below are some examples of\n        linking PLOT to other tables. <br><br>* PLOT.CN = COND.PLT_CN links the unique\n        plot record to the condition class record(s). <br><br>* PLOT.CN = SUBPLOT.PLT_CN\n        links the unique plot record to the subplot records. <br><br>* PLOT.CN = TREE.PLT_CN\n        links the unique plot record to the tree records. <br><br>* PLOT.CN = SEEDLING.PLT_CN\n        links the unique plot record to the seedling records.\",\"msft:item_name\":\"plot\"},{\"name\":\"Condition\n        Table\",\"description\":\"Condition table. This table provides information on\n        the discrete combination of landscape attributes that define the condition\n        (a condition will have the same land class, reserved status, owner group,\n        forest type, stand-size class, regeneration status, and stand density). <br><br>*\n        PLOT.CN = COND.PLT_CN links the condition class record(s) to the plot table.\n        <br><br>* COND.PLT_CN = SITETREE.PLT_CN and COND.CONDID = SITETREE.CONDID\n        links the condition class record to the site tree data. <br><br>* COND.PLT_CN\n        = TREE.PLT_CN and COND.CONDID = TREE.CONDID links the condition class record\n        to the tree data.\",\"msft:item_name\":\"cond\"},{\"name\":\"Subplot Table\",\"description\":\"Subplot\n        table. This table describes the features of a single subplot. There are multiple\n        subplots per 1-acre field plot and there can be multiple conditions sampled\n        on each subplot. <br><br>* PLOT.CN = SUBPLOT.PLT_CN links the unique plot\n        record to the subplot records. <br><br>* SUBPLOT.PLT_CN = COND.PLT_CN and\n        SUBPLOT.MACRCOND = COND.CONDID links the macroplot conditions to the condition\n        class record. <br><br>* SUBPLOT.PLT_CN = COND.PLT_CN and SUBPLOT.SUBPCOND\n        = COND.CONDID links the subplot conditions to the condition class record.\n        <br><br>* SUBPLOT.PLT_CN = COND.PLT_CN and SUBPLOT.MICRCOND = COND.CONDID\n        links the microplot conditions to the condition class record.\",\"msft:item_name\":\"subplot\"},{\"name\":\"Subplot\n        Condition Table\",\"description\":\"Subplot condition table. This table contains\n        information about the proportion of a subplot in a condition. <br><br>* PLOT.CN\n        = SUBP_COND.PLT_CN links the subplot condition class record to the plot table.\n        <br><br>* SUBP_COND.PLT_CN = COND.PLT_CN and SUBP_COND.CONDID = COND.CONDID\n        links the condition class records found on the four subplots to the subplot\n        description.\",\"msft:item_name\":\"subp_cond\"},{\"name\":\"boundary\",\"description\":\"Boundary\n        table. This table provides a description of the demarcation line between two\n        conditions that occur on a single subplot\",\"msft:item_name\":\"boundary\"},{\"name\":\"Subplot\n        Condition Change Matrix\",\"description\":\"Subplot condition change matrix table.\n        This table contains information about the mix of current and previous conditions\n        that occupy the same area on the subplot. <br><br>* PLOT.CN = SUBP_COND_CHNG_MTRX.PLT_CN\n        links the subplot condition change matrix records to the unique plot record.\n        <br><br>* PLOT.PREV_PLT_CN = SUBP_COND_CHNG_MTRX.PREV_PLT_CN links the subplot\n        condition change matrix records to the unique previous plot record.\",\"msft:item_name\":\"subp_cond_chng_mtrx\"},{\"name\":\"Tree\n        Table\",\"description\":\"Tree table. This table provides information for each\n        tree 1 inch in diameter and larger found on a microplot, subplot, or core\n        optional macroplot. <br><br>* PLOT.CN = TREE.PLT_CN links the tree records\n        to the unique plot record. <br><br>* COND.PLT_CN = TREE.PLT_CN and COND.CONDID\n        = TREE.CONDID links the tree records to the unique condition record.\",\"msft:item_name\":\"tree\"},{\"name\":\"Tree\n        Woodland Stems Table\",\"description\":\"Tree woodland stems table. This table\n        stores data for the individual stems of a woodland species tree. Individual\n        woodland stem diameter measurements contribute to the calculation of the diameter\n        stored on the parent TREE table record. <br><br>* TREE.CN = TREE_WOODLAND_STEMS.TRE_CN\n        links a woodland stems record to the corresponding unique tree record.\",\"msft:item_name\":\"tree_woodland_stems\"},{\"name\":\"Tree\n        Regional Biomass Table\",\"description\":\"Tree regional biomass table. This table\n        contains biomass estimates computed using equations and methodology that varies\n        by FIA work unit. This table retains valuable information for generating biomass\n        estimates that match earlier published reports. <br><br>* TREE.CN = TREE_REGIONAL_BIOMASS.TRE_CN\n        links a tree regional biomass record to the corresponding unique tree.\",\"msft:item_name\":\"tree_regional_biomass\"},{\"name\":\"Tree\n        Net Growth, Removal, and Mortality Component Table\",\"description\":\"Tree net\n        growth, removal, and mortality component table. This table stores information\n        used to compute net growth, removals, and mortality estimates for remeasurement\n        trees. Each remeasurement tree has a single record in this table. <br><br>*\n        TREE_GRM_COMPONENT.TRE_CN = TREE.TRE_CN links the records in this table to\n        the corresponding tree record in the TREE table.\",\"msft:item_name\":\"tree_grm_component\"},{\"name\":\"Tree\n        Net Growth, Removal, and Mortality Midpoint Table\",\"description\":\"Tree net\n        growth, removal, and mortality midpoint table. This table contains information\n        about a remeasured tree at the midpoint of the remeasurement period. It does\n        not contain a record for every tree. Midpoint estimates are computed for trees\n        that experience mortality, removal, or land use diversion or reversion. The\n        information in this table is used to compute net growth, removal, and mortality\n        estimates on remeasurement trees. <br><br>* TREE_GRM_MIDPT.TRE_CN = TREE.TRE_CN\n        links the records in this table to the corresponding tree record in the TREE\n        table.\",\"msft:item_name\":\"tree_grm_midpt\"},{\"name\":\"Tree Net Growth, Removal,\n        and Mortality Begin Table\",\"description\":\"Tree net growth, removal, and mortality\n        begin table. This table contains information for remeasured trees where values\n        have been calculated for the beginning of the remeasurement period. Only those\n        trees where information was recalculated for time 1 (T1) are included. The\n        information in this table is used to produce net growth, removal and mortality\n        estimates on remeasured trees. <br><br>* TREE_GRM_BEGIN.TRE_CN = TREE.TRE_CN\n        links the records in this table to the corresponding tree record in the TREE\n        table.\",\"msft:item_name\":\"tree_grm_begin\"},{\"name\":\"Tree Net Growth, Removal,\n        and Mortality Estimation Table\",\"description\":\"Tree net growth, removal, and\n        mortality estimation table. This table contains information used to produce\n        estimates of growth, removals and mortality. <br><br>* PLOT.CN = TREE_GRM_ESTN.PLT_CN\n        links the tree GRM estimation records to the unique plot record. <br><br>*\n        TREE.CN = TREE_GRM_ESTN.TRE_CN links the tree GRM estimation records to the\n        unique tree record.\",\"msft:item_name\":\"tree_grm_estn\"},{\"name\":\"Seedling Table\",\"description\":\"Seedling\n        table. This table provides a count of the number of live trees of a species\n        found on a microplot that are less than 1 inch in diameter but at least 6\n        inches in length for conifer species or at least 12 inches in length for hardwood\n        species. <br><br>* PLOT.CN = SEEDLING.PLT_CN links the seedling records to\n        the unique plot record. <br><br>* COND.PLT_CN = SEEDLING.PLT_CN and COND.CONDID\n        = SEEDLING.CONDID links the condition record to the seedling record.\",\"msft:item_name\":\"seedling\"},{\"name\":\"Site\n        Tree Table\",\"description\":\"Site tree table. This table provides information\n        on the site tree(s) collected in order to calculate site index and/or site\n        productivity information for a condition. <br><br>* PLOT.CN = SITETREE.PLT_CN\n        links the site tree records to the unique plot record. <br><br>* SITETREE.PLT_CN\n        = COND.PLT_CN and SITETREE.CONDID = COND.CONDID links the site tree record(s)\n        to the unique condition class record.\",\"msft:item_name\":\"sitetree\"},{\"name\":\"Invasive\n        Subplot Species Table\",\"description\":\"Invasive subplot species table. This\n        table provides percent cover data of invasive species identified on the subplot.\n        <br><br>* PLOT.CN = INVASIVE_SUBPLOT_SPP.PLT_CN links the invasive subplot\n        species record(s) to the unique plot record. <br><br>* SUBP_COND.PLT_CN =\n        INVASIVE_SUBPLOT_SPP.PLT_CN and SUBP_COND.CONDID = INVASIVE_SUBPLOT_SPP.CONDID\n        and SUBP_COND.SUBP = INVASIVE_SUBPLOT_SPP.SUBP links the invasive subplot\n        species record(s) to the unique subplot condition record. <br><br>* INVASIVE_SUBPLOT_SPP.VEG_SPCD\n        = REF_PLANT_DICTIONARY.SYMBOL links the invasive vegetation subplot NRCS species\n        code to the plant dictionary reference species code.\",\"msft:item_name\":\"invasive_subplot_spp\"},{\"name\":\"Phase\n        2 Vegetation Subplot Species Table\",\"description\":\"Phase 2 Vegetation subplot\n        species table. This table provides percent cover data of vegetation species\n        identified on the subplot. <br><br>* PLOT.CN = P2VEG_SUBPLOT_SPP.PLT_CN links\n        the vegetation subplot species record(s) to the unique plot record. <br><br>*\n        SUBP_COND.PLT_CN = P2VEG_SUBPLOT_SPP.PLT_CN and SUBP_COND.CONDID = P2VEG_SUBPLOT_SPP.CONDID\n        and SUBP_COND.SUBP = P2VEG_SUBPLOT_SPP.SUBP links the vegetation subplot species\n        record(s) to the unique subplot condition record. <br><br>* P2VEG_SUBPLOT_SPP.VEG_SPCD\n        = REF_PLANT_DICTIONARY.SYMBOL links the P2 vegetation subplot NRCS species\n        code to the plant dictionary reference species code.\",\"msft:item_name\":\"p2veg_subplot_spp\"},{\"name\":\"Phase\n        2 Vegetation Subplot Structure Table\",\"description\":\"Phase 2 Vegetation subplot\n        structure table. This table provides percent cover by layer by growth habit.\n        <br><br>* PLOT.CN = P2VEG_SUBP_STRUCTURE. PLT_CN links the subplot structure\n        record(s) to the unique plot record. <br><br>* SUBP_COND.PLT_CN = P2VEG_SUBP_STRUCTURE.PLT_CN\n        and SUBP_COND.CONDID = P2VEG_SUBP_STRUCTURE.CONDID and SUBP_COND.SUBP = P2VEG_SUBP_STRUCTURE.SUBP\n        links the vegetation subplot structure record(s) to the unique subplot condition\n        record.\",\"msft:item_name\":\"p2veg_subp_structure\"},{\"name\":\"Down Woody Material\n        Visit Table\",\"description\":\"Down woody material visit table. This table provides\n        general information on down woody material indicator visit, such as the date\n        of the DWM survey. <br><br>* PLOT.CN = DWM_VISIT.PLT_CN links the down woody\n        material indicator visit record to the unique plot record.\",\"msft:item_name\":\"dwm_visit\"},{\"name\":\"Down\n        Woody Material Coarse Woody Debris Table\",\"description\":\"Down woody material\n        coarse woody debris table. This table provides information for each piece\n        of coarse woody debris measured along the transects. <br><br>* PLOT.CN = DWM_COARSE_WOODY_DEBRIS.PLT_CN\n        links the down woody material coarse woody debris records to the unique plot\n        record. <br><br>* COND.PLT_CN = DWM_COARSE_WOODY_DEBRIS.PLT_CN and COND.CONDID=\n        DWM_COARSE_WOODY_DEBRIS.CONDID links the coarse woody debris records to the\n        unique condition record.\",\"msft:item_name\":\"dwm_coarse_woody_debris\"},{\"name\":\"Down\n        Woody Material Duff, Litter, Fuel Table\",\"description\":\"Down woody material\n        duff, litter, fuel table. This table provides information on the duff, litter,\n        fuelbed depths measured at a point on the transects. <br><br>* PLOT.CN = DWM_DUFF_LITTER_FUEL.PLT_CN\n        links the duff, litter, fuelbed records to the unique plot record. <br><br>*\n        COND.PLT_CN = DWM_DUFF_LITTER_FUEL.PLT_CN and COND.CONDID= DWM_DUFF_LITTER_FUEL.CONDID\n        links the duff, litter, fuel records to the unique condition record.\",\"msft:item_name\":\"dwm_duff_litter_fuel\"},{\"name\":\"Down\n        Woody Material Fine Woody Debris Table\",\"description\":\"Down woody material\n        fine woody debris table. This table provides information on the fine woody\n        debris measured along a segment of the transects. <br><br>* PLOT.CN = DWM_FINE_WOODY_DEBRIS.PLT_CN\n        links the fine woody debris records to the unique plot record. <br><br>* COND.PLT_CN\n        = DWM_FINE_WOODY_DEBRIS.PLT_CN and COND.CONDID= DWM_FINE_WOODY_DEBRIS.CONDID\n        links the fine woody debris records to the unique condition record.\",\"msft:item_name\":\"dwm_fine_woody_debris\"},{\"name\":\"Down\n        Woody Material Microplot Fuel Table\",\"description\":\"Down woody material microplot\n        fuel table. This table provides information on the fuel loads (shrubs and\n        herbs) measured on the microplot. <br><br>* PLOT.CN = DWM_MICROPLOT_FUEL.PLT_CN\n        links the microplot fuel records to the unique plot record.\",\"msft:item_name\":\"dwm_microplot_fuel\"},{\"name\":\"Down\n        Woody Material Residual Pile Table\",\"description\":\"Down woody material residual\n        pile table. This table provides information on the wood piles measured on\n        the subplot. <br><br>* PLOT.CN = DWM_RESIDUAL_PILE.PLT_CN links the wood piles\n        records to the unique plot record. <br><br>* COND.PLT_CN = DWM_RESIDUAL_PILE.PLT_CN\n        and COND.CONDID= DWM_RESIDUAL_PILE.CONDID links the wood piles records to\n        the unique condition record.\",\"msft:item_name\":\"dwm_residual_pile\"},{\"name\":\"Down\n        Woody Material Transect Segment Table\",\"description\":\"Down woody material\n        transect segment table. This table describes the down woody material transect\n        segment lengths by condition class. <br><br>* PLOT.CN = DWM_TRANSECT_SEGMENT.PLT_CN\n        links the down woody material transect length records to the unique plot record.\n        <br><br>* COND.PLT_CN = DWM_TRANSECT_SEGMENT.PLT_CN and COND.CONDID= DWM_TRANSECT_SEGMENT.CONDID\n        links the down woody material transect segment records to the unique condition\n        record.\",\"msft:item_name\":\"dwm_transect_segment\"},{\"name\":\"Condition Down\n        Woody Material Calculation Table\",\"description\":\"Condition down woody material\n        calculation table. This table contains calculated values and condition-level\n        estimates for down woody attributes by plot number (PLOT), condition class\n        number (CONDID), and evaluation identifier (EVALID). <br><br>* PLOT.CN = COND_DWM_CALC.PLT_CN\n        links the down woody material calculation records to the unique plot record.\n        <br><br>* COND.CN = COND_DWM_CALC.CND_CN links the down woody material calculation\n        records to the unique condition record. <br><br>* POP_STRATUM. CN = COND_DWM_CALC.STRATUM_CN\n        links the down woody material calculation records to the unique population\n        stratum record.\",\"msft:item_name\":\"cond_dwm_calc\"},{\"name\":\"Plot Regeneration\n        Table\",\"description\":\"Plot regeneration table. This table contains the information\n        for the four subplots describing the amount of animal browse pressure exerted\n        on the regeneration of trees. <br><br>* PLOT.CN = PLOT_REGEN.PLT_CN links\n        the unique plot record to the unique plot regeneration record.\",\"msft:item_name\":\"plot_regen\"},{\"name\":\"Subplot\n        Regeneration Table\",\"description\":\"Subplot regeneration table. This table\n        provides information on the subplot survey status and the site survey limitations,\n        if any, for the tree regeneration study. <br><br>* PLOT.CN = SUBPLOT_REGEN.PLT_CN\n        links the unique plot record to the subplot regeneration records. <br><br>*\n        SUBPLOT.PLT_CN = SUBPLOT_REGEN.PLT_CN and SUBPLOT.SUBP = SUBPLOT_REGEN.SUBP\n        links the subplot record to the subplot regeneration record.\",\"msft:item_name\":\"subplot_regen\"},{\"name\":\"Seedling\n        Regeneration Table\",\"description\":\"Seedling regeneration. This table contains\n        provides information on the seedling count by condition, species, source,\n        and length class for the tree regeneration study. <br><br>* PLOT.CN = SEEDLING_REGEN.PLT_CN\n        links the unique plot record to the seedling regeneration records. <br><br>*\n        COND.PLT_CN = SEEDLING_REGEN.PLT_CN and COND.CONDID = SEEDLING_REGEN.CONDID\n        links the regeneration seedling records to the unique condition record.\",\"msft:item_name\":\"seedling_regen\"},{\"name\":\"Population\n        Estimation Unit Table\",\"description\":\"Population estimation unit table. This\n        table contains information about estimation units. An estimation unit is a\n        geographic area that can be drawn on a map. It has a known area, and the sampling\n        intensity must be the same within a stratum within an estimation unit. Generally,\n        estimation units are contiguous areas, but exceptions are made when certain\n        ownerships, usually National Forests, are sampled at different intensities.\n        One record in the POP_ESTN_UNIT table corresponds to a single estimation unit.\n        POP_ESTN_UNIT.CN = POP_STRATUM.ESTN_UNIT_CN links the unique stratified geographical\n        area (ESTN_UNIT) to the strata (STRATUMCD) that are assigned to each ESTN_UNIT.\",\"msft:item_name\":\"pop_estn_unit\"},{\"name\":\"Population\n        Evaluation Table\",\"description\":\"Population evaluation table. This table provides\n        information about evaluations. An evaluation is the combination of a set of\n        plots (the sample) and a set of Phase 1 data (obtained through remote sensing,\n        called a stratification) that can be used to produce population estimates\n        for a State (an evaluation may be created to produce population estimates\n        for a region other than a State, such as the Black Hills National Forest).\n        A record in the POP_EVAL table identifies one evaluation and provides some\n        descriptive information about how the evaluation may be used. <br><br>* POP_ESTN_UNIT.EVAL_CN\n        = POP_EVAL.CN links the unique evaluation identifier (EVALID) in the POP_EVAL\n        table to the unique geographical areas (ESTN_UNIT) that are stratified. Within\n        a population evaluation (EVALID) there can be multiple population estimation\n        units, or geographic areas across which there are a number of values being\n        estimated (e.g., estimation of volume across counties for a given State).\",\"msft:item_name\":\"pop_eval\"},{\"name\":\"Population\n        Evaluation Attribute Table\",\"description\":\"Population evaluation attribute\n        table. This table provides information as to which population estimates can\n        be provided by an evaluation. If an evaluation can produce only 22 of all\n        the population estimates in the REF_POP_ATTRIBUTE table, there will be 22\n        records in the POP_EVAL_ATTRIBUTE table (one per population estimate) for\n        that evaluation. <br><br>* POP_EVAL.CN = POP_EVAL_ATTRIBUTE.EVAL_CN links\n        the unique evaluation identifier to the list of population estimates that\n        can be derived for that evaluation.\",\"msft:item_name\":\"pop_eval_attribute\"},{\"name\":\"Population\n        Evaluation Group Table\",\"description\":\"Population evaluation group table.\n        This table lists and describes the evaluation groups. One record in the POP_EVAL_GRP\n        table can be linked to all the evaluations that were used in generating estimates\n        for a State inventory report. <br><br>* POP_EVAL_GRP.CN = POP_EVAL_TYP.EVAL_GRP_CN\n        links the evaluation group record to the evaluation type record.\",\"msft:item_name\":\"pop_eval_grp\"},{\"name\":\"Population\n        Evaluation Type Table\",\"description\":\"Population evaluation type table. This\n        table provides information on the type of evaluations that were used to generate\n        a set of tables for an inventory report. In a typical State inventory report,\n        one evaluation is used to generate an estimate of the total land area; a second\n        evaluation is used to generate current estimates of volume, numbers of trees\n        and biomass; and a third evaluation is used for estimating growth, removals\n        and mortality. <br><br>* POP_EVAL_TYP.EVAL_CN = POP_EVAL.CN links the evaluation\n        type record to the evaluation record. <br><br>* POP_EVAL_TYP.EVAL_GRP_CN =\n        POP_EVAL_GRP.CN links the evaluation type record to the evaluation group record.\n        <br><br>* POP_EVAL_TYP.EVAL_TYP = REF_POP_EVAL_TYP_DESCR.EVAL_TYP links an\n        evaluation type record to an evaluation type description reference record.\",\"msft:item_name\":\"pop_eval_typ\"},{\"name\":\"Population\n        Plot Stratum Assignment Table\",\"description\":\"Population plot stratum assignment\n        table. This table provides a way to assign stratum information to a plot.\n        Stratum information is assigned to a plot by overlaying the plot''s location\n        on the Phase 1 imagery. Plots are linked to their appropriate stratum for\n        an evaluation via the POP_PLOT_STRATUM_ASSGN table. <br><br>* POP_PLOT_STRATUM_ASSGN.PLT_CN\n        = PLOT.CN links the stratum assigned to the plot record.\",\"msft:item_name\":\"pop_plot_stratum_assgn\"},{\"name\":\"Population\n        Stratum Table\",\"description\":\"Population stratum table. This table provides\n        information about individual strata. The area within an estimation unit is\n        divided into strata. The area for each stratum can be calculated by determining\n        the proportion of Phase 1 pixels/plots in each stratum and multiplying that\n        proportion by the total area in the estimation unit. Information for a single\n        stratum is stored in a single record of the POP_STRATUM table. <br><br>* POP_STRATUM.CN\n        = POP_PLOT_STRATUM_ASSGN.STRATUM_CN links the defined stratum to each plot.\",\"msft:item_name\":\"pop_stratum\"},{\"name\":\"Plot\n        Geometry Table\",\"description\":\"Plot geometry table. This table contains geometric\n        attributes associated with the plot location, such as the hydrological unit\n        and roadless codes. <br><br>* PLOTGEOM.CN = PLOT.CN links the unique plot\n        record between the two tables.\",\"msft:item_name\":\"plotgeom\"},{\"name\":\"Plot\n        Snapshot Table\",\"description\":\"Plot snapshot table. This table combines the\n        information in the PLOT table with information in the PLOT_EVAL_GRP and POP_STRATUM\n        tables to provide a snapshot of the plot records with their associated expansion\n        and adjustment factors. <br><br>* PLOTSNAP.CN = PLOT.CN links the unique plot\n        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\n        and trends on U.S. forest location, health, growth, mortality, and production,\n        from the U.S. Forest Service''s Forest Inventory and Analysis (FIA) program\",\"msft:region\":\"westeurope\"}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '6385'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:07:33 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150732Z-r17d779659cl2jdhhC1DENntbs00000002600000000016pu\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia/queryables\n  response:\n    body:\n      string: '{\"$id\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia/queryables\",\"type\":\"object\",\"title\":\"STAC\n        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\n        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\n        Geometry\",\"description\":\"Item Geometry\"},\"end_datetime\":{\"type\":\"string\",\"title\":\"End\n        datetime\",\"format\":\"date-time\",\"pattern\":\"(\\\\+00:00|Z)$\",\"description\":\"End\n        datetime\"},\"start_datetime\":{\"type\":\"string\",\"title\":\"Start datetime\",\"format\":\"date-time\",\"pattern\":\"(\\\\+00:00|Z)$\",\"description\":\"Start\n        datetime\"}}}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '381'\n      Content-Type:\n      - application/schema+json\n      Date:\n      - Thu, 31 Jul 2025 15:07:33 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150733Z-r17d779659c7hhsdhC1DEN7tww0000000610000000004xq4\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia/queryables\n  response:\n    body:\n      string: '{\"$id\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia/queryables\",\"type\":\"object\",\"title\":\"STAC\n        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\n        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\n        Geometry\",\"description\":\"Item Geometry\"},\"end_datetime\":{\"type\":\"string\",\"title\":\"End\n        datetime\",\"format\":\"date-time\",\"pattern\":\"(\\\\+00:00|Z)$\",\"description\":\"End\n        datetime\"},\"start_datetime\":{\"type\":\"string\",\"title\":\"Start datetime\",\"format\":\"date-time\",\"pattern\":\"(\\\\+00:00|Z)$\",\"description\":\"Start\n        datetime\"}}}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '381'\n      Content-Type:\n      - application/schema+json\n      Date:\n      - Thu, 31 Jul 2025 15:07:34 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150733Z-r17d779659cgb75vhC1DEN1dss0000000600000000006trx\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless/queryables\n  response:\n    body:\n      string: '{\"$id\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless/queryables\",\"type\":\"object\",\"title\":\"STAC\n        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\n        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\n        Geometry\",\"description\":\"Item Geometry\"},\"proj:epsg\":{\"type\":[\"integer\",\"null\"],\"title\":\"EPSG\n        code\"},\"proj:shape\":{\"type\":\"array\",\"items\":{\"type\":\"integer\"},\"title\":\"Shape\",\"maxItems\":2,\"minItems\":2},\"end_datetime\":{\"type\":\"string\",\"title\":\"End\n        datetime\",\"format\":\"date-time\",\"pattern\":\"(\\\\+00:00|Z)$\",\"description\":\"End\n        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\n        datetime\",\"format\":\"date-time\",\"pattern\":\"(\\\\+00:00|Z)$\",\"description\":\"Start\n        datetime\"},\"threedep:region\":{\"type\":\"string\",\"title\":\"Region\"}}}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '524'\n      Content-Type:\n      - application/schema+json\n      Date:\n      - Thu, 31 Jul 2025 15:07:34 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150734Z-r17d779659cgv7lqhC1DENzvbg00000003n0000000005p8f\n    status:\n      code: 200\n      message: OK\nversion: 1\n"
  },
  {
    "path": "tests/cassettes/test_client/TestSigning.test_sign_with_return_warns.yaml",
    "content": "interactions:\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1\n  response:\n    body:\n      string: '{\"type\":\"Catalog\",\"id\":\"microsoft-pc\",\"title\":\"Microsoft Planetary\n        Computer STAC API\",\"description\":\"Searchable spatiotemporal metadata describing\n        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\",\"https://api.stacspec.org/v1.0.0/item-search#sort\",\"https://api.stacspec.org/v1.0.0/core\",\"https://api.stacspec.org/v1.0.0/item-search#fields\",\"https://api.stacspec.org/v1.0.0-rc.2/item-search#filter\",\"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-features-1/1.0/conf/core\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30\",\"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#query\",\"http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter\",\"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\n        conformance classes implemented by this server\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/conformance\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        search\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/search\",\"method\":\"GET\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        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\n        Annual Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Seamless DEMs\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Surface Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Forest\n        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\n        Annual North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Annual Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Tables\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HGB:\n        Harmonized Global Biomass for 2010\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        DEM GLO-30\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        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\n        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\n        IMERG\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Rasters\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Height above Ground\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        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\n        1 Radiometrically Terrain Corrected (RTC)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Intensity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Source\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MTBS:\n        Monitoring Trends in Burn Severity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"C-CAP\n        Regional Land Cover and Change\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Cloud\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Burned Area Monthly\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        Forest/Non-Forest Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Returns\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MoBI:\n        Map of Biodiversity Importance\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ERA5\n        - PDS\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chloris\n        Biomass\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HydroForecast\n        - Kwando & Upper Zambezi Rivers\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Planet-NICFI\n        Basemaps (Analytic)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Gross Primary Productivity 8-Day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Daily Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        3DEP Lidar Classification\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Terrain Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        Gap Land Cover\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Basemaps (Visual)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Global\n        Biodiversity Information Facility (GBIF)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        World 3D-30m\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        PALSAR Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Water Availability\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Net Evapotranspiration Yearly Gap-Filled\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Census\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"JRC\n        Global Surface Water\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Flood Maps\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Thermal Anomalies/Fire Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HREA:\n        High Resolution Electricity Access\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Vegetation Indices 16-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Level-2A\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Land Surface Temperature/Emissivity Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Vegetation Indices 16-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Land\n        Cover of Canada\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Snow Cover 8-day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ECMWF\n        Open Data (real-time)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        HGT v001\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Esri\n        10-Meter Land Cover (10-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-1\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Denver\n        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\n        Land Cover (7-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Cover (13-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Use\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        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\n        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\n        Cropland Data Layers (CDLs)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Urban\n        Innovation Eclipse Sensor Data\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ESA\n        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\n        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\n        National Wetlands Inventory\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        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\n        US Tabular Climate Normals\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        Lightning Detection\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel\n        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\n        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\n        L1T\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"CIL\n        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:\n        National Agriculture Imagery Program\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        Intactness\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sea\n        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\n        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\n        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\n        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\n        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\n        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\n        Snow Cover Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-5P\n        Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        Building Footprints\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        service description\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json\"},{\"rel\":\"service-doc\",\"type\":\"text/html\",\"title\":\"OpenAPI\n        service documentation\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/docs\"}],\"stac_extensions\":[]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '3364'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:07:28 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150728Z-r17d779659cz4m9lhC1DENepy00000000260000000001bzc\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/\n  response:\n    body:\n      string: '{\"type\":\"Catalog\",\"id\":\"microsoft-pc\",\"title\":\"Microsoft Planetary\n        Computer STAC API\",\"description\":\"Searchable spatiotemporal metadata describing\n        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\",\"https://api.stacspec.org/v1.0.0/item-search#sort\",\"https://api.stacspec.org/v1.0.0/core\",\"https://api.stacspec.org/v1.0.0/item-search#fields\",\"https://api.stacspec.org/v1.0.0-rc.2/item-search#filter\",\"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-features-1/1.0/conf/core\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30\",\"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#query\",\"http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter\",\"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\n        conformance classes implemented by this server\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/conformance\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        search\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/search\",\"method\":\"GET\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        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\n        Annual Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Seamless DEMs\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Surface Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Forest\n        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\n        Annual North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Annual Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Tables\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HGB:\n        Harmonized Global Biomass for 2010\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        DEM GLO-30\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        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\n        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\n        IMERG\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Rasters\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Height above Ground\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        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\n        1 Radiometrically Terrain Corrected (RTC)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Intensity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Source\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MTBS:\n        Monitoring Trends in Burn Severity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"C-CAP\n        Regional Land Cover and Change\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Cloud\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Burned Area Monthly\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        Forest/Non-Forest Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Returns\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MoBI:\n        Map of Biodiversity Importance\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ERA5\n        - PDS\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chloris\n        Biomass\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HydroForecast\n        - Kwando & Upper Zambezi Rivers\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Planet-NICFI\n        Basemaps (Analytic)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Gross Primary Productivity 8-Day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Daily Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        3DEP Lidar Classification\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Terrain Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        Gap Land Cover\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Basemaps (Visual)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Global\n        Biodiversity Information Facility (GBIF)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        World 3D-30m\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        PALSAR Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Water Availability\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Net Evapotranspiration Yearly Gap-Filled\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Census\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"JRC\n        Global Surface Water\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Flood Maps\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Thermal Anomalies/Fire Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HREA:\n        High Resolution Electricity Access\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Vegetation Indices 16-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Level-2A\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Land Surface Temperature/Emissivity Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Vegetation Indices 16-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Land\n        Cover of Canada\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Snow Cover 8-day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ECMWF\n        Open Data (real-time)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        HGT v001\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Esri\n        10-Meter Land Cover (10-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-1\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Denver\n        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\n        Land Cover (7-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Cover (13-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Use\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        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\n        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\n        Cropland Data Layers (CDLs)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Urban\n        Innovation Eclipse Sensor Data\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ESA\n        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\n        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\n        National Wetlands Inventory\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        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\n        US Tabular Climate Normals\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        Lightning Detection\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel\n        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\n        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\n        L1T\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"CIL\n        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:\n        National Agriculture Imagery Program\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        Intactness\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sea\n        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\n        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\n        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\n        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\n        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\n        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\n        Snow Cover Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-5P\n        Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        Building Footprints\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        service description\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json\"},{\"rel\":\"service-doc\",\"type\":\"text/html\",\"title\":\"OpenAPI\n        service documentation\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/docs\"}],\"stac_extensions\":[]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '3364'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:07:28 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150728Z-r17d779659c7hhsdhC1DEN7tww00000005yg000000007rf7\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a\n  response:\n    body:\n      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\n        Sentinel data terms\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/sentinel-2-l2a\",\"title\":\"Human\n        readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Sentinel-2\n        Level-2A\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/sentinel-2.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"Sentinel\n        2 L2A\"},\"geoparquet-items\":{\"href\":\"abfs://items/sentinel-2-l2a.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet\n        STAC items\",\"description\":\"Snapshot of the collection''s STAC items exported\n        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\n        optical thickness\"},{\"gsd\":60,\"name\":\"B01\",\"common_name\":\"coastal\",\"description\":\"coastal\n        aerosol\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027},{\"gsd\":10,\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"visible\n        blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098},{\"gsd\":10,\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"visible\n        green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"gsd\":10,\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"visible\n        red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"gsd\":20,\"name\":\"B05\",\"common_name\":\"rededge\",\"description\":\"vegetation\n        classification red edge\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019},{\"gsd\":20,\"name\":\"B06\",\"common_name\":\"rededge\",\"description\":\"vegetation\n        classification red edge\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018},{\"gsd\":20,\"name\":\"B07\",\"common_name\":\"rededge\",\"description\":\"vegetation\n        classification red edge\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028},{\"gsd\":10,\"name\":\"B08\",\"common_name\":\"nir\",\"description\":\"near\n        infrared\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145},{\"gsd\":20,\"name\":\"B8A\",\"common_name\":\"rededge\",\"description\":\"vegetation\n        classification red edge\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033},{\"gsd\":60,\"name\":\"B09\",\"description\":\"water\n        vapor\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026},{\"gsd\":20,\"name\":\"B11\",\"common_name\":\"swir16\",\"description\":\"short-wave\n        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\n        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\n        [Sentinel-2](https://sentinel.esa.int/web/sentinel/missions/sentinel-2) program\n        provides global imagery in thirteen spectral bands at 10m-60m resolution and\n        a revisit time of approximately five days.  This dataset represents the global\n        Sentinel-2 archive, from 2016 to the present, processed to L2A (bottom-of-atmosphere)\n        using [Sen2Cor](https://step.esa.int/main/snap-supported-plugins/sen2cor/)\n        and converted to [cloud-optimized GeoTIFF](https://www.cogeo.org/) format.\",\"item_assets\":{\"AOT\":{\"gsd\":10.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Aerosol\n        optical thickness (AOT)\"},\"B01\":{\"gsd\":60.0,\"type\":\"image/tiff; application=geotiff;\n        profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band 1 - Coastal aerosol\n        - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"description\":\"Band\n        1 - Coastal aerosol\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027}]},\"B02\":{\"gsd\":10.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        2 - Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        2 - Blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}]},\"B03\":{\"gsd\":10.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        3 - Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        3 - Green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045}]},\"B04\":{\"gsd\":10.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        4 - Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        4 - Red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038}]},\"B05\":{\"gsd\":20.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        5 - Vegetation red edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"description\":\"Band\n        5 - Vegetation red edge 1\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019}]},\"B06\":{\"gsd\":20.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        6 - Vegetation red edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"description\":\"Band\n        6 - Vegetation red edge 2\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018}]},\"B07\":{\"gsd\":20.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        7 - Vegetation red edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"description\":\"Band\n        7 - Vegetation red edge 3\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028}]},\"B08\":{\"gsd\":10.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8 - NIR - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"description\":\"Band\n        8 - NIR\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145}]},\"B09\":{\"gsd\":60.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        9 - Water vapor - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"description\":\"Band 9 - Water\n        vapor\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026}]},\"B11\":{\"gsd\":20.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        11 - SWIR (1.6) - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"description\":\"Band\n        11 - SWIR (1.6)\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143}]},\"B12\":{\"gsd\":20.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        12 - SWIR (2.2) - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"description\":\"Band\n        12 - SWIR (2.2)\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}]},\"B8A\":{\"gsd\":20.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8A - Vegetation red edge 4 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"rededge\",\"description\":\"Band\n        8A - Vegetation red edge 4\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033}]},\"SCL\":{\"gsd\":20.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Scene\n        classfication map (SCL)\"},\"WVP\":{\"gsd\":10.0,\"type\":\"image/tiff; application=geotiff;\n        profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Water vapour (WVP)\"},\"visual\":{\"gsd\":10.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"True\n        color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        4 - Red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        3 - Green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        2 - Blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}]},\"preview\":{\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"thumbnail\"],\"title\":\"Thumbnail\"},\"safe-manifest\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"SAFE\n        manifest\"},\"granule-metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Granule\n        metadata\"},\"inspire-metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"INSPIRE\n        metadata\"},\"product-metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Product\n        metadata\"},\"datastrip-metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Datastrip\n        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\n        Sentinel-2 program provides global imagery in thirteen spectral bands at 10m-60m\n        resolution and a revisit time of approximately five days.  This dataset contains\n        the global Sentinel-2 archive, from 2016 to the present, processed to L2A\n        (bottom-of-atmosphere).\",\"msft:region\":\"westeurope\"}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '2151'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:07:29 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150728Z-r17d779659csvfh6hC1DENnnr400000004k0000000006bng\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1\n  response:\n    body:\n      string: '{\"type\":\"Catalog\",\"id\":\"microsoft-pc\",\"title\":\"Microsoft Planetary\n        Computer STAC API\",\"description\":\"Searchable spatiotemporal metadata describing\n        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\",\"https://api.stacspec.org/v1.0.0/item-search#sort\",\"https://api.stacspec.org/v1.0.0/core\",\"https://api.stacspec.org/v1.0.0/item-search#fields\",\"https://api.stacspec.org/v1.0.0-rc.2/item-search#filter\",\"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-features-1/1.0/conf/core\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30\",\"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#query\",\"http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter\",\"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\n        conformance classes implemented by this server\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/conformance\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        search\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/search\",\"method\":\"GET\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        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\n        Annual Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Seamless DEMs\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Surface Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Forest\n        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\n        Annual North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Annual Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Tables\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HGB:\n        Harmonized Global Biomass for 2010\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        DEM GLO-30\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        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\n        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\n        IMERG\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Rasters\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Height above Ground\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        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\n        1 Radiometrically Terrain Corrected (RTC)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Intensity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Source\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MTBS:\n        Monitoring Trends in Burn Severity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"C-CAP\n        Regional Land Cover and Change\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Cloud\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Burned Area Monthly\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        Forest/Non-Forest Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Returns\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MoBI:\n        Map of Biodiversity Importance\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ERA5\n        - PDS\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chloris\n        Biomass\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HydroForecast\n        - Kwando & Upper Zambezi Rivers\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Planet-NICFI\n        Basemaps (Analytic)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Gross Primary Productivity 8-Day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Daily Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        3DEP Lidar Classification\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Terrain Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        Gap Land Cover\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Basemaps (Visual)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Global\n        Biodiversity Information Facility (GBIF)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        World 3D-30m\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        PALSAR Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Water Availability\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Net Evapotranspiration Yearly Gap-Filled\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Census\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"JRC\n        Global Surface Water\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Flood Maps\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Thermal Anomalies/Fire Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HREA:\n        High Resolution Electricity Access\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Vegetation Indices 16-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Level-2A\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Land Surface Temperature/Emissivity Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Vegetation Indices 16-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Land\n        Cover of Canada\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Snow Cover 8-day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ECMWF\n        Open Data (real-time)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        HGT v001\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Esri\n        10-Meter Land Cover (10-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-1\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Denver\n        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\n        Land Cover (7-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Cover (13-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Use\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        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\n        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\n        Cropland Data Layers (CDLs)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Urban\n        Innovation Eclipse Sensor Data\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ESA\n        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\n        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\n        National Wetlands Inventory\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        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\n        US Tabular Climate Normals\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        Lightning Detection\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel\n        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\n        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\n        L1T\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"CIL\n        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:\n        National Agriculture Imagery Program\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        Intactness\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sea\n        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\n        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\n        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\n        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\n        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\n        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\n        Snow Cover Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-5P\n        Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        Building Footprints\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        service description\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json\"},{\"rel\":\"service-doc\",\"type\":\"text/html\",\"title\":\"OpenAPI\n        service documentation\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/docs\"}],\"stac_extensions\":[]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '3364'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:07:29 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150729Z-r17d779659cxsjnnhC1DENgtwc0000000240000000003yht\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/\n  response:\n    body:\n      string: '{\"type\":\"Catalog\",\"id\":\"microsoft-pc\",\"title\":\"Microsoft Planetary\n        Computer STAC API\",\"description\":\"Searchable spatiotemporal metadata describing\n        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\",\"https://api.stacspec.org/v1.0.0/item-search#sort\",\"https://api.stacspec.org/v1.0.0/core\",\"https://api.stacspec.org/v1.0.0/item-search#fields\",\"https://api.stacspec.org/v1.0.0-rc.2/item-search#filter\",\"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-features-1/1.0/conf/core\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30\",\"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#query\",\"http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter\",\"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\n        conformance classes implemented by this server\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/conformance\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        search\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/search\",\"method\":\"GET\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        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\n        Annual Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Seamless DEMs\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Surface Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Forest\n        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\n        Annual North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Annual Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Tables\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HGB:\n        Harmonized Global Biomass for 2010\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        DEM GLO-30\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        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\n        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\n        IMERG\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Rasters\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Height above Ground\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        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\n        1 Radiometrically Terrain Corrected (RTC)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Intensity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Source\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MTBS:\n        Monitoring Trends in Burn Severity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"C-CAP\n        Regional Land Cover and Change\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Cloud\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Burned Area Monthly\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        Forest/Non-Forest Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Returns\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MoBI:\n        Map of Biodiversity Importance\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ERA5\n        - PDS\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chloris\n        Biomass\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HydroForecast\n        - Kwando & Upper Zambezi Rivers\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Planet-NICFI\n        Basemaps (Analytic)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Gross Primary Productivity 8-Day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Daily Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        3DEP Lidar Classification\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Terrain Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        Gap Land Cover\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Basemaps (Visual)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Global\n        Biodiversity Information Facility (GBIF)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        World 3D-30m\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        PALSAR Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Water Availability\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Net Evapotranspiration Yearly Gap-Filled\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Census\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"JRC\n        Global Surface Water\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Flood Maps\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Thermal Anomalies/Fire Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HREA:\n        High Resolution Electricity Access\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Vegetation Indices 16-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Level-2A\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Land Surface Temperature/Emissivity Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Vegetation Indices 16-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Land\n        Cover of Canada\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Snow Cover 8-day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ECMWF\n        Open Data (real-time)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        HGT v001\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Esri\n        10-Meter Land Cover (10-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-1\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Denver\n        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\n        Land Cover (7-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Cover (13-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Use\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        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\n        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\n        Cropland Data Layers (CDLs)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Urban\n        Innovation Eclipse Sensor Data\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ESA\n        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\n        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\n        National Wetlands Inventory\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        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\n        US Tabular Climate Normals\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        Lightning Detection\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel\n        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\n        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\n        L1T\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"CIL\n        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:\n        National Agriculture Imagery Program\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        Intactness\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sea\n        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\n        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\n        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\n        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\n        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\n        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\n        Snow Cover Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-5P\n        Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        Building Footprints\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        service description\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json\"},{\"rel\":\"service-doc\",\"type\":\"text/html\",\"title\":\"OpenAPI\n        service documentation\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/docs\"}],\"stac_extensions\":[]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '3364'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:07:30 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150729Z-r17d779659cswp4rhC1DENr00400000003ng000000004cpk\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a\n  response:\n    body:\n      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\n        Sentinel data terms\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/sentinel-2-l2a\",\"title\":\"Human\n        readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Sentinel-2\n        Level-2A\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/sentinel-2.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"Sentinel\n        2 L2A\"},\"geoparquet-items\":{\"href\":\"abfs://items/sentinel-2-l2a.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet\n        STAC items\",\"description\":\"Snapshot of the collection''s STAC items exported\n        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\n        optical thickness\"},{\"gsd\":60,\"name\":\"B01\",\"common_name\":\"coastal\",\"description\":\"coastal\n        aerosol\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027},{\"gsd\":10,\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"visible\n        blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098},{\"gsd\":10,\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"visible\n        green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"gsd\":10,\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"visible\n        red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"gsd\":20,\"name\":\"B05\",\"common_name\":\"rededge\",\"description\":\"vegetation\n        classification red edge\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019},{\"gsd\":20,\"name\":\"B06\",\"common_name\":\"rededge\",\"description\":\"vegetation\n        classification red edge\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018},{\"gsd\":20,\"name\":\"B07\",\"common_name\":\"rededge\",\"description\":\"vegetation\n        classification red edge\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028},{\"gsd\":10,\"name\":\"B08\",\"common_name\":\"nir\",\"description\":\"near\n        infrared\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145},{\"gsd\":20,\"name\":\"B8A\",\"common_name\":\"rededge\",\"description\":\"vegetation\n        classification red edge\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033},{\"gsd\":60,\"name\":\"B09\",\"description\":\"water\n        vapor\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026},{\"gsd\":20,\"name\":\"B11\",\"common_name\":\"swir16\",\"description\":\"short-wave\n        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\n        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\n        [Sentinel-2](https://sentinel.esa.int/web/sentinel/missions/sentinel-2) program\n        provides global imagery in thirteen spectral bands at 10m-60m resolution and\n        a revisit time of approximately five days.  This dataset represents the global\n        Sentinel-2 archive, from 2016 to the present, processed to L2A (bottom-of-atmosphere)\n        using [Sen2Cor](https://step.esa.int/main/snap-supported-plugins/sen2cor/)\n        and converted to [cloud-optimized GeoTIFF](https://www.cogeo.org/) format.\",\"item_assets\":{\"AOT\":{\"gsd\":10.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Aerosol\n        optical thickness (AOT)\"},\"B01\":{\"gsd\":60.0,\"type\":\"image/tiff; application=geotiff;\n        profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band 1 - Coastal aerosol\n        - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"description\":\"Band\n        1 - Coastal aerosol\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027}]},\"B02\":{\"gsd\":10.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        2 - Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        2 - Blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}]},\"B03\":{\"gsd\":10.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        3 - Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        3 - Green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045}]},\"B04\":{\"gsd\":10.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        4 - Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        4 - Red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038}]},\"B05\":{\"gsd\":20.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        5 - Vegetation red edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"description\":\"Band\n        5 - Vegetation red edge 1\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019}]},\"B06\":{\"gsd\":20.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        6 - Vegetation red edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"description\":\"Band\n        6 - Vegetation red edge 2\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018}]},\"B07\":{\"gsd\":20.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        7 - Vegetation red edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"description\":\"Band\n        7 - Vegetation red edge 3\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028}]},\"B08\":{\"gsd\":10.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8 - NIR - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"description\":\"Band\n        8 - NIR\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145}]},\"B09\":{\"gsd\":60.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        9 - Water vapor - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"description\":\"Band 9 - Water\n        vapor\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026}]},\"B11\":{\"gsd\":20.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        11 - SWIR (1.6) - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"description\":\"Band\n        11 - SWIR (1.6)\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143}]},\"B12\":{\"gsd\":20.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        12 - SWIR (2.2) - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"description\":\"Band\n        12 - SWIR (2.2)\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}]},\"B8A\":{\"gsd\":20.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8A - Vegetation red edge 4 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"rededge\",\"description\":\"Band\n        8A - Vegetation red edge 4\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033}]},\"SCL\":{\"gsd\":20.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Scene\n        classfication map (SCL)\"},\"WVP\":{\"gsd\":10.0,\"type\":\"image/tiff; application=geotiff;\n        profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Water vapour (WVP)\"},\"visual\":{\"gsd\":10.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"True\n        color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        4 - Red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        3 - Green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        2 - Blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}]},\"preview\":{\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"thumbnail\"],\"title\":\"Thumbnail\"},\"safe-manifest\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"SAFE\n        manifest\"},\"granule-metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Granule\n        metadata\"},\"inspire-metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"INSPIRE\n        metadata\"},\"product-metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Product\n        metadata\"},\"datastrip-metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Datastrip\n        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\n        Sentinel-2 program provides global imagery in thirteen spectral bands at 10m-60m\n        resolution and a revisit time of approximately five days.  This dataset contains\n        the global Sentinel-2 archive, from 2016 to the present, processed to L2A\n        (bottom-of-atmosphere).\",\"msft:region\":\"westeurope\"}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '2151'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:07:30 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150730Z-r17d779659cqdtckhC1DENvakn000000027000000000027r\n    status:\n      code: 200\n      message: OK\nversion: 1\n"
  },
  {
    "path": "tests/cassettes/test_client/test_collections_are_clients.yaml",
    "content": "interactions:\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/\n  response:\n    body:\n      string: '{\"type\":\"Catalog\",\"id\":\"microsoft-pc\",\"title\":\"Microsoft Planetary\n        Computer STAC API\",\"description\":\"Searchable spatiotemporal metadata describing\n        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\",\"https://api.stacspec.org/v1.0.0/item-search#sort\",\"https://api.stacspec.org/v1.0.0/core\",\"https://api.stacspec.org/v1.0.0/item-search#fields\",\"https://api.stacspec.org/v1.0.0-rc.2/item-search#filter\",\"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-features-1/1.0/conf/core\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30\",\"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#query\",\"http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter\",\"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\n        conformance classes implemented by this server\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/conformance\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        search\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/search\",\"method\":\"GET\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        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\n        Annual Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Seamless DEMs\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Surface Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Forest\n        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\n        Annual North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Annual Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Tables\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HGB:\n        Harmonized Global Biomass for 2010\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        DEM GLO-30\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        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\n        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\n        IMERG\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Rasters\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Height above Ground\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        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\n        1 Radiometrically Terrain Corrected (RTC)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Intensity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Source\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MTBS:\n        Monitoring Trends in Burn Severity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"C-CAP\n        Regional Land Cover and Change\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Cloud\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Burned Area Monthly\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        Forest/Non-Forest Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Returns\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MoBI:\n        Map of Biodiversity Importance\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ERA5\n        - PDS\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chloris\n        Biomass\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HydroForecast\n        - Kwando & Upper Zambezi Rivers\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Planet-NICFI\n        Basemaps (Analytic)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Gross Primary Productivity 8-Day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Daily Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        3DEP Lidar Classification\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Terrain Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        Gap Land Cover\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Basemaps (Visual)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Global\n        Biodiversity Information Facility (GBIF)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        World 3D-30m\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        PALSAR Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Water Availability\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Net Evapotranspiration Yearly Gap-Filled\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Census\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"JRC\n        Global Surface Water\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Flood Maps\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Thermal Anomalies/Fire Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HREA:\n        High Resolution Electricity Access\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Vegetation Indices 16-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Level-2A\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Land Surface Temperature/Emissivity Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Vegetation Indices 16-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Land\n        Cover of Canada\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Snow Cover 8-day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ECMWF\n        Open Data (real-time)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        HGT v001\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Esri\n        10-Meter Land Cover (10-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-1\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Denver\n        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\n        Land Cover (7-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Cover (13-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Use\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        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\n        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\n        Cropland Data Layers (CDLs)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Urban\n        Innovation Eclipse Sensor Data\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ESA\n        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\n        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\n        National Wetlands Inventory\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        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\n        US Tabular Climate Normals\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        Lightning Detection\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel\n        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\n        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\n        L1T\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"CIL\n        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:\n        National Agriculture Imagery Program\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        Intactness\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sea\n        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\n        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\n        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\n        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\n        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\n        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\n        Snow Cover Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-5P\n        Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        Building Footprints\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        service description\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json\"},{\"rel\":\"service-doc\",\"type\":\"text/html\",\"title\":\"OpenAPI\n        service documentation\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/docs\"}],\"stac_extensions\":[]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '3364'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:07:35 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150735Z-r17d779659csvfh6hC1DENnnr400000004mg000000003nc4\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by\n  response:\n    body:\n      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\n        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\n        homepage\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/cil-gdpcir-cc-by\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"CIL\n        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\n        STAC items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        Impact Lab\\\",\\\"Rhodium Group\\\",\\\"Precipitation\\\",\\\"Temperature\\\"],\\\"providers\\\":[{\\\"url\\\":\\\"https://impactlab.org/\\\",\\\"name\\\":\\\"Climate\n        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\n        World Climate Research Programme's [6th Coupled Model Intercomparison Project\n        (CMIP6)](https://www.wcrp-climate.org/wgcm-cmip/wgcm-cmip6) represents an\n        enormous advance in the quality, detail, and scope of climate modeling.\\\\n\\\\nThe\n        [Global Downscaled Projections for Climate Impacts Research](https://github.com/ClimateImpactLab/downscaleCMIP6)\n        dataset makes this modeling more applicable to understanding the impacts of\n        changes in the climate on humans and society with two key developments: trend-preserving\n        bias correction and downscaling. In this dataset, the [Climate Impact Lab](https://impactlab.org)\n        provides global, daily minimum and maximum air temperature at the surface\n        (`tasmin` and `tasmax`) and daily cumulative surface precipitation (`pr`)\n        corresponding to the CMIP6 historical, ssp1-2.6, ssp2-4.5, ssp3-7.0, and ssp5-8.5\n        scenarios for 25 global climate models on a 1/4-degree regular global grid.\\\\n\\\\n##\n        Accessing the data\\\\n\\\\nGDPCIR data can be accessed on the Microsoft Planetary\n        Computer. The dataset is made of of three collections, distinguished by data\n        license:\\\\n* [Public domain (CC0-1.0) collection](https://planetarycomputer.microsoft.com/dataset/cil-gdpcir-cc0)\\\\n*\n        [Attribution (CC BY 4.0) collection](https://planetarycomputer.microsoft.com/dataset/cil-gdpcir-cc-by)\\\\n\\\\nEach\n        modeling center with bias corrected and downscaled data in this collection\n        falls into one of these license categories - see the [table below](/dataset/cil-gdpcir-cc-by#available-institutions-models-and-scenarios-by-license-collection)\n        to see which model is in each collection, and see the section below on [Citing,\n        Licensing, and using data produced by this project](/dataset/cil-gdpcir-cc-by#citing-licensing-and-using-data-produced-by-this-project)\n        for citations and additional information about each license.\\\\n\\\\n## Data\n        format & contents\\\\n\\\\nThe data is stored as partitioned zarr stores (see\n        [https://zarr.readthedocs.io](https://zarr.readthedocs.io)), each of which\n        includes thousands of data and metadata files covering the full time span\n        of the experiment. Historical zarr stores contain just over 50 GB, while SSP\n        zarr stores contain nearly 70GB. Each store is stored as a 32-bit float, with\n        dimensions time (daily datetime), lat (float latitude), and lon (float longitude).\n        The data is chunked at each interval of 365 days and 90 degree interval of\n        latitude and longitude. Therefore, each chunk is `(365, 360, 360)`, with each\n        chunk occupying approximately 180MB in memory.\\\\n\\\\nHistorical data is daily,\n        excluding leap days, from Jan 1, 1950 to Dec 31, 2014; SSP data is daily,\n        excluding leap days, from Jan 1, 2015 to either Dec 31, 2099 or Dec 31, 2100,\n        depending on data availability in the source GCM.\\\\n\\\\nThe spatial domain\n        covers all 0.25-degree grid cells, indexed by the grid center, with grid edges\n        on the quarter-degree, using a -180 to 180 longitude convention. Thus, the\n        \\u201Clon\\u201D coordinate extends from -179.875 to 179.875, and the \\u201Clat\\u201D\n        coordinate extends from -89.875 to 89.875, with intermediate values at each\n        0.25-degree increment between (e.g. -179.875, -179.625, -179.375, etc).\\\\n\\\\n##\n        Available institutions, models, and scenarios by license collection\\\\n\\\\n|\n        Modeling institution |   Source model    |           Available experiments\n        \\           |   License collection   |\\\\n| -------------------- | -----------------\n        | ------------------------------------------ | ---------------------- |\\\\n|\n        CAS                  | FGOALS-g3 [^1]    | SSP2-4.5, SSP3-7.0, and SSP5-8.5\n        \\          | Public domain datasets |\\\\n| INM                  | INM-CM4-8\n        \\        | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | Public domain datasets\n        |\\\\n| INM                  | INM-CM5-0         | SSP1-2.6, SSP2-4.5, SSP3-7.0,\n        and SSP5-8.5 | Public domain datasets |\\\\n| BCC                  | BCC-CSM2-MR\n        \\      | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40               |\\\\n|\n        CMCC                 | CMCC-CM2-SR5      | ssp1-2.6, ssp2-4.5, ssp3-7.0, ssp5-8.5\n        \\    | CC-BY-40               |\\\\n| CMCC                 | CMCC-ESM2         |\n        ssp1-2.6, ssp2-4.5, ssp3-7.0, ssp5-8.5     | CC-BY-40               |\\\\n|\n        CSIRO-ARCCSS         | ACCESS-CM2        | SSP2-4.5 and SSP3-7.0                      |\n        CC-BY-40               |\\\\n| CSIRO                | ACCESS-ESM1-5     | SSP1-2.6,\n        SSP2-4.5, and SSP3-7.0           | CC-BY-40               |\\\\n| MIROC                |\n        MIROC-ES2L        | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40\n        \\              |\\\\n| MIROC                | MIROC6            | SSP1-2.6,\n        SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40               |\\\\n| MOHC                 |\n        HadGEM3-GC31-LL   | SSP1-2.6, SSP2-4.5, and SSP5-8.5           | CC-BY-40\n        \\              |\\\\n| MOHC                 | UKESM1-0-LL       | SSP1-2.6,\n        SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40               |\\\\n| MPI-M                |\n        MPI-ESM1-2-LR     | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40\n        \\              |\\\\n| MPI-M/DKRZ [^2]      | MPI-ESM1-2-HR     | SSP1-2.6 and\n        SSP5-8.5                      | CC-BY-40               |\\\\n| NCC                  |\n        NorESM2-LM        | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40\n        \\              |\\\\n| NCC                  | NorESM2-MM        | SSP1-2.6,\n        SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40               |\\\\n| NOAA-GFDL\n        \\           | GFDL-CM4          | SSP2-4.5 and SSP5-8.5                      |\n        CC-BY-40               |\\\\n| NOAA-GFDL            | GFDL-ESM4         | SSP1-2.6,\n        SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40               |\\\\n| NUIST                |\n        NESM3             | SSP1-2.6, SSP2-4.5, and SSP5-8.5           | CC-BY-40\n        \\              |\\\\n| EC-Earth-Consortium  | EC-Earth3         | ssp1-2.6,\n        ssp2-4.5, ssp3-7.0, and ssp5-8.5 | CC-BY-40               |\\\\n| EC-Earth-Consortium\n        \\ | EC-Earth3-AerChem | ssp370                                     | CC-BY-40\n        \\              |\\\\n| EC-Earth-Consortium  | EC-Earth3-CC      | ssp245 and\n        ssp585                          | CC-BY-40               |\\\\n| EC-Earth-Consortium\n        \\ | EC-Earth3-Veg     | ssp1-2.6, ssp2-4.5, ssp3-7.0, and ssp5-8.5 | CC-BY-40\n        \\              |\\\\n| EC-Earth-Consortium  | EC-Earth3-Veg-LR  | ssp1-2.6,\n        ssp2-4.5, ssp3-7.0, and ssp5-8.5 | CC-BY-40               |\\\\n| CCCma                |\n        CanESM5           | ssp1-2.6, ssp2-4.5, ssp3-7.0, ssp5-8.5     | CC-BY-40[^3]\n        \\          |\\\\n\\\\n*Notes:*\\\\n\\\\n[^1]: At the time of running, no ssp1-2.6\n        precipitation data was available. Therefore, we provide `tasmin` and `tamax`\n        for this model and experiment, but not `pr`. All other model/experiment combinations\n        in the above table include all three variables.\\\\n\\\\n[^2]: The institution\n        which ran MPI-ESM1-2-HR\\u2019s historical (CMIP) simulations is `MPI-M`, while\n        the future (ScenarioMIP) simulations were run by `DKRZ`. Therefore, the institution\n        component of `MPI-ESM1-2-HR` filepaths differ between `historical` and `SSP`\n        scenarios.\\\\n\\\\n[^3]: This dataset was previously licensed as [CC BY-SA 4.0](https://creativecommons.org/licenses/by-sa/4.0/),\n        but was relicensed under [CC BY 4.0](https://creativecommons.org/licenses/by/4.0)\n        in March, 2023. \\\\n\\\\n## Project methods\\\\n\\\\nThis project makes use of statistical\n        bias correction and downscaling algorithms, which are specifically designed\n        to accurately represent changes in the extremes. For this reason, we selected\n        Quantile Delta Mapping (QDM), following the method introduced by [Cannon et\n        al. (2015)](https://doi.org/10.1175/JCLI-D-14-00754.1), which preserves quantile-specific\n        trends from the GCM while fitting the full distribution for a given day-of-year\n        to a reference dataset (ERA5).\\\\n\\\\nWe then introduce a similar method tailored\n        to increase spatial resolution while preserving extreme behavior, Quantile-Preserving\n        Localized-Analog Downscaling (QPLAD).\\\\n\\\\nTogether, these methods provide\n        a robust means to handle both the central and tail behavior seen in climate\n        model output, while aligning the full distribution to a state-of-the-art reanalysis\n        dataset and providing the spatial granularity needed to study surface impacts.\\\\n\\\\nFor\n        further documentation, see [Global downscaled projections for climate impacts\n        research (GDPCIR): preserving extremes for modeling future climate impacts](https://egusphere.copernicus.org/preprints/2023/egusphere-2022-1513/)\n        (EGUsphere, 2022 [preprint]).\\\\n\\\\n## Citing, licensing, and using data produced\n        by this project\\\\n\\\\nProjects making use of the data produced as part of the\n        Climate Impact Lab Global Downscaled Projections for Climate Impacts Research\n        (CIL GDPCIR) project are requested to cite both this project and the source\n        datasets from which these results are derived. Additionally, the use of data\n        derived from some GCMs *requires* citations, and some modeling centers impose\n        licensing restrictions & requirements on derived works. See each GCM's license\n        info in the links below for more information.\\\\n\\\\n### CIL GDPCIR\\\\n\\\\nUsers\n        are requested to cite this project in derived works. Our method documentation\n        paper may be cited using the following:\\\\n\\\\n> Gergel, D. R., Malevich, S.\n        B., McCusker, K. E., Tenezakis, E., Delgado, M. T., Fish, M. A., and Kopp,\n        R. E.: Global downscaled projections for climate impacts research (GDPCIR):\n        preserving extremes for modeling future climate impacts, EGUsphere [preprint],\n        https://doi.org/10.5194/egusphere-2022-1513, 2023. \\\\n\\\\nThe code repository\n        may be cited using the following:\\\\n\\\\n> Diana Gergel, Kelly McCusker, Brewster\n        Malevich, Emile Tenezakis, Meredith Fish, Michael Delgado (2022). ClimateImpactLab/downscaleCMIP6:\n        (v1.0.0). Zenodo. https://doi.org/10.5281/zenodo.6403794\\\\n\\\\n### ERA5\\\\n\\\\nAdditionally,\n        we request you cite the historical dataset used in bias correction and downscaling,\n        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>\n        Hersbach, H, et al. The ERA5 global reanalysis. Q J R Meteorol Soc.2020; 146:\n        1999\\u20132049. DOI: [10.1002/qj.3803](https://doi.org/10.1002/qj.3803)\\\\n>\\\\n>\n        Mu\\xF1oz Sabater, J., (2019): ERA5-Land hourly data from 1981 to present.\n        Copernicus Climate Change Service (C3S) Climate Data Store (CDS). (Accessed\n        on June 4, 2021), DOI: [10.24381/cds.e2161bac](https://doi.org/10.24381/cds.e2161bac)\\\\n>\\\\n>\n        Mu\\xF1oz Sabater, J., (2021): ERA5-Land hourly data from 1950 to 1980. Copernicus\n        Climate Change Service (C3S) Climate Data Store (CDS). (Accessed on June 4,\n        2021), DOI: [10.24381/cds.e2161bac](https://doi.org/10.24381/cds.e2161bac)\\\\n\\\\n###\n        GCM-specific citations & licenses\\\\n\\\\nThe CMIP6 simulation data made available\n        through the Earth System Grid Federation (ESGF) are subject to Creative Commons\n        [BY-SA 4.0](https://creativecommons.org/licenses/by-sa/4.0/) or [BY-NC-SA\n        4.0](https://creativecommons.org/licenses/by-nc-sa/4.0/) licenses. The Climate\n        Impact Lab has reached out to each of the modeling institutions to request\n        waivers from these terms so the outputs of this project may be used with fewer\n        restrictions, and has been granted permission to release the data using the\n        licenses listed here.\\\\n\\\\n#### Public Domain Datasets\\\\n\\\\nThe following\n        bias corrected and downscaled model simulations are available in the public\n        domain using a [CC0 1.0 Universal Public Domain Declaration](https://creativecommons.org/publicdomain/zero/1.0/).\n        Access the collection on Planetary Computer at https://planetarycomputer.microsoft.com/dataset/cil-gdpcir-cc0.\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > Li, Lijuan **(2019)**. *CAS FGOALS-g3 model output\n        prepared for CMIP6 CMIP*. Version 20190826. Earth System Grid Federation.\n        https://doi.org/10.22033/ESGF/CMIP6.1783\\\\n\\\\n  ScenarioMIP Citation:\\\\n\\\\n\n        \\ > Li, Lijuan **(2019)**. *CAS FGOALS-g3 model output prepared for CMIP6\n        ScenarioMIP*. SSP1-2.6 version 20190818; SSP2-4.5 version 20190818; SSP3-7.0\n        version 20190820; SSP5-8.5 tasmax version 20190819; SSP5-8.5 tasmin version\n        20190819; SSP5-8.5 pr version 20190818. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.2056\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > Volodin, Evgeny; Mortikov, Evgeny; Gritsun, Andrey;\n        Lykossov, Vasily; Galin, Vener; Diansky, Nikolay; Gusev, Anatoly; Kostrykin,\n        Sergey; Iakovlev, Nikolay; Shestakova, Anna; Emelina, Svetlana **(2019)**.\n        *INM INM-CM4-8 model output prepared for CMIP6 CMIP*. Version 20190530. Earth\n        System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1422\\\\n\\\\n  ScenarioMIP\n        Citation:\\\\n\\\\n  > Volodin, Evgeny; Mortikov, Evgeny; Gritsun, Andrey; Lykossov,\n        Vasily; Galin, Vener; Diansky, Nikolay; Gusev, Anatoly; Kostrykin, Sergey;\n        Iakovlev, Nikolay; Shestakova, Anna; Emelina, Svetlana **(2019)**. *INM INM-CM4-8\n        model output prepared for CMIP6 ScenarioMIP*. Version 20190603. Earth System\n        Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.12321\\\\n\\\\n\\\\n* **INM-CM5-0**\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > Volodin, Evgeny; Mortikov, Evgeny; Gritsun, Andrey;\n        Lykossov, Vasily; Galin, Vener; Diansky, Nikolay; Gusev, Anatoly; Kostrykin,\n        Sergey; Iakovlev, Nikolay; Shestakova, Anna; Emelina, Svetlana **(2019)**.\n        *INM INM-CM5-0 model output prepared for CMIP6 CMIP*. Version 20190610. Earth\n        System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1423\\\\n\\\\n  ScenarioMIP\n        Citation:\\\\n\\\\n  > Volodin, Evgeny; Mortikov, Evgeny; Gritsun, Andrey; Lykossov,\n        Vasily; Galin, Vener; Diansky, Nikolay; Gusev, Anatoly; Kostrykin, Sergey;\n        Iakovlev, Nikolay; Shestakova, Anna; Emelina, Svetlana **(2019)**. *INM INM-CM5-0\n        model output prepared for CMIP6 ScenarioMIP*. SSP1-2.6 version 20190619; SSP2-4.5\n        version 20190619; SSP3-7.0 version 20190618; SSP5-8.5 version 20190724. Earth\n        System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.12322\\\\n\\\\n\\\\n####\n        CC-BY-4.0\\\\n\\\\nThe following bias corrected and downscaled model simulations\n        are licensed under a [Creative Commons Attribution 4.0 International License](https://creativecommons.org/licenses/by/4.0/).\n        Note that this license requires citation of the source model output (included\n        here). Please see https://creativecommons.org/licenses/by/4.0/ for more information.\n        Access the collection on Planetary Computer at https://planetarycomputer.microsoft.com/dataset/cil-gdpcir-cc-by.\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > Dix, Martin; Bi, Doahua; Dobrohotoff, Peter; Fiedler,\n        Russell; Harman, Ian; Law, Rachel; Mackallah, Chloe; Marsland, Simon; O'Farrell,\n        Siobhan; Rashid, Harun; Srbinovsky, Jhan; Sullivan, Arnold; Trenham, Claire;\n        Vohralik, Peter; Watterson, Ian; Williams, Gareth; Woodhouse, Matthew; Bodman,\n        Roger; Dias, Fabio Boeira; Domingues, Catia; Hannah, Nicholas; Heerdegen,\n        Aidan; Savita, Abhishek; Wales, Scott; Allen, Chris; Druken, Kelsey; Evans,\n        Ben; Richards, Clare; Ridzwan, Syazwan Mohamed; Roberts, Dale; Smillie, Jon;\n        Snow, Kate; Ward, Marshall; Yang, Rui **(2019)**. *CSIRO-ARCCSS ACCESS-CM2\n        model output prepared for CMIP6 CMIP*. Version 20191108. Earth System Grid\n        Federation. https://doi.org/10.22033/ESGF/CMIP6.2281\\\\n\\\\n  ScenarioMIP Citation:\\\\n\\\\n\n        \\ > Dix, Martin; Bi, Doahua; Dobrohotoff, Peter; Fiedler, Russell; Harman,\n        Ian; Law, Rachel; Mackallah, Chloe; Marsland, Simon; O'Farrell, Siobhan; Rashid,\n        Harun; Srbinovsky, Jhan; Sullivan, Arnold; Trenham, Claire; Vohralik, Peter;\n        Watterson, Ian; Williams, Gareth; Woodhouse, Matthew; Bodman, Roger; Dias,\n        Fabio Boeira; Domingues, Catia; Hannah, Nicholas; Heerdegen, Aidan; Savita,\n        Abhishek; Wales, Scott; Allen, Chris; Druken, Kelsey; Evans, Ben; Richards,\n        Clare; Ridzwan, Syazwan Mohamed; Roberts, Dale; Smillie, Jon; Snow, Kate;\n        Ward, Marshall; Yang, Rui **(2019)**. *CSIRO-ARCCSS ACCESS-CM2 model output\n        prepared for CMIP6 ScenarioMIP*. Version 20191108. Earth System Grid Federation.\n        https://doi.org/10.22033/ESGF/CMIP6.2285\\\\n\\\\n\\\\n* **ACCESS-ESM1-5**\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > Ziehn, Tilo; Chamberlain, Matthew; Lenton, Andrew;\n        Law, Rachel; Bodman, Roger; Dix, Martin; Wang, Yingping; Dobrohotoff, Peter;\n        Srbinovsky, Jhan; Stevens, Lauren; Vohralik, Peter; Mackallah, Chloe; Sullivan,\n        Arnold; O'Farrell, Siobhan; Druken, Kelsey **(2019)**. *CSIRO ACCESS-ESM1.5\n        model output prepared for CMIP6 CMIP*. Version 20191115. Earth System Grid\n        Federation. https://doi.org/10.22033/ESGF/CMIP6.2288\\\\n\\\\n  ScenarioMIP Citation:\\\\n\\\\n\n        \\ > Ziehn, Tilo; Chamberlain, Matthew; Lenton, Andrew; Law, Rachel; Bodman,\n        Roger; Dix, Martin; Wang, Yingping; Dobrohotoff, Peter; Srbinovsky, Jhan;\n        Stevens, Lauren; Vohralik, Peter; Mackallah, Chloe; Sullivan, Arnold; O'Farrell,\n        Siobhan; Druken, Kelsey **(2019)**. *CSIRO ACCESS-ESM1.5 model output prepared\n        for CMIP6 ScenarioMIP*. Version 20191115. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.2291\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > Xin, Xiaoge; Zhang, Jie; Zhang, Fang; Wu, Tongwen;\n        Shi, Xueli; Li, Jianglong; Chu, Min; Liu, Qianxia; Yan, Jinghui; Ma, Qiang;\n        Wei, Min **(2018)**. *BCC BCC-CSM2MR model output prepared for CMIP6 CMIP*.\n        Version 20181126. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1725\\\\n\\\\n\n        \\ ScenarioMIP Citation:\\\\n\\\\n  > Xin, Xiaoge; Wu, Tongwen; Shi, Xueli; Zhang,\n        Fang; Li, Jianglong; Chu, Min; Liu, Qianxia; Yan, Jinghui; Ma, Qiang; Wei,\n        Min **(2019)**. *BCC BCC-CSM2MR model output prepared for CMIP6 ScenarioMIP*.\n        SSP1-2.6 version 20190315; SSP2-4.5 version 20190318; SSP3-7.0 version 20190318;\n        SSP5-8.5 version 20190318. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1732\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > Lovato, Tomas; Peano, Daniele **(2020)**. *CMCC\n        CMCC-CM2-SR5 model output prepared for CMIP6 CMIP*. Version 20200616. Earth\n        System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1362\\\\n\\\\n  ScenarioMIP\n        Citation:\\\\n\\\\n  > Lovato, Tomas; Peano, Daniele **(2020)**. *CMCC CMCC-CM2-SR5\n        model output prepared for CMIP6 ScenarioMIP*. SSP1-2.6 version 20200717; SSP2-4.5\n        version 20200617; SSP3-7.0 version 20200622; SSP5-8.5 version 20200622. Earth\n        System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1365\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > Lovato, Tomas; Peano, Daniele; Butensch\\xF6n, Momme\n        **(2021)**. *CMCC CMCC-ESM2 model output prepared for CMIP6 CMIP*. Version\n        20210114. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.13164\\\\n\\\\n\n        \\ ScenarioMIP Citation:\\\\n\\\\n  > Lovato, Tomas; Peano, Daniele; Butensch\\xF6n,\n        Momme **(2021)**. *CMCC CMCC-ESM2 model output prepared for CMIP6 ScenarioMIP*.\n        SSP1-2.6 version 20210126; SSP2-4.5 version 20210129; SSP3-7.0 version 20210202;\n        SSP5-8.5 version 20210126. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.13168\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > EC-Earth Consortium (EC-Earth) **(2020)**. *EC-Earth-Consortium\n        EC-Earth3-AerChem model output prepared for CMIP6 CMIP*. Version 20200624.\n        Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.639\\\\n\\\\n\n        \\ ScenarioMIP Citation:\\\\n\\\\n  > EC-Earth Consortium (EC-Earth) **(2020)**.\n        *EC-Earth-Consortium EC-Earth3-AerChem model output prepared for CMIP6 ScenarioMIP*.\n        Version 20200827. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.724\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > EC-Earth Consortium (EC-Earth) **(2020)**. *EC-Earth-Consortium\n        EC-Earth-3-CC model output prepared for CMIP6 CMIP*. Version 20210113. Earth\n        System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.640\\\\n\\\\n  ScenarioMIP\n        Citation:\\\\n\\\\n  > EC-Earth Consortium (EC-Earth) **(2021)**. *EC-Earth-Consortium\n        EC-Earth3-CC model output prepared for CMIP6 ScenarioMIP*. Version 20210113.\n        Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.15327\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > EC-Earth Consortium (EC-Earth) **(2020)**. *EC-Earth-Consortium\n        EC-Earth3-Veg-LR model output prepared for CMIP6 CMIP*. Version 20200217.\n        Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.643\\\\n\\\\n\n        \\ ScenarioMIP Citation:\\\\n\\\\n  > EC-Earth Consortium (EC-Earth) **(2020)**.\n        *EC-Earth-Consortium EC-Earth3-Veg-LR model output prepared for CMIP6 ScenarioMIP*.\n        SSP1-2.6 version 20201201; SSP2-4.5 version 20201123; SSP3-7.0 version 20201123;\n        SSP5-8.5 version 20201201. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.728\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > EC-Earth Consortium (EC-Earth) **(2019)**. *EC-Earth-Consortium\n        EC-Earth3-Veg model output prepared for CMIP6 CMIP*. Version 20200225. Earth\n        System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.642\\\\n\\\\n  ScenarioMIP\n        Citation:\\\\n\\\\n  > EC-Earth Consortium (EC-Earth) **(2019)**. *EC-Earth-Consortium\n        EC-Earth3-Veg model output prepared for CMIP6 ScenarioMIP*. Version 20200225.\n        Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.727\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > EC-Earth Consortium (EC-Earth) **(2019)**. *EC-Earth-Consortium\n        EC-Earth3 model output prepared for CMIP6 CMIP*. Version 20200310. Earth System\n        Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.181\\\\n\\\\n  ScenarioMIP\n        Citation:\\\\n\\\\n  > EC-Earth Consortium (EC-Earth) **(2019)**. *EC-Earth-Consortium\n        EC-Earth3 model output prepared for CMIP6 ScenarioMIP*. Version 20200310.\n        Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.251\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > Guo, Huan; John, Jasmin G; Blanton, Chris; McHugh,\n        Colleen; Nikonov, Serguei; Radhakrishnan, Aparna; Rand, Kristopher; Zadeh,\n        Niki T.; Balaji, V; Durachta, Jeff; Dupuis, Christopher; Menzel, Raymond;\n        Robinson, Thomas; Underwood, Seth; Vahlenkamp, Hans; Bushuk, Mitchell; Dunne,\n        Krista A.; Dussin, Raphael; Gauthier, Paul PG; Ginoux, Paul; Griffies, Stephen\n        M.; Hallberg, Robert; Harrison, Matthew; Hurlin, William; Lin, Pu; Malyshev,\n        Sergey; Naik, Vaishali; Paulot, Fabien; Paynter, David J; Ploshay, Jeffrey;\n        Reichl, Brandon G; Schwarzkopf, Daniel M; Seman, Charles J; Shao, Andrew;\n        Silvers, Levi; Wyman, Bruce; Yan, Xiaoqin; Zeng, Yujin; Adcroft, Alistair;\n        Dunne, John P.; Held, Isaac M; Krasting, John P.; Horowitz, Larry W.; Milly,\n        P.C.D; Shevliakova, Elena; Winton, Michael; Zhao, Ming; Zhang, Rong **(2018)**.\n        *NOAA-GFDL GFDL-CM4 model output*. Version 20180701. Earth System Grid Federation.\n        https://doi.org/10.22033/ESGF/CMIP6.1402\\\\n\\\\n  ScenarioMIP Citation:\\\\n\\\\n\n        \\ > Guo, Huan; John, Jasmin G; Blanton, Chris; McHugh, Colleen; Nikonov, Serguei;\n        Radhakrishnan, Aparna; Rand, Kristopher; Zadeh, Niki T.; Balaji, V; Durachta,\n        Jeff; Dupuis, Christopher; Menzel, Raymond; Robinson, Thomas; Underwood, Seth;\n        Vahlenkamp, Hans; Dunne, Krista A.; Gauthier, Paul PG; Ginoux, Paul; Griffies,\n        Stephen M.; Hallberg, Robert; Harrison, Matthew; Hurlin, William; Lin, Pu;\n        Malyshev, Sergey; Naik, Vaishali; Paulot, Fabien; Paynter, David J; Ploshay,\n        Jeffrey; Schwarzkopf, Daniel M; Seman, Charles J; Shao, Andrew; Silvers, Levi;\n        Wyman, Bruce; Yan, Xiaoqin; Zeng, Yujin; Adcroft, Alistair; Dunne, John P.;\n        Held, Isaac M; Krasting, John P.; Horowitz, Larry W.; Milly, Chris; Shevliakova,\n        Elena; Winton, Michael; Zhao, Ming; Zhang, Rong **(2018)**. *NOAA-GFDL GFDL-CM4\n        model output prepared for CMIP6 ScenarioMIP*. Version 20180701. Earth System\n        Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.9242\\\\n\\\\n\\\\n* **GFDL-ESM4**\\\\n\\\\n\n        \\ License description: [data_licenses/GFDL-ESM4.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/GFDL-ESM4.txt)\\\\n\\\\n\n        \\ CMIP Citation:\\\\n\\\\n  > Krasting, John P.; John, Jasmin G; Blanton, Chris;\n        McHugh, Colleen; Nikonov, Serguei; Radhakrishnan, Aparna; Rand, Kristopher;\n        Zadeh, Niki T.; Balaji, V; Durachta, Jeff; Dupuis, Christopher; Menzel, Raymond;\n        Robinson, Thomas; Underwood, Seth; Vahlenkamp, Hans; Dunne, Krista A.; Gauthier,\n        Paul PG; Ginoux, Paul; Griffies, Stephen M.; Hallberg, Robert; Harrison, Matthew;\n        Hurlin, William; Malyshev, Sergey; Naik, Vaishali; Paulot, Fabien; Paynter,\n        David J; Ploshay, Jeffrey; Reichl, Brandon G; Schwarzkopf, Daniel M; Seman,\n        Charles J; Silvers, Levi; Wyman, Bruce; Zeng, Yujin; Adcroft, Alistair; Dunne,\n        John P.; Dussin, Raphael; Guo, Huan; He, Jian; Held, Isaac M; Horowitz, Larry\n        W.; Lin, Pu; Milly, P.C.D; Shevliakova, Elena; Stock, Charles; Winton, Michael;\n        Wittenberg, Andrew T.; Xie, Yuanyu; Zhao, Ming **(2018)**. *NOAA-GFDL GFDL-ESM4\n        model output prepared for CMIP6 CMIP*. Version 20190726. Earth System Grid\n        Federation. https://doi.org/10.22033/ESGF/CMIP6.1407\\\\n\\\\n  ScenarioMIP Citation:\\\\n\\\\n\n        \\ > John, Jasmin G; Blanton, Chris; McHugh, Colleen; Radhakrishnan, Aparna;\n        Rand, Kristopher; Vahlenkamp, Hans; Wilson, Chandin; Zadeh, Niki T.; Dunne,\n        John P.; Dussin, Raphael; Horowitz, Larry W.; Krasting, John P.; Lin, Pu;\n        Malyshev, Sergey; Naik, Vaishali; Ploshay, Jeffrey; Shevliakova, Elena; Silvers,\n        Levi; Stock, Charles; Winton, Michael; Zeng, Yujin **(2018)**. *NOAA-GFDL\n        GFDL-ESM4 model output prepared for CMIP6 ScenarioMIP*. Version 20180701.\n        Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1414\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > Ridley, Jeff; Menary, Matthew; Kuhlbrodt, Till;\n        Andrews, Martin; Andrews, Tim **(2018)**. *MOHC HadGEM3-GC31-LL model output\n        prepared for CMIP6 CMIP*. Version 20190624. Earth System Grid Federation.\n        https://doi.org/10.22033/ESGF/CMIP6.419\\\\n\\\\n  ScenarioMIP Citation:\\\\n\\\\n\n        \\ > Good, Peter **(2019)**. *MOHC HadGEM3-GC31-LL model output prepared for\n        CMIP6 ScenarioMIP*. SSP1-2.6 version 20200114; SSP2-4.5 version 20190908;\n        SSP5-8.5 version 20200114. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.10845\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > Hajima, Tomohiro; Abe, Manabu; Arakawa, Osamu; Suzuki,\n        Tatsuo; Komuro, Yoshiki; Ogura, Tomoo; Ogochi, Koji; Watanabe, Michio; Yamamoto,\n        Akitomo; Tatebe, Hiroaki; Noguchi, Maki A.; Ohgaito, Rumi; Ito, Akinori; Yamazaki,\n        Dai; Ito, Akihiko; Takata, Kumiko; Watanabe, Shingo; Kawamiya, Michio; Tachiiri,\n        Kaoru **(2019)**. *MIROC MIROC-ES2L model output prepared for CMIP6 CMIP*.\n        Version 20191129. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.902\\\\n\\\\n\n        \\ ScenarioMIP Citation:\\\\n\\\\n  > Tachiiri, Kaoru; Abe, Manabu; Hajima, Tomohiro;\n        Arakawa, Osamu; Suzuki, Tatsuo; Komuro, Yoshiki; Ogochi, Koji; Watanabe, Michio;\n        Yamamoto, Akitomo; Tatebe, Hiroaki; Noguchi, Maki A.; Ohgaito, Rumi; Ito,\n        Akinori; Yamazaki, Dai; Ito, Akihiko; Takata, Kumiko; Watanabe, Shingo; Kawamiya,\n        Michio **(2019)**. *MIROC MIROC-ES2L model output prepared for CMIP6 ScenarioMIP*.\n        Version 20200318. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.936\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > Tatebe, Hiroaki; Watanabe, Masahiro **(2018)**.\n        *MIROC MIROC6 model output prepared for CMIP6 CMIP*. Version 20191016. Earth\n        System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.881\\\\n\\\\n  ScenarioMIP\n        Citation:\\\\n\\\\n  > Shiogama, Hideo; Abe, Manabu; Tatebe, Hiroaki **(2019)**.\n        *MIROC MIROC6 model output prepared for CMIP6 ScenarioMIP*. Version 20191016.\n        Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.898\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > Jungclaus, Johann; Bittner, Matthias; Wieners, Karl-Hermann;\n        Wachsmann, Fabian; Schupfner, Martin; Legutke, Stephanie; Giorgetta, Marco;\n        Reick, Christian; Gayler, Veronika; Haak, Helmuth; de Vrese, Philipp; Raddatz,\n        Thomas; Esch, Monika; Mauritsen, Thorsten; von Storch, Jin-Song; Behrens,\n        J\\xF6rg; Brovkin, Victor; Claussen, Martin; Crueger, Traute; Fast, Irina;\n        Fiedler, Stephanie; Hagemann, Stefan; Hohenegger, Cathy; Jahns, Thomas; Kloster,\n        Silvia; Kinne, Stefan; Lasslop, Gitta; Kornblueh, Luis; Marotzke, Jochem;\n        Matei, Daniela; Meraner, Katharina; Mikolajewicz, Uwe; Modali, Kameswarrao;\n        M\\xFCller, Wolfgang; Nabel, Julia; Notz, Dirk; Peters-von Gehlen, Karsten;\n        Pincus, Robert; Pohlmann, Holger; Pongratz, Julia; Rast, Sebastian; Schmidt,\n        Hauke; Schnur, Reiner; Schulzweida, Uwe; Six, Katharina; Stevens, Bjorn; Voigt,\n        Aiko; Roeckner, Erich **(2019)**. *MPI-M MPIESM1.2-HR model output prepared\n        for CMIP6 CMIP*. Version 20190710. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.741\\\\n\\\\n\n        \\ ScenarioMIP Citation:\\\\n\\\\n  > Schupfner, Martin; Wieners, Karl-Hermann;\n        Wachsmann, Fabian; Steger, Christian; Bittner, Matthias; Jungclaus, Johann;\n        Fr\\xFCh, Barbara; Pankatz, Klaus; Giorgetta, Marco; Reick, Christian; Legutke,\n        Stephanie; Esch, Monika; Gayler, Veronika; Haak, Helmuth; de Vrese, Philipp;\n        Raddatz, Thomas; Mauritsen, Thorsten; von Storch, Jin-Song; Behrens, J\\xF6rg;\n        Brovkin, Victor; Claussen, Martin; Crueger, Traute; Fast, Irina; Fiedler,\n        Stephanie; Hagemann, Stefan; Hohenegger, Cathy; Jahns, Thomas; Kloster, Silvia;\n        Kinne, Stefan; Lasslop, Gitta; Kornblueh, Luis; Marotzke, Jochem; Matei, Daniela;\n        Meraner, Katharina; Mikolajewicz, Uwe; Modali, Kameswarrao; M\\xFCller, Wolfgang;\n        Nabel, Julia; Notz, Dirk; Peters-von Gehlen, Karsten; Pincus, Robert; Pohlmann,\n        Holger; Pongratz, Julia; Rast, Sebastian; Schmidt, Hauke; Schnur, Reiner;\n        Schulzweida, Uwe; Six, Katharina; Stevens, Bjorn; Voigt, Aiko; Roeckner, Erich\n        **(2019)**. *DKRZ MPI-ESM1.2-HR model output prepared for CMIP6 ScenarioMIP*.\n        Version 20190710. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.2450\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > Wieners, Karl-Hermann; Giorgetta, Marco; Jungclaus,\n        Johann; Reick, Christian; Esch, Monika; Bittner, Matthias; Legutke, Stephanie;\n        Schupfner, Martin; Wachsmann, Fabian; Gayler, Veronika; Haak, Helmuth; de\n        Vrese, Philipp; Raddatz, Thomas; Mauritsen, Thorsten; von Storch, Jin-Song;\n        Behrens, J\\xF6rg; Brovkin, Victor; Claussen, Martin; Crueger, Traute; Fast,\n        Irina; Fiedler, Stephanie; Hagemann, Stefan; Hohenegger, Cathy; Jahns, Thomas;\n        Kloster, Silvia; Kinne, Stefan; Lasslop, Gitta; Kornblueh, Luis; Marotzke,\n        Jochem; Matei, Daniela; Meraner, Katharina; Mikolajewicz, Uwe; Modali, Kameswarrao;\n        M\\xFCller, Wolfgang; Nabel, Julia; Notz, Dirk; Peters-von Gehlen, Karsten;\n        Pincus, Robert; Pohlmann, Holger; Pongratz, Julia; Rast, Sebastian; Schmidt,\n        Hauke; Schnur, Reiner; Schulzweida, Uwe; Six, Katharina; Stevens, Bjorn; Voigt,\n        Aiko; Roeckner, Erich **(2019)**. *MPI-M MPIESM1.2-LR model output prepared\n        for CMIP6 CMIP*. Version 20190710. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.742\\\\n\\\\n\n        \\ ScenarioMIP Citation:\\\\n\\\\n  > Wieners, Karl-Hermann; Giorgetta, Marco;\n        Jungclaus, Johann; Reick, Christian; Esch, Monika; Bittner, Matthias; Gayler,\n        Veronika; Haak, Helmuth; de Vrese, Philipp; Raddatz, Thomas; Mauritsen, Thorsten;\n        von Storch, Jin-Song; Behrens, J\\xF6rg; Brovkin, Victor; Claussen, Martin;\n        Crueger, Traute; Fast, Irina; Fiedler, Stephanie; Hagemann, Stefan; Hohenegger,\n        Cathy; Jahns, Thomas; Kloster, Silvia; Kinne, Stefan; Lasslop, Gitta; Kornblueh,\n        Luis; Marotzke, Jochem; Matei, Daniela; Meraner, Katharina; Mikolajewicz,\n        Uwe; Modali, Kameswarrao; M\\xFCller, Wolfgang; Nabel, Julia; Notz, Dirk; Peters-von\n        Gehlen, Karsten; Pincus, Robert; Pohlmann, Holger; Pongratz, Julia; Rast,\n        Sebastian; Schmidt, Hauke; Schnur, Reiner; Schulzweida, Uwe; Six, Katharina;\n        Stevens, Bjorn; Voigt, Aiko; Roeckner, Erich **(2019)**. *MPI-M MPIESM1.2-LR\n        model output prepared for CMIP6 ScenarioMIP*. Version 20190710. Earth System\n        Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.793\\\\n\\\\n\\\\n* **NESM3**\\\\n\\\\n\n        \\ License description: [data_licenses/NESM3.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/NESM3.txt)\\\\n\\\\n\n        \\ CMIP Citation:\\\\n\\\\n  > Cao, Jian; Wang, Bin **(2019)**. *NUIST NESMv3 model\n        output prepared for CMIP6 CMIP*. Version 20190812. Earth System Grid Federation.\n        https://doi.org/10.22033/ESGF/CMIP6.2021\\\\n\\\\n  ScenarioMIP Citation:\\\\n\\\\n\n        \\ > Cao, Jian **(2019)**. *NUIST NESMv3 model output prepared for CMIP6 ScenarioMIP*.\n        SSP1-2.6 version 20190806; SSP2-4.5 version 20190805; SSP5-8.5 version 20190811.\n        Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.2027\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > Seland, \\xD8yvind; Bentsen, Mats; Olivi\\xE8, Dirk\n        Jan Leo; Toniazzo, Thomas; Gjermundsen, Ada; Graff, Lise Seland; Debernard,\n        Jens Boldingh; Gupta, Alok Kumar; He, Yanchun; Kirkev\\xE5g, Alf; Schwinger,\n        J\\xF6rg; Tjiputra, Jerry; Aas, Kjetil Schanke; Bethke, Ingo; Fan, Yuanchao;\n        Griesfeller, Jan; Grini, Alf; Guo, Chuncheng; Ilicak, Mehmet; Karset, Inger\n        Helene Hafsahl; Landgren, Oskar Andreas; Liakka, Johan; Moseid, Kine Onsum;\n        Nummelin, Aleksi; Spensberger, Clemens; Tang, Hui; Zhang, Zhongshi; Heinze,\n        Christoph; Iversen, Trond; Schulz, Michael **(2019)**. *NCC NorESM2-LM model\n        output prepared for CMIP6 CMIP*. Version 20190815. Earth System Grid Federation.\n        https://doi.org/10.22033/ESGF/CMIP6.502\\\\n\\\\n  ScenarioMIP Citation:\\\\n\\\\n\n        \\ > Seland, \\xD8yvind; Bentsen, Mats; Olivi\\xE8, Dirk Jan Leo; Toniazzo, Thomas;\n        Gjermundsen, Ada; Graff, Lise Seland; Debernard, Jens Boldingh; Gupta, Alok\n        Kumar; He, Yanchun; Kirkev\\xE5g, Alf; Schwinger, J\\xF6rg; Tjiputra, Jerry;\n        Aas, Kjetil Schanke; Bethke, Ingo; Fan, Yuanchao; Griesfeller, Jan; Grini,\n        Alf; Guo, Chuncheng; Ilicak, Mehmet; Karset, Inger Helene Hafsahl; Landgren,\n        Oskar Andreas; Liakka, Johan; Moseid, Kine Onsum; Nummelin, Aleksi; Spensberger,\n        Clemens; Tang, Hui; Zhang, Zhongshi; Heinze, Christoph; Iversen, Trond; Schulz,\n        Michael **(2019)**. *NCC NorESM2-LM model output prepared for CMIP6 ScenarioMIP*.\n        Version 20191108. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.604\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > Bentsen, Mats; Olivi\\xE8, Dirk Jan Leo; Seland,\n        \\xD8yvind; Toniazzo, Thomas; Gjermundsen, Ada; Graff, Lise Seland; Debernard,\n        Jens Boldingh; Gupta, Alok Kumar; He, Yanchun; Kirkev\\xE5g, Alf; Schwinger,\n        J\\xF6rg; Tjiputra, Jerry; Aas, Kjetil Schanke; Bethke, Ingo; Fan, Yuanchao;\n        Griesfeller, Jan; Grini, Alf; Guo, Chuncheng; Ilicak, Mehmet; Karset, Inger\n        Helene Hafsahl; Landgren, Oskar Andreas; Liakka, Johan; Moseid, Kine Onsum;\n        Nummelin, Aleksi; Spensberger, Clemens; Tang, Hui; Zhang, Zhongshi; Heinze,\n        Christoph; Iversen, Trond; Schulz, Michael **(2019)**. *NCC NorESM2-MM model\n        output prepared for CMIP6 CMIP*. Version 20191108. Earth System Grid Federation.\n        https://doi.org/10.22033/ESGF/CMIP6.506\\\\n\\\\n  ScenarioMIP Citation:\\\\n\\\\n\n        \\ > Bentsen, Mats; Olivi\\xE8, Dirk Jan Leo; Seland, \\xD8yvind; Toniazzo, Thomas;\n        Gjermundsen, Ada; Graff, Lise Seland; Debernard, Jens Boldingh; Gupta, Alok\n        Kumar; He, Yanchun; Kirkev\\xE5g, Alf; Schwinger, J\\xF6rg; Tjiputra, Jerry;\n        Aas, Kjetil Schanke; Bethke, Ingo; Fan, Yuanchao; Griesfeller, Jan; Grini,\n        Alf; Guo, Chuncheng; Ilicak, Mehmet; Karset, Inger Helene Hafsahl; Landgren,\n        Oskar Andreas; Liakka, Johan; Moseid, Kine Onsum; Nummelin, Aleksi; Spensberger,\n        Clemens; Tang, Hui; Zhang, Zhongshi; Heinze, Christoph; Iversen, Trond; Schulz,\n        Michael **(2019)**. *NCC NorESM2-MM model output prepared for CMIP6 ScenarioMIP*.\n        Version 20191108. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.608\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > Tang, Yongming; Rumbold, Steve; Ellis, Rich; Kelley,\n        Douglas; Mulcahy, Jane; Sellar, Alistair; Walton, Jeremy; Jones, Colin **(2019)**.\n        *MOHC UKESM1.0-LL model output prepared for CMIP6 CMIP*. Version 20190627.\n        Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1569\\\\n\\\\n\n        \\ ScenarioMIP Citation:\\\\n\\\\n  > Good, Peter; Sellar, Alistair; Tang, Yongming;\n        Rumbold, Steve; Ellis, Rich; Kelley, Douglas; Kuhlbrodt, Till; Walton, Jeremy\n        **(2019)**. *MOHC UKESM1.0-LL model output prepared for CMIP6 ScenarioMIP*.\n        SSP1-2.6 version 20190708; SSP2-4.5 version 20190715; SSP3-7.0 version 20190726;\n        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).\n        Note: this dataset was previously licensed\\\\n  under CC BY-SA 4.0, but was\n        relicensed as CC BY 4.0 in March, 2023.\\\\n\\\\n  CMIP Citation:\\\\n\\\\n  > Swart,\n        Neil Cameron; Cole, Jason N.S.; Kharin, Viatcheslav V.; Lazare, Mike; Scinocca,\n        John F.; Gillett, Nathan P.; Anstey, James; Arora, Vivek; Christian, James\n        R.; Jiao, Yanjun; Lee, Warren G.; Majaess, Fouad; Saenko, Oleg A.; Seiler,\n        Christian; Seinen, Clint; Shao, Andrew; Solheim, Larry; von Salzen, Knut;\n        Yang, Duo; Winter, Barbara; Sigmond, Michael **(2019)**. *CCCma CanESM5 model\n        output prepared for CMIP6 CMIP*. Version 20190429. Earth System Grid Federation.\n        https://doi.org/10.22033/ESGF/CMIP6.1303\\\\n\\\\n  ScenarioMIP Citation:\\\\n\\\\n\n        \\ > Swart, Neil Cameron; Cole, Jason N.S.; Kharin, Viatcheslav V.; Lazare,\n        Mike; Scinocca, John F.; Gillett, Nathan P.; Anstey, James; Arora, Vivek;\n        Christian, James R.; Jiao, Yanjun; Lee, Warren G.; Majaess, Fouad; Saenko,\n        Oleg A.; Seiler, Christian; Seinen, Clint; Shao, Andrew; Solheim, Larry; von\n        Salzen, Knut; Yang, Duo; Winter, Barbara; Sigmond, Michael **(2019)**. *CCCma\n        CanESM5 model output prepared for CMIP6 ScenarioMIP*. Version 20190429. Earth\n        System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1317\\\\n\\\\n## Acknowledgements\\\\n\\\\nThis\n        work is the result of many years worth of work by members of the [Climate\n        Impact Lab](https://impactlab.org), but would not have been possible without\n        many contributions from across the wider scientific and computing communities.\\\\n\\\\nSpecifically,\n        we would like to acknowledge the World Climate Research Programme's Working\n        Group on Coupled Modeling, which is responsible for CMIP, and we would like\n        to thank the climate modeling groups for producing and making their model\n        output available. We would particularly like to thank the modeling institutions\n        whose results are included as an input to this repository (listed above) for\n        their contributions to the CMIP6 project and for responding to and granting\n        our requests for license waivers.\\\\n\\\\nWe would also like to thank Lamont-Doherty\n        Earth Observatory, the [Pangeo Consortium](https://github.com/pangeo-data)\n        (and especially the [ESGF Cloud Data Working Group](https://pangeo-data.github.io/pangeo-cmip6-cloud/#))\n        and Google Cloud and the Google Public Datasets program for making the [CMIP6\n        Google Cloud collection](https://console.cloud.google.com/marketplace/details/noaa-public/cmip6)\n        possible. In particular we're extremely grateful to [Ryan Abernathey](https://github.com/rabernat),\n        [Naomi Henderson](https://github.com/naomi-henderson), [Charles Blackmon-Luca](https://github.com/charlesbluca),\n        [Aparna Radhakrishnan](https://github.com/aradhakrishnanGFDL), [Julius Busecke](https://github.com/jbusecke),\n        and [Charles Stern](https://github.com/cisaacstern) for the huge amount of\n        work they've done to translate the ESGF CMIP6 netCDF archives into consistently-formattted,\n        analysis-ready zarr stores on Google Cloud.\\\\n\\\\nWe're also grateful to the\n        [xclim developers](https://github.com/Ouranosinc/xclim/graphs/contributors)\n        ([DOI: 10.5281/zenodo.2795043](https://doi.org/10.5281/zenodo.2795043)), in\n        particular [Pascal Bourgault](https://github.com/aulemahal), [David Huard](https://github.com/huard),\n        and [Travis Logan](https://github.com/tlogan2000), for implementing the QDM\n        bias correction method in the xclim python package, supporting our QPLAD implementation\n        into the package, and ongoing support in integrating dask into downscaling\n        workflows. For method advice and useful conversations, we would like to thank\n        Keith Dixon, Dennis Adams-Smith, and [Joe Hamman](https://github.com/jhamman).\\\\n\\\\n##\n        Financial support\\\\n\\\\nThis research has been supported by The Rockefeller\n        Foundation and the Microsoft AI for Earth Initiative.\\\\n\\\\n## Additional links:\\\\n\\\\n*\n        CIL GDPCIR project homepage: [github.com/ClimateImpactLab/downscaleCMIP6](https://github.com/ClimateImpactLab/downscaleCMIP6)\\\\n*\n        Project listing on zenodo: https://doi.org/10.5281/zenodo.6403794\\\\n* Climate\n        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\n        Maximum Near-Surface Air Temperature\\\",\\\"description\\\":\\\"Daily Maximum Near-Surface\n        Air Temperature\\\"},\\\"tasmin\\\":{\\\"type\\\":\\\"application/vnd+zarr\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Daily\n        Minimum Near-Surface Air Temperature\\\",\\\"description\\\":\\\"Daily Minimum Near-Surface\n        Air Temperature\\\"}},\\\"msft:region\\\":\\\"westeurope\\\",\\\"stac_version\\\":\\\"1.0.0\\\",\\\"msft:group_id\\\":\\\"cil-gdpcir\\\",\\\"cube:variables\\\":{\\\"pr\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"mm\n        day-1\\\",\\\"attrs\\\":{\\\"units\\\":\\\"mm day-1\\\"},\\\"dimensions\\\":[\\\"time\\\",\\\"lat\\\",\\\"lon\\\"]},\\\"tasmax\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"K\\\",\\\"attrs\\\":{\\\"units\\\":\\\"K\\\",\\\"comment\\\":\\\"maximum\n        near-surface (usually, 2 meter) air temperature (add cell_method attribute\n        'time: max')\\\",\\\"long_name\\\":\\\"Daily Maximum Near-Surface Air Temperature\\\",\\\"coordinates\\\":\\\"height\\\",\\\"cell_methods\\\":\\\"area:\n        mean time: maximum (interval: 5 minutes)\\\",\\\"cell_measures\\\":\\\"area: areacella\\\",\\\"original_name\\\":\\\"TREFHTMX\\\",\\\"standard_name\\\":\\\"air_temperature\\\"},\\\"dimensions\\\":[\\\"time\\\",\\\"lat\\\",\\\"lon\\\"],\\\"description\\\":\\\"Daily\n        Maximum Near-Surface Air Temperature\\\"},\\\"tasmin\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"K\\\",\\\"attrs\\\":{\\\"units\\\":\\\"K\\\",\\\"comment\\\":\\\"minimum\n        near-surface (usually, 2 meter) air temperature (add cell_method attribute\n        'time: min')\\\",\\\"long_name\\\":\\\"Daily Minimum Near-Surface Air Temperature\\\",\\\"coordinates\\\":\\\"height\\\",\\\"cell_methods\\\":\\\"area:\n        mean time: minimum (interval: 5 minutes)\\\",\\\"cell_measures\\\":\\\"area: areacella\\\",\\\"original_name\\\":\\\"TREFHTMN\\\",\\\"standard_name\\\":\\\"air_temperature\\\"},\\\"dimensions\\\":[\\\"time\\\",\\\"lat\\\",\\\"lon\\\"],\\\"description\\\":\\\"Daily\n        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\n        Impact Lab Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)\\\"}\"\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '11061'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:07:36 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150735Z-r17d779659cs8gcnhC1DEN5tpw000000062g0000000035q9\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by/items/cil-gdpcir-NUIST-NESM3-ssp585-r1i1p1f1-day\n  response:\n    body:\n      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\n        v3 (2016): \\naerosol: none\\natmos: ECHAM v6.3 (T63; 192 x 96 longitude/latitude;\n        47 levels; top level 1 Pa)\\natmosChem: none\\nland: JSBACH v3.1\\nlandIce: none\\nocean:\n        NEMO v3.4 (NEMO v3.4, tripolar primarily 1deg; 384 x 362 longitude/latitude;\n        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\n        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\n        near-surface (usually, 2 meter) air temperature (add cell_method attribute\n        ''time: max'')\",\"history\":\"2019-08-11T09:50:24Z altered by CMOR: Treated scalar\n        dimension: ''height''. 2019-08-11T09:50:24Z altered by CMOR: Inverted axis:\n        lat.\",\"long_name\":\"Daily Maximum Near-Surface Air Temperature\",\"cell_methods\":\"area:\n        mean time: maximum\",\"cell_measures\":\"area: areacella\",\"standard_name\":\"air_temperature\"},\"shape\":[31390,720,1440],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Daily\n        Maximum Near-Surface Air Temperature\"},\"tasmin\":{\"type\":\"data\",\"unit\":\"K\",\"attrs\":{\"units\":\"K\",\"comment\":\"minimum\n        near-surface (usually, 2 meter) air temperature (add cell_method attribute\n        ''time: min'')\",\"history\":\"2019-08-11T09:48:45Z altered by CMOR: Treated scalar\n        dimension: ''height''. 2019-08-11T09:48:45Z altered by CMOR: Inverted axis:\n        lat.\",\"long_name\":\"Daily Minimum Near-Surface Air Temperature\",\"cell_methods\":\"area:\n        mean time: minimum\",\"cell_measures\":\"area: areacella\",\"standard_name\":\"air_temperature\"},\"shape\":[31390,720,1440],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Daily\n        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\n        of RCP8.5 based on SSP5\",\"cmip6:Conventions\":\"CF-1.7 CMIP-6.2\",\"cmip6:activity_id\":\"ScenarioMIP\",\"cmip6:institution\":\"Nanjing\n        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\n        km\",\"cmip6:initialization_index\":1},\"stac_extensions\":[\"https://stac-extensions.github.io/datacube/v2.0.0/schema.json\"],\"stac_version\":\"1.0.0\"}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '2007'\n      Content-Type:\n      - application/geo+json\n      Date:\n      - Thu, 31 Jul 2025 15:07:37 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150736Z-r17d779659cgv7lqhC1DENzvbg00000003mg000000005q74\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by\n  response:\n    body:\n      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\n        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\n        homepage\\\"},{\\\"rel\\\":\\\"describedby\\\",\\\"href\\\":\\\"https://planetarycomputer.microsoft.com/dataset/cil-gdpcir-cc-by\\\",\\\"title\\\":\\\"Human\n        readable dataset overview and reference\\\",\\\"type\\\":\\\"text/html\\\"}],\\\"title\\\":\\\"CIL\n        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\n        STAC items\\\",\\\"description\\\":\\\"Snapshot of the collection's STAC items exported\n        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\n        Impact Lab\\\",\\\"Rhodium Group\\\",\\\"Precipitation\\\",\\\"Temperature\\\"],\\\"providers\\\":[{\\\"url\\\":\\\"https://impactlab.org/\\\",\\\"name\\\":\\\"Climate\n        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\n        World Climate Research Programme's [6th Coupled Model Intercomparison Project\n        (CMIP6)](https://www.wcrp-climate.org/wgcm-cmip/wgcm-cmip6) represents an\n        enormous advance in the quality, detail, and scope of climate modeling.\\\\n\\\\nThe\n        [Global Downscaled Projections for Climate Impacts Research](https://github.com/ClimateImpactLab/downscaleCMIP6)\n        dataset makes this modeling more applicable to understanding the impacts of\n        changes in the climate on humans and society with two key developments: trend-preserving\n        bias correction and downscaling. In this dataset, the [Climate Impact Lab](https://impactlab.org)\n        provides global, daily minimum and maximum air temperature at the surface\n        (`tasmin` and `tasmax`) and daily cumulative surface precipitation (`pr`)\n        corresponding to the CMIP6 historical, ssp1-2.6, ssp2-4.5, ssp3-7.0, and ssp5-8.5\n        scenarios for 25 global climate models on a 1/4-degree regular global grid.\\\\n\\\\n##\n        Accessing the data\\\\n\\\\nGDPCIR data can be accessed on the Microsoft Planetary\n        Computer. The dataset is made of of three collections, distinguished by data\n        license:\\\\n* [Public domain (CC0-1.0) collection](https://planetarycomputer.microsoft.com/dataset/cil-gdpcir-cc0)\\\\n*\n        [Attribution (CC BY 4.0) collection](https://planetarycomputer.microsoft.com/dataset/cil-gdpcir-cc-by)\\\\n\\\\nEach\n        modeling center with bias corrected and downscaled data in this collection\n        falls into one of these license categories - see the [table below](/dataset/cil-gdpcir-cc-by#available-institutions-models-and-scenarios-by-license-collection)\n        to see which model is in each collection, and see the section below on [Citing,\n        Licensing, and using data produced by this project](/dataset/cil-gdpcir-cc-by#citing-licensing-and-using-data-produced-by-this-project)\n        for citations and additional information about each license.\\\\n\\\\n## Data\n        format & contents\\\\n\\\\nThe data is stored as partitioned zarr stores (see\n        [https://zarr.readthedocs.io](https://zarr.readthedocs.io)), each of which\n        includes thousands of data and metadata files covering the full time span\n        of the experiment. Historical zarr stores contain just over 50 GB, while SSP\n        zarr stores contain nearly 70GB. Each store is stored as a 32-bit float, with\n        dimensions time (daily datetime), lat (float latitude), and lon (float longitude).\n        The data is chunked at each interval of 365 days and 90 degree interval of\n        latitude and longitude. Therefore, each chunk is `(365, 360, 360)`, with each\n        chunk occupying approximately 180MB in memory.\\\\n\\\\nHistorical data is daily,\n        excluding leap days, from Jan 1, 1950 to Dec 31, 2014; SSP data is daily,\n        excluding leap days, from Jan 1, 2015 to either Dec 31, 2099 or Dec 31, 2100,\n        depending on data availability in the source GCM.\\\\n\\\\nThe spatial domain\n        covers all 0.25-degree grid cells, indexed by the grid center, with grid edges\n        on the quarter-degree, using a -180 to 180 longitude convention. Thus, the\n        \\u201Clon\\u201D coordinate extends from -179.875 to 179.875, and the \\u201Clat\\u201D\n        coordinate extends from -89.875 to 89.875, with intermediate values at each\n        0.25-degree increment between (e.g. -179.875, -179.625, -179.375, etc).\\\\n\\\\n##\n        Available institutions, models, and scenarios by license collection\\\\n\\\\n|\n        Modeling institution |   Source model    |           Available experiments\n        \\           |   License collection   |\\\\n| -------------------- | -----------------\n        | ------------------------------------------ | ---------------------- |\\\\n|\n        CAS                  | FGOALS-g3 [^1]    | SSP2-4.5, SSP3-7.0, and SSP5-8.5\n        \\          | Public domain datasets |\\\\n| INM                  | INM-CM4-8\n        \\        | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | Public domain datasets\n        |\\\\n| INM                  | INM-CM5-0         | SSP1-2.6, SSP2-4.5, SSP3-7.0,\n        and SSP5-8.5 | Public domain datasets |\\\\n| BCC                  | BCC-CSM2-MR\n        \\      | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40               |\\\\n|\n        CMCC                 | CMCC-CM2-SR5      | ssp1-2.6, ssp2-4.5, ssp3-7.0, ssp5-8.5\n        \\    | CC-BY-40               |\\\\n| CMCC                 | CMCC-ESM2         |\n        ssp1-2.6, ssp2-4.5, ssp3-7.0, ssp5-8.5     | CC-BY-40               |\\\\n|\n        CSIRO-ARCCSS         | ACCESS-CM2        | SSP2-4.5 and SSP3-7.0                      |\n        CC-BY-40               |\\\\n| CSIRO                | ACCESS-ESM1-5     | SSP1-2.6,\n        SSP2-4.5, and SSP3-7.0           | CC-BY-40               |\\\\n| MIROC                |\n        MIROC-ES2L        | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40\n        \\              |\\\\n| MIROC                | MIROC6            | SSP1-2.6,\n        SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40               |\\\\n| MOHC                 |\n        HadGEM3-GC31-LL   | SSP1-2.6, SSP2-4.5, and SSP5-8.5           | CC-BY-40\n        \\              |\\\\n| MOHC                 | UKESM1-0-LL       | SSP1-2.6,\n        SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40               |\\\\n| MPI-M                |\n        MPI-ESM1-2-LR     | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40\n        \\              |\\\\n| MPI-M/DKRZ [^2]      | MPI-ESM1-2-HR     | SSP1-2.6 and\n        SSP5-8.5                      | CC-BY-40               |\\\\n| NCC                  |\n        NorESM2-LM        | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40\n        \\              |\\\\n| NCC                  | NorESM2-MM        | SSP1-2.6,\n        SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40               |\\\\n| NOAA-GFDL\n        \\           | GFDL-CM4          | SSP2-4.5 and SSP5-8.5                      |\n        CC-BY-40               |\\\\n| NOAA-GFDL            | GFDL-ESM4         | SSP1-2.6,\n        SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40               |\\\\n| NUIST                |\n        NESM3             | SSP1-2.6, SSP2-4.5, and SSP5-8.5           | CC-BY-40\n        \\              |\\\\n| EC-Earth-Consortium  | EC-Earth3         | ssp1-2.6,\n        ssp2-4.5, ssp3-7.0, and ssp5-8.5 | CC-BY-40               |\\\\n| EC-Earth-Consortium\n        \\ | EC-Earth3-AerChem | ssp370                                     | CC-BY-40\n        \\              |\\\\n| EC-Earth-Consortium  | EC-Earth3-CC      | ssp245 and\n        ssp585                          | CC-BY-40               |\\\\n| EC-Earth-Consortium\n        \\ | EC-Earth3-Veg     | ssp1-2.6, ssp2-4.5, ssp3-7.0, and ssp5-8.5 | CC-BY-40\n        \\              |\\\\n| EC-Earth-Consortium  | EC-Earth3-Veg-LR  | ssp1-2.6,\n        ssp2-4.5, ssp3-7.0, and ssp5-8.5 | CC-BY-40               |\\\\n| CCCma                |\n        CanESM5           | ssp1-2.6, ssp2-4.5, ssp3-7.0, ssp5-8.5     | CC-BY-40[^3]\n        \\          |\\\\n\\\\n*Notes:*\\\\n\\\\n[^1]: At the time of running, no ssp1-2.6\n        precipitation data was available. Therefore, we provide `tasmin` and `tamax`\n        for this model and experiment, but not `pr`. All other model/experiment combinations\n        in the above table include all three variables.\\\\n\\\\n[^2]: The institution\n        which ran MPI-ESM1-2-HR\\u2019s historical (CMIP) simulations is `MPI-M`, while\n        the future (ScenarioMIP) simulations were run by `DKRZ`. Therefore, the institution\n        component of `MPI-ESM1-2-HR` filepaths differ between `historical` and `SSP`\n        scenarios.\\\\n\\\\n[^3]: This dataset was previously licensed as [CC BY-SA 4.0](https://creativecommons.org/licenses/by-sa/4.0/),\n        but was relicensed under [CC BY 4.0](https://creativecommons.org/licenses/by/4.0)\n        in March, 2023. \\\\n\\\\n## Project methods\\\\n\\\\nThis project makes use of statistical\n        bias correction and downscaling algorithms, which are specifically designed\n        to accurately represent changes in the extremes. For this reason, we selected\n        Quantile Delta Mapping (QDM), following the method introduced by [Cannon et\n        al. (2015)](https://doi.org/10.1175/JCLI-D-14-00754.1), which preserves quantile-specific\n        trends from the GCM while fitting the full distribution for a given day-of-year\n        to a reference dataset (ERA5).\\\\n\\\\nWe then introduce a similar method tailored\n        to increase spatial resolution while preserving extreme behavior, Quantile-Preserving\n        Localized-Analog Downscaling (QPLAD).\\\\n\\\\nTogether, these methods provide\n        a robust means to handle both the central and tail behavior seen in climate\n        model output, while aligning the full distribution to a state-of-the-art reanalysis\n        dataset and providing the spatial granularity needed to study surface impacts.\\\\n\\\\nFor\n        further documentation, see [Global downscaled projections for climate impacts\n        research (GDPCIR): preserving extremes for modeling future climate impacts](https://egusphere.copernicus.org/preprints/2023/egusphere-2022-1513/)\n        (EGUsphere, 2022 [preprint]).\\\\n\\\\n## Citing, licensing, and using data produced\n        by this project\\\\n\\\\nProjects making use of the data produced as part of the\n        Climate Impact Lab Global Downscaled Projections for Climate Impacts Research\n        (CIL GDPCIR) project are requested to cite both this project and the source\n        datasets from which these results are derived. Additionally, the use of data\n        derived from some GCMs *requires* citations, and some modeling centers impose\n        licensing restrictions & requirements on derived works. See each GCM's license\n        info in the links below for more information.\\\\n\\\\n### CIL GDPCIR\\\\n\\\\nUsers\n        are requested to cite this project in derived works. Our method documentation\n        paper may be cited using the following:\\\\n\\\\n> Gergel, D. R., Malevich, S.\n        B., McCusker, K. E., Tenezakis, E., Delgado, M. T., Fish, M. A., and Kopp,\n        R. E.: Global downscaled projections for climate impacts research (GDPCIR):\n        preserving extremes for modeling future climate impacts, EGUsphere [preprint],\n        https://doi.org/10.5194/egusphere-2022-1513, 2023. \\\\n\\\\nThe code repository\n        may be cited using the following:\\\\n\\\\n> Diana Gergel, Kelly McCusker, Brewster\n        Malevich, Emile Tenezakis, Meredith Fish, Michael Delgado (2022). ClimateImpactLab/downscaleCMIP6:\n        (v1.0.0). Zenodo. https://doi.org/10.5281/zenodo.6403794\\\\n\\\\n### ERA5\\\\n\\\\nAdditionally,\n        we request you cite the historical dataset used in bias correction and downscaling,\n        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>\n        Hersbach, H, et al. The ERA5 global reanalysis. Q J R Meteorol Soc.2020; 146:\n        1999\\u20132049. DOI: [10.1002/qj.3803](https://doi.org/10.1002/qj.3803)\\\\n>\\\\n>\n        Mu\\xF1oz Sabater, J., (2019): ERA5-Land hourly data from 1981 to present.\n        Copernicus Climate Change Service (C3S) Climate Data Store (CDS). (Accessed\n        on June 4, 2021), DOI: [10.24381/cds.e2161bac](https://doi.org/10.24381/cds.e2161bac)\\\\n>\\\\n>\n        Mu\\xF1oz Sabater, J., (2021): ERA5-Land hourly data from 1950 to 1980. Copernicus\n        Climate Change Service (C3S) Climate Data Store (CDS). (Accessed on June 4,\n        2021), DOI: [10.24381/cds.e2161bac](https://doi.org/10.24381/cds.e2161bac)\\\\n\\\\n###\n        GCM-specific citations & licenses\\\\n\\\\nThe CMIP6 simulation data made available\n        through the Earth System Grid Federation (ESGF) are subject to Creative Commons\n        [BY-SA 4.0](https://creativecommons.org/licenses/by-sa/4.0/) or [BY-NC-SA\n        4.0](https://creativecommons.org/licenses/by-nc-sa/4.0/) licenses. The Climate\n        Impact Lab has reached out to each of the modeling institutions to request\n        waivers from these terms so the outputs of this project may be used with fewer\n        restrictions, and has been granted permission to release the data using the\n        licenses listed here.\\\\n\\\\n#### Public Domain Datasets\\\\n\\\\nThe following\n        bias corrected and downscaled model simulations are available in the public\n        domain using a [CC0 1.0 Universal Public Domain Declaration](https://creativecommons.org/publicdomain/zero/1.0/).\n        Access the collection on Planetary Computer at https://planetarycomputer.microsoft.com/dataset/cil-gdpcir-cc0.\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > Li, Lijuan **(2019)**. *CAS FGOALS-g3 model output\n        prepared for CMIP6 CMIP*. Version 20190826. Earth System Grid Federation.\n        https://doi.org/10.22033/ESGF/CMIP6.1783\\\\n\\\\n  ScenarioMIP Citation:\\\\n\\\\n\n        \\ > Li, Lijuan **(2019)**. *CAS FGOALS-g3 model output prepared for CMIP6\n        ScenarioMIP*. SSP1-2.6 version 20190818; SSP2-4.5 version 20190818; SSP3-7.0\n        version 20190820; SSP5-8.5 tasmax version 20190819; SSP5-8.5 tasmin version\n        20190819; SSP5-8.5 pr version 20190818. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.2056\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > Volodin, Evgeny; Mortikov, Evgeny; Gritsun, Andrey;\n        Lykossov, Vasily; Galin, Vener; Diansky, Nikolay; Gusev, Anatoly; Kostrykin,\n        Sergey; Iakovlev, Nikolay; Shestakova, Anna; Emelina, Svetlana **(2019)**.\n        *INM INM-CM4-8 model output prepared for CMIP6 CMIP*. Version 20190530. Earth\n        System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1422\\\\n\\\\n  ScenarioMIP\n        Citation:\\\\n\\\\n  > Volodin, Evgeny; Mortikov, Evgeny; Gritsun, Andrey; Lykossov,\n        Vasily; Galin, Vener; Diansky, Nikolay; Gusev, Anatoly; Kostrykin, Sergey;\n        Iakovlev, Nikolay; Shestakova, Anna; Emelina, Svetlana **(2019)**. *INM INM-CM4-8\n        model output prepared for CMIP6 ScenarioMIP*. Version 20190603. Earth System\n        Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.12321\\\\n\\\\n\\\\n* **INM-CM5-0**\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > Volodin, Evgeny; Mortikov, Evgeny; Gritsun, Andrey;\n        Lykossov, Vasily; Galin, Vener; Diansky, Nikolay; Gusev, Anatoly; Kostrykin,\n        Sergey; Iakovlev, Nikolay; Shestakova, Anna; Emelina, Svetlana **(2019)**.\n        *INM INM-CM5-0 model output prepared for CMIP6 CMIP*. Version 20190610. Earth\n        System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1423\\\\n\\\\n  ScenarioMIP\n        Citation:\\\\n\\\\n  > Volodin, Evgeny; Mortikov, Evgeny; Gritsun, Andrey; Lykossov,\n        Vasily; Galin, Vener; Diansky, Nikolay; Gusev, Anatoly; Kostrykin, Sergey;\n        Iakovlev, Nikolay; Shestakova, Anna; Emelina, Svetlana **(2019)**. *INM INM-CM5-0\n        model output prepared for CMIP6 ScenarioMIP*. SSP1-2.6 version 20190619; SSP2-4.5\n        version 20190619; SSP3-7.0 version 20190618; SSP5-8.5 version 20190724. Earth\n        System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.12322\\\\n\\\\n\\\\n####\n        CC-BY-4.0\\\\n\\\\nThe following bias corrected and downscaled model simulations\n        are licensed under a [Creative Commons Attribution 4.0 International License](https://creativecommons.org/licenses/by/4.0/).\n        Note that this license requires citation of the source model output (included\n        here). Please see https://creativecommons.org/licenses/by/4.0/ for more information.\n        Access the collection on Planetary Computer at https://planetarycomputer.microsoft.com/dataset/cil-gdpcir-cc-by.\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > Dix, Martin; Bi, Doahua; Dobrohotoff, Peter; Fiedler,\n        Russell; Harman, Ian; Law, Rachel; Mackallah, Chloe; Marsland, Simon; O'Farrell,\n        Siobhan; Rashid, Harun; Srbinovsky, Jhan; Sullivan, Arnold; Trenham, Claire;\n        Vohralik, Peter; Watterson, Ian; Williams, Gareth; Woodhouse, Matthew; Bodman,\n        Roger; Dias, Fabio Boeira; Domingues, Catia; Hannah, Nicholas; Heerdegen,\n        Aidan; Savita, Abhishek; Wales, Scott; Allen, Chris; Druken, Kelsey; Evans,\n        Ben; Richards, Clare; Ridzwan, Syazwan Mohamed; Roberts, Dale; Smillie, Jon;\n        Snow, Kate; Ward, Marshall; Yang, Rui **(2019)**. *CSIRO-ARCCSS ACCESS-CM2\n        model output prepared for CMIP6 CMIP*. Version 20191108. Earth System Grid\n        Federation. https://doi.org/10.22033/ESGF/CMIP6.2281\\\\n\\\\n  ScenarioMIP Citation:\\\\n\\\\n\n        \\ > Dix, Martin; Bi, Doahua; Dobrohotoff, Peter; Fiedler, Russell; Harman,\n        Ian; Law, Rachel; Mackallah, Chloe; Marsland, Simon; O'Farrell, Siobhan; Rashid,\n        Harun; Srbinovsky, Jhan; Sullivan, Arnold; Trenham, Claire; Vohralik, Peter;\n        Watterson, Ian; Williams, Gareth; Woodhouse, Matthew; Bodman, Roger; Dias,\n        Fabio Boeira; Domingues, Catia; Hannah, Nicholas; Heerdegen, Aidan; Savita,\n        Abhishek; Wales, Scott; Allen, Chris; Druken, Kelsey; Evans, Ben; Richards,\n        Clare; Ridzwan, Syazwan Mohamed; Roberts, Dale; Smillie, Jon; Snow, Kate;\n        Ward, Marshall; Yang, Rui **(2019)**. *CSIRO-ARCCSS ACCESS-CM2 model output\n        prepared for CMIP6 ScenarioMIP*. Version 20191108. Earth System Grid Federation.\n        https://doi.org/10.22033/ESGF/CMIP6.2285\\\\n\\\\n\\\\n* **ACCESS-ESM1-5**\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > Ziehn, Tilo; Chamberlain, Matthew; Lenton, Andrew;\n        Law, Rachel; Bodman, Roger; Dix, Martin; Wang, Yingping; Dobrohotoff, Peter;\n        Srbinovsky, Jhan; Stevens, Lauren; Vohralik, Peter; Mackallah, Chloe; Sullivan,\n        Arnold; O'Farrell, Siobhan; Druken, Kelsey **(2019)**. *CSIRO ACCESS-ESM1.5\n        model output prepared for CMIP6 CMIP*. Version 20191115. Earth System Grid\n        Federation. https://doi.org/10.22033/ESGF/CMIP6.2288\\\\n\\\\n  ScenarioMIP Citation:\\\\n\\\\n\n        \\ > Ziehn, Tilo; Chamberlain, Matthew; Lenton, Andrew; Law, Rachel; Bodman,\n        Roger; Dix, Martin; Wang, Yingping; Dobrohotoff, Peter; Srbinovsky, Jhan;\n        Stevens, Lauren; Vohralik, Peter; Mackallah, Chloe; Sullivan, Arnold; O'Farrell,\n        Siobhan; Druken, Kelsey **(2019)**. *CSIRO ACCESS-ESM1.5 model output prepared\n        for CMIP6 ScenarioMIP*. Version 20191115. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.2291\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > Xin, Xiaoge; Zhang, Jie; Zhang, Fang; Wu, Tongwen;\n        Shi, Xueli; Li, Jianglong; Chu, Min; Liu, Qianxia; Yan, Jinghui; Ma, Qiang;\n        Wei, Min **(2018)**. *BCC BCC-CSM2MR model output prepared for CMIP6 CMIP*.\n        Version 20181126. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1725\\\\n\\\\n\n        \\ ScenarioMIP Citation:\\\\n\\\\n  > Xin, Xiaoge; Wu, Tongwen; Shi, Xueli; Zhang,\n        Fang; Li, Jianglong; Chu, Min; Liu, Qianxia; Yan, Jinghui; Ma, Qiang; Wei,\n        Min **(2019)**. *BCC BCC-CSM2MR model output prepared for CMIP6 ScenarioMIP*.\n        SSP1-2.6 version 20190315; SSP2-4.5 version 20190318; SSP3-7.0 version 20190318;\n        SSP5-8.5 version 20190318. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1732\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > Lovato, Tomas; Peano, Daniele **(2020)**. *CMCC\n        CMCC-CM2-SR5 model output prepared for CMIP6 CMIP*. Version 20200616. Earth\n        System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1362\\\\n\\\\n  ScenarioMIP\n        Citation:\\\\n\\\\n  > Lovato, Tomas; Peano, Daniele **(2020)**. *CMCC CMCC-CM2-SR5\n        model output prepared for CMIP6 ScenarioMIP*. SSP1-2.6 version 20200717; SSP2-4.5\n        version 20200617; SSP3-7.0 version 20200622; SSP5-8.5 version 20200622. Earth\n        System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1365\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > Lovato, Tomas; Peano, Daniele; Butensch\\xF6n, Momme\n        **(2021)**. *CMCC CMCC-ESM2 model output prepared for CMIP6 CMIP*. Version\n        20210114. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.13164\\\\n\\\\n\n        \\ ScenarioMIP Citation:\\\\n\\\\n  > Lovato, Tomas; Peano, Daniele; Butensch\\xF6n,\n        Momme **(2021)**. *CMCC CMCC-ESM2 model output prepared for CMIP6 ScenarioMIP*.\n        SSP1-2.6 version 20210126; SSP2-4.5 version 20210129; SSP3-7.0 version 20210202;\n        SSP5-8.5 version 20210126. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.13168\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > EC-Earth Consortium (EC-Earth) **(2020)**. *EC-Earth-Consortium\n        EC-Earth3-AerChem model output prepared for CMIP6 CMIP*. Version 20200624.\n        Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.639\\\\n\\\\n\n        \\ ScenarioMIP Citation:\\\\n\\\\n  > EC-Earth Consortium (EC-Earth) **(2020)**.\n        *EC-Earth-Consortium EC-Earth3-AerChem model output prepared for CMIP6 ScenarioMIP*.\n        Version 20200827. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.724\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > EC-Earth Consortium (EC-Earth) **(2020)**. *EC-Earth-Consortium\n        EC-Earth-3-CC model output prepared for CMIP6 CMIP*. Version 20210113. Earth\n        System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.640\\\\n\\\\n  ScenarioMIP\n        Citation:\\\\n\\\\n  > EC-Earth Consortium (EC-Earth) **(2021)**. *EC-Earth-Consortium\n        EC-Earth3-CC model output prepared for CMIP6 ScenarioMIP*. Version 20210113.\n        Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.15327\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > EC-Earth Consortium (EC-Earth) **(2020)**. *EC-Earth-Consortium\n        EC-Earth3-Veg-LR model output prepared for CMIP6 CMIP*. Version 20200217.\n        Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.643\\\\n\\\\n\n        \\ ScenarioMIP Citation:\\\\n\\\\n  > EC-Earth Consortium (EC-Earth) **(2020)**.\n        *EC-Earth-Consortium EC-Earth3-Veg-LR model output prepared for CMIP6 ScenarioMIP*.\n        SSP1-2.6 version 20201201; SSP2-4.5 version 20201123; SSP3-7.0 version 20201123;\n        SSP5-8.5 version 20201201. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.728\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > EC-Earth Consortium (EC-Earth) **(2019)**. *EC-Earth-Consortium\n        EC-Earth3-Veg model output prepared for CMIP6 CMIP*. Version 20200225. Earth\n        System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.642\\\\n\\\\n  ScenarioMIP\n        Citation:\\\\n\\\\n  > EC-Earth Consortium (EC-Earth) **(2019)**. *EC-Earth-Consortium\n        EC-Earth3-Veg model output prepared for CMIP6 ScenarioMIP*. Version 20200225.\n        Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.727\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > EC-Earth Consortium (EC-Earth) **(2019)**. *EC-Earth-Consortium\n        EC-Earth3 model output prepared for CMIP6 CMIP*. Version 20200310. Earth System\n        Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.181\\\\n\\\\n  ScenarioMIP\n        Citation:\\\\n\\\\n  > EC-Earth Consortium (EC-Earth) **(2019)**. *EC-Earth-Consortium\n        EC-Earth3 model output prepared for CMIP6 ScenarioMIP*. Version 20200310.\n        Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.251\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > Guo, Huan; John, Jasmin G; Blanton, Chris; McHugh,\n        Colleen; Nikonov, Serguei; Radhakrishnan, Aparna; Rand, Kristopher; Zadeh,\n        Niki T.; Balaji, V; Durachta, Jeff; Dupuis, Christopher; Menzel, Raymond;\n        Robinson, Thomas; Underwood, Seth; Vahlenkamp, Hans; Bushuk, Mitchell; Dunne,\n        Krista A.; Dussin, Raphael; Gauthier, Paul PG; Ginoux, Paul; Griffies, Stephen\n        M.; Hallberg, Robert; Harrison, Matthew; Hurlin, William; Lin, Pu; Malyshev,\n        Sergey; Naik, Vaishali; Paulot, Fabien; Paynter, David J; Ploshay, Jeffrey;\n        Reichl, Brandon G; Schwarzkopf, Daniel M; Seman, Charles J; Shao, Andrew;\n        Silvers, Levi; Wyman, Bruce; Yan, Xiaoqin; Zeng, Yujin; Adcroft, Alistair;\n        Dunne, John P.; Held, Isaac M; Krasting, John P.; Horowitz, Larry W.; Milly,\n        P.C.D; Shevliakova, Elena; Winton, Michael; Zhao, Ming; Zhang, Rong **(2018)**.\n        *NOAA-GFDL GFDL-CM4 model output*. Version 20180701. Earth System Grid Federation.\n        https://doi.org/10.22033/ESGF/CMIP6.1402\\\\n\\\\n  ScenarioMIP Citation:\\\\n\\\\n\n        \\ > Guo, Huan; John, Jasmin G; Blanton, Chris; McHugh, Colleen; Nikonov, Serguei;\n        Radhakrishnan, Aparna; Rand, Kristopher; Zadeh, Niki T.; Balaji, V; Durachta,\n        Jeff; Dupuis, Christopher; Menzel, Raymond; Robinson, Thomas; Underwood, Seth;\n        Vahlenkamp, Hans; Dunne, Krista A.; Gauthier, Paul PG; Ginoux, Paul; Griffies,\n        Stephen M.; Hallberg, Robert; Harrison, Matthew; Hurlin, William; Lin, Pu;\n        Malyshev, Sergey; Naik, Vaishali; Paulot, Fabien; Paynter, David J; Ploshay,\n        Jeffrey; Schwarzkopf, Daniel M; Seman, Charles J; Shao, Andrew; Silvers, Levi;\n        Wyman, Bruce; Yan, Xiaoqin; Zeng, Yujin; Adcroft, Alistair; Dunne, John P.;\n        Held, Isaac M; Krasting, John P.; Horowitz, Larry W.; Milly, Chris; Shevliakova,\n        Elena; Winton, Michael; Zhao, Ming; Zhang, Rong **(2018)**. *NOAA-GFDL GFDL-CM4\n        model output prepared for CMIP6 ScenarioMIP*. Version 20180701. Earth System\n        Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.9242\\\\n\\\\n\\\\n* **GFDL-ESM4**\\\\n\\\\n\n        \\ License description: [data_licenses/GFDL-ESM4.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/GFDL-ESM4.txt)\\\\n\\\\n\n        \\ CMIP Citation:\\\\n\\\\n  > Krasting, John P.; John, Jasmin G; Blanton, Chris;\n        McHugh, Colleen; Nikonov, Serguei; Radhakrishnan, Aparna; Rand, Kristopher;\n        Zadeh, Niki T.; Balaji, V; Durachta, Jeff; Dupuis, Christopher; Menzel, Raymond;\n        Robinson, Thomas; Underwood, Seth; Vahlenkamp, Hans; Dunne, Krista A.; Gauthier,\n        Paul PG; Ginoux, Paul; Griffies, Stephen M.; Hallberg, Robert; Harrison, Matthew;\n        Hurlin, William; Malyshev, Sergey; Naik, Vaishali; Paulot, Fabien; Paynter,\n        David J; Ploshay, Jeffrey; Reichl, Brandon G; Schwarzkopf, Daniel M; Seman,\n        Charles J; Silvers, Levi; Wyman, Bruce; Zeng, Yujin; Adcroft, Alistair; Dunne,\n        John P.; Dussin, Raphael; Guo, Huan; He, Jian; Held, Isaac M; Horowitz, Larry\n        W.; Lin, Pu; Milly, P.C.D; Shevliakova, Elena; Stock, Charles; Winton, Michael;\n        Wittenberg, Andrew T.; Xie, Yuanyu; Zhao, Ming **(2018)**. *NOAA-GFDL GFDL-ESM4\n        model output prepared for CMIP6 CMIP*. Version 20190726. Earth System Grid\n        Federation. https://doi.org/10.22033/ESGF/CMIP6.1407\\\\n\\\\n  ScenarioMIP Citation:\\\\n\\\\n\n        \\ > John, Jasmin G; Blanton, Chris; McHugh, Colleen; Radhakrishnan, Aparna;\n        Rand, Kristopher; Vahlenkamp, Hans; Wilson, Chandin; Zadeh, Niki T.; Dunne,\n        John P.; Dussin, Raphael; Horowitz, Larry W.; Krasting, John P.; Lin, Pu;\n        Malyshev, Sergey; Naik, Vaishali; Ploshay, Jeffrey; Shevliakova, Elena; Silvers,\n        Levi; Stock, Charles; Winton, Michael; Zeng, Yujin **(2018)**. *NOAA-GFDL\n        GFDL-ESM4 model output prepared for CMIP6 ScenarioMIP*. Version 20180701.\n        Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1414\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > Ridley, Jeff; Menary, Matthew; Kuhlbrodt, Till;\n        Andrews, Martin; Andrews, Tim **(2018)**. *MOHC HadGEM3-GC31-LL model output\n        prepared for CMIP6 CMIP*. Version 20190624. Earth System Grid Federation.\n        https://doi.org/10.22033/ESGF/CMIP6.419\\\\n\\\\n  ScenarioMIP Citation:\\\\n\\\\n\n        \\ > Good, Peter **(2019)**. *MOHC HadGEM3-GC31-LL model output prepared for\n        CMIP6 ScenarioMIP*. SSP1-2.6 version 20200114; SSP2-4.5 version 20190908;\n        SSP5-8.5 version 20200114. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.10845\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > Hajima, Tomohiro; Abe, Manabu; Arakawa, Osamu; Suzuki,\n        Tatsuo; Komuro, Yoshiki; Ogura, Tomoo; Ogochi, Koji; Watanabe, Michio; Yamamoto,\n        Akitomo; Tatebe, Hiroaki; Noguchi, Maki A.; Ohgaito, Rumi; Ito, Akinori; Yamazaki,\n        Dai; Ito, Akihiko; Takata, Kumiko; Watanabe, Shingo; Kawamiya, Michio; Tachiiri,\n        Kaoru **(2019)**. *MIROC MIROC-ES2L model output prepared for CMIP6 CMIP*.\n        Version 20191129. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.902\\\\n\\\\n\n        \\ ScenarioMIP Citation:\\\\n\\\\n  > Tachiiri, Kaoru; Abe, Manabu; Hajima, Tomohiro;\n        Arakawa, Osamu; Suzuki, Tatsuo; Komuro, Yoshiki; Ogochi, Koji; Watanabe, Michio;\n        Yamamoto, Akitomo; Tatebe, Hiroaki; Noguchi, Maki A.; Ohgaito, Rumi; Ito,\n        Akinori; Yamazaki, Dai; Ito, Akihiko; Takata, Kumiko; Watanabe, Shingo; Kawamiya,\n        Michio **(2019)**. *MIROC MIROC-ES2L model output prepared for CMIP6 ScenarioMIP*.\n        Version 20200318. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.936\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > Tatebe, Hiroaki; Watanabe, Masahiro **(2018)**.\n        *MIROC MIROC6 model output prepared for CMIP6 CMIP*. Version 20191016. Earth\n        System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.881\\\\n\\\\n  ScenarioMIP\n        Citation:\\\\n\\\\n  > Shiogama, Hideo; Abe, Manabu; Tatebe, Hiroaki **(2019)**.\n        *MIROC MIROC6 model output prepared for CMIP6 ScenarioMIP*. Version 20191016.\n        Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.898\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > Jungclaus, Johann; Bittner, Matthias; Wieners, Karl-Hermann;\n        Wachsmann, Fabian; Schupfner, Martin; Legutke, Stephanie; Giorgetta, Marco;\n        Reick, Christian; Gayler, Veronika; Haak, Helmuth; de Vrese, Philipp; Raddatz,\n        Thomas; Esch, Monika; Mauritsen, Thorsten; von Storch, Jin-Song; Behrens,\n        J\\xF6rg; Brovkin, Victor; Claussen, Martin; Crueger, Traute; Fast, Irina;\n        Fiedler, Stephanie; Hagemann, Stefan; Hohenegger, Cathy; Jahns, Thomas; Kloster,\n        Silvia; Kinne, Stefan; Lasslop, Gitta; Kornblueh, Luis; Marotzke, Jochem;\n        Matei, Daniela; Meraner, Katharina; Mikolajewicz, Uwe; Modali, Kameswarrao;\n        M\\xFCller, Wolfgang; Nabel, Julia; Notz, Dirk; Peters-von Gehlen, Karsten;\n        Pincus, Robert; Pohlmann, Holger; Pongratz, Julia; Rast, Sebastian; Schmidt,\n        Hauke; Schnur, Reiner; Schulzweida, Uwe; Six, Katharina; Stevens, Bjorn; Voigt,\n        Aiko; Roeckner, Erich **(2019)**. *MPI-M MPIESM1.2-HR model output prepared\n        for CMIP6 CMIP*. Version 20190710. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.741\\\\n\\\\n\n        \\ ScenarioMIP Citation:\\\\n\\\\n  > Schupfner, Martin; Wieners, Karl-Hermann;\n        Wachsmann, Fabian; Steger, Christian; Bittner, Matthias; Jungclaus, Johann;\n        Fr\\xFCh, Barbara; Pankatz, Klaus; Giorgetta, Marco; Reick, Christian; Legutke,\n        Stephanie; Esch, Monika; Gayler, Veronika; Haak, Helmuth; de Vrese, Philipp;\n        Raddatz, Thomas; Mauritsen, Thorsten; von Storch, Jin-Song; Behrens, J\\xF6rg;\n        Brovkin, Victor; Claussen, Martin; Crueger, Traute; Fast, Irina; Fiedler,\n        Stephanie; Hagemann, Stefan; Hohenegger, Cathy; Jahns, Thomas; Kloster, Silvia;\n        Kinne, Stefan; Lasslop, Gitta; Kornblueh, Luis; Marotzke, Jochem; Matei, Daniela;\n        Meraner, Katharina; Mikolajewicz, Uwe; Modali, Kameswarrao; M\\xFCller, Wolfgang;\n        Nabel, Julia; Notz, Dirk; Peters-von Gehlen, Karsten; Pincus, Robert; Pohlmann,\n        Holger; Pongratz, Julia; Rast, Sebastian; Schmidt, Hauke; Schnur, Reiner;\n        Schulzweida, Uwe; Six, Katharina; Stevens, Bjorn; Voigt, Aiko; Roeckner, Erich\n        **(2019)**. *DKRZ MPI-ESM1.2-HR model output prepared for CMIP6 ScenarioMIP*.\n        Version 20190710. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.2450\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > Wieners, Karl-Hermann; Giorgetta, Marco; Jungclaus,\n        Johann; Reick, Christian; Esch, Monika; Bittner, Matthias; Legutke, Stephanie;\n        Schupfner, Martin; Wachsmann, Fabian; Gayler, Veronika; Haak, Helmuth; de\n        Vrese, Philipp; Raddatz, Thomas; Mauritsen, Thorsten; von Storch, Jin-Song;\n        Behrens, J\\xF6rg; Brovkin, Victor; Claussen, Martin; Crueger, Traute; Fast,\n        Irina; Fiedler, Stephanie; Hagemann, Stefan; Hohenegger, Cathy; Jahns, Thomas;\n        Kloster, Silvia; Kinne, Stefan; Lasslop, Gitta; Kornblueh, Luis; Marotzke,\n        Jochem; Matei, Daniela; Meraner, Katharina; Mikolajewicz, Uwe; Modali, Kameswarrao;\n        M\\xFCller, Wolfgang; Nabel, Julia; Notz, Dirk; Peters-von Gehlen, Karsten;\n        Pincus, Robert; Pohlmann, Holger; Pongratz, Julia; Rast, Sebastian; Schmidt,\n        Hauke; Schnur, Reiner; Schulzweida, Uwe; Six, Katharina; Stevens, Bjorn; Voigt,\n        Aiko; Roeckner, Erich **(2019)**. *MPI-M MPIESM1.2-LR model output prepared\n        for CMIP6 CMIP*. Version 20190710. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.742\\\\n\\\\n\n        \\ ScenarioMIP Citation:\\\\n\\\\n  > Wieners, Karl-Hermann; Giorgetta, Marco;\n        Jungclaus, Johann; Reick, Christian; Esch, Monika; Bittner, Matthias; Gayler,\n        Veronika; Haak, Helmuth; de Vrese, Philipp; Raddatz, Thomas; Mauritsen, Thorsten;\n        von Storch, Jin-Song; Behrens, J\\xF6rg; Brovkin, Victor; Claussen, Martin;\n        Crueger, Traute; Fast, Irina; Fiedler, Stephanie; Hagemann, Stefan; Hohenegger,\n        Cathy; Jahns, Thomas; Kloster, Silvia; Kinne, Stefan; Lasslop, Gitta; Kornblueh,\n        Luis; Marotzke, Jochem; Matei, Daniela; Meraner, Katharina; Mikolajewicz,\n        Uwe; Modali, Kameswarrao; M\\xFCller, Wolfgang; Nabel, Julia; Notz, Dirk; Peters-von\n        Gehlen, Karsten; Pincus, Robert; Pohlmann, Holger; Pongratz, Julia; Rast,\n        Sebastian; Schmidt, Hauke; Schnur, Reiner; Schulzweida, Uwe; Six, Katharina;\n        Stevens, Bjorn; Voigt, Aiko; Roeckner, Erich **(2019)**. *MPI-M MPIESM1.2-LR\n        model output prepared for CMIP6 ScenarioMIP*. Version 20190710. Earth System\n        Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.793\\\\n\\\\n\\\\n* **NESM3**\\\\n\\\\n\n        \\ License description: [data_licenses/NESM3.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/NESM3.txt)\\\\n\\\\n\n        \\ CMIP Citation:\\\\n\\\\n  > Cao, Jian; Wang, Bin **(2019)**. *NUIST NESMv3 model\n        output prepared for CMIP6 CMIP*. Version 20190812. Earth System Grid Federation.\n        https://doi.org/10.22033/ESGF/CMIP6.2021\\\\n\\\\n  ScenarioMIP Citation:\\\\n\\\\n\n        \\ > Cao, Jian **(2019)**. *NUIST NESMv3 model output prepared for CMIP6 ScenarioMIP*.\n        SSP1-2.6 version 20190806; SSP2-4.5 version 20190805; SSP5-8.5 version 20190811.\n        Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.2027\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > Seland, \\xD8yvind; Bentsen, Mats; Olivi\\xE8, Dirk\n        Jan Leo; Toniazzo, Thomas; Gjermundsen, Ada; Graff, Lise Seland; Debernard,\n        Jens Boldingh; Gupta, Alok Kumar; He, Yanchun; Kirkev\\xE5g, Alf; Schwinger,\n        J\\xF6rg; Tjiputra, Jerry; Aas, Kjetil Schanke; Bethke, Ingo; Fan, Yuanchao;\n        Griesfeller, Jan; Grini, Alf; Guo, Chuncheng; Ilicak, Mehmet; Karset, Inger\n        Helene Hafsahl; Landgren, Oskar Andreas; Liakka, Johan; Moseid, Kine Onsum;\n        Nummelin, Aleksi; Spensberger, Clemens; Tang, Hui; Zhang, Zhongshi; Heinze,\n        Christoph; Iversen, Trond; Schulz, Michael **(2019)**. *NCC NorESM2-LM model\n        output prepared for CMIP6 CMIP*. Version 20190815. Earth System Grid Federation.\n        https://doi.org/10.22033/ESGF/CMIP6.502\\\\n\\\\n  ScenarioMIP Citation:\\\\n\\\\n\n        \\ > Seland, \\xD8yvind; Bentsen, Mats; Olivi\\xE8, Dirk Jan Leo; Toniazzo, Thomas;\n        Gjermundsen, Ada; Graff, Lise Seland; Debernard, Jens Boldingh; Gupta, Alok\n        Kumar; He, Yanchun; Kirkev\\xE5g, Alf; Schwinger, J\\xF6rg; Tjiputra, Jerry;\n        Aas, Kjetil Schanke; Bethke, Ingo; Fan, Yuanchao; Griesfeller, Jan; Grini,\n        Alf; Guo, Chuncheng; Ilicak, Mehmet; Karset, Inger Helene Hafsahl; Landgren,\n        Oskar Andreas; Liakka, Johan; Moseid, Kine Onsum; Nummelin, Aleksi; Spensberger,\n        Clemens; Tang, Hui; Zhang, Zhongshi; Heinze, Christoph; Iversen, Trond; Schulz,\n        Michael **(2019)**. *NCC NorESM2-LM model output prepared for CMIP6 ScenarioMIP*.\n        Version 20191108. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.604\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > Bentsen, Mats; Olivi\\xE8, Dirk Jan Leo; Seland,\n        \\xD8yvind; Toniazzo, Thomas; Gjermundsen, Ada; Graff, Lise Seland; Debernard,\n        Jens Boldingh; Gupta, Alok Kumar; He, Yanchun; Kirkev\\xE5g, Alf; Schwinger,\n        J\\xF6rg; Tjiputra, Jerry; Aas, Kjetil Schanke; Bethke, Ingo; Fan, Yuanchao;\n        Griesfeller, Jan; Grini, Alf; Guo, Chuncheng; Ilicak, Mehmet; Karset, Inger\n        Helene Hafsahl; Landgren, Oskar Andreas; Liakka, Johan; Moseid, Kine Onsum;\n        Nummelin, Aleksi; Spensberger, Clemens; Tang, Hui; Zhang, Zhongshi; Heinze,\n        Christoph; Iversen, Trond; Schulz, Michael **(2019)**. *NCC NorESM2-MM model\n        output prepared for CMIP6 CMIP*. Version 20191108. Earth System Grid Federation.\n        https://doi.org/10.22033/ESGF/CMIP6.506\\\\n\\\\n  ScenarioMIP Citation:\\\\n\\\\n\n        \\ > Bentsen, Mats; Olivi\\xE8, Dirk Jan Leo; Seland, \\xD8yvind; Toniazzo, Thomas;\n        Gjermundsen, Ada; Graff, Lise Seland; Debernard, Jens Boldingh; Gupta, Alok\n        Kumar; He, Yanchun; Kirkev\\xE5g, Alf; Schwinger, J\\xF6rg; Tjiputra, Jerry;\n        Aas, Kjetil Schanke; Bethke, Ingo; Fan, Yuanchao; Griesfeller, Jan; Grini,\n        Alf; Guo, Chuncheng; Ilicak, Mehmet; Karset, Inger Helene Hafsahl; Landgren,\n        Oskar Andreas; Liakka, Johan; Moseid, Kine Onsum; Nummelin, Aleksi; Spensberger,\n        Clemens; Tang, Hui; Zhang, Zhongshi; Heinze, Christoph; Iversen, Trond; Schulz,\n        Michael **(2019)**. *NCC NorESM2-MM model output prepared for CMIP6 ScenarioMIP*.\n        Version 20191108. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.608\\\\n\\\\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\n        \\ CMIP Citation:\\\\n\\\\n  > Tang, Yongming; Rumbold, Steve; Ellis, Rich; Kelley,\n        Douglas; Mulcahy, Jane; Sellar, Alistair; Walton, Jeremy; Jones, Colin **(2019)**.\n        *MOHC UKESM1.0-LL model output prepared for CMIP6 CMIP*. Version 20190627.\n        Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1569\\\\n\\\\n\n        \\ ScenarioMIP Citation:\\\\n\\\\n  > Good, Peter; Sellar, Alistair; Tang, Yongming;\n        Rumbold, Steve; Ellis, Rich; Kelley, Douglas; Kuhlbrodt, Till; Walton, Jeremy\n        **(2019)**. *MOHC UKESM1.0-LL model output prepared for CMIP6 ScenarioMIP*.\n        SSP1-2.6 version 20190708; SSP2-4.5 version 20190715; SSP3-7.0 version 20190726;\n        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).\n        Note: this dataset was previously licensed\\\\n  under CC BY-SA 4.0, but was\n        relicensed as CC BY 4.0 in March, 2023.\\\\n\\\\n  CMIP Citation:\\\\n\\\\n  > Swart,\n        Neil Cameron; Cole, Jason N.S.; Kharin, Viatcheslav V.; Lazare, Mike; Scinocca,\n        John F.; Gillett, Nathan P.; Anstey, James; Arora, Vivek; Christian, James\n        R.; Jiao, Yanjun; Lee, Warren G.; Majaess, Fouad; Saenko, Oleg A.; Seiler,\n        Christian; Seinen, Clint; Shao, Andrew; Solheim, Larry; von Salzen, Knut;\n        Yang, Duo; Winter, Barbara; Sigmond, Michael **(2019)**. *CCCma CanESM5 model\n        output prepared for CMIP6 CMIP*. Version 20190429. Earth System Grid Federation.\n        https://doi.org/10.22033/ESGF/CMIP6.1303\\\\n\\\\n  ScenarioMIP Citation:\\\\n\\\\n\n        \\ > Swart, Neil Cameron; Cole, Jason N.S.; Kharin, Viatcheslav V.; Lazare,\n        Mike; Scinocca, John F.; Gillett, Nathan P.; Anstey, James; Arora, Vivek;\n        Christian, James R.; Jiao, Yanjun; Lee, Warren G.; Majaess, Fouad; Saenko,\n        Oleg A.; Seiler, Christian; Seinen, Clint; Shao, Andrew; Solheim, Larry; von\n        Salzen, Knut; Yang, Duo; Winter, Barbara; Sigmond, Michael **(2019)**. *CCCma\n        CanESM5 model output prepared for CMIP6 ScenarioMIP*. Version 20190429. Earth\n        System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1317\\\\n\\\\n## Acknowledgements\\\\n\\\\nThis\n        work is the result of many years worth of work by members of the [Climate\n        Impact Lab](https://impactlab.org), but would not have been possible without\n        many contributions from across the wider scientific and computing communities.\\\\n\\\\nSpecifically,\n        we would like to acknowledge the World Climate Research Programme's Working\n        Group on Coupled Modeling, which is responsible for CMIP, and we would like\n        to thank the climate modeling groups for producing and making their model\n        output available. We would particularly like to thank the modeling institutions\n        whose results are included as an input to this repository (listed above) for\n        their contributions to the CMIP6 project and for responding to and granting\n        our requests for license waivers.\\\\n\\\\nWe would also like to thank Lamont-Doherty\n        Earth Observatory, the [Pangeo Consortium](https://github.com/pangeo-data)\n        (and especially the [ESGF Cloud Data Working Group](https://pangeo-data.github.io/pangeo-cmip6-cloud/#))\n        and Google Cloud and the Google Public Datasets program for making the [CMIP6\n        Google Cloud collection](https://console.cloud.google.com/marketplace/details/noaa-public/cmip6)\n        possible. In particular we're extremely grateful to [Ryan Abernathey](https://github.com/rabernat),\n        [Naomi Henderson](https://github.com/naomi-henderson), [Charles Blackmon-Luca](https://github.com/charlesbluca),\n        [Aparna Radhakrishnan](https://github.com/aradhakrishnanGFDL), [Julius Busecke](https://github.com/jbusecke),\n        and [Charles Stern](https://github.com/cisaacstern) for the huge amount of\n        work they've done to translate the ESGF CMIP6 netCDF archives into consistently-formattted,\n        analysis-ready zarr stores on Google Cloud.\\\\n\\\\nWe're also grateful to the\n        [xclim developers](https://github.com/Ouranosinc/xclim/graphs/contributors)\n        ([DOI: 10.5281/zenodo.2795043](https://doi.org/10.5281/zenodo.2795043)), in\n        particular [Pascal Bourgault](https://github.com/aulemahal), [David Huard](https://github.com/huard),\n        and [Travis Logan](https://github.com/tlogan2000), for implementing the QDM\n        bias correction method in the xclim python package, supporting our QPLAD implementation\n        into the package, and ongoing support in integrating dask into downscaling\n        workflows. For method advice and useful conversations, we would like to thank\n        Keith Dixon, Dennis Adams-Smith, and [Joe Hamman](https://github.com/jhamman).\\\\n\\\\n##\n        Financial support\\\\n\\\\nThis research has been supported by The Rockefeller\n        Foundation and the Microsoft AI for Earth Initiative.\\\\n\\\\n## Additional links:\\\\n\\\\n*\n        CIL GDPCIR project homepage: [github.com/ClimateImpactLab/downscaleCMIP6](https://github.com/ClimateImpactLab/downscaleCMIP6)\\\\n*\n        Project listing on zenodo: https://doi.org/10.5281/zenodo.6403794\\\\n* Climate\n        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\n        Maximum Near-Surface Air Temperature\\\",\\\"description\\\":\\\"Daily Maximum Near-Surface\n        Air Temperature\\\"},\\\"tasmin\\\":{\\\"type\\\":\\\"application/vnd+zarr\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"Daily\n        Minimum Near-Surface Air Temperature\\\",\\\"description\\\":\\\"Daily Minimum Near-Surface\n        Air Temperature\\\"}},\\\"msft:region\\\":\\\"westeurope\\\",\\\"stac_version\\\":\\\"1.0.0\\\",\\\"msft:group_id\\\":\\\"cil-gdpcir\\\",\\\"cube:variables\\\":{\\\"pr\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"mm\n        day-1\\\",\\\"attrs\\\":{\\\"units\\\":\\\"mm day-1\\\"},\\\"dimensions\\\":[\\\"time\\\",\\\"lat\\\",\\\"lon\\\"]},\\\"tasmax\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"K\\\",\\\"attrs\\\":{\\\"units\\\":\\\"K\\\",\\\"comment\\\":\\\"maximum\n        near-surface (usually, 2 meter) air temperature (add cell_method attribute\n        'time: max')\\\",\\\"long_name\\\":\\\"Daily Maximum Near-Surface Air Temperature\\\",\\\"coordinates\\\":\\\"height\\\",\\\"cell_methods\\\":\\\"area:\n        mean time: maximum (interval: 5 minutes)\\\",\\\"cell_measures\\\":\\\"area: areacella\\\",\\\"original_name\\\":\\\"TREFHTMX\\\",\\\"standard_name\\\":\\\"air_temperature\\\"},\\\"dimensions\\\":[\\\"time\\\",\\\"lat\\\",\\\"lon\\\"],\\\"description\\\":\\\"Daily\n        Maximum Near-Surface Air Temperature\\\"},\\\"tasmin\\\":{\\\"type\\\":\\\"data\\\",\\\"unit\\\":\\\"K\\\",\\\"attrs\\\":{\\\"units\\\":\\\"K\\\",\\\"comment\\\":\\\"minimum\n        near-surface (usually, 2 meter) air temperature (add cell_method attribute\n        'time: min')\\\",\\\"long_name\\\":\\\"Daily Minimum Near-Surface Air Temperature\\\",\\\"coordinates\\\":\\\"height\\\",\\\"cell_methods\\\":\\\"area:\n        mean time: minimum (interval: 5 minutes)\\\",\\\"cell_measures\\\":\\\"area: areacella\\\",\\\"original_name\\\":\\\"TREFHTMN\\\",\\\"standard_name\\\":\\\"air_temperature\\\"},\\\"dimensions\\\":[\\\"time\\\",\\\"lat\\\",\\\"lon\\\"],\\\"description\\\":\\\"Daily\n        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\n        Impact Lab Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)\\\"}\"\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '11061'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:07:38 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150737Z-r17d779659cdp9hwhC1DEN390s00000003mg000000005739\n    status:\n      code: 200\n      message: OK\nversion: 1\n"
  },
  {
    "path": "tests/cassettes/test_client/test_fallback_strategy.yaml",
    "content": "interactions:\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/\n  response:\n    body:\n      string: '{\"type\":\"Catalog\",\"id\":\"microsoft-pc\",\"title\":\"Microsoft Planetary\n        Computer STAC API\",\"description\":\"Searchable spatiotemporal metadata describing\n        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\",\"https://api.stacspec.org/v1.0.0/item-search#sort\",\"https://api.stacspec.org/v1.0.0/core\",\"https://api.stacspec.org/v1.0.0/item-search#fields\",\"https://api.stacspec.org/v1.0.0-rc.2/item-search#filter\",\"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-features-1/1.0/conf/core\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30\",\"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#query\",\"http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter\",\"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\n        conformance classes implemented by this server\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/conformance\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        search\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/search\",\"method\":\"GET\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        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\n        Annual Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Seamless DEMs\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Surface Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Forest\n        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\n        Annual North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Annual Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Tables\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HGB:\n        Harmonized Global Biomass for 2010\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        DEM GLO-30\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        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\n        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\n        IMERG\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Rasters\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Height above Ground\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        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\n        1 Radiometrically Terrain Corrected (RTC)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Intensity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Source\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MTBS:\n        Monitoring Trends in Burn Severity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"C-CAP\n        Regional Land Cover and Change\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Cloud\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Burned Area Monthly\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        Forest/Non-Forest Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Returns\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MoBI:\n        Map of Biodiversity Importance\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ERA5\n        - PDS\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chloris\n        Biomass\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HydroForecast\n        - Kwando & Upper Zambezi Rivers\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Planet-NICFI\n        Basemaps (Analytic)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Gross Primary Productivity 8-Day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Daily Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        3DEP Lidar Classification\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Terrain Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        Gap Land Cover\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Basemaps (Visual)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Global\n        Biodiversity Information Facility (GBIF)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        World 3D-30m\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        PALSAR Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Water Availability\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Net Evapotranspiration Yearly Gap-Filled\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Census\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"JRC\n        Global Surface Water\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Flood Maps\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Thermal Anomalies/Fire Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HREA:\n        High Resolution Electricity Access\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Vegetation Indices 16-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Level-2A\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Land Surface Temperature/Emissivity Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Vegetation Indices 16-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Land\n        Cover of Canada\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Snow Cover 8-day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ECMWF\n        Open Data (real-time)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        HGT v001\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Esri\n        10-Meter Land Cover (10-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-1\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Denver\n        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\n        Land Cover (7-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Cover (13-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Use\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        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\n        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\n        Cropland Data Layers (CDLs)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Urban\n        Innovation Eclipse Sensor Data\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ESA\n        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\n        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\n        National Wetlands Inventory\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        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\n        US Tabular Climate Normals\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        Lightning Detection\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel\n        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\n        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\n        L1T\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"CIL\n        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:\n        National Agriculture Imagery Program\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        Intactness\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sea\n        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\n        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\n        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\n        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\n        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\n        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\n        Snow Cover Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-5P\n        Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        Building Footprints\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        service description\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json\"},{\"rel\":\"service-doc\",\"type\":\"text/html\",\"title\":\"OpenAPI\n        service documentation\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/docs\"}],\"stac_extensions\":[]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '3364'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:07:40 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150739Z-r17d779659c6qstkhC1DENnvqn00000002400000000048ze\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2\n  response:\n    body:\n      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\n        4-5 TM Collection 2 Level-2\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5066/P9C7I13B\",\"title\":\"Landsat\n        7 ETM+ Collection 2 Level-2\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5066/P9OGBGM6\",\"title\":\"Landsat\n        8-9 OLI/TIRS Collection 2 Level-2\"},{\"rel\":\"license\",\"href\":\"https://www.usgs.gov/core-science-systems/hdds/data-policy\",\"title\":\"Public\n        Domain\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/landsat-c2-l2\",\"title\":\"Human\n        readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Landsat\n        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\n        Collection 2 Level-2 thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/landsat-c2-l2.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet\n        STAC items\",\"description\":\"Snapshot of the collection''s STAC items exported\n        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\n        blue (Thematic Mapper)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.07},{\"name\":\"TM_B2\",\"common_name\":\"green\",\"description\":\"Visible\n        green (Thematic Mapper)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.08},{\"name\":\"TM_B3\",\"common_name\":\"red\",\"description\":\"Visible\n        red (Thematic Mapper)\",\"center_wavelength\":0.66,\"full_width_half_max\":0.06},{\"name\":\"TM_B4\",\"common_name\":\"nir08\",\"description\":\"Near\n        infrared (Thematic Mapper)\",\"center_wavelength\":0.83,\"full_width_half_max\":0.14},{\"name\":\"TM_B5\",\"common_name\":\"swir16\",\"description\":\"Short-wave\n        infrared (Thematic Mapper)\",\"center_wavelength\":1.65,\"full_width_half_max\":0.2},{\"name\":\"TM_B6\",\"common_name\":\"lwir\",\"description\":\"Long-wave\n        infrared (Thematic Mapper)\",\"center_wavelength\":11.45,\"full_width_half_max\":2.1},{\"name\":\"TM_B7\",\"common_name\":\"swir22\",\"description\":\"Short-wave\n        infrared (Thematic Mapper)\",\"center_wavelength\":2.22,\"full_width_half_max\":0.27},{\"name\":\"ETM_B1\",\"common_name\":\"blue\",\"description\":\"Visible\n        blue (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":0.48,\"full_width_half_max\":0.07},{\"name\":\"ETM_B2\",\"common_name\":\"green\",\"description\":\"Visible\n        green (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.08},{\"name\":\"ETM_B3\",\"common_name\":\"red\",\"description\":\"Visible\n        red (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":0.66,\"full_width_half_max\":0.06},{\"name\":\"ETM_B4\",\"common_name\":\"nir08\",\"description\":\"Near\n        infrared (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":0.84,\"full_width_half_max\":0.13},{\"name\":\"ETM_B5\",\"common_name\":\"swir16\",\"description\":\"Short-wave\n        infrared (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":1.65,\"full_width_half_max\":0.2},{\"name\":\"ETM_B6\",\"common_name\":\"lwir\",\"description\":\"Long-wave\n        infrared (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":11.34,\"full_width_half_max\":2.05},{\"name\":\"ETM_B7\",\"common_name\":\"swir22\",\"description\":\"Short-wave\n        infrared (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":2.2,\"full_width_half_max\":0.28},{\"name\":\"OLI_B1\",\"common_name\":\"coastal\",\"description\":\"Coastal/Aerosol\n        (Operational Land Imager)\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02},{\"name\":\"OLI_B2\",\"common_name\":\"blue\",\"description\":\"Visible\n        blue (Operational Land Imager)\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06},{\"name\":\"OLI_B3\",\"common_name\":\"green\",\"description\":\"Visible\n        green (Operational Land Imager)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06},{\"name\":\"OLI_B4\",\"common_name\":\"red\",\"description\":\"Visible\n        red (Operational Land Imager)\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04},{\"name\":\"OLI_B5\",\"common_name\":\"nir08\",\"description\":\"Near\n        infrared (Operational Land Imager)\",\"center_wavelength\":0.87,\"full_width_half_max\":0.03},{\"name\":\"OLI_B6\",\"common_name\":\"swir16\",\"description\":\"Short-wave\n        infrared (Operational Land Imager)\",\"center_wavelength\":1.61,\"full_width_half_max\":0.09},{\"name\":\"OLI_B7\",\"common_name\":\"swir22\",\"description\":\"Short-wave\n        infrared (Operational Land Imager)\",\"center_wavelength\":2.2,\"full_width_half_max\":0.19},{\"name\":\"TIRS_B10\",\"common_name\":\"lwir11\",\"description\":\"Long-wave\n        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\n        Collection 2 Level-2 [Science Products](https://www.usgs.gov/landsat-missions/landsat-collection-2-level-2-science-products),\n        consisting of atmospherically corrected [surface reflectance](https://www.usgs.gov/landsat-missions/landsat-collection-2-surface-reflectance)\n        and [surface temperature](https://www.usgs.gov/landsat-missions/landsat-collection-2-surface-temperature)\n        image data. Collection 2 Level-2 Science Products are available from August\n        22, 1982 to present.\\n\\nThis dataset represents the global archive of Level-2\n        data from [Landsat Collection 2](https://www.usgs.gov/core-science-systems/nli/landsat/landsat-collection-2)\n        acquired by the [Thematic Mapper](https://landsat.gsfc.nasa.gov/thematic-mapper/)\n        onboard Landsat 4 and 5, the [Enhanced Thematic Mapper](https://landsat.gsfc.nasa.gov/the-enhanced-thematic-mapper-plus-etm/)\n        onboard Landsat 7, and the [Operatational Land Imager](https://landsat.gsfc.nasa.gov/satellites/landsat-8/spacecraft-instruments/operational-land-imager/)\n        and [Thermal Infrared Sensor](https://landsat.gsfc.nasa.gov/satellites/landsat-8/spacecraft-instruments/thermal-infrared-sensor/)\n        onboard Landsat 8 and 9. Images are stored in [cloud-optimized GeoTIFF](https://www.cogeo.org/)\n        format.\\n\",\"item_assets\":{\"qa\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Surface\n        Temperature Quality Assessment Band\",\"description\":\"Collection 2 Level-2 Quality\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        File\"},\"red\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Red\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Blue\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Downwelled\n        Radiance Band\",\"description\":\"Collection 2 Level-2 Downwelled Radiance Band\n        (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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Emissivity\n        Band\",\"description\":\"Collection 2 Level-2 Emissivity Band (ST_EMIS) Surface\n        Temperature Product\",\"raster:bands\":[{\"unit\":\"emissivity coefficient\",\"scale\":0.0001,\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30}]},\"emsd\":{\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Emissivity\n        Standard Deviation Band\",\"description\":\"Collection 2 Level-2 Emissivity Standard\n        Deviation Band (ST_EMSD) Surface Temperature Product\",\"raster:bands\":[{\"unit\":\"emissivity\n        coefficient\",\"scale\":0.0001,\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30}]},\"lwir\":{\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"temperature\"],\"title\":\"Surface\n        Temperature Band\",\"eo:bands\":[{\"common_name\":\"lwir\",\"description\":\"Long-wave\n        infrared\"}],\"description\":\"Collection 2 Level-2 Thermal Infrared Band (ST_B6)\n        Surface Temperature\",\"raster:bands\":[{\"unit\":\"kelvin\",\"scale\":0.00341802,\"nodata\":0,\"offset\":149.0,\"data_type\":\"uint16\",\"spatial_resolution\":30}]},\"trad\":{\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Thermal\n        Radiance Band\",\"description\":\"Collection 2 Level-2 Thermal Radiance Band (ST_TRAD)\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Upwelled\n        Radiance Band\",\"description\":\"Collection 2 Level-2 Upwelled Radiance Band\n        (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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Atmospheric\n        Transmittance Band\",\"description\":\"Collection 2 Level-2 Atmospheric Transmittance\n        Band (ST_ATRAN) Surface Temperature Product\",\"raster:bands\":[{\"scale\":0.0001,\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30}]},\"cdist\":{\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Cloud\n        Distance Band\",\"description\":\"Collection 2 Level-2 Cloud Distance Band (ST_CDIST)\n        Surface Temperature Product\",\"raster:bands\":[{\"unit\":\"kilometer\",\"scale\":0.01,\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30}]},\"green\":{\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Green\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Near\n        Infrared Band 0.8\",\"eo:bands\":[{\"common_name\":\"nir08\",\"description\":\"Near\n        infrared\"}],\"raster:bands\":[{\"scale\":0.0000275,\"nodata\":0,\"offset\":-0.2,\"data_type\":\"uint16\",\"spatial_resolution\":30}]},\"lwir11\":{\"gsd\":100,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"temperature\"],\"title\":\"Surface\n        Temperature Band\",\"eo:bands\":[{\"name\":\"TIRS_B10\",\"common_name\":\"lwir11\",\"description\":\"Long-wave\n        infrared\",\"center_wavelength\":10.9,\"full_width_half_max\":0.59}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Short-wave\n        Infrared Band 1.6\",\"eo:bands\":[{\"common_name\":\"swir16\",\"description\":\"Short-wave\n        infrared\"}],\"raster:bands\":[{\"scale\":0.0000275,\"nodata\":0,\"offset\":-0.2,\"data_type\":\"uint16\",\"spatial_resolution\":30}]},\"swir22\":{\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Short-wave\n        Infrared Band 2.2\",\"eo:bands\":[{\"common_name\":\"swir22\",\"description\":\"Short-wave\n        infrared\"}],\"description\":\"Collection 2 Level-2 Short-wave Infrared Band 2.2\n        (SR_B7) Surface Reflectance\",\"raster:bands\":[{\"scale\":0.0000275,\"nodata\":0,\"offset\":-0.2,\"data_type\":\"uint16\",\"spatial_resolution\":30}]},\"coastal\":{\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Coastal/Aerosol\n        Band\",\"eo:bands\":[{\"name\":\"OLI_B1\",\"common_name\":\"coastal\",\"description\":\"Coastal/Aerosol\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        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\n        Metadata File (txt)\",\"description\":\"Collection 2 Level-2 Product Metadata\n        File (txt)\"},\"mtl.xml\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Product\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-2 Product Metadata\n        File (xml)\"},\"cloud_qa\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"cloud\",\"cloud-shadow\",\"snow-ice\",\"water-mask\"],\"title\":\"Cloud\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-2 Cloud Quality\n        Assessment Band (SR_CLOUD_QA) Surface Reflectance Product\",\"raster:bands\":[{\"unit\":\"bit\n        index\",\"data_type\":\"uint8\",\"spatial_resolution\":30}],\"classification:bitfields\":[{\"name\":\"ddv\",\"length\":1,\"offset\":0,\"classes\":[{\"name\":\"not_ddv\",\"value\":0,\"description\":\"Pixel\n        has no DDV\"},{\"name\":\"ddv\",\"value\":1,\"description\":\"Pixel has DDV\"}],\"description\":\"Dense\n        Dark Vegetation (DDV)\"},{\"name\":\"cloud\",\"length\":1,\"offset\":1,\"classes\":[{\"name\":\"not_cloud\",\"value\":0,\"description\":\"Pixel\n        has no cloud\"},{\"name\":\"cloud\",\"value\":1,\"description\":\"Pixel has cloud\"}],\"description\":\"Cloud\n        mask\"},{\"name\":\"cloud_shadow\",\"length\":1,\"offset\":2,\"classes\":[{\"name\":\"not_shadow\",\"value\":0,\"description\":\"Pixel\n        has no cloud shadow\"},{\"name\":\"shadow\",\"value\":1,\"description\":\"Pixel has\n        cloud shadow\"}],\"description\":\"Cloud shadow mask\"},{\"name\":\"cloud_adjacent\",\"length\":1,\"offset\":3,\"classes\":[{\"name\":\"not_adjacent\",\"value\":0,\"description\":\"Pixel\n        is not adjacent to cloud\"},{\"name\":\"adjacent\",\"value\":1,\"description\":\"Pixel\n        is adjacent to cloud\"}],\"description\":\"Cloud adjacency\"},{\"name\":\"snow\",\"length\":1,\"offset\":4,\"classes\":[{\"name\":\"not_snow\",\"value\":0,\"description\":\"Pixel\n        is not snow\"},{\"name\":\"shadow\",\"value\":1,\"description\":\"Pixel is snow\"}],\"description\":\"Snow\n        mask\"},{\"name\":\"water\",\"length\":1,\"offset\":5,\"classes\":[{\"name\":\"not_water\",\"value\":0,\"description\":\"Pixel\n        is not water\"},{\"name\":\"water\",\"value\":1,\"description\":\"Pixel is water\"}],\"description\":\"Water\n        mask\"}]},\"mtl.json\":{\"type\":\"application/json\",\"roles\":[\"metadata\"],\"title\":\"Product\n        Metadata File (json)\",\"description\":\"Collection 2 Level-2 Product Metadata\n        File (json)\"},\"qa_pixel\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"cloud\",\"cloud-shadow\",\"snow-ice\",\"water-mask\"],\"title\":\"Pixel\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Pixel Quality\n        Assessment Band (QA_PIXEL)\",\"raster:bands\":[{\"unit\":\"bit index\",\"nodata\":1,\"data_type\":\"uint16\",\"spatial_resolution\":30}]},\"qa_radsat\":{\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"saturation\"],\"raster:bands\":[{\"unit\":\"bit\n        index\",\"data_type\":\"uint16\",\"spatial_resolution\":30}]},\"qa_aerosol\":{\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data-mask\",\"water-mask\"],\"title\":\"Aerosol\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality\n        Assessment Band (SR_QA_AEROSOL) Surface Reflectance Product\",\"raster:bands\":[{\"unit\":\"bit\n        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\n        is not fill\"},{\"name\":\"fill\",\"value\":1,\"description\":\"Pixel is fill\"}],\"description\":\"Image\n        or fill data\"},{\"name\":\"retrieval\",\"length\":1,\"offset\":1,\"classes\":[{\"name\":\"not_valid\",\"value\":0,\"description\":\"Pixel\n        retrieval is not valid\"},{\"name\":\"valid\",\"value\":1,\"description\":\"Pixel retrieval\n        is valid\"}],\"description\":\"Valid aerosol retrieval\"},{\"name\":\"water\",\"length\":1,\"offset\":2,\"classes\":[{\"name\":\"not_water\",\"value\":0,\"description\":\"Pixel\n        is not water\"},{\"name\":\"water\",\"value\":1,\"description\":\"Pixel is water\"}],\"description\":\"Water\n        mask\"},{\"name\":\"interpolated\",\"length\":1,\"offset\":5,\"classes\":[{\"name\":\"not_interpolated\",\"value\":0,\"description\":\"Pixel\n        is not interpolated aerosol\"},{\"name\":\"interpolated\",\"value\":1,\"description\":\"Pixel\n        is interpolated aerosol\"}],\"description\":\"Aerosol interpolation\"},{\"name\":\"level\",\"length\":2,\"offset\":6,\"classes\":[{\"name\":\"climatology\",\"value\":0,\"description\":\"No\n        aerosol correction applied\"},{\"name\":\"low\",\"value\":1,\"description\":\"Low aerosol\n        level\"},{\"name\":\"medium\",\"value\":2,\"description\":\"Medium aerosol level\"},{\"name\":\"high\",\"value\":3,\"description\":\"High\n        aerosol level\"}],\"description\":\"Aerosol level\"}]},\"atmos_opacity\":{\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Atmospheric\n        Opacity Band\",\"description\":\"Collection 2 Level-2 Atmospheric Opacity Band\n        (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\n        Collection 2 Level-2 data from the Thematic Mapper (TM) onboard Landsat 4\n        and 5, the Enhanced Thematic Mapper Plus (ETM+) onboard Landsat 7, and the\n        Operational Land Imager (OLI) and Thermal Infrared Sensor (TIRS) onboard Landsat\n        8 and 9.\",\"msft:region\":\"westeurope\"}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '3454'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:07:40 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150740Z-r17d779659cqhh64hC1DEN1czn00000004h0000000009emn\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2/items?collections=landsat-c2-l2\n  response:\n    body:\n      string: '{\"type\":\"FeatureCollection\",\"features\":[{\"id\":\"LC09_L2SR_084082_20250722_02_T1\",\"bbox\":[158.63879985654305,-32.80759527765285,161.13159653930435,-30.67182472234715],\"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_L2SR_084082_20250722_02_T1\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5066/P9OGBGM6\",\"title\":\"Landsat\n        8-9 OLI/TIRS Collection 2 Level-2\"},{\"rel\":\"via\",\"href\":\"https://landsatlook.usgs.gov/stac-server/collections/landsat-c2l2-sr/items/LC09_L2SR_084082_20250722_20250725_02_T1_SR\",\"type\":\"application/json\",\"title\":\"USGS\n        STAC Item\"},{\"rel\":\"preview\",\"href\":\"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=landsat-c2-l2&item=LC09_L2SR_084082_20250722_02_T1\",\"title\":\"Map\n        of item\",\"type\":\"text/html\"}],\"assets\":{\"ang\":{\"href\":\"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/084/082/LC09_L2SR_084082_20250722_20250725_02_T1/LC09_L2SR_084082_20250722_20250725_02_T1_ANG.txt\",\"type\":\"text/plain\",\"roles\":[\"metadata\"],\"title\":\"Angle\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        File\"},\"red\":{\"href\":\"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/084/082/LC09_L2SR_084082_20250722_20250725_02_T1/LC09_L2SR_084082_20250722_20250725_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\n        red\"}],\"description\":\"Collection 2 Level-2 Red Band (SR_B4) Surface Reflectance\",\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Red\n        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/084/082/LC09_L2SR_084082_20250722_20250725_02_T1/LC09_L2SR_084082_20250722_20250725_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\n        blue\"}],\"description\":\"Collection 2 Level-2 Blue Band (SR_B2) Surface Reflectance\",\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Blue\n        Band\",\"raster:bands\":[{\"scale\":0.0000275,\"nodata\":0,\"offset\":-0.2,\"data_type\":\"uint16\",\"spatial_resolution\":30}]},\"green\":{\"href\":\"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/084/082/LC09_L2SR_084082_20250722_20250725_02_T1/LC09_L2SR_084082_20250722_20250725_02_T1_SR_B3.TIF\",\"eo:bands\":[{\"name\":\"OLI_B3\",\"full_width_half_max\":0.06,\"common_name\":\"green\",\"description\":\"Visible\n        green\",\"center_wavelength\":0.56}],\"description\":\"Collection 2 Level-2 Green\n        Band (SR_B3) Surface Reflectance\",\"type\":\"image/tiff; application=geotiff;\n        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/084/082/LC09_L2SR_084082_20250722_20250725_02_T1/LC09_L2SR_084082_20250722_20250725_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\n        infrared\"}],\"description\":\"Collection 2 Level-2 Near Infrared Band 0.8 (SR_B5)\n        Surface Reflectance\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Near\n        Infrared Band 0.8\",\"raster:bands\":[{\"scale\":0.0000275,\"nodata\":0,\"offset\":-0.2,\"data_type\":\"uint16\",\"spatial_resolution\":30}]},\"swir16\":{\"href\":\"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/084/082/LC09_L2SR_084082_20250722_20250725_02_T1/LC09_L2SR_084082_20250722_20250725_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\n        infrared\"}],\"description\":\"Collection 2 Level-2 Short-wave Infrared Band 1.6\n        (SR_B6) Surface Reflectance\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Short-wave\n        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/084/082/LC09_L2SR_084082_20250722_20250725_02_T1/LC09_L2SR_084082_20250722_20250725_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\n        infrared\"}],\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Short-wave\n        Infrared Band 2.2\",\"description\":\"Collection 2 Level-2 Short-wave Infrared\n        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/084/082/LC09_L2SR_084082_20250722_20250725_02_T1/LC09_L2SR_084082_20250722_20250725_02_T1_SR_B1.TIF\",\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Coastal/Aerosol\n        Band\",\"eo:bands\":[{\"name\":\"OLI_B1\",\"common_name\":\"coastal\",\"description\":\"Coastal/Aerosol\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        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/084/082/LC09_L2SR_084082_20250722_20250725_02_T1/LC09_L2SR_084082_20250722_20250725_02_T1_MTL.txt\",\"type\":\"text/plain\",\"roles\":[\"metadata\"],\"title\":\"Product\n        Metadata File (txt)\",\"description\":\"Collection 2 Level-2 Product Metadata\n        File (txt)\"},\"mtl.xml\":{\"href\":\"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/084/082/LC09_L2SR_084082_20250722_20250725_02_T1/LC09_L2SR_084082_20250722_20250725_02_T1_MTL.xml\",\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Product\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-2 Product Metadata\n        File (xml)\"},\"mtl.json\":{\"href\":\"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/084/082/LC09_L2SR_084082_20250722_20250725_02_T1/LC09_L2SR_084082_20250722_20250725_02_T1_MTL.json\",\"type\":\"application/json\",\"roles\":[\"metadata\"],\"title\":\"Product\n        Metadata File (json)\",\"description\":\"Collection 2 Level-2 Product Metadata\n        File (json)\"},\"qa_pixel\":{\"href\":\"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/084/082/LC09_L2SR_084082_20250722_20250725_02_T1/LC09_L2SR_084082_20250722_20250725_02_T1_QA_PIXEL.TIF\",\"classification:bitfields\":[{\"name\":\"fill\",\"length\":1,\"offset\":0,\"classes\":[{\"name\":\"not_fill\",\"value\":0,\"description\":\"Image\n        data\"},{\"name\":\"fill\",\"value\":1,\"description\":\"Fill data\"}],\"description\":\"Image\n        or fill data\"},{\"name\":\"dilated_cloud\",\"length\":1,\"offset\":1,\"classes\":[{\"name\":\"not_dilated\",\"value\":0,\"description\":\"Cloud\n        is not dilated or no cloud\"},{\"name\":\"dilated\",\"value\":1,\"description\":\"Cloud\n        dilation\"}],\"description\":\"Dilated cloud\"},{\"name\":\"cirrus\",\"length\":1,\"offset\":2,\"classes\":[{\"name\":\"not_cirrus\",\"value\":0,\"description\":\"Cirrus\n        confidence is not high\"},{\"name\":\"cirrus\",\"value\":1,\"description\":\"High confidence\n        cirrus\"}],\"description\":\"Cirrus mask\"},{\"name\":\"cloud\",\"length\":1,\"offset\":3,\"classes\":[{\"name\":\"not_cloud\",\"value\":0,\"description\":\"Cloud\n        confidence is not high\"},{\"name\":\"cloud\",\"value\":1,\"description\":\"High confidence\n        cloud\"}],\"description\":\"Cloud mask\"},{\"name\":\"cloud_shadow\",\"length\":1,\"offset\":4,\"classes\":[{\"name\":\"not_shadow\",\"value\":0,\"description\":\"Cloud\n        shadow confidence is not high\"},{\"name\":\"shadow\",\"value\":1,\"description\":\"High\n        confidence cloud shadow\"}],\"description\":\"Cloud shadow mask\"},{\"name\":\"snow\",\"length\":1,\"offset\":5,\"classes\":[{\"name\":\"not_snow\",\"value\":0,\"description\":\"Snow/Ice\n        confidence is not high\"},{\"name\":\"snow\",\"value\":1,\"description\":\"High confidence\n        snow cover\"}],\"description\":\"Snow/Ice mask\"},{\"name\":\"clear\",\"length\":1,\"offset\":6,\"classes\":[{\"name\":\"not_clear\",\"value\":0,\"description\":\"Cloud\n        or dilated cloud bits are set\"},{\"name\":\"clear\",\"value\":1,\"description\":\"Cloud\n        and dilated cloud bits are not set\"}],\"description\":\"Clear mask\"},{\"name\":\"water\",\"length\":1,\"offset\":7,\"classes\":[{\"name\":\"not_water\",\"value\":0,\"description\":\"Land\n        or cloud\"},{\"name\":\"water\",\"value\":1,\"description\":\"Water\"}],\"description\":\"Water\n        mask\"},{\"name\":\"cloud_confidence\",\"length\":2,\"offset\":8,\"classes\":[{\"name\":\"not_set\",\"value\":0,\"description\":\"No\n        confidence level set\"},{\"name\":\"low\",\"value\":1,\"description\":\"Low confidence\n        cloud\"},{\"name\":\"medium\",\"value\":2,\"description\":\"Medium confidence cloud\"},{\"name\":\"high\",\"value\":3,\"description\":\"High\n        confidence cloud\"}],\"description\":\"Cloud confidence levels\"},{\"name\":\"cloud_shadow_confidence\",\"length\":2,\"offset\":10,\"classes\":[{\"name\":\"not_set\",\"value\":0,\"description\":\"No\n        confidence level set\"},{\"name\":\"low\",\"value\":1,\"description\":\"Low confidence\n        cloud shadow\"},{\"name\":\"reserved\",\"value\":2,\"description\":\"Reserved - value\n        not used\"},{\"name\":\"high\",\"value\":3,\"description\":\"High confidence cloud shadow\"}],\"description\":\"Cloud\n        shadow confidence levels\"},{\"name\":\"snow_confidence\",\"length\":2,\"offset\":12,\"classes\":[{\"name\":\"not_set\",\"value\":0,\"description\":\"No\n        confidence level set\"},{\"name\":\"low\",\"value\":1,\"description\":\"Low confidence\n        snow/ice\"},{\"name\":\"reserved\",\"value\":2,\"description\":\"Reserved - value not\n        used\"},{\"name\":\"high\",\"value\":3,\"description\":\"High confidence snow/ice\"}],\"description\":\"Snow/Ice\n        confidence levels\"},{\"name\":\"cirrus_confidence\",\"length\":2,\"offset\":14,\"classes\":[{\"name\":\"not_set\",\"value\":0,\"description\":\"No\n        confidence level set\"},{\"name\":\"low\",\"value\":1,\"description\":\"Low confidence\n        cirrus\"},{\"name\":\"reserved\",\"value\":2,\"description\":\"Reserved - value not\n        used\"},{\"name\":\"high\",\"value\":3,\"description\":\"High confidence cirrus\"}],\"description\":\"Cirrus\n        confidence levels\"}],\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"cloud\",\"cloud-shadow\",\"snow-ice\",\"water-mask\"],\"title\":\"Pixel\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Pixel Quality\n        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/084/082/LC09_L2SR_084082_20250722_20250725_02_T1/LC09_L2SR_084082_20250722_20250725_02_T1_QA_RADSAT.TIF\",\"title\":\"Radiometric\n        Saturation and Terrain Occlusion Quality Assessment Band\",\"description\":\"Collection\n        2 Level-1 Radiometric Saturation and Terrain Occlusion Quality Assessment\n        Band (QA_RADSAT)\",\"classification:bitfields\":[{\"name\":\"band1\",\"length\":1,\"offset\":0,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band\n        1 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 1 saturated\"}],\"description\":\"Band\n        1 radiometric saturation\"},{\"name\":\"band2\",\"length\":1,\"offset\":1,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band\n        2 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 2 saturated\"}],\"description\":\"Band\n        2 radiometric saturation\"},{\"name\":\"band3\",\"length\":1,\"offset\":2,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band\n        3 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 3 saturated\"}],\"description\":\"Band\n        3 radiometric saturation\"},{\"name\":\"band4\",\"length\":1,\"offset\":3,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band\n        4 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 4 saturated\"}],\"description\":\"Band\n        4 radiometric saturation\"},{\"name\":\"band5\",\"length\":1,\"offset\":4,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band\n        5 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 5 saturated\"}],\"description\":\"Band\n        5 radiometric saturation\"},{\"name\":\"band6\",\"length\":1,\"offset\":5,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band\n        6 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 6 saturated\"}],\"description\":\"Band\n        6 radiometric saturation\"},{\"name\":\"band7\",\"length\":1,\"offset\":6,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band\n        7 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 7 saturated\"}],\"description\":\"Band\n        7 radiometric saturation\"},{\"name\":\"band9\",\"length\":1,\"offset\":8,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band\n        9 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 9 saturated\"}],\"description\":\"Band\n        9 radiometric saturation\"},{\"name\":\"occlusion\",\"length\":1,\"offset\":11,\"classes\":[{\"name\":\"not_occluded\",\"value\":0,\"description\":\"Terrain\n        is not occluded\"},{\"name\":\"occluded\",\"value\":1,\"description\":\"Terrain is occluded\"}],\"description\":\"Terrain\n        not visible from sensor due to intervening terrain\"}],\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"saturation\"],\"raster:bands\":[{\"unit\":\"bit\n        index\",\"data_type\":\"uint16\",\"spatial_resolution\":30}]},\"qa_aerosol\":{\"href\":\"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/084/082/LC09_L2SR_084082_20250722_20250725_02_T1/LC09_L2SR_084082_20250722_20250725_02_T1_SR_QA_AEROSOL.TIF\",\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data-mask\",\"water-mask\"],\"title\":\"Aerosol\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality\n        Assessment Band (SR_QA_AEROSOL) Surface Reflectance Product\",\"raster:bands\":[{\"unit\":\"bit\n        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\n        is not fill\"},{\"name\":\"fill\",\"value\":1,\"description\":\"Pixel is fill\"}],\"description\":\"Image\n        or fill data\"},{\"name\":\"retrieval\",\"length\":1,\"offset\":1,\"classes\":[{\"name\":\"not_valid\",\"value\":0,\"description\":\"Pixel\n        retrieval is not valid\"},{\"name\":\"valid\",\"value\":1,\"description\":\"Pixel retrieval\n        is valid\"}],\"description\":\"Valid aerosol retrieval\"},{\"name\":\"water\",\"length\":1,\"offset\":2,\"classes\":[{\"name\":\"not_water\",\"value\":0,\"description\":\"Pixel\n        is not water\"},{\"name\":\"water\",\"value\":1,\"description\":\"Pixel is water\"}],\"description\":\"Water\n        mask\"},{\"name\":\"interpolated\",\"length\":1,\"offset\":5,\"classes\":[{\"name\":\"not_interpolated\",\"value\":0,\"description\":\"Pixel\n        is not interpolated aerosol\"},{\"name\":\"interpolated\",\"value\":1,\"description\":\"Pixel\n        is interpolated aerosol\"}],\"description\":\"Aerosol interpolation\"},{\"name\":\"level\",\"length\":2,\"offset\":6,\"classes\":[{\"name\":\"climatology\",\"value\":0,\"description\":\"No\n        aerosol correction applied\"},{\"name\":\"low\",\"value\":1,\"description\":\"Low aerosol\n        level\"},{\"name\":\"medium\",\"value\":2,\"description\":\"Medium aerosol level\"},{\"name\":\"high\",\"value\":3,\"description\":\"High\n        aerosol level\"}],\"description\":\"Aerosol level\"}]},\"tilejson\":{\"title\":\"TileJSON\n        with default rendering\",\"href\":\"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=landsat-c2-l2&item=LC09_L2SR_084082_20250722_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\n        preview\",\"rel\":\"preview\",\"href\":\"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=landsat-c2-l2&item=LC09_L2SR_084082_20250722_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\":[[[159.14654986248814,-30.6941406499155],[158.66623716033953,-32.40903863081392],[160.62971133412992,-32.79236924307772],[161.0734257928811,-31.07115037447885],[159.14654986248814,-30.6941406499155]]]},\"collection\":\"landsat-c2-l2\",\"properties\":{\"gsd\":30,\"created\":\"2025-07-30T09:24:29.698352Z\",\"sci:doi\":\"10.5066/P9OGBGM6\",\"datetime\":\"2025-07-22T23:12:16.530560Z\",\"platform\":\"landsat-9\",\"proj:epsg\":32657,\"proj:shape\":[7831,7781],\"description\":\"Landsat\n        Collection 2 Level-2\",\"instruments\":[\"oli\",\"tirs\"],\"eo:cloud_cover\":41.51,\"proj:transform\":[30.0,0.0,466185.0,0.0,-30.0,-3395085.0],\"view:off_nadir\":0,\"landsat:wrs_row\":\"082\",\"landsat:scene_id\":\"LC90840822025203LGN00\",\"landsat:wrs_path\":\"084\",\"landsat:wrs_type\":\"2\",\"view:sun_azimuth\":36.53847911,\"landsat:correction\":\"L2SR\",\"view:sun_elevation\":28.95618809,\"landsat:cloud_cover_land\":43.14,\"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_L2SR_084074_20250722_02_T1\",\"bbox\":[161.6278454807432,-21.284715464989905,163.83681261015374,-19.173674535010093],\"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_L2SR_084074_20250722_02_T1\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5066/P9OGBGM6\",\"title\":\"Landsat\n        8-9 OLI/TIRS Collection 2 Level-2\"},{\"rel\":\"via\",\"href\":\"https://landsatlook.usgs.gov/stac-server/collections/landsat-c2l2-sr/items/LC09_L2SR_084074_20250722_20250725_02_T1_SR\",\"type\":\"application/json\",\"title\":\"USGS\n        STAC Item\"},{\"rel\":\"preview\",\"href\":\"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=landsat-c2-l2&item=LC09_L2SR_084074_20250722_02_T1\",\"title\":\"Map\n        of item\",\"type\":\"text/html\"}],\"assets\":{\"ang\":{\"href\":\"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/084/074/LC09_L2SR_084074_20250722_20250725_02_T1/LC09_L2SR_084074_20250722_20250725_02_T1_ANG.txt\",\"type\":\"text/plain\",\"roles\":[\"metadata\"],\"title\":\"Angle\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        File\"},\"red\":{\"href\":\"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/084/074/LC09_L2SR_084074_20250722_20250725_02_T1/LC09_L2SR_084074_20250722_20250725_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\n        red\"}],\"description\":\"Collection 2 Level-2 Red Band (SR_B4) Surface Reflectance\",\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Red\n        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/084/074/LC09_L2SR_084074_20250722_20250725_02_T1/LC09_L2SR_084074_20250722_20250725_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\n        blue\"}],\"description\":\"Collection 2 Level-2 Blue Band (SR_B2) Surface Reflectance\",\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Blue\n        Band\",\"raster:bands\":[{\"scale\":0.0000275,\"nodata\":0,\"offset\":-0.2,\"data_type\":\"uint16\",\"spatial_resolution\":30}]},\"green\":{\"href\":\"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/084/074/LC09_L2SR_084074_20250722_20250725_02_T1/LC09_L2SR_084074_20250722_20250725_02_T1_SR_B3.TIF\",\"eo:bands\":[{\"name\":\"OLI_B3\",\"full_width_half_max\":0.06,\"common_name\":\"green\",\"description\":\"Visible\n        green\",\"center_wavelength\":0.56}],\"description\":\"Collection 2 Level-2 Green\n        Band (SR_B3) Surface Reflectance\",\"type\":\"image/tiff; application=geotiff;\n        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/084/074/LC09_L2SR_084074_20250722_20250725_02_T1/LC09_L2SR_084074_20250722_20250725_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\n        infrared\"}],\"description\":\"Collection 2 Level-2 Near Infrared Band 0.8 (SR_B5)\n        Surface Reflectance\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Near\n        Infrared Band 0.8\",\"raster:bands\":[{\"scale\":0.0000275,\"nodata\":0,\"offset\":-0.2,\"data_type\":\"uint16\",\"spatial_resolution\":30}]},\"swir16\":{\"href\":\"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/084/074/LC09_L2SR_084074_20250722_20250725_02_T1/LC09_L2SR_084074_20250722_20250725_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\n        infrared\"}],\"description\":\"Collection 2 Level-2 Short-wave Infrared Band 1.6\n        (SR_B6) Surface Reflectance\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Short-wave\n        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/084/074/LC09_L2SR_084074_20250722_20250725_02_T1/LC09_L2SR_084074_20250722_20250725_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\n        infrared\"}],\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Short-wave\n        Infrared Band 2.2\",\"description\":\"Collection 2 Level-2 Short-wave Infrared\n        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/084/074/LC09_L2SR_084074_20250722_20250725_02_T1/LC09_L2SR_084074_20250722_20250725_02_T1_SR_B1.TIF\",\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Coastal/Aerosol\n        Band\",\"eo:bands\":[{\"name\":\"OLI_B1\",\"common_name\":\"coastal\",\"description\":\"Coastal/Aerosol\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        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/084/074/LC09_L2SR_084074_20250722_20250725_02_T1/LC09_L2SR_084074_20250722_20250725_02_T1_MTL.txt\",\"type\":\"text/plain\",\"roles\":[\"metadata\"],\"title\":\"Product\n        Metadata File (txt)\",\"description\":\"Collection 2 Level-2 Product Metadata\n        File (txt)\"},\"mtl.xml\":{\"href\":\"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/084/074/LC09_L2SR_084074_20250722_20250725_02_T1/LC09_L2SR_084074_20250722_20250725_02_T1_MTL.xml\",\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Product\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-2 Product Metadata\n        File (xml)\"},\"mtl.json\":{\"href\":\"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/084/074/LC09_L2SR_084074_20250722_20250725_02_T1/LC09_L2SR_084074_20250722_20250725_02_T1_MTL.json\",\"type\":\"application/json\",\"roles\":[\"metadata\"],\"title\":\"Product\n        Metadata File (json)\",\"description\":\"Collection 2 Level-2 Product Metadata\n        File (json)\"},\"qa_pixel\":{\"href\":\"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/084/074/LC09_L2SR_084074_20250722_20250725_02_T1/LC09_L2SR_084074_20250722_20250725_02_T1_QA_PIXEL.TIF\",\"classification:bitfields\":[{\"name\":\"fill\",\"length\":1,\"offset\":0,\"classes\":[{\"name\":\"not_fill\",\"value\":0,\"description\":\"Image\n        data\"},{\"name\":\"fill\",\"value\":1,\"description\":\"Fill data\"}],\"description\":\"Image\n        or fill data\"},{\"name\":\"dilated_cloud\",\"length\":1,\"offset\":1,\"classes\":[{\"name\":\"not_dilated\",\"value\":0,\"description\":\"Cloud\n        is not dilated or no cloud\"},{\"name\":\"dilated\",\"value\":1,\"description\":\"Cloud\n        dilation\"}],\"description\":\"Dilated cloud\"},{\"name\":\"cirrus\",\"length\":1,\"offset\":2,\"classes\":[{\"name\":\"not_cirrus\",\"value\":0,\"description\":\"Cirrus\n        confidence is not high\"},{\"name\":\"cirrus\",\"value\":1,\"description\":\"High confidence\n        cirrus\"}],\"description\":\"Cirrus mask\"},{\"name\":\"cloud\",\"length\":1,\"offset\":3,\"classes\":[{\"name\":\"not_cloud\",\"value\":0,\"description\":\"Cloud\n        confidence is not high\"},{\"name\":\"cloud\",\"value\":1,\"description\":\"High confidence\n        cloud\"}],\"description\":\"Cloud mask\"},{\"name\":\"cloud_shadow\",\"length\":1,\"offset\":4,\"classes\":[{\"name\":\"not_shadow\",\"value\":0,\"description\":\"Cloud\n        shadow confidence is not high\"},{\"name\":\"shadow\",\"value\":1,\"description\":\"High\n        confidence cloud shadow\"}],\"description\":\"Cloud shadow mask\"},{\"name\":\"snow\",\"length\":1,\"offset\":5,\"classes\":[{\"name\":\"not_snow\",\"value\":0,\"description\":\"Snow/Ice\n        confidence is not high\"},{\"name\":\"snow\",\"value\":1,\"description\":\"High confidence\n        snow cover\"}],\"description\":\"Snow/Ice mask\"},{\"name\":\"clear\",\"length\":1,\"offset\":6,\"classes\":[{\"name\":\"not_clear\",\"value\":0,\"description\":\"Cloud\n        or dilated cloud bits are set\"},{\"name\":\"clear\",\"value\":1,\"description\":\"Cloud\n        and dilated cloud bits are not set\"}],\"description\":\"Clear mask\"},{\"name\":\"water\",\"length\":1,\"offset\":7,\"classes\":[{\"name\":\"not_water\",\"value\":0,\"description\":\"Land\n        or cloud\"},{\"name\":\"water\",\"value\":1,\"description\":\"Water\"}],\"description\":\"Water\n        mask\"},{\"name\":\"cloud_confidence\",\"length\":2,\"offset\":8,\"classes\":[{\"name\":\"not_set\",\"value\":0,\"description\":\"No\n        confidence level set\"},{\"name\":\"low\",\"value\":1,\"description\":\"Low confidence\n        cloud\"},{\"name\":\"medium\",\"value\":2,\"description\":\"Medium confidence cloud\"},{\"name\":\"high\",\"value\":3,\"description\":\"High\n        confidence cloud\"}],\"description\":\"Cloud confidence levels\"},{\"name\":\"cloud_shadow_confidence\",\"length\":2,\"offset\":10,\"classes\":[{\"name\":\"not_set\",\"value\":0,\"description\":\"No\n        confidence level set\"},{\"name\":\"low\",\"value\":1,\"description\":\"Low confidence\n        cloud shadow\"},{\"name\":\"reserved\",\"value\":2,\"description\":\"Reserved - value\n        not used\"},{\"name\":\"high\",\"value\":3,\"description\":\"High confidence cloud shadow\"}],\"description\":\"Cloud\n        shadow confidence levels\"},{\"name\":\"snow_confidence\",\"length\":2,\"offset\":12,\"classes\":[{\"name\":\"not_set\",\"value\":0,\"description\":\"No\n        confidence level set\"},{\"name\":\"low\",\"value\":1,\"description\":\"Low confidence\n        snow/ice\"},{\"name\":\"reserved\",\"value\":2,\"description\":\"Reserved - value not\n        used\"},{\"name\":\"high\",\"value\":3,\"description\":\"High confidence snow/ice\"}],\"description\":\"Snow/Ice\n        confidence levels\"},{\"name\":\"cirrus_confidence\",\"length\":2,\"offset\":14,\"classes\":[{\"name\":\"not_set\",\"value\":0,\"description\":\"No\n        confidence level set\"},{\"name\":\"low\",\"value\":1,\"description\":\"Low confidence\n        cirrus\"},{\"name\":\"reserved\",\"value\":2,\"description\":\"Reserved - value not\n        used\"},{\"name\":\"high\",\"value\":3,\"description\":\"High confidence cirrus\"}],\"description\":\"Cirrus\n        confidence levels\"}],\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"cloud\",\"cloud-shadow\",\"snow-ice\",\"water-mask\"],\"title\":\"Pixel\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Pixel Quality\n        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/084/074/LC09_L2SR_084074_20250722_20250725_02_T1/LC09_L2SR_084074_20250722_20250725_02_T1_QA_RADSAT.TIF\",\"title\":\"Radiometric\n        Saturation and Terrain Occlusion Quality Assessment Band\",\"description\":\"Collection\n        2 Level-1 Radiometric Saturation and Terrain Occlusion Quality Assessment\n        Band (QA_RADSAT)\",\"classification:bitfields\":[{\"name\":\"band1\",\"length\":1,\"offset\":0,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band\n        1 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 1 saturated\"}],\"description\":\"Band\n        1 radiometric saturation\"},{\"name\":\"band2\",\"length\":1,\"offset\":1,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band\n        2 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 2 saturated\"}],\"description\":\"Band\n        2 radiometric saturation\"},{\"name\":\"band3\",\"length\":1,\"offset\":2,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band\n        3 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 3 saturated\"}],\"description\":\"Band\n        3 radiometric saturation\"},{\"name\":\"band4\",\"length\":1,\"offset\":3,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band\n        4 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 4 saturated\"}],\"description\":\"Band\n        4 radiometric saturation\"},{\"name\":\"band5\",\"length\":1,\"offset\":4,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band\n        5 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 5 saturated\"}],\"description\":\"Band\n        5 radiometric saturation\"},{\"name\":\"band6\",\"length\":1,\"offset\":5,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band\n        6 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 6 saturated\"}],\"description\":\"Band\n        6 radiometric saturation\"},{\"name\":\"band7\",\"length\":1,\"offset\":6,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band\n        7 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 7 saturated\"}],\"description\":\"Band\n        7 radiometric saturation\"},{\"name\":\"band9\",\"length\":1,\"offset\":8,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band\n        9 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 9 saturated\"}],\"description\":\"Band\n        9 radiometric saturation\"},{\"name\":\"occlusion\",\"length\":1,\"offset\":11,\"classes\":[{\"name\":\"not_occluded\",\"value\":0,\"description\":\"Terrain\n        is not occluded\"},{\"name\":\"occluded\",\"value\":1,\"description\":\"Terrain is occluded\"}],\"description\":\"Terrain\n        not visible from sensor due to intervening terrain\"}],\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"saturation\"],\"raster:bands\":[{\"unit\":\"bit\n        index\",\"data_type\":\"uint16\",\"spatial_resolution\":30}]},\"qa_aerosol\":{\"href\":\"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/084/074/LC09_L2SR_084074_20250722_20250725_02_T1/LC09_L2SR_084074_20250722_20250725_02_T1_SR_QA_AEROSOL.TIF\",\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data-mask\",\"water-mask\"],\"title\":\"Aerosol\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality\n        Assessment Band (SR_QA_AEROSOL) Surface Reflectance Product\",\"raster:bands\":[{\"unit\":\"bit\n        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\n        is not fill\"},{\"name\":\"fill\",\"value\":1,\"description\":\"Pixel is fill\"}],\"description\":\"Image\n        or fill data\"},{\"name\":\"retrieval\",\"length\":1,\"offset\":1,\"classes\":[{\"name\":\"not_valid\",\"value\":0,\"description\":\"Pixel\n        retrieval is not valid\"},{\"name\":\"valid\",\"value\":1,\"description\":\"Pixel retrieval\n        is valid\"}],\"description\":\"Valid aerosol retrieval\"},{\"name\":\"water\",\"length\":1,\"offset\":2,\"classes\":[{\"name\":\"not_water\",\"value\":0,\"description\":\"Pixel\n        is not water\"},{\"name\":\"water\",\"value\":1,\"description\":\"Pixel is water\"}],\"description\":\"Water\n        mask\"},{\"name\":\"interpolated\",\"length\":1,\"offset\":5,\"classes\":[{\"name\":\"not_interpolated\",\"value\":0,\"description\":\"Pixel\n        is not interpolated aerosol\"},{\"name\":\"interpolated\",\"value\":1,\"description\":\"Pixel\n        is interpolated aerosol\"}],\"description\":\"Aerosol interpolation\"},{\"name\":\"level\",\"length\":2,\"offset\":6,\"classes\":[{\"name\":\"climatology\",\"value\":0,\"description\":\"No\n        aerosol correction applied\"},{\"name\":\"low\",\"value\":1,\"description\":\"Low aerosol\n        level\"},{\"name\":\"medium\",\"value\":2,\"description\":\"Medium aerosol level\"},{\"name\":\"high\",\"value\":3,\"description\":\"High\n        aerosol level\"}],\"description\":\"Aerosol level\"}]},\"tilejson\":{\"title\":\"TileJSON\n        with default rendering\",\"href\":\"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=landsat-c2-l2&item=LC09_L2SR_084074_20250722_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\n        preview\",\"rel\":\"preview\",\"href\":\"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=landsat-c2-l2&item=LC09_L2SR_084074_20250722_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\":[[[162.0697878164438,-19.18668230372115],[161.65775656126465,-20.912666389752015],[163.42455754705193,-21.277135035119194],[163.81662270530234,-19.546479714058528],[162.0697878164438,-19.18668230372115]]]},\"collection\":\"landsat-c2-l2\",\"properties\":{\"gsd\":30,\"created\":\"2025-07-30T09:24:26.091467Z\",\"sci:doi\":\"10.5066/P9OGBGM6\",\"datetime\":\"2025-07-22T23:09:04.953421Z\",\"platform\":\"landsat-9\",\"proj:epsg\":32658,\"proj:shape\":[7691,7591],\"description\":\"Landsat\n        Collection 2 Level-2\",\"instruments\":[\"oli\",\"tirs\"],\"eo:cloud_cover\":4.26,\"proj:transform\":[30.0,0.0,149985.0,0.0,-30.0,-2123385.0],\"view:off_nadir\":0,\"landsat:wrs_row\":\"074\",\"landsat:scene_id\":\"LC90840742025203LGN00\",\"landsat:wrs_path\":\"084\",\"landsat:wrs_type\":\"2\",\"view:sun_azimuth\":39.44354071,\"landsat:correction\":\"L2SR\",\"view:sun_elevation\":39.18650753,\"landsat:cloud_cover_land\":15.56,\"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_L2SR_084073_20250722_02_T1\",\"bbox\":[161.97396682264278,-19.841925494831937,164.1577814269806,-17.733174505168062],\"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_L2SR_084073_20250722_02_T1\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5066/P9OGBGM6\",\"title\":\"Landsat\n        8-9 OLI/TIRS Collection 2 Level-2\"},{\"rel\":\"via\",\"href\":\"https://landsatlook.usgs.gov/stac-server/collections/landsat-c2l2-sr/items/LC09_L2SR_084073_20250722_20250725_02_T1_SR\",\"type\":\"application/json\",\"title\":\"USGS\n        STAC Item\"},{\"rel\":\"preview\",\"href\":\"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=landsat-c2-l2&item=LC09_L2SR_084073_20250722_02_T1\",\"title\":\"Map\n        of item\",\"type\":\"text/html\"}],\"assets\":{\"ang\":{\"href\":\"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/084/073/LC09_L2SR_084073_20250722_20250725_02_T1/LC09_L2SR_084073_20250722_20250725_02_T1_ANG.txt\",\"type\":\"text/plain\",\"roles\":[\"metadata\"],\"title\":\"Angle\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        File\"},\"red\":{\"href\":\"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/084/073/LC09_L2SR_084073_20250722_20250725_02_T1/LC09_L2SR_084073_20250722_20250725_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\n        red\"}],\"description\":\"Collection 2 Level-2 Red Band (SR_B4) Surface Reflectance\",\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Red\n        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/084/073/LC09_L2SR_084073_20250722_20250725_02_T1/LC09_L2SR_084073_20250722_20250725_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\n        blue\"}],\"description\":\"Collection 2 Level-2 Blue Band (SR_B2) Surface Reflectance\",\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Blue\n        Band\",\"raster:bands\":[{\"scale\":0.0000275,\"nodata\":0,\"offset\":-0.2,\"data_type\":\"uint16\",\"spatial_resolution\":30}]},\"green\":{\"href\":\"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/084/073/LC09_L2SR_084073_20250722_20250725_02_T1/LC09_L2SR_084073_20250722_20250725_02_T1_SR_B3.TIF\",\"eo:bands\":[{\"name\":\"OLI_B3\",\"full_width_half_max\":0.06,\"common_name\":\"green\",\"description\":\"Visible\n        green\",\"center_wavelength\":0.56}],\"description\":\"Collection 2 Level-2 Green\n        Band (SR_B3) Surface Reflectance\",\"type\":\"image/tiff; application=geotiff;\n        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/084/073/LC09_L2SR_084073_20250722_20250725_02_T1/LC09_L2SR_084073_20250722_20250725_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\n        infrared\"}],\"description\":\"Collection 2 Level-2 Near Infrared Band 0.8 (SR_B5)\n        Surface Reflectance\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Near\n        Infrared Band 0.8\",\"raster:bands\":[{\"scale\":0.0000275,\"nodata\":0,\"offset\":-0.2,\"data_type\":\"uint16\",\"spatial_resolution\":30}]},\"swir16\":{\"href\":\"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/084/073/LC09_L2SR_084073_20250722_20250725_02_T1/LC09_L2SR_084073_20250722_20250725_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\n        infrared\"}],\"description\":\"Collection 2 Level-2 Short-wave Infrared Band 1.6\n        (SR_B6) Surface Reflectance\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Short-wave\n        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/084/073/LC09_L2SR_084073_20250722_20250725_02_T1/LC09_L2SR_084073_20250722_20250725_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\n        infrared\"}],\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Short-wave\n        Infrared Band 2.2\",\"description\":\"Collection 2 Level-2 Short-wave Infrared\n        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/084/073/LC09_L2SR_084073_20250722_20250725_02_T1/LC09_L2SR_084073_20250722_20250725_02_T1_SR_B1.TIF\",\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Coastal/Aerosol\n        Band\",\"eo:bands\":[{\"name\":\"OLI_B1\",\"common_name\":\"coastal\",\"description\":\"Coastal/Aerosol\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        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/084/073/LC09_L2SR_084073_20250722_20250725_02_T1/LC09_L2SR_084073_20250722_20250725_02_T1_MTL.txt\",\"type\":\"text/plain\",\"roles\":[\"metadata\"],\"title\":\"Product\n        Metadata File (txt)\",\"description\":\"Collection 2 Level-2 Product Metadata\n        File (txt)\"},\"mtl.xml\":{\"href\":\"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/084/073/LC09_L2SR_084073_20250722_20250725_02_T1/LC09_L2SR_084073_20250722_20250725_02_T1_MTL.xml\",\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Product\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-2 Product Metadata\n        File (xml)\"},\"mtl.json\":{\"href\":\"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/084/073/LC09_L2SR_084073_20250722_20250725_02_T1/LC09_L2SR_084073_20250722_20250725_02_T1_MTL.json\",\"type\":\"application/json\",\"roles\":[\"metadata\"],\"title\":\"Product\n        Metadata File (json)\",\"description\":\"Collection 2 Level-2 Product Metadata\n        File (json)\"},\"qa_pixel\":{\"href\":\"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/084/073/LC09_L2SR_084073_20250722_20250725_02_T1/LC09_L2SR_084073_20250722_20250725_02_T1_QA_PIXEL.TIF\",\"classification:bitfields\":[{\"name\":\"fill\",\"length\":1,\"offset\":0,\"classes\":[{\"name\":\"not_fill\",\"value\":0,\"description\":\"Image\n        data\"},{\"name\":\"fill\",\"value\":1,\"description\":\"Fill data\"}],\"description\":\"Image\n        or fill data\"},{\"name\":\"dilated_cloud\",\"length\":1,\"offset\":1,\"classes\":[{\"name\":\"not_dilated\",\"value\":0,\"description\":\"Cloud\n        is not dilated or no cloud\"},{\"name\":\"dilated\",\"value\":1,\"description\":\"Cloud\n        dilation\"}],\"description\":\"Dilated cloud\"},{\"name\":\"cirrus\",\"length\":1,\"offset\":2,\"classes\":[{\"name\":\"not_cirrus\",\"value\":0,\"description\":\"Cirrus\n        confidence is not high\"},{\"name\":\"cirrus\",\"value\":1,\"description\":\"High confidence\n        cirrus\"}],\"description\":\"Cirrus mask\"},{\"name\":\"cloud\",\"length\":1,\"offset\":3,\"classes\":[{\"name\":\"not_cloud\",\"value\":0,\"description\":\"Cloud\n        confidence is not high\"},{\"name\":\"cloud\",\"value\":1,\"description\":\"High confidence\n        cloud\"}],\"description\":\"Cloud mask\"},{\"name\":\"cloud_shadow\",\"length\":1,\"offset\":4,\"classes\":[{\"name\":\"not_shadow\",\"value\":0,\"description\":\"Cloud\n        shadow confidence is not high\"},{\"name\":\"shadow\",\"value\":1,\"description\":\"High\n        confidence cloud shadow\"}],\"description\":\"Cloud shadow mask\"},{\"name\":\"snow\",\"length\":1,\"offset\":5,\"classes\":[{\"name\":\"not_snow\",\"value\":0,\"description\":\"Snow/Ice\n        confidence is not high\"},{\"name\":\"snow\",\"value\":1,\"description\":\"High confidence\n        snow cover\"}],\"description\":\"Snow/Ice mask\"},{\"name\":\"clear\",\"length\":1,\"offset\":6,\"classes\":[{\"name\":\"not_clear\",\"value\":0,\"description\":\"Cloud\n        or dilated cloud bits are set\"},{\"name\":\"clear\",\"value\":1,\"description\":\"Cloud\n        and dilated cloud bits are not set\"}],\"description\":\"Clear mask\"},{\"name\":\"water\",\"length\":1,\"offset\":7,\"classes\":[{\"name\":\"not_water\",\"value\":0,\"description\":\"Land\n        or cloud\"},{\"name\":\"water\",\"value\":1,\"description\":\"Water\"}],\"description\":\"Water\n        mask\"},{\"name\":\"cloud_confidence\",\"length\":2,\"offset\":8,\"classes\":[{\"name\":\"not_set\",\"value\":0,\"description\":\"No\n        confidence level set\"},{\"name\":\"low\",\"value\":1,\"description\":\"Low confidence\n        cloud\"},{\"name\":\"medium\",\"value\":2,\"description\":\"Medium confidence cloud\"},{\"name\":\"high\",\"value\":3,\"description\":\"High\n        confidence cloud\"}],\"description\":\"Cloud confidence levels\"},{\"name\":\"cloud_shadow_confidence\",\"length\":2,\"offset\":10,\"classes\":[{\"name\":\"not_set\",\"value\":0,\"description\":\"No\n        confidence level set\"},{\"name\":\"low\",\"value\":1,\"description\":\"Low confidence\n        cloud shadow\"},{\"name\":\"reserved\",\"value\":2,\"description\":\"Reserved - value\n        not used\"},{\"name\":\"high\",\"value\":3,\"description\":\"High confidence cloud shadow\"}],\"description\":\"Cloud\n        shadow confidence levels\"},{\"name\":\"snow_confidence\",\"length\":2,\"offset\":12,\"classes\":[{\"name\":\"not_set\",\"value\":0,\"description\":\"No\n        confidence level set\"},{\"name\":\"low\",\"value\":1,\"description\":\"Low confidence\n        snow/ice\"},{\"name\":\"reserved\",\"value\":2,\"description\":\"Reserved - value not\n        used\"},{\"name\":\"high\",\"value\":3,\"description\":\"High confidence snow/ice\"}],\"description\":\"Snow/Ice\n        confidence levels\"},{\"name\":\"cirrus_confidence\",\"length\":2,\"offset\":14,\"classes\":[{\"name\":\"not_set\",\"value\":0,\"description\":\"No\n        confidence level set\"},{\"name\":\"low\",\"value\":1,\"description\":\"Low confidence\n        cirrus\"},{\"name\":\"reserved\",\"value\":2,\"description\":\"Reserved - value not\n        used\"},{\"name\":\"high\",\"value\":3,\"description\":\"High confidence cirrus\"}],\"description\":\"Cirrus\n        confidence levels\"}],\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"cloud\",\"cloud-shadow\",\"snow-ice\",\"water-mask\"],\"title\":\"Pixel\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Pixel Quality\n        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/084/073/LC09_L2SR_084073_20250722_20250725_02_T1/LC09_L2SR_084073_20250722_20250725_02_T1_QA_RADSAT.TIF\",\"title\":\"Radiometric\n        Saturation and Terrain Occlusion Quality Assessment Band\",\"description\":\"Collection\n        2 Level-1 Radiometric Saturation and Terrain Occlusion Quality Assessment\n        Band (QA_RADSAT)\",\"classification:bitfields\":[{\"name\":\"band1\",\"length\":1,\"offset\":0,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band\n        1 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 1 saturated\"}],\"description\":\"Band\n        1 radiometric saturation\"},{\"name\":\"band2\",\"length\":1,\"offset\":1,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band\n        2 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 2 saturated\"}],\"description\":\"Band\n        2 radiometric saturation\"},{\"name\":\"band3\",\"length\":1,\"offset\":2,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band\n        3 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 3 saturated\"}],\"description\":\"Band\n        3 radiometric saturation\"},{\"name\":\"band4\",\"length\":1,\"offset\":3,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band\n        4 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 4 saturated\"}],\"description\":\"Band\n        4 radiometric saturation\"},{\"name\":\"band5\",\"length\":1,\"offset\":4,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band\n        5 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 5 saturated\"}],\"description\":\"Band\n        5 radiometric saturation\"},{\"name\":\"band6\",\"length\":1,\"offset\":5,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band\n        6 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 6 saturated\"}],\"description\":\"Band\n        6 radiometric saturation\"},{\"name\":\"band7\",\"length\":1,\"offset\":6,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band\n        7 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 7 saturated\"}],\"description\":\"Band\n        7 radiometric saturation\"},{\"name\":\"band9\",\"length\":1,\"offset\":8,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band\n        9 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 9 saturated\"}],\"description\":\"Band\n        9 radiometric saturation\"},{\"name\":\"occlusion\",\"length\":1,\"offset\":11,\"classes\":[{\"name\":\"not_occluded\",\"value\":0,\"description\":\"Terrain\n        is not occluded\"},{\"name\":\"occluded\",\"value\":1,\"description\":\"Terrain is occluded\"}],\"description\":\"Terrain\n        not visible from sensor due to intervening terrain\"}],\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"saturation\"],\"raster:bands\":[{\"unit\":\"bit\n        index\",\"data_type\":\"uint16\",\"spatial_resolution\":30}]},\"qa_aerosol\":{\"href\":\"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/084/073/LC09_L2SR_084073_20250722_20250725_02_T1/LC09_L2SR_084073_20250722_20250725_02_T1_SR_QA_AEROSOL.TIF\",\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data-mask\",\"water-mask\"],\"title\":\"Aerosol\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality\n        Assessment Band (SR_QA_AEROSOL) Surface Reflectance Product\",\"raster:bands\":[{\"unit\":\"bit\n        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\n        is not fill\"},{\"name\":\"fill\",\"value\":1,\"description\":\"Pixel is fill\"}],\"description\":\"Image\n        or fill data\"},{\"name\":\"retrieval\",\"length\":1,\"offset\":1,\"classes\":[{\"name\":\"not_valid\",\"value\":0,\"description\":\"Pixel\n        retrieval is not valid\"},{\"name\":\"valid\",\"value\":1,\"description\":\"Pixel retrieval\n        is valid\"}],\"description\":\"Valid aerosol retrieval\"},{\"name\":\"water\",\"length\":1,\"offset\":2,\"classes\":[{\"name\":\"not_water\",\"value\":0,\"description\":\"Pixel\n        is not water\"},{\"name\":\"water\",\"value\":1,\"description\":\"Pixel is water\"}],\"description\":\"Water\n        mask\"},{\"name\":\"interpolated\",\"length\":1,\"offset\":5,\"classes\":[{\"name\":\"not_interpolated\",\"value\":0,\"description\":\"Pixel\n        is not interpolated aerosol\"},{\"name\":\"interpolated\",\"value\":1,\"description\":\"Pixel\n        is interpolated aerosol\"}],\"description\":\"Aerosol interpolation\"},{\"name\":\"level\",\"length\":2,\"offset\":6,\"classes\":[{\"name\":\"climatology\",\"value\":0,\"description\":\"No\n        aerosol correction applied\"},{\"name\":\"low\",\"value\":1,\"description\":\"Low aerosol\n        level\"},{\"name\":\"medium\",\"value\":2,\"description\":\"Medium aerosol level\"},{\"name\":\"high\",\"value\":3,\"description\":\"High\n        aerosol level\"}],\"description\":\"Aerosol level\"}]},\"tilejson\":{\"title\":\"TileJSON\n        with default rendering\",\"href\":\"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=landsat-c2-l2&item=LC09_L2SR_084073_20250722_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\n        preview\",\"rel\":\"preview\",\"href\":\"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=landsat-c2-l2&item=LC09_L2SR_084073_20250722_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\":[[[162.40856349405993,-17.744785851715985],[162.0024433828561,-19.471860075522258],[163.75177128300962,-19.834722058002455],[164.1396845330037,-18.103013738649427],[162.40856349405993,-17.744785851715985]]]},\"collection\":\"landsat-c2-l2\",\"properties\":{\"gsd\":30,\"created\":\"2025-07-30T09:24:23.815045Z\",\"sci:doi\":\"10.5066/P9OGBGM6\",\"datetime\":\"2025-07-22T23:08:41.015808Z\",\"platform\":\"landsat-9\",\"proj:epsg\":32658,\"proj:shape\":[7701,7591],\"description\":\"Landsat\n        Collection 2 Level-2\",\"instruments\":[\"oli\",\"tirs\"],\"eo:cloud_cover\":11.33,\"proj:transform\":[30.0,0.0,182985.0,0.0,-30.0,-1963185.0],\"view:off_nadir\":0,\"landsat:wrs_row\":\"073\",\"landsat:scene_id\":\"LC90840732025203LGN00\",\"landsat:wrs_path\":\"084\",\"landsat:wrs_type\":\"2\",\"view:sun_azimuth\":39.99251755,\"landsat:correction\":\"L2SR\",\"view:sun_elevation\":40.43665368,\"landsat:cloud_cover_land\":15.22,\"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_L2SR_084072_20250722_02_T2\",\"bbox\":[162.3149580539221,-18.398135521298016,164.47874034910473,-16.291144478701984],\"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_L2SR_084072_20250722_02_T2\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5066/P9OGBGM6\",\"title\":\"Landsat\n        8-9 OLI/TIRS Collection 2 Level-2\"},{\"rel\":\"via\",\"href\":\"https://landsatlook.usgs.gov/stac-server/collections/landsat-c2l2-sr/items/LC09_L2SR_084072_20250722_20250725_02_T2_SR\",\"type\":\"application/json\",\"title\":\"USGS\n        STAC Item\"},{\"rel\":\"preview\",\"href\":\"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=landsat-c2-l2&item=LC09_L2SR_084072_20250722_02_T2\",\"title\":\"Map\n        of item\",\"type\":\"text/html\"}],\"assets\":{\"ang\":{\"href\":\"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/084/072/LC09_L2SR_084072_20250722_20250725_02_T2/LC09_L2SR_084072_20250722_20250725_02_T2_ANG.txt\",\"type\":\"text/plain\",\"roles\":[\"metadata\"],\"title\":\"Angle\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        File\"},\"red\":{\"href\":\"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/084/072/LC09_L2SR_084072_20250722_20250725_02_T2/LC09_L2SR_084072_20250722_20250725_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\n        red\"}],\"description\":\"Collection 2 Level-2 Red Band (SR_B4) Surface Reflectance\",\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Red\n        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/084/072/LC09_L2SR_084072_20250722_20250725_02_T2/LC09_L2SR_084072_20250722_20250725_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\n        blue\"}],\"description\":\"Collection 2 Level-2 Blue Band (SR_B2) Surface Reflectance\",\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Blue\n        Band\",\"raster:bands\":[{\"scale\":0.0000275,\"nodata\":0,\"offset\":-0.2,\"data_type\":\"uint16\",\"spatial_resolution\":30}]},\"green\":{\"href\":\"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/084/072/LC09_L2SR_084072_20250722_20250725_02_T2/LC09_L2SR_084072_20250722_20250725_02_T2_SR_B3.TIF\",\"eo:bands\":[{\"name\":\"OLI_B3\",\"full_width_half_max\":0.06,\"common_name\":\"green\",\"description\":\"Visible\n        green\",\"center_wavelength\":0.56}],\"description\":\"Collection 2 Level-2 Green\n        Band (SR_B3) Surface Reflectance\",\"type\":\"image/tiff; application=geotiff;\n        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/084/072/LC09_L2SR_084072_20250722_20250725_02_T2/LC09_L2SR_084072_20250722_20250725_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\n        infrared\"}],\"description\":\"Collection 2 Level-2 Near Infrared Band 0.8 (SR_B5)\n        Surface Reflectance\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Near\n        Infrared Band 0.8\",\"raster:bands\":[{\"scale\":0.0000275,\"nodata\":0,\"offset\":-0.2,\"data_type\":\"uint16\",\"spatial_resolution\":30}]},\"swir16\":{\"href\":\"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/084/072/LC09_L2SR_084072_20250722_20250725_02_T2/LC09_L2SR_084072_20250722_20250725_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\n        infrared\"}],\"description\":\"Collection 2 Level-2 Short-wave Infrared Band 1.6\n        (SR_B6) Surface Reflectance\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Short-wave\n        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/084/072/LC09_L2SR_084072_20250722_20250725_02_T2/LC09_L2SR_084072_20250722_20250725_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\n        infrared\"}],\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Short-wave\n        Infrared Band 2.2\",\"description\":\"Collection 2 Level-2 Short-wave Infrared\n        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/084/072/LC09_L2SR_084072_20250722_20250725_02_T2/LC09_L2SR_084072_20250722_20250725_02_T2_SR_B1.TIF\",\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Coastal/Aerosol\n        Band\",\"eo:bands\":[{\"name\":\"OLI_B1\",\"common_name\":\"coastal\",\"description\":\"Coastal/Aerosol\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        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/084/072/LC09_L2SR_084072_20250722_20250725_02_T2/LC09_L2SR_084072_20250722_20250725_02_T2_MTL.txt\",\"type\":\"text/plain\",\"roles\":[\"metadata\"],\"title\":\"Product\n        Metadata File (txt)\",\"description\":\"Collection 2 Level-2 Product Metadata\n        File (txt)\"},\"mtl.xml\":{\"href\":\"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/084/072/LC09_L2SR_084072_20250722_20250725_02_T2/LC09_L2SR_084072_20250722_20250725_02_T2_MTL.xml\",\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Product\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-2 Product Metadata\n        File (xml)\"},\"mtl.json\":{\"href\":\"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/084/072/LC09_L2SR_084072_20250722_20250725_02_T2/LC09_L2SR_084072_20250722_20250725_02_T2_MTL.json\",\"type\":\"application/json\",\"roles\":[\"metadata\"],\"title\":\"Product\n        Metadata File (json)\",\"description\":\"Collection 2 Level-2 Product Metadata\n        File (json)\"},\"qa_pixel\":{\"href\":\"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/084/072/LC09_L2SR_084072_20250722_20250725_02_T2/LC09_L2SR_084072_20250722_20250725_02_T2_QA_PIXEL.TIF\",\"classification:bitfields\":[{\"name\":\"fill\",\"length\":1,\"offset\":0,\"classes\":[{\"name\":\"not_fill\",\"value\":0,\"description\":\"Image\n        data\"},{\"name\":\"fill\",\"value\":1,\"description\":\"Fill data\"}],\"description\":\"Image\n        or fill data\"},{\"name\":\"dilated_cloud\",\"length\":1,\"offset\":1,\"classes\":[{\"name\":\"not_dilated\",\"value\":0,\"description\":\"Cloud\n        is not dilated or no cloud\"},{\"name\":\"dilated\",\"value\":1,\"description\":\"Cloud\n        dilation\"}],\"description\":\"Dilated cloud\"},{\"name\":\"cirrus\",\"length\":1,\"offset\":2,\"classes\":[{\"name\":\"not_cirrus\",\"value\":0,\"description\":\"Cirrus\n        confidence is not high\"},{\"name\":\"cirrus\",\"value\":1,\"description\":\"High confidence\n        cirrus\"}],\"description\":\"Cirrus mask\"},{\"name\":\"cloud\",\"length\":1,\"offset\":3,\"classes\":[{\"name\":\"not_cloud\",\"value\":0,\"description\":\"Cloud\n        confidence is not high\"},{\"name\":\"cloud\",\"value\":1,\"description\":\"High confidence\n        cloud\"}],\"description\":\"Cloud mask\"},{\"name\":\"cloud_shadow\",\"length\":1,\"offset\":4,\"classes\":[{\"name\":\"not_shadow\",\"value\":0,\"description\":\"Cloud\n        shadow confidence is not high\"},{\"name\":\"shadow\",\"value\":1,\"description\":\"High\n        confidence cloud shadow\"}],\"description\":\"Cloud shadow mask\"},{\"name\":\"snow\",\"length\":1,\"offset\":5,\"classes\":[{\"name\":\"not_snow\",\"value\":0,\"description\":\"Snow/Ice\n        confidence is not high\"},{\"name\":\"snow\",\"value\":1,\"description\":\"High confidence\n        snow cover\"}],\"description\":\"Snow/Ice mask\"},{\"name\":\"clear\",\"length\":1,\"offset\":6,\"classes\":[{\"name\":\"not_clear\",\"value\":0,\"description\":\"Cloud\n        or dilated cloud bits are set\"},{\"name\":\"clear\",\"value\":1,\"description\":\"Cloud\n        and dilated cloud bits are not set\"}],\"description\":\"Clear mask\"},{\"name\":\"water\",\"length\":1,\"offset\":7,\"classes\":[{\"name\":\"not_water\",\"value\":0,\"description\":\"Land\n        or cloud\"},{\"name\":\"water\",\"value\":1,\"description\":\"Water\"}],\"description\":\"Water\n        mask\"},{\"name\":\"cloud_confidence\",\"length\":2,\"offset\":8,\"classes\":[{\"name\":\"not_set\",\"value\":0,\"description\":\"No\n        confidence level set\"},{\"name\":\"low\",\"value\":1,\"description\":\"Low confidence\n        cloud\"},{\"name\":\"medium\",\"value\":2,\"description\":\"Medium confidence cloud\"},{\"name\":\"high\",\"value\":3,\"description\":\"High\n        confidence cloud\"}],\"description\":\"Cloud confidence levels\"},{\"name\":\"cloud_shadow_confidence\",\"length\":2,\"offset\":10,\"classes\":[{\"name\":\"not_set\",\"value\":0,\"description\":\"No\n        confidence level set\"},{\"name\":\"low\",\"value\":1,\"description\":\"Low confidence\n        cloud shadow\"},{\"name\":\"reserved\",\"value\":2,\"description\":\"Reserved - value\n        not used\"},{\"name\":\"high\",\"value\":3,\"description\":\"High confidence cloud shadow\"}],\"description\":\"Cloud\n        shadow confidence levels\"},{\"name\":\"snow_confidence\",\"length\":2,\"offset\":12,\"classes\":[{\"name\":\"not_set\",\"value\":0,\"description\":\"No\n        confidence level set\"},{\"name\":\"low\",\"value\":1,\"description\":\"Low confidence\n        snow/ice\"},{\"name\":\"reserved\",\"value\":2,\"description\":\"Reserved - value not\n        used\"},{\"name\":\"high\",\"value\":3,\"description\":\"High confidence snow/ice\"}],\"description\":\"Snow/Ice\n        confidence levels\"},{\"name\":\"cirrus_confidence\",\"length\":2,\"offset\":14,\"classes\":[{\"name\":\"not_set\",\"value\":0,\"description\":\"No\n        confidence level set\"},{\"name\":\"low\",\"value\":1,\"description\":\"Low confidence\n        cirrus\"},{\"name\":\"reserved\",\"value\":2,\"description\":\"Reserved - value not\n        used\"},{\"name\":\"high\",\"value\":3,\"description\":\"High confidence cirrus\"}],\"description\":\"Cirrus\n        confidence levels\"}],\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"cloud\",\"cloud-shadow\",\"snow-ice\",\"water-mask\"],\"title\":\"Pixel\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Pixel Quality\n        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/084/072/LC09_L2SR_084072_20250722_20250725_02_T2/LC09_L2SR_084072_20250722_20250725_02_T2_QA_RADSAT.TIF\",\"title\":\"Radiometric\n        Saturation and Terrain Occlusion Quality Assessment Band\",\"description\":\"Collection\n        2 Level-1 Radiometric Saturation and Terrain Occlusion Quality Assessment\n        Band (QA_RADSAT)\",\"classification:bitfields\":[{\"name\":\"band1\",\"length\":1,\"offset\":0,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band\n        1 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 1 saturated\"}],\"description\":\"Band\n        1 radiometric saturation\"},{\"name\":\"band2\",\"length\":1,\"offset\":1,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band\n        2 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 2 saturated\"}],\"description\":\"Band\n        2 radiometric saturation\"},{\"name\":\"band3\",\"length\":1,\"offset\":2,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band\n        3 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 3 saturated\"}],\"description\":\"Band\n        3 radiometric saturation\"},{\"name\":\"band4\",\"length\":1,\"offset\":3,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band\n        4 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 4 saturated\"}],\"description\":\"Band\n        4 radiometric saturation\"},{\"name\":\"band5\",\"length\":1,\"offset\":4,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band\n        5 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 5 saturated\"}],\"description\":\"Band\n        5 radiometric saturation\"},{\"name\":\"band6\",\"length\":1,\"offset\":5,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band\n        6 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 6 saturated\"}],\"description\":\"Band\n        6 radiometric saturation\"},{\"name\":\"band7\",\"length\":1,\"offset\":6,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band\n        7 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 7 saturated\"}],\"description\":\"Band\n        7 radiometric saturation\"},{\"name\":\"band9\",\"length\":1,\"offset\":8,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band\n        9 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 9 saturated\"}],\"description\":\"Band\n        9 radiometric saturation\"},{\"name\":\"occlusion\",\"length\":1,\"offset\":11,\"classes\":[{\"name\":\"not_occluded\",\"value\":0,\"description\":\"Terrain\n        is not occluded\"},{\"name\":\"occluded\",\"value\":1,\"description\":\"Terrain is occluded\"}],\"description\":\"Terrain\n        not visible from sensor due to intervening terrain\"}],\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"saturation\"],\"raster:bands\":[{\"unit\":\"bit\n        index\",\"data_type\":\"uint16\",\"spatial_resolution\":30}]},\"qa_aerosol\":{\"href\":\"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/084/072/LC09_L2SR_084072_20250722_20250725_02_T2/LC09_L2SR_084072_20250722_20250725_02_T2_SR_QA_AEROSOL.TIF\",\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data-mask\",\"water-mask\"],\"title\":\"Aerosol\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality\n        Assessment Band (SR_QA_AEROSOL) Surface Reflectance Product\",\"raster:bands\":[{\"unit\":\"bit\n        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\n        is not fill\"},{\"name\":\"fill\",\"value\":1,\"description\":\"Pixel is fill\"}],\"description\":\"Image\n        or fill data\"},{\"name\":\"retrieval\",\"length\":1,\"offset\":1,\"classes\":[{\"name\":\"not_valid\",\"value\":0,\"description\":\"Pixel\n        retrieval is not valid\"},{\"name\":\"valid\",\"value\":1,\"description\":\"Pixel retrieval\n        is valid\"}],\"description\":\"Valid aerosol retrieval\"},{\"name\":\"water\",\"length\":1,\"offset\":2,\"classes\":[{\"name\":\"not_water\",\"value\":0,\"description\":\"Pixel\n        is not water\"},{\"name\":\"water\",\"value\":1,\"description\":\"Pixel is water\"}],\"description\":\"Water\n        mask\"},{\"name\":\"interpolated\",\"length\":1,\"offset\":5,\"classes\":[{\"name\":\"not_interpolated\",\"value\":0,\"description\":\"Pixel\n        is not interpolated aerosol\"},{\"name\":\"interpolated\",\"value\":1,\"description\":\"Pixel\n        is interpolated aerosol\"}],\"description\":\"Aerosol interpolation\"},{\"name\":\"level\",\"length\":2,\"offset\":6,\"classes\":[{\"name\":\"climatology\",\"value\":0,\"description\":\"No\n        aerosol correction applied\"},{\"name\":\"low\",\"value\":1,\"description\":\"Low aerosol\n        level\"},{\"name\":\"medium\",\"value\":2,\"description\":\"Medium aerosol level\"},{\"name\":\"high\",\"value\":3,\"description\":\"High\n        aerosol level\"}],\"description\":\"Aerosol level\"}]},\"tilejson\":{\"title\":\"TileJSON\n        with default rendering\",\"href\":\"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=landsat-c2-l2&item=LC09_L2SR_084072_20250722_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\n        preview\",\"rel\":\"preview\",\"href\":\"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=landsat-c2-l2&item=LC09_L2SR_084072_20250722_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\":[[[162.74292047452033,-16.30226804593635],[162.34211297780024,-18.030262978548446],[164.07550031441343,-18.39173449226001],[164.45979330816775,-16.6591320418358],[162.74292047452033,-16.30226804593635]]]},\"collection\":\"landsat-c2-l2\",\"properties\":{\"gsd\":30,\"created\":\"2025-07-30T09:24:21.364316Z\",\"sci:doi\":\"10.5066/P9OGBGM6\",\"datetime\":\"2025-07-22T23:08:17.073961Z\",\"platform\":\"landsat-9\",\"proj:epsg\":32658,\"proj:shape\":[7711,7601],\"description\":\"Landsat\n        Collection 2 Level-2\",\"instruments\":[\"oli\",\"tirs\"],\"eo:cloud_cover\":23.02,\"proj:transform\":[30.0,0.0,216285.0,0.0,-30.0,-1802985.0],\"view:off_nadir\":0,\"landsat:wrs_row\":\"072\",\"landsat:scene_id\":\"LC90840722025203LGN00\",\"landsat:wrs_path\":\"084\",\"landsat:wrs_type\":\"2\",\"view:sun_azimuth\":40.58899882,\"landsat:correction\":\"L2SR\",\"view:sun_elevation\":41.67881619,\"landsat:cloud_cover_land\":45.55,\"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_084069_20250722_02_T2\",\"bbox\":[163.3115411176953,-14.06462558328422,165.42621772003457,-11.96273441671578],\"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_084069_20250722_02_T2\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5066/P9OGBGM6\",\"title\":\"Landsat\n        8-9 OLI/TIRS Collection 2 Level-2\"},{\"rel\":\"via\",\"href\":\"https://landsatlook.usgs.gov/stac-server/collections/landsat-c2l2-sr/items/LC09_L2SP_084069_20250722_20250725_02_T2_SR\",\"type\":\"application/json\",\"title\":\"USGS\n        STAC Item\"},{\"rel\":\"via\",\"href\":\"https://landsatlook.usgs.gov/stac-server/collections/landsat-c2l2-st/items/LC09_L2SP_084069_20250722_20250725_02_T2_ST\",\"type\":\"application/json\",\"title\":\"USGS\n        STAC Item\"},{\"rel\":\"preview\",\"href\":\"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=landsat-c2-l2&item=LC09_L2SP_084069_20250722_02_T2\",\"title\":\"Map\n        of item\",\"type\":\"text/html\"}],\"assets\":{\"qa\":{\"href\":\"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/084/069/LC09_L2SP_084069_20250722_20250725_02_T2/LC09_L2SP_084069_20250722_20250725_02_T2_ST_QA.TIF\",\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Surface\n        Temperature Quality Assessment Band\",\"description\":\"Collection 2 Level-2 Quality\n        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/084/069/LC09_L2SP_084069_20250722_20250725_02_T2/LC09_L2SP_084069_20250722_20250725_02_T2_ANG.txt\",\"type\":\"text/plain\",\"roles\":[\"metadata\"],\"title\":\"Angle\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        File\"},\"red\":{\"href\":\"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/084/069/LC09_L2SP_084069_20250722_20250725_02_T2/LC09_L2SP_084069_20250722_20250725_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\n        red\"}],\"description\":\"Collection 2 Level-2 Red Band (SR_B4) Surface Reflectance\",\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Red\n        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/084/069/LC09_L2SP_084069_20250722_20250725_02_T2/LC09_L2SP_084069_20250722_20250725_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\n        blue\"}],\"description\":\"Collection 2 Level-2 Blue Band (SR_B2) Surface Reflectance\",\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Blue\n        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/084/069/LC09_L2SP_084069_20250722_20250725_02_T2/LC09_L2SP_084069_20250722_20250725_02_T2_ST_DRAD.TIF\",\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Downwelled\n        Radiance Band\",\"description\":\"Collection 2 Level-2 Downwelled Radiance Band\n        (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/084/069/LC09_L2SP_084069_20250722_20250725_02_T2/LC09_L2SP_084069_20250722_20250725_02_T2_ST_EMIS.TIF\",\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Emissivity\n        Band\",\"description\":\"Collection 2 Level-2 Emissivity Band (ST_EMIS) Surface\n        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/084/069/LC09_L2SP_084069_20250722_20250725_02_T2/LC09_L2SP_084069_20250722_20250725_02_T2_ST_EMSD.TIF\",\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Emissivity\n        Standard Deviation Band\",\"description\":\"Collection 2 Level-2 Emissivity Standard\n        Deviation Band (ST_EMSD) Surface Temperature Product\",\"raster:bands\":[{\"unit\":\"emissivity\n        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/084/069/LC09_L2SP_084069_20250722_20250725_02_T2/LC09_L2SP_084069_20250722_20250725_02_T2_ST_TRAD.TIF\",\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Thermal\n        Radiance Band\",\"description\":\"Collection 2 Level-2 Thermal Radiance Band (ST_TRAD)\n        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/084/069/LC09_L2SP_084069_20250722_20250725_02_T2/LC09_L2SP_084069_20250722_20250725_02_T2_ST_URAD.TIF\",\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Upwelled\n        Radiance Band\",\"description\":\"Collection 2 Level-2 Upwelled Radiance Band\n        (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/084/069/LC09_L2SP_084069_20250722_20250725_02_T2/LC09_L2SP_084069_20250722_20250725_02_T2_ST_ATRAN.TIF\",\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Atmospheric\n        Transmittance Band\",\"description\":\"Collection 2 Level-2 Atmospheric Transmittance\n        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/084/069/LC09_L2SP_084069_20250722_20250725_02_T2/LC09_L2SP_084069_20250722_20250725_02_T2_ST_CDIST.TIF\",\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Cloud\n        Distance Band\",\"description\":\"Collection 2 Level-2 Cloud Distance Band (ST_CDIST)\n        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/084/069/LC09_L2SP_084069_20250722_20250725_02_T2/LC09_L2SP_084069_20250722_20250725_02_T2_SR_B3.TIF\",\"eo:bands\":[{\"name\":\"OLI_B3\",\"full_width_half_max\":0.06,\"common_name\":\"green\",\"description\":\"Visible\n        green\",\"center_wavelength\":0.56}],\"description\":\"Collection 2 Level-2 Green\n        Band (SR_B3) Surface Reflectance\",\"type\":\"image/tiff; application=geotiff;\n        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/084/069/LC09_L2SP_084069_20250722_20250725_02_T2/LC09_L2SP_084069_20250722_20250725_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\n        infrared\"}],\"description\":\"Collection 2 Level-2 Near Infrared Band 0.8 (SR_B5)\n        Surface Reflectance\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Near\n        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/084/069/LC09_L2SP_084069_20250722_20250725_02_T2/LC09_L2SP_084069_20250722_20250725_02_T2_ST_B10.TIF\",\"gsd\":100,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"temperature\"],\"title\":\"Surface\n        Temperature Band\",\"eo:bands\":[{\"name\":\"TIRS_B10\",\"common_name\":\"lwir11\",\"description\":\"Long-wave\n        infrared\",\"center_wavelength\":10.9,\"full_width_half_max\":0.59}],\"description\":\"Collection\n        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/084/069/LC09_L2SP_084069_20250722_20250725_02_T2/LC09_L2SP_084069_20250722_20250725_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\n        infrared\"}],\"description\":\"Collection 2 Level-2 Short-wave Infrared Band 1.6\n        (SR_B6) Surface Reflectance\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Short-wave\n        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/084/069/LC09_L2SP_084069_20250722_20250725_02_T2/LC09_L2SP_084069_20250722_20250725_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\n        infrared\"}],\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Short-wave\n        Infrared Band 2.2\",\"description\":\"Collection 2 Level-2 Short-wave Infrared\n        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/084/069/LC09_L2SP_084069_20250722_20250725_02_T2/LC09_L2SP_084069_20250722_20250725_02_T2_SR_B1.TIF\",\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Coastal/Aerosol\n        Band\",\"eo:bands\":[{\"name\":\"OLI_B1\",\"common_name\":\"coastal\",\"description\":\"Coastal/Aerosol\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        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/084/069/LC09_L2SP_084069_20250722_20250725_02_T2/LC09_L2SP_084069_20250722_20250725_02_T2_MTL.txt\",\"type\":\"text/plain\",\"roles\":[\"metadata\"],\"title\":\"Product\n        Metadata File (txt)\",\"description\":\"Collection 2 Level-2 Product Metadata\n        File (txt)\"},\"mtl.xml\":{\"href\":\"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/084/069/LC09_L2SP_084069_20250722_20250725_02_T2/LC09_L2SP_084069_20250722_20250725_02_T2_MTL.xml\",\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Product\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-2 Product Metadata\n        File (xml)\"},\"mtl.json\":{\"href\":\"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/084/069/LC09_L2SP_084069_20250722_20250725_02_T2/LC09_L2SP_084069_20250722_20250725_02_T2_MTL.json\",\"type\":\"application/json\",\"roles\":[\"metadata\"],\"title\":\"Product\n        Metadata File (json)\",\"description\":\"Collection 2 Level-2 Product Metadata\n        File (json)\"},\"qa_pixel\":{\"href\":\"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/084/069/LC09_L2SP_084069_20250722_20250725_02_T2/LC09_L2SP_084069_20250722_20250725_02_T2_QA_PIXEL.TIF\",\"classification:bitfields\":[{\"name\":\"fill\",\"length\":1,\"offset\":0,\"classes\":[{\"name\":\"not_fill\",\"value\":0,\"description\":\"Image\n        data\"},{\"name\":\"fill\",\"value\":1,\"description\":\"Fill data\"}],\"description\":\"Image\n        or fill data\"},{\"name\":\"dilated_cloud\",\"length\":1,\"offset\":1,\"classes\":[{\"name\":\"not_dilated\",\"value\":0,\"description\":\"Cloud\n        is not dilated or no cloud\"},{\"name\":\"dilated\",\"value\":1,\"description\":\"Cloud\n        dilation\"}],\"description\":\"Dilated cloud\"},{\"name\":\"cirrus\",\"length\":1,\"offset\":2,\"classes\":[{\"name\":\"not_cirrus\",\"value\":0,\"description\":\"Cirrus\n        confidence is not high\"},{\"name\":\"cirrus\",\"value\":1,\"description\":\"High confidence\n        cirrus\"}],\"description\":\"Cirrus mask\"},{\"name\":\"cloud\",\"length\":1,\"offset\":3,\"classes\":[{\"name\":\"not_cloud\",\"value\":0,\"description\":\"Cloud\n        confidence is not high\"},{\"name\":\"cloud\",\"value\":1,\"description\":\"High confidence\n        cloud\"}],\"description\":\"Cloud mask\"},{\"name\":\"cloud_shadow\",\"length\":1,\"offset\":4,\"classes\":[{\"name\":\"not_shadow\",\"value\":0,\"description\":\"Cloud\n        shadow confidence is not high\"},{\"name\":\"shadow\",\"value\":1,\"description\":\"High\n        confidence cloud shadow\"}],\"description\":\"Cloud shadow mask\"},{\"name\":\"snow\",\"length\":1,\"offset\":5,\"classes\":[{\"name\":\"not_snow\",\"value\":0,\"description\":\"Snow/Ice\n        confidence is not high\"},{\"name\":\"snow\",\"value\":1,\"description\":\"High confidence\n        snow cover\"}],\"description\":\"Snow/Ice mask\"},{\"name\":\"clear\",\"length\":1,\"offset\":6,\"classes\":[{\"name\":\"not_clear\",\"value\":0,\"description\":\"Cloud\n        or dilated cloud bits are set\"},{\"name\":\"clear\",\"value\":1,\"description\":\"Cloud\n        and dilated cloud bits are not set\"}],\"description\":\"Clear mask\"},{\"name\":\"water\",\"length\":1,\"offset\":7,\"classes\":[{\"name\":\"not_water\",\"value\":0,\"description\":\"Land\n        or cloud\"},{\"name\":\"water\",\"value\":1,\"description\":\"Water\"}],\"description\":\"Water\n        mask\"},{\"name\":\"cloud_confidence\",\"length\":2,\"offset\":8,\"classes\":[{\"name\":\"not_set\",\"value\":0,\"description\":\"No\n        confidence level set\"},{\"name\":\"low\",\"value\":1,\"description\":\"Low confidence\n        cloud\"},{\"name\":\"medium\",\"value\":2,\"description\":\"Medium confidence cloud\"},{\"name\":\"high\",\"value\":3,\"description\":\"High\n        confidence cloud\"}],\"description\":\"Cloud confidence levels\"},{\"name\":\"cloud_shadow_confidence\",\"length\":2,\"offset\":10,\"classes\":[{\"name\":\"not_set\",\"value\":0,\"description\":\"No\n        confidence level set\"},{\"name\":\"low\",\"value\":1,\"description\":\"Low confidence\n        cloud shadow\"},{\"name\":\"reserved\",\"value\":2,\"description\":\"Reserved - value\n        not used\"},{\"name\":\"high\",\"value\":3,\"description\":\"High confidence cloud shadow\"}],\"description\":\"Cloud\n        shadow confidence levels\"},{\"name\":\"snow_confidence\",\"length\":2,\"offset\":12,\"classes\":[{\"name\":\"not_set\",\"value\":0,\"description\":\"No\n        confidence level set\"},{\"name\":\"low\",\"value\":1,\"description\":\"Low confidence\n        snow/ice\"},{\"name\":\"reserved\",\"value\":2,\"description\":\"Reserved - value not\n        used\"},{\"name\":\"high\",\"value\":3,\"description\":\"High confidence snow/ice\"}],\"description\":\"Snow/Ice\n        confidence levels\"},{\"name\":\"cirrus_confidence\",\"length\":2,\"offset\":14,\"classes\":[{\"name\":\"not_set\",\"value\":0,\"description\":\"No\n        confidence level set\"},{\"name\":\"low\",\"value\":1,\"description\":\"Low confidence\n        cirrus\"},{\"name\":\"reserved\",\"value\":2,\"description\":\"Reserved - value not\n        used\"},{\"name\":\"high\",\"value\":3,\"description\":\"High confidence cirrus\"}],\"description\":\"Cirrus\n        confidence levels\"}],\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"cloud\",\"cloud-shadow\",\"snow-ice\",\"water-mask\"],\"title\":\"Pixel\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Pixel Quality\n        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/084/069/LC09_L2SP_084069_20250722_20250725_02_T2/LC09_L2SP_084069_20250722_20250725_02_T2_QA_RADSAT.TIF\",\"title\":\"Radiometric\n        Saturation and Terrain Occlusion Quality Assessment Band\",\"description\":\"Collection\n        2 Level-1 Radiometric Saturation and Terrain Occlusion Quality Assessment\n        Band (QA_RADSAT)\",\"classification:bitfields\":[{\"name\":\"band1\",\"length\":1,\"offset\":0,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band\n        1 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 1 saturated\"}],\"description\":\"Band\n        1 radiometric saturation\"},{\"name\":\"band2\",\"length\":1,\"offset\":1,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band\n        2 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 2 saturated\"}],\"description\":\"Band\n        2 radiometric saturation\"},{\"name\":\"band3\",\"length\":1,\"offset\":2,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band\n        3 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 3 saturated\"}],\"description\":\"Band\n        3 radiometric saturation\"},{\"name\":\"band4\",\"length\":1,\"offset\":3,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band\n        4 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 4 saturated\"}],\"description\":\"Band\n        4 radiometric saturation\"},{\"name\":\"band5\",\"length\":1,\"offset\":4,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band\n        5 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 5 saturated\"}],\"description\":\"Band\n        5 radiometric saturation\"},{\"name\":\"band6\",\"length\":1,\"offset\":5,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band\n        6 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 6 saturated\"}],\"description\":\"Band\n        6 radiometric saturation\"},{\"name\":\"band7\",\"length\":1,\"offset\":6,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band\n        7 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 7 saturated\"}],\"description\":\"Band\n        7 radiometric saturation\"},{\"name\":\"band9\",\"length\":1,\"offset\":8,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band\n        9 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 9 saturated\"}],\"description\":\"Band\n        9 radiometric saturation\"},{\"name\":\"occlusion\",\"length\":1,\"offset\":11,\"classes\":[{\"name\":\"not_occluded\",\"value\":0,\"description\":\"Terrain\n        is not occluded\"},{\"name\":\"occluded\",\"value\":1,\"description\":\"Terrain is occluded\"}],\"description\":\"Terrain\n        not visible from sensor due to intervening terrain\"}],\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"saturation\"],\"raster:bands\":[{\"unit\":\"bit\n        index\",\"data_type\":\"uint16\",\"spatial_resolution\":30}]},\"qa_aerosol\":{\"href\":\"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/084/069/LC09_L2SP_084069_20250722_20250725_02_T2/LC09_L2SP_084069_20250722_20250725_02_T2_SR_QA_AEROSOL.TIF\",\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data-mask\",\"water-mask\"],\"title\":\"Aerosol\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality\n        Assessment Band (SR_QA_AEROSOL) Surface Reflectance Product\",\"raster:bands\":[{\"unit\":\"bit\n        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\n        is not fill\"},{\"name\":\"fill\",\"value\":1,\"description\":\"Pixel is fill\"}],\"description\":\"Image\n        or fill data\"},{\"name\":\"retrieval\",\"length\":1,\"offset\":1,\"classes\":[{\"name\":\"not_valid\",\"value\":0,\"description\":\"Pixel\n        retrieval is not valid\"},{\"name\":\"valid\",\"value\":1,\"description\":\"Pixel retrieval\n        is valid\"}],\"description\":\"Valid aerosol retrieval\"},{\"name\":\"water\",\"length\":1,\"offset\":2,\"classes\":[{\"name\":\"not_water\",\"value\":0,\"description\":\"Pixel\n        is not water\"},{\"name\":\"water\",\"value\":1,\"description\":\"Pixel is water\"}],\"description\":\"Water\n        mask\"},{\"name\":\"interpolated\",\"length\":1,\"offset\":5,\"classes\":[{\"name\":\"not_interpolated\",\"value\":0,\"description\":\"Pixel\n        is not interpolated aerosol\"},{\"name\":\"interpolated\",\"value\":1,\"description\":\"Pixel\n        is interpolated aerosol\"}],\"description\":\"Aerosol interpolation\"},{\"name\":\"level\",\"length\":2,\"offset\":6,\"classes\":[{\"name\":\"climatology\",\"value\":0,\"description\":\"No\n        aerosol correction applied\"},{\"name\":\"low\",\"value\":1,\"description\":\"Low aerosol\n        level\"},{\"name\":\"medium\",\"value\":2,\"description\":\"Medium aerosol level\"},{\"name\":\"high\",\"value\":3,\"description\":\"High\n        aerosol level\"}],\"description\":\"Aerosol level\"}]},\"tilejson\":{\"title\":\"TileJSON\n        with default rendering\",\"href\":\"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=landsat-c2-l2&item=LC09_L2SP_084069_20250722_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\n        preview\",\"rel\":\"preview\",\"href\":\"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=landsat-c2-l2&item=LC09_L2SP_084069_20250722_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.72367458771336,-11.971063703600464],[163.33575499118587,-13.701876553490044],[165.02940824887241,-14.059573009842024],[165.4055541598731,-12.324997909736513],[163.72367458771336,-11.971063703600464]]]},\"collection\":\"landsat-c2-l2\",\"properties\":{\"gsd\":30,\"created\":\"2025-07-30T09:24:18.471101Z\",\"sci:doi\":\"10.5066/P9OGBGM6\",\"datetime\":\"2025-07-22T23:07:05.269598Z\",\"platform\":\"landsat-9\",\"proj:epsg\":32658,\"proj:shape\":[7731,7611],\"description\":\"Landsat\n        Collection 2 Level-2\",\"instruments\":[\"oli\",\"tirs\"],\"eo:cloud_cover\":15.45,\"proj:transform\":[30.0,0.0,317685.0,0.0,-30.0,-1322985.0],\"view:off_nadir\":0,\"landsat:wrs_row\":\"069\",\"landsat:scene_id\":\"LC90840692025203LGN00\",\"landsat:wrs_path\":\"084\",\"landsat:wrs_type\":\"2\",\"view:sun_azimuth\":42.68895384,\"landsat:correction\":\"L2SP\",\"view:sun_elevation\":45.34676271,\"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_084068_20250722_02_T2\",\"bbox\":[163.6363319402426,-12.618085598983146,165.73857703578955,-10.518724401016854],\"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_084068_20250722_02_T2\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5066/P9OGBGM6\",\"title\":\"Landsat\n        8-9 OLI/TIRS Collection 2 Level-2\"},{\"rel\":\"via\",\"href\":\"https://landsatlook.usgs.gov/stac-server/collections/landsat-c2l2-sr/items/LC09_L2SP_084068_20250722_20250725_02_T2_SR\",\"type\":\"application/json\",\"title\":\"USGS\n        STAC Item\"},{\"rel\":\"via\",\"href\":\"https://landsatlook.usgs.gov/stac-server/collections/landsat-c2l2-st/items/LC09_L2SP_084068_20250722_20250725_02_T2_ST\",\"type\":\"application/json\",\"title\":\"USGS\n        STAC Item\"},{\"rel\":\"preview\",\"href\":\"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=landsat-c2-l2&item=LC09_L2SP_084068_20250722_02_T2\",\"title\":\"Map\n        of item\",\"type\":\"text/html\"}],\"assets\":{\"qa\":{\"href\":\"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/084/068/LC09_L2SP_084068_20250722_20250725_02_T2/LC09_L2SP_084068_20250722_20250725_02_T2_ST_QA.TIF\",\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Surface\n        Temperature Quality Assessment Band\",\"description\":\"Collection 2 Level-2 Quality\n        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/084/068/LC09_L2SP_084068_20250722_20250725_02_T2/LC09_L2SP_084068_20250722_20250725_02_T2_ANG.txt\",\"type\":\"text/plain\",\"roles\":[\"metadata\"],\"title\":\"Angle\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        File\"},\"red\":{\"href\":\"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/084/068/LC09_L2SP_084068_20250722_20250725_02_T2/LC09_L2SP_084068_20250722_20250725_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\n        red\"}],\"description\":\"Collection 2 Level-2 Red Band (SR_B4) Surface Reflectance\",\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Red\n        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/084/068/LC09_L2SP_084068_20250722_20250725_02_T2/LC09_L2SP_084068_20250722_20250725_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\n        blue\"}],\"description\":\"Collection 2 Level-2 Blue Band (SR_B2) Surface Reflectance\",\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Blue\n        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/084/068/LC09_L2SP_084068_20250722_20250725_02_T2/LC09_L2SP_084068_20250722_20250725_02_T2_ST_DRAD.TIF\",\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Downwelled\n        Radiance Band\",\"description\":\"Collection 2 Level-2 Downwelled Radiance Band\n        (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/084/068/LC09_L2SP_084068_20250722_20250725_02_T2/LC09_L2SP_084068_20250722_20250725_02_T2_ST_EMIS.TIF\",\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Emissivity\n        Band\",\"description\":\"Collection 2 Level-2 Emissivity Band (ST_EMIS) Surface\n        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/084/068/LC09_L2SP_084068_20250722_20250725_02_T2/LC09_L2SP_084068_20250722_20250725_02_T2_ST_EMSD.TIF\",\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Emissivity\n        Standard Deviation Band\",\"description\":\"Collection 2 Level-2 Emissivity Standard\n        Deviation Band (ST_EMSD) Surface Temperature Product\",\"raster:bands\":[{\"unit\":\"emissivity\n        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/084/068/LC09_L2SP_084068_20250722_20250725_02_T2/LC09_L2SP_084068_20250722_20250725_02_T2_ST_TRAD.TIF\",\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Thermal\n        Radiance Band\",\"description\":\"Collection 2 Level-2 Thermal Radiance Band (ST_TRAD)\n        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/084/068/LC09_L2SP_084068_20250722_20250725_02_T2/LC09_L2SP_084068_20250722_20250725_02_T2_ST_URAD.TIF\",\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Upwelled\n        Radiance Band\",\"description\":\"Collection 2 Level-2 Upwelled Radiance Band\n        (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/084/068/LC09_L2SP_084068_20250722_20250725_02_T2/LC09_L2SP_084068_20250722_20250725_02_T2_ST_ATRAN.TIF\",\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Atmospheric\n        Transmittance Band\",\"description\":\"Collection 2 Level-2 Atmospheric Transmittance\n        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/084/068/LC09_L2SP_084068_20250722_20250725_02_T2/LC09_L2SP_084068_20250722_20250725_02_T2_ST_CDIST.TIF\",\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Cloud\n        Distance Band\",\"description\":\"Collection 2 Level-2 Cloud Distance Band (ST_CDIST)\n        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/084/068/LC09_L2SP_084068_20250722_20250725_02_T2/LC09_L2SP_084068_20250722_20250725_02_T2_SR_B3.TIF\",\"eo:bands\":[{\"name\":\"OLI_B3\",\"full_width_half_max\":0.06,\"common_name\":\"green\",\"description\":\"Visible\n        green\",\"center_wavelength\":0.56}],\"description\":\"Collection 2 Level-2 Green\n        Band (SR_B3) Surface Reflectance\",\"type\":\"image/tiff; application=geotiff;\n        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/084/068/LC09_L2SP_084068_20250722_20250725_02_T2/LC09_L2SP_084068_20250722_20250725_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\n        infrared\"}],\"description\":\"Collection 2 Level-2 Near Infrared Band 0.8 (SR_B5)\n        Surface Reflectance\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Near\n        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/084/068/LC09_L2SP_084068_20250722_20250725_02_T2/LC09_L2SP_084068_20250722_20250725_02_T2_ST_B10.TIF\",\"gsd\":100,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"temperature\"],\"title\":\"Surface\n        Temperature Band\",\"eo:bands\":[{\"name\":\"TIRS_B10\",\"common_name\":\"lwir11\",\"description\":\"Long-wave\n        infrared\",\"center_wavelength\":10.9,\"full_width_half_max\":0.59}],\"description\":\"Collection\n        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/084/068/LC09_L2SP_084068_20250722_20250725_02_T2/LC09_L2SP_084068_20250722_20250725_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\n        infrared\"}],\"description\":\"Collection 2 Level-2 Short-wave Infrared Band 1.6\n        (SR_B6) Surface Reflectance\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Short-wave\n        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/084/068/LC09_L2SP_084068_20250722_20250725_02_T2/LC09_L2SP_084068_20250722_20250725_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\n        infrared\"}],\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Short-wave\n        Infrared Band 2.2\",\"description\":\"Collection 2 Level-2 Short-wave Infrared\n        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/084/068/LC09_L2SP_084068_20250722_20250725_02_T2/LC09_L2SP_084068_20250722_20250725_02_T2_SR_B1.TIF\",\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Coastal/Aerosol\n        Band\",\"eo:bands\":[{\"name\":\"OLI_B1\",\"common_name\":\"coastal\",\"description\":\"Coastal/Aerosol\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        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/084/068/LC09_L2SP_084068_20250722_20250725_02_T2/LC09_L2SP_084068_20250722_20250725_02_T2_MTL.txt\",\"type\":\"text/plain\",\"roles\":[\"metadata\"],\"title\":\"Product\n        Metadata File (txt)\",\"description\":\"Collection 2 Level-2 Product Metadata\n        File (txt)\"},\"mtl.xml\":{\"href\":\"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/084/068/LC09_L2SP_084068_20250722_20250725_02_T2/LC09_L2SP_084068_20250722_20250725_02_T2_MTL.xml\",\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Product\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-2 Product Metadata\n        File (xml)\"},\"mtl.json\":{\"href\":\"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/084/068/LC09_L2SP_084068_20250722_20250725_02_T2/LC09_L2SP_084068_20250722_20250725_02_T2_MTL.json\",\"type\":\"application/json\",\"roles\":[\"metadata\"],\"title\":\"Product\n        Metadata File (json)\",\"description\":\"Collection 2 Level-2 Product Metadata\n        File (json)\"},\"qa_pixel\":{\"href\":\"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/084/068/LC09_L2SP_084068_20250722_20250725_02_T2/LC09_L2SP_084068_20250722_20250725_02_T2_QA_PIXEL.TIF\",\"classification:bitfields\":[{\"name\":\"fill\",\"length\":1,\"offset\":0,\"classes\":[{\"name\":\"not_fill\",\"value\":0,\"description\":\"Image\n        data\"},{\"name\":\"fill\",\"value\":1,\"description\":\"Fill data\"}],\"description\":\"Image\n        or fill data\"},{\"name\":\"dilated_cloud\",\"length\":1,\"offset\":1,\"classes\":[{\"name\":\"not_dilated\",\"value\":0,\"description\":\"Cloud\n        is not dilated or no cloud\"},{\"name\":\"dilated\",\"value\":1,\"description\":\"Cloud\n        dilation\"}],\"description\":\"Dilated cloud\"},{\"name\":\"cirrus\",\"length\":1,\"offset\":2,\"classes\":[{\"name\":\"not_cirrus\",\"value\":0,\"description\":\"Cirrus\n        confidence is not high\"},{\"name\":\"cirrus\",\"value\":1,\"description\":\"High confidence\n        cirrus\"}],\"description\":\"Cirrus mask\"},{\"name\":\"cloud\",\"length\":1,\"offset\":3,\"classes\":[{\"name\":\"not_cloud\",\"value\":0,\"description\":\"Cloud\n        confidence is not high\"},{\"name\":\"cloud\",\"value\":1,\"description\":\"High confidence\n        cloud\"}],\"description\":\"Cloud mask\"},{\"name\":\"cloud_shadow\",\"length\":1,\"offset\":4,\"classes\":[{\"name\":\"not_shadow\",\"value\":0,\"description\":\"Cloud\n        shadow confidence is not high\"},{\"name\":\"shadow\",\"value\":1,\"description\":\"High\n        confidence cloud shadow\"}],\"description\":\"Cloud shadow mask\"},{\"name\":\"snow\",\"length\":1,\"offset\":5,\"classes\":[{\"name\":\"not_snow\",\"value\":0,\"description\":\"Snow/Ice\n        confidence is not high\"},{\"name\":\"snow\",\"value\":1,\"description\":\"High confidence\n        snow cover\"}],\"description\":\"Snow/Ice mask\"},{\"name\":\"clear\",\"length\":1,\"offset\":6,\"classes\":[{\"name\":\"not_clear\",\"value\":0,\"description\":\"Cloud\n        or dilated cloud bits are set\"},{\"name\":\"clear\",\"value\":1,\"description\":\"Cloud\n        and dilated cloud bits are not set\"}],\"description\":\"Clear mask\"},{\"name\":\"water\",\"length\":1,\"offset\":7,\"classes\":[{\"name\":\"not_water\",\"value\":0,\"description\":\"Land\n        or cloud\"},{\"name\":\"water\",\"value\":1,\"description\":\"Water\"}],\"description\":\"Water\n        mask\"},{\"name\":\"cloud_confidence\",\"length\":2,\"offset\":8,\"classes\":[{\"name\":\"not_set\",\"value\":0,\"description\":\"No\n        confidence level set\"},{\"name\":\"low\",\"value\":1,\"description\":\"Low confidence\n        cloud\"},{\"name\":\"medium\",\"value\":2,\"description\":\"Medium confidence cloud\"},{\"name\":\"high\",\"value\":3,\"description\":\"High\n        confidence cloud\"}],\"description\":\"Cloud confidence levels\"},{\"name\":\"cloud_shadow_confidence\",\"length\":2,\"offset\":10,\"classes\":[{\"name\":\"not_set\",\"value\":0,\"description\":\"No\n        confidence level set\"},{\"name\":\"low\",\"value\":1,\"description\":\"Low confidence\n        cloud shadow\"},{\"name\":\"reserved\",\"value\":2,\"description\":\"Reserved - value\n        not used\"},{\"name\":\"high\",\"value\":3,\"description\":\"High confidence cloud shadow\"}],\"description\":\"Cloud\n        shadow confidence levels\"},{\"name\":\"snow_confidence\",\"length\":2,\"offset\":12,\"classes\":[{\"name\":\"not_set\",\"value\":0,\"description\":\"No\n        confidence level set\"},{\"name\":\"low\",\"value\":1,\"description\":\"Low confidence\n        snow/ice\"},{\"name\":\"reserved\",\"value\":2,\"description\":\"Reserved - value not\n        used\"},{\"name\":\"high\",\"value\":3,\"description\":\"High confidence snow/ice\"}],\"description\":\"Snow/Ice\n        confidence levels\"},{\"name\":\"cirrus_confidence\",\"length\":2,\"offset\":14,\"classes\":[{\"name\":\"not_set\",\"value\":0,\"description\":\"No\n        confidence level set\"},{\"name\":\"low\",\"value\":1,\"description\":\"Low confidence\n        cirrus\"},{\"name\":\"reserved\",\"value\":2,\"description\":\"Reserved - value not\n        used\"},{\"name\":\"high\",\"value\":3,\"description\":\"High confidence cirrus\"}],\"description\":\"Cirrus\n        confidence levels\"}],\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"cloud\",\"cloud-shadow\",\"snow-ice\",\"water-mask\"],\"title\":\"Pixel\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Pixel Quality\n        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/084/068/LC09_L2SP_084068_20250722_20250725_02_T2/LC09_L2SP_084068_20250722_20250725_02_T2_QA_RADSAT.TIF\",\"title\":\"Radiometric\n        Saturation and Terrain Occlusion Quality Assessment Band\",\"description\":\"Collection\n        2 Level-1 Radiometric Saturation and Terrain Occlusion Quality Assessment\n        Band (QA_RADSAT)\",\"classification:bitfields\":[{\"name\":\"band1\",\"length\":1,\"offset\":0,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band\n        1 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 1 saturated\"}],\"description\":\"Band\n        1 radiometric saturation\"},{\"name\":\"band2\",\"length\":1,\"offset\":1,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band\n        2 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 2 saturated\"}],\"description\":\"Band\n        2 radiometric saturation\"},{\"name\":\"band3\",\"length\":1,\"offset\":2,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band\n        3 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 3 saturated\"}],\"description\":\"Band\n        3 radiometric saturation\"},{\"name\":\"band4\",\"length\":1,\"offset\":3,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band\n        4 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 4 saturated\"}],\"description\":\"Band\n        4 radiometric saturation\"},{\"name\":\"band5\",\"length\":1,\"offset\":4,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band\n        5 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 5 saturated\"}],\"description\":\"Band\n        5 radiometric saturation\"},{\"name\":\"band6\",\"length\":1,\"offset\":5,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band\n        6 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 6 saturated\"}],\"description\":\"Band\n        6 radiometric saturation\"},{\"name\":\"band7\",\"length\":1,\"offset\":6,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band\n        7 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 7 saturated\"}],\"description\":\"Band\n        7 radiometric saturation\"},{\"name\":\"band9\",\"length\":1,\"offset\":8,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band\n        9 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 9 saturated\"}],\"description\":\"Band\n        9 radiometric saturation\"},{\"name\":\"occlusion\",\"length\":1,\"offset\":11,\"classes\":[{\"name\":\"not_occluded\",\"value\":0,\"description\":\"Terrain\n        is not occluded\"},{\"name\":\"occluded\",\"value\":1,\"description\":\"Terrain is occluded\"}],\"description\":\"Terrain\n        not visible from sensor due to intervening terrain\"}],\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"saturation\"],\"raster:bands\":[{\"unit\":\"bit\n        index\",\"data_type\":\"uint16\",\"spatial_resolution\":30}]},\"qa_aerosol\":{\"href\":\"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/084/068/LC09_L2SP_084068_20250722_20250725_02_T2/LC09_L2SP_084068_20250722_20250725_02_T2_SR_QA_AEROSOL.TIF\",\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data-mask\",\"water-mask\"],\"title\":\"Aerosol\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality\n        Assessment Band (SR_QA_AEROSOL) Surface Reflectance Product\",\"raster:bands\":[{\"unit\":\"bit\n        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\n        is not fill\"},{\"name\":\"fill\",\"value\":1,\"description\":\"Pixel is fill\"}],\"description\":\"Image\n        or fill data\"},{\"name\":\"retrieval\",\"length\":1,\"offset\":1,\"classes\":[{\"name\":\"not_valid\",\"value\":0,\"description\":\"Pixel\n        retrieval is not valid\"},{\"name\":\"valid\",\"value\":1,\"description\":\"Pixel retrieval\n        is valid\"}],\"description\":\"Valid aerosol retrieval\"},{\"name\":\"water\",\"length\":1,\"offset\":2,\"classes\":[{\"name\":\"not_water\",\"value\":0,\"description\":\"Pixel\n        is not water\"},{\"name\":\"water\",\"value\":1,\"description\":\"Pixel is water\"}],\"description\":\"Water\n        mask\"},{\"name\":\"interpolated\",\"length\":1,\"offset\":5,\"classes\":[{\"name\":\"not_interpolated\",\"value\":0,\"description\":\"Pixel\n        is not interpolated aerosol\"},{\"name\":\"interpolated\",\"value\":1,\"description\":\"Pixel\n        is interpolated aerosol\"}],\"description\":\"Aerosol interpolation\"},{\"name\":\"level\",\"length\":2,\"offset\":6,\"classes\":[{\"name\":\"climatology\",\"value\":0,\"description\":\"No\n        aerosol correction applied\"},{\"name\":\"low\",\"value\":1,\"description\":\"Low aerosol\n        level\"},{\"name\":\"medium\",\"value\":2,\"description\":\"Medium aerosol level\"},{\"name\":\"high\",\"value\":3,\"description\":\"High\n        aerosol level\"}],\"description\":\"Aerosol level\"}]},\"tilejson\":{\"title\":\"TileJSON\n        with default rendering\",\"href\":\"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=landsat-c2-l2&item=LC09_L2SP_084068_20250722_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\n        preview\",\"rel\":\"preview\",\"href\":\"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=landsat-c2-l2&item=LC09_L2SP_084068_20250722_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\":[[[164.04445544064302,-10.526414906293944],[163.65970865403992,-12.257728021377577],[165.34302655857903,-12.614819119738398],[165.71694082252864,-10.879199075263227],[164.04445544064302,-10.526414906293944]]]},\"collection\":\"landsat-c2-l2\",\"properties\":{\"gsd\":30,\"created\":\"2025-07-30T09:24:15.624155Z\",\"sci:doi\":\"10.5066/P9OGBGM6\",\"datetime\":\"2025-07-22T23:06:41.336223Z\",\"platform\":\"landsat-9\",\"proj:epsg\":32658,\"proj:shape\":[7731,7611],\"description\":\"Landsat\n        Collection 2 Level-2\",\"instruments\":[\"oli\",\"tirs\"],\"eo:cloud_cover\":5.07,\"proj:transform\":[30.0,0.0,351885.0,0.0,-30.0,-1163085.0],\"view:off_nadir\":0,\"landsat:wrs_row\":\"068\",\"landsat:scene_id\":\"LC90840682025203LGN00\",\"landsat:wrs_path\":\"084\",\"landsat:wrs_type\":\"2\",\"view:sun_azimuth\":43.50237851,\"landsat:correction\":\"L2SP\",\"view:sun_elevation\":46.54732939,\"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_L2SR_084067_20250722_02_T1\",\"bbox\":[163.9566826660394,-11.173955612501794,166.05064644379866,-9.073884387498206],\"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_L2SR_084067_20250722_02_T1\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5066/P9OGBGM6\",\"title\":\"Landsat\n        8-9 OLI/TIRS Collection 2 Level-2\"},{\"rel\":\"via\",\"href\":\"https://landsatlook.usgs.gov/stac-server/collections/landsat-c2l2-sr/items/LC09_L2SR_084067_20250722_20250725_02_T1_SR\",\"type\":\"application/json\",\"title\":\"USGS\n        STAC Item\"},{\"rel\":\"preview\",\"href\":\"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=landsat-c2-l2&item=LC09_L2SR_084067_20250722_02_T1\",\"title\":\"Map\n        of item\",\"type\":\"text/html\"}],\"assets\":{\"ang\":{\"href\":\"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/084/067/LC09_L2SR_084067_20250722_20250725_02_T1/LC09_L2SR_084067_20250722_20250725_02_T1_ANG.txt\",\"type\":\"text/plain\",\"roles\":[\"metadata\"],\"title\":\"Angle\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        File\"},\"red\":{\"href\":\"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/084/067/LC09_L2SR_084067_20250722_20250725_02_T1/LC09_L2SR_084067_20250722_20250725_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\n        red\"}],\"description\":\"Collection 2 Level-2 Red Band (SR_B4) Surface Reflectance\",\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Red\n        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/084/067/LC09_L2SR_084067_20250722_20250725_02_T1/LC09_L2SR_084067_20250722_20250725_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\n        blue\"}],\"description\":\"Collection 2 Level-2 Blue Band (SR_B2) Surface Reflectance\",\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Blue\n        Band\",\"raster:bands\":[{\"scale\":0.0000275,\"nodata\":0,\"offset\":-0.2,\"data_type\":\"uint16\",\"spatial_resolution\":30}]},\"green\":{\"href\":\"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/084/067/LC09_L2SR_084067_20250722_20250725_02_T1/LC09_L2SR_084067_20250722_20250725_02_T1_SR_B3.TIF\",\"eo:bands\":[{\"name\":\"OLI_B3\",\"full_width_half_max\":0.06,\"common_name\":\"green\",\"description\":\"Visible\n        green\",\"center_wavelength\":0.56}],\"description\":\"Collection 2 Level-2 Green\n        Band (SR_B3) Surface Reflectance\",\"type\":\"image/tiff; application=geotiff;\n        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/084/067/LC09_L2SR_084067_20250722_20250725_02_T1/LC09_L2SR_084067_20250722_20250725_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\n        infrared\"}],\"description\":\"Collection 2 Level-2 Near Infrared Band 0.8 (SR_B5)\n        Surface Reflectance\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Near\n        Infrared Band 0.8\",\"raster:bands\":[{\"scale\":0.0000275,\"nodata\":0,\"offset\":-0.2,\"data_type\":\"uint16\",\"spatial_resolution\":30}]},\"swir16\":{\"href\":\"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/084/067/LC09_L2SR_084067_20250722_20250725_02_T1/LC09_L2SR_084067_20250722_20250725_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\n        infrared\"}],\"description\":\"Collection 2 Level-2 Short-wave Infrared Band 1.6\n        (SR_B6) Surface Reflectance\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Short-wave\n        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/084/067/LC09_L2SR_084067_20250722_20250725_02_T1/LC09_L2SR_084067_20250722_20250725_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\n        infrared\"}],\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Short-wave\n        Infrared Band 2.2\",\"description\":\"Collection 2 Level-2 Short-wave Infrared\n        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/084/067/LC09_L2SR_084067_20250722_20250725_02_T1/LC09_L2SR_084067_20250722_20250725_02_T1_SR_B1.TIF\",\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Coastal/Aerosol\n        Band\",\"eo:bands\":[{\"name\":\"OLI_B1\",\"common_name\":\"coastal\",\"description\":\"Coastal/Aerosol\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        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/084/067/LC09_L2SR_084067_20250722_20250725_02_T1/LC09_L2SR_084067_20250722_20250725_02_T1_MTL.txt\",\"type\":\"text/plain\",\"roles\":[\"metadata\"],\"title\":\"Product\n        Metadata File (txt)\",\"description\":\"Collection 2 Level-2 Product Metadata\n        File (txt)\"},\"mtl.xml\":{\"href\":\"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/084/067/LC09_L2SR_084067_20250722_20250725_02_T1/LC09_L2SR_084067_20250722_20250725_02_T1_MTL.xml\",\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Product\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-2 Product Metadata\n        File (xml)\"},\"mtl.json\":{\"href\":\"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/084/067/LC09_L2SR_084067_20250722_20250725_02_T1/LC09_L2SR_084067_20250722_20250725_02_T1_MTL.json\",\"type\":\"application/json\",\"roles\":[\"metadata\"],\"title\":\"Product\n        Metadata File (json)\",\"description\":\"Collection 2 Level-2 Product Metadata\n        File (json)\"},\"qa_pixel\":{\"href\":\"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/084/067/LC09_L2SR_084067_20250722_20250725_02_T1/LC09_L2SR_084067_20250722_20250725_02_T1_QA_PIXEL.TIF\",\"classification:bitfields\":[{\"name\":\"fill\",\"length\":1,\"offset\":0,\"classes\":[{\"name\":\"not_fill\",\"value\":0,\"description\":\"Image\n        data\"},{\"name\":\"fill\",\"value\":1,\"description\":\"Fill data\"}],\"description\":\"Image\n        or fill data\"},{\"name\":\"dilated_cloud\",\"length\":1,\"offset\":1,\"classes\":[{\"name\":\"not_dilated\",\"value\":0,\"description\":\"Cloud\n        is not dilated or no cloud\"},{\"name\":\"dilated\",\"value\":1,\"description\":\"Cloud\n        dilation\"}],\"description\":\"Dilated cloud\"},{\"name\":\"cirrus\",\"length\":1,\"offset\":2,\"classes\":[{\"name\":\"not_cirrus\",\"value\":0,\"description\":\"Cirrus\n        confidence is not high\"},{\"name\":\"cirrus\",\"value\":1,\"description\":\"High confidence\n        cirrus\"}],\"description\":\"Cirrus mask\"},{\"name\":\"cloud\",\"length\":1,\"offset\":3,\"classes\":[{\"name\":\"not_cloud\",\"value\":0,\"description\":\"Cloud\n        confidence is not high\"},{\"name\":\"cloud\",\"value\":1,\"description\":\"High confidence\n        cloud\"}],\"description\":\"Cloud mask\"},{\"name\":\"cloud_shadow\",\"length\":1,\"offset\":4,\"classes\":[{\"name\":\"not_shadow\",\"value\":0,\"description\":\"Cloud\n        shadow confidence is not high\"},{\"name\":\"shadow\",\"value\":1,\"description\":\"High\n        confidence cloud shadow\"}],\"description\":\"Cloud shadow mask\"},{\"name\":\"snow\",\"length\":1,\"offset\":5,\"classes\":[{\"name\":\"not_snow\",\"value\":0,\"description\":\"Snow/Ice\n        confidence is not high\"},{\"name\":\"snow\",\"value\":1,\"description\":\"High confidence\n        snow cover\"}],\"description\":\"Snow/Ice mask\"},{\"name\":\"clear\",\"length\":1,\"offset\":6,\"classes\":[{\"name\":\"not_clear\",\"value\":0,\"description\":\"Cloud\n        or dilated cloud bits are set\"},{\"name\":\"clear\",\"value\":1,\"description\":\"Cloud\n        and dilated cloud bits are not set\"}],\"description\":\"Clear mask\"},{\"name\":\"water\",\"length\":1,\"offset\":7,\"classes\":[{\"name\":\"not_water\",\"value\":0,\"description\":\"Land\n        or cloud\"},{\"name\":\"water\",\"value\":1,\"description\":\"Water\"}],\"description\":\"Water\n        mask\"},{\"name\":\"cloud_confidence\",\"length\":2,\"offset\":8,\"classes\":[{\"name\":\"not_set\",\"value\":0,\"description\":\"No\n        confidence level set\"},{\"name\":\"low\",\"value\":1,\"description\":\"Low confidence\n        cloud\"},{\"name\":\"medium\",\"value\":2,\"description\":\"Medium confidence cloud\"},{\"name\":\"high\",\"value\":3,\"description\":\"High\n        confidence cloud\"}],\"description\":\"Cloud confidence levels\"},{\"name\":\"cloud_shadow_confidence\",\"length\":2,\"offset\":10,\"classes\":[{\"name\":\"not_set\",\"value\":0,\"description\":\"No\n        confidence level set\"},{\"name\":\"low\",\"value\":1,\"description\":\"Low confidence\n        cloud shadow\"},{\"name\":\"reserved\",\"value\":2,\"description\":\"Reserved - value\n        not used\"},{\"name\":\"high\",\"value\":3,\"description\":\"High confidence cloud shadow\"}],\"description\":\"Cloud\n        shadow confidence levels\"},{\"name\":\"snow_confidence\",\"length\":2,\"offset\":12,\"classes\":[{\"name\":\"not_set\",\"value\":0,\"description\":\"No\n        confidence level set\"},{\"name\":\"low\",\"value\":1,\"description\":\"Low confidence\n        snow/ice\"},{\"name\":\"reserved\",\"value\":2,\"description\":\"Reserved - value not\n        used\"},{\"name\":\"high\",\"value\":3,\"description\":\"High confidence snow/ice\"}],\"description\":\"Snow/Ice\n        confidence levels\"},{\"name\":\"cirrus_confidence\",\"length\":2,\"offset\":14,\"classes\":[{\"name\":\"not_set\",\"value\":0,\"description\":\"No\n        confidence level set\"},{\"name\":\"low\",\"value\":1,\"description\":\"Low confidence\n        cirrus\"},{\"name\":\"reserved\",\"value\":2,\"description\":\"Reserved - value not\n        used\"},{\"name\":\"high\",\"value\":3,\"description\":\"High confidence cirrus\"}],\"description\":\"Cirrus\n        confidence levels\"}],\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"cloud\",\"cloud-shadow\",\"snow-ice\",\"water-mask\"],\"title\":\"Pixel\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Pixel Quality\n        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/084/067/LC09_L2SR_084067_20250722_20250725_02_T1/LC09_L2SR_084067_20250722_20250725_02_T1_QA_RADSAT.TIF\",\"title\":\"Radiometric\n        Saturation and Terrain Occlusion Quality Assessment Band\",\"description\":\"Collection\n        2 Level-1 Radiometric Saturation and Terrain Occlusion Quality Assessment\n        Band (QA_RADSAT)\",\"classification:bitfields\":[{\"name\":\"band1\",\"length\":1,\"offset\":0,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band\n        1 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 1 saturated\"}],\"description\":\"Band\n        1 radiometric saturation\"},{\"name\":\"band2\",\"length\":1,\"offset\":1,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band\n        2 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 2 saturated\"}],\"description\":\"Band\n        2 radiometric saturation\"},{\"name\":\"band3\",\"length\":1,\"offset\":2,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band\n        3 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 3 saturated\"}],\"description\":\"Band\n        3 radiometric saturation\"},{\"name\":\"band4\",\"length\":1,\"offset\":3,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band\n        4 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 4 saturated\"}],\"description\":\"Band\n        4 radiometric saturation\"},{\"name\":\"band5\",\"length\":1,\"offset\":4,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band\n        5 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 5 saturated\"}],\"description\":\"Band\n        5 radiometric saturation\"},{\"name\":\"band6\",\"length\":1,\"offset\":5,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band\n        6 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 6 saturated\"}],\"description\":\"Band\n        6 radiometric saturation\"},{\"name\":\"band7\",\"length\":1,\"offset\":6,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band\n        7 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 7 saturated\"}],\"description\":\"Band\n        7 radiometric saturation\"},{\"name\":\"band9\",\"length\":1,\"offset\":8,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band\n        9 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 9 saturated\"}],\"description\":\"Band\n        9 radiometric saturation\"},{\"name\":\"occlusion\",\"length\":1,\"offset\":11,\"classes\":[{\"name\":\"not_occluded\",\"value\":0,\"description\":\"Terrain\n        is not occluded\"},{\"name\":\"occluded\",\"value\":1,\"description\":\"Terrain is occluded\"}],\"description\":\"Terrain\n        not visible from sensor due to intervening terrain\"}],\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"saturation\"],\"raster:bands\":[{\"unit\":\"bit\n        index\",\"data_type\":\"uint16\",\"spatial_resolution\":30}]},\"qa_aerosol\":{\"href\":\"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/084/067/LC09_L2SR_084067_20250722_20250725_02_T1/LC09_L2SR_084067_20250722_20250725_02_T1_SR_QA_AEROSOL.TIF\",\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data-mask\",\"water-mask\"],\"title\":\"Aerosol\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality\n        Assessment Band (SR_QA_AEROSOL) Surface Reflectance Product\",\"raster:bands\":[{\"unit\":\"bit\n        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\n        is not fill\"},{\"name\":\"fill\",\"value\":1,\"description\":\"Pixel is fill\"}],\"description\":\"Image\n        or fill data\"},{\"name\":\"retrieval\",\"length\":1,\"offset\":1,\"classes\":[{\"name\":\"not_valid\",\"value\":0,\"description\":\"Pixel\n        retrieval is not valid\"},{\"name\":\"valid\",\"value\":1,\"description\":\"Pixel retrieval\n        is valid\"}],\"description\":\"Valid aerosol retrieval\"},{\"name\":\"water\",\"length\":1,\"offset\":2,\"classes\":[{\"name\":\"not_water\",\"value\":0,\"description\":\"Pixel\n        is not water\"},{\"name\":\"water\",\"value\":1,\"description\":\"Pixel is water\"}],\"description\":\"Water\n        mask\"},{\"name\":\"interpolated\",\"length\":1,\"offset\":5,\"classes\":[{\"name\":\"not_interpolated\",\"value\":0,\"description\":\"Pixel\n        is not interpolated aerosol\"},{\"name\":\"interpolated\",\"value\":1,\"description\":\"Pixel\n        is interpolated aerosol\"}],\"description\":\"Aerosol interpolation\"},{\"name\":\"level\",\"length\":2,\"offset\":6,\"classes\":[{\"name\":\"climatology\",\"value\":0,\"description\":\"No\n        aerosol correction applied\"},{\"name\":\"low\",\"value\":1,\"description\":\"Low aerosol\n        level\"},{\"name\":\"medium\",\"value\":2,\"description\":\"Medium aerosol level\"},{\"name\":\"high\",\"value\":3,\"description\":\"High\n        aerosol level\"}],\"description\":\"Aerosol level\"}]},\"tilejson\":{\"title\":\"TileJSON\n        with default rendering\",\"href\":\"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=landsat-c2-l2&item=LC09_L2SR_084067_20250722_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\n        preview\",\"rel\":\"preview\",\"href\":\"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=landsat-c2-l2&item=LC09_L2SR_084067_20250722_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\":[[[164.36250754769995,-9.081327011857484],[163.9809950675299,-10.813237519365572],[165.65472516564145,-11.169361152881768],[166.02686476143646,-9.43341053450734],[164.36250754769995,-9.081327011857484]]]},\"collection\":\"landsat-c2-l2\",\"properties\":{\"gsd\":30,\"created\":\"2025-07-30T09:24:12.389655Z\",\"sci:doi\":\"10.5066/P9OGBGM6\",\"datetime\":\"2025-07-22T23:06:17.402846Z\",\"platform\":\"landsat-9\",\"proj:epsg\":32658,\"proj:shape\":[7741,7621],\"description\":\"Landsat\n        Collection 2 Level-2\",\"instruments\":[\"oli\",\"tirs\"],\"eo:cloud_cover\":8.21,\"proj:transform\":[30.0,0.0,386085.0,0.0,-30.0,-1003185.0],\"view:off_nadir\":0,\"landsat:wrs_row\":\"067\",\"landsat:scene_id\":\"LC90840672025203LGN00\",\"landsat:wrs_path\":\"084\",\"landsat:wrs_type\":\"2\",\"view:sun_azimuth\":44.37854058,\"landsat:correction\":\"L2SR\",\"view:sun_elevation\":47.73499174,\"landsat:cloud_cover_land\":8.12,\"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_L2SR_084060_20250722_02_T1\",\"bbox\":[166.14938523016573,-1.0530256552694102,168.19469476948692,1.0448856552694101],\"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_L2SR_084060_20250722_02_T1\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5066/P9OGBGM6\",\"title\":\"Landsat\n        8-9 OLI/TIRS Collection 2 Level-2\"},{\"rel\":\"via\",\"href\":\"https://landsatlook.usgs.gov/stac-server/collections/landsat-c2l2-sr/items/LC09_L2SR_084060_20250722_20250725_02_T1_SR\",\"type\":\"application/json\",\"title\":\"USGS\n        STAC Item\"},{\"rel\":\"preview\",\"href\":\"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=landsat-c2-l2&item=LC09_L2SR_084060_20250722_02_T1\",\"title\":\"Map\n        of item\",\"type\":\"text/html\"}],\"assets\":{\"ang\":{\"href\":\"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/084/060/LC09_L2SR_084060_20250722_20250725_02_T1/LC09_L2SR_084060_20250722_20250725_02_T1_ANG.txt\",\"type\":\"text/plain\",\"roles\":[\"metadata\"],\"title\":\"Angle\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        File\"},\"red\":{\"href\":\"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/084/060/LC09_L2SR_084060_20250722_20250725_02_T1/LC09_L2SR_084060_20250722_20250725_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\n        red\"}],\"description\":\"Collection 2 Level-2 Red Band (SR_B4) Surface Reflectance\",\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Red\n        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/084/060/LC09_L2SR_084060_20250722_20250725_02_T1/LC09_L2SR_084060_20250722_20250725_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\n        blue\"}],\"description\":\"Collection 2 Level-2 Blue Band (SR_B2) Surface Reflectance\",\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Blue\n        Band\",\"raster:bands\":[{\"scale\":0.0000275,\"nodata\":0,\"offset\":-0.2,\"data_type\":\"uint16\",\"spatial_resolution\":30}]},\"green\":{\"href\":\"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/084/060/LC09_L2SR_084060_20250722_20250725_02_T1/LC09_L2SR_084060_20250722_20250725_02_T1_SR_B3.TIF\",\"eo:bands\":[{\"name\":\"OLI_B3\",\"full_width_half_max\":0.06,\"common_name\":\"green\",\"description\":\"Visible\n        green\",\"center_wavelength\":0.56}],\"description\":\"Collection 2 Level-2 Green\n        Band (SR_B3) Surface Reflectance\",\"type\":\"image/tiff; application=geotiff;\n        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/084/060/LC09_L2SR_084060_20250722_20250725_02_T1/LC09_L2SR_084060_20250722_20250725_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\n        infrared\"}],\"description\":\"Collection 2 Level-2 Near Infrared Band 0.8 (SR_B5)\n        Surface Reflectance\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Near\n        Infrared Band 0.8\",\"raster:bands\":[{\"scale\":0.0000275,\"nodata\":0,\"offset\":-0.2,\"data_type\":\"uint16\",\"spatial_resolution\":30}]},\"swir16\":{\"href\":\"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/084/060/LC09_L2SR_084060_20250722_20250725_02_T1/LC09_L2SR_084060_20250722_20250725_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\n        infrared\"}],\"description\":\"Collection 2 Level-2 Short-wave Infrared Band 1.6\n        (SR_B6) Surface Reflectance\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Short-wave\n        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/084/060/LC09_L2SR_084060_20250722_20250725_02_T1/LC09_L2SR_084060_20250722_20250725_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\n        infrared\"}],\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Short-wave\n        Infrared Band 2.2\",\"description\":\"Collection 2 Level-2 Short-wave Infrared\n        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/084/060/LC09_L2SR_084060_20250722_20250725_02_T1/LC09_L2SR_084060_20250722_20250725_02_T1_SR_B1.TIF\",\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Coastal/Aerosol\n        Band\",\"eo:bands\":[{\"name\":\"OLI_B1\",\"common_name\":\"coastal\",\"description\":\"Coastal/Aerosol\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        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/084/060/LC09_L2SR_084060_20250722_20250725_02_T1/LC09_L2SR_084060_20250722_20250725_02_T1_MTL.txt\",\"type\":\"text/plain\",\"roles\":[\"metadata\"],\"title\":\"Product\n        Metadata File (txt)\",\"description\":\"Collection 2 Level-2 Product Metadata\n        File (txt)\"},\"mtl.xml\":{\"href\":\"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/084/060/LC09_L2SR_084060_20250722_20250725_02_T1/LC09_L2SR_084060_20250722_20250725_02_T1_MTL.xml\",\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Product\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-2 Product Metadata\n        File (xml)\"},\"mtl.json\":{\"href\":\"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/084/060/LC09_L2SR_084060_20250722_20250725_02_T1/LC09_L2SR_084060_20250722_20250725_02_T1_MTL.json\",\"type\":\"application/json\",\"roles\":[\"metadata\"],\"title\":\"Product\n        Metadata File (json)\",\"description\":\"Collection 2 Level-2 Product Metadata\n        File (json)\"},\"qa_pixel\":{\"href\":\"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/084/060/LC09_L2SR_084060_20250722_20250725_02_T1/LC09_L2SR_084060_20250722_20250725_02_T1_QA_PIXEL.TIF\",\"classification:bitfields\":[{\"name\":\"fill\",\"length\":1,\"offset\":0,\"classes\":[{\"name\":\"not_fill\",\"value\":0,\"description\":\"Image\n        data\"},{\"name\":\"fill\",\"value\":1,\"description\":\"Fill data\"}],\"description\":\"Image\n        or fill data\"},{\"name\":\"dilated_cloud\",\"length\":1,\"offset\":1,\"classes\":[{\"name\":\"not_dilated\",\"value\":0,\"description\":\"Cloud\n        is not dilated or no cloud\"},{\"name\":\"dilated\",\"value\":1,\"description\":\"Cloud\n        dilation\"}],\"description\":\"Dilated cloud\"},{\"name\":\"cirrus\",\"length\":1,\"offset\":2,\"classes\":[{\"name\":\"not_cirrus\",\"value\":0,\"description\":\"Cirrus\n        confidence is not high\"},{\"name\":\"cirrus\",\"value\":1,\"description\":\"High confidence\n        cirrus\"}],\"description\":\"Cirrus mask\"},{\"name\":\"cloud\",\"length\":1,\"offset\":3,\"classes\":[{\"name\":\"not_cloud\",\"value\":0,\"description\":\"Cloud\n        confidence is not high\"},{\"name\":\"cloud\",\"value\":1,\"description\":\"High confidence\n        cloud\"}],\"description\":\"Cloud mask\"},{\"name\":\"cloud_shadow\",\"length\":1,\"offset\":4,\"classes\":[{\"name\":\"not_shadow\",\"value\":0,\"description\":\"Cloud\n        shadow confidence is not high\"},{\"name\":\"shadow\",\"value\":1,\"description\":\"High\n        confidence cloud shadow\"}],\"description\":\"Cloud shadow mask\"},{\"name\":\"snow\",\"length\":1,\"offset\":5,\"classes\":[{\"name\":\"not_snow\",\"value\":0,\"description\":\"Snow/Ice\n        confidence is not high\"},{\"name\":\"snow\",\"value\":1,\"description\":\"High confidence\n        snow cover\"}],\"description\":\"Snow/Ice mask\"},{\"name\":\"clear\",\"length\":1,\"offset\":6,\"classes\":[{\"name\":\"not_clear\",\"value\":0,\"description\":\"Cloud\n        or dilated cloud bits are set\"},{\"name\":\"clear\",\"value\":1,\"description\":\"Cloud\n        and dilated cloud bits are not set\"}],\"description\":\"Clear mask\"},{\"name\":\"water\",\"length\":1,\"offset\":7,\"classes\":[{\"name\":\"not_water\",\"value\":0,\"description\":\"Land\n        or cloud\"},{\"name\":\"water\",\"value\":1,\"description\":\"Water\"}],\"description\":\"Water\n        mask\"},{\"name\":\"cloud_confidence\",\"length\":2,\"offset\":8,\"classes\":[{\"name\":\"not_set\",\"value\":0,\"description\":\"No\n        confidence level set\"},{\"name\":\"low\",\"value\":1,\"description\":\"Low confidence\n        cloud\"},{\"name\":\"medium\",\"value\":2,\"description\":\"Medium confidence cloud\"},{\"name\":\"high\",\"value\":3,\"description\":\"High\n        confidence cloud\"}],\"description\":\"Cloud confidence levels\"},{\"name\":\"cloud_shadow_confidence\",\"length\":2,\"offset\":10,\"classes\":[{\"name\":\"not_set\",\"value\":0,\"description\":\"No\n        confidence level set\"},{\"name\":\"low\",\"value\":1,\"description\":\"Low confidence\n        cloud shadow\"},{\"name\":\"reserved\",\"value\":2,\"description\":\"Reserved - value\n        not used\"},{\"name\":\"high\",\"value\":3,\"description\":\"High confidence cloud shadow\"}],\"description\":\"Cloud\n        shadow confidence levels\"},{\"name\":\"snow_confidence\",\"length\":2,\"offset\":12,\"classes\":[{\"name\":\"not_set\",\"value\":0,\"description\":\"No\n        confidence level set\"},{\"name\":\"low\",\"value\":1,\"description\":\"Low confidence\n        snow/ice\"},{\"name\":\"reserved\",\"value\":2,\"description\":\"Reserved - value not\n        used\"},{\"name\":\"high\",\"value\":3,\"description\":\"High confidence snow/ice\"}],\"description\":\"Snow/Ice\n        confidence levels\"},{\"name\":\"cirrus_confidence\",\"length\":2,\"offset\":14,\"classes\":[{\"name\":\"not_set\",\"value\":0,\"description\":\"No\n        confidence level set\"},{\"name\":\"low\",\"value\":1,\"description\":\"Low confidence\n        cirrus\"},{\"name\":\"reserved\",\"value\":2,\"description\":\"Reserved - value not\n        used\"},{\"name\":\"high\",\"value\":3,\"description\":\"High confidence cirrus\"}],\"description\":\"Cirrus\n        confidence levels\"}],\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"cloud\",\"cloud-shadow\",\"snow-ice\",\"water-mask\"],\"title\":\"Pixel\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Pixel Quality\n        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/084/060/LC09_L2SR_084060_20250722_20250725_02_T1/LC09_L2SR_084060_20250722_20250725_02_T1_QA_RADSAT.TIF\",\"title\":\"Radiometric\n        Saturation and Terrain Occlusion Quality Assessment Band\",\"description\":\"Collection\n        2 Level-1 Radiometric Saturation and Terrain Occlusion Quality Assessment\n        Band (QA_RADSAT)\",\"classification:bitfields\":[{\"name\":\"band1\",\"length\":1,\"offset\":0,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band\n        1 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 1 saturated\"}],\"description\":\"Band\n        1 radiometric saturation\"},{\"name\":\"band2\",\"length\":1,\"offset\":1,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band\n        2 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 2 saturated\"}],\"description\":\"Band\n        2 radiometric saturation\"},{\"name\":\"band3\",\"length\":1,\"offset\":2,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band\n        3 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 3 saturated\"}],\"description\":\"Band\n        3 radiometric saturation\"},{\"name\":\"band4\",\"length\":1,\"offset\":3,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band\n        4 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 4 saturated\"}],\"description\":\"Band\n        4 radiometric saturation\"},{\"name\":\"band5\",\"length\":1,\"offset\":4,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band\n        5 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 5 saturated\"}],\"description\":\"Band\n        5 radiometric saturation\"},{\"name\":\"band6\",\"length\":1,\"offset\":5,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band\n        6 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 6 saturated\"}],\"description\":\"Band\n        6 radiometric saturation\"},{\"name\":\"band7\",\"length\":1,\"offset\":6,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band\n        7 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 7 saturated\"}],\"description\":\"Band\n        7 radiometric saturation\"},{\"name\":\"band9\",\"length\":1,\"offset\":8,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band\n        9 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 9 saturated\"}],\"description\":\"Band\n        9 radiometric saturation\"},{\"name\":\"occlusion\",\"length\":1,\"offset\":11,\"classes\":[{\"name\":\"not_occluded\",\"value\":0,\"description\":\"Terrain\n        is not occluded\"},{\"name\":\"occluded\",\"value\":1,\"description\":\"Terrain is occluded\"}],\"description\":\"Terrain\n        not visible from sensor due to intervening terrain\"}],\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"saturation\"],\"raster:bands\":[{\"unit\":\"bit\n        index\",\"data_type\":\"uint16\",\"spatial_resolution\":30}]},\"qa_aerosol\":{\"href\":\"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/084/060/LC09_L2SR_084060_20250722_20250725_02_T1/LC09_L2SR_084060_20250722_20250725_02_T1_SR_QA_AEROSOL.TIF\",\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data-mask\",\"water-mask\"],\"title\":\"Aerosol\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality\n        Assessment Band (SR_QA_AEROSOL) Surface Reflectance Product\",\"raster:bands\":[{\"unit\":\"bit\n        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\n        is not fill\"},{\"name\":\"fill\",\"value\":1,\"description\":\"Pixel is fill\"}],\"description\":\"Image\n        or fill data\"},{\"name\":\"retrieval\",\"length\":1,\"offset\":1,\"classes\":[{\"name\":\"not_valid\",\"value\":0,\"description\":\"Pixel\n        retrieval is not valid\"},{\"name\":\"valid\",\"value\":1,\"description\":\"Pixel retrieval\n        is valid\"}],\"description\":\"Valid aerosol retrieval\"},{\"name\":\"water\",\"length\":1,\"offset\":2,\"classes\":[{\"name\":\"not_water\",\"value\":0,\"description\":\"Pixel\n        is not water\"},{\"name\":\"water\",\"value\":1,\"description\":\"Pixel is water\"}],\"description\":\"Water\n        mask\"},{\"name\":\"interpolated\",\"length\":1,\"offset\":5,\"classes\":[{\"name\":\"not_interpolated\",\"value\":0,\"description\":\"Pixel\n        is not interpolated aerosol\"},{\"name\":\"interpolated\",\"value\":1,\"description\":\"Pixel\n        is interpolated aerosol\"}],\"description\":\"Aerosol interpolation\"},{\"name\":\"level\",\"length\":2,\"offset\":6,\"classes\":[{\"name\":\"climatology\",\"value\":0,\"description\":\"No\n        aerosol correction applied\"},{\"name\":\"low\",\"value\":1,\"description\":\"Low aerosol\n        level\"},{\"name\":\"medium\",\"value\":2,\"description\":\"Medium aerosol level\"},{\"name\":\"high\",\"value\":3,\"description\":\"High\n        aerosol level\"}],\"description\":\"Aerosol level\"}]},\"tilejson\":{\"title\":\"TileJSON\n        with default rendering\",\"href\":\"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=landsat-c2-l2&item=LC09_L2SR_084060_20250722_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\n        preview\",\"rel\":\"preview\",\"href\":\"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=landsat-c2-l2&item=LC09_L2SR_084060_20250722_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\":[[[166.5391808377502,1.0398359795625605],[166.17030283889423,-0.6950944908677222],[167.80908550941297,-1.0479016338014648],[168.17823386062778,0.690641036628699],[166.5391808377502,1.0398359795625605]]]},\"collection\":\"landsat-c2-l2\",\"properties\":{\"gsd\":30,\"created\":\"2025-07-30T09:24:09.927937Z\",\"sci:doi\":\"10.5066/P9OGBGM6\",\"datetime\":\"2025-07-22T23:03:29.932758Z\",\"platform\":\"landsat-9\",\"proj:epsg\":32658,\"proj:shape\":[7731,7591],\"description\":\"Landsat\n        Collection 2 Level-2\",\"instruments\":[\"oli\",\"tirs\"],\"eo:cloud_cover\":35.89,\"proj:transform\":[30.0,0.0,627885.0,0.0,-30.0,115515.0],\"view:off_nadir\":0,\"landsat:wrs_row\":\"060\",\"landsat:scene_id\":\"LC90840602025203LGN00\",\"landsat:wrs_path\":\"084\",\"landsat:wrs_type\":\"2\",\"view:sun_azimuth\":52.6329702,\"landsat:correction\":\"L2SR\",\"view:sun_elevation\":55.56929934,\"landsat:cloud_cover_land\":96.63,\"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_L2SR_084057_20250722_02_T1\",\"bbox\":[167.06115503298673,3.2816743543317193,169.12726533978508,5.392895645668281],\"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_L2SR_084057_20250722_02_T1\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5066/P9OGBGM6\",\"title\":\"Landsat\n        8-9 OLI/TIRS Collection 2 Level-2\"},{\"rel\":\"via\",\"href\":\"https://landsatlook.usgs.gov/stac-server/collections/landsat-c2l2-sr/items/LC09_L2SR_084057_20250722_20250725_02_T1_SR\",\"type\":\"application/json\",\"title\":\"USGS\n        STAC Item\"},{\"rel\":\"preview\",\"href\":\"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=landsat-c2-l2&item=LC09_L2SR_084057_20250722_02_T1\",\"title\":\"Map\n        of item\",\"type\":\"text/html\"}],\"assets\":{\"ang\":{\"href\":\"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/084/057/LC09_L2SR_084057_20250722_20250725_02_T1/LC09_L2SR_084057_20250722_20250725_02_T1_ANG.txt\",\"type\":\"text/plain\",\"roles\":[\"metadata\"],\"title\":\"Angle\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        File\"},\"red\":{\"href\":\"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/084/057/LC09_L2SR_084057_20250722_20250725_02_T1/LC09_L2SR_084057_20250722_20250725_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\n        red\"}],\"description\":\"Collection 2 Level-2 Red Band (SR_B4) Surface Reflectance\",\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Red\n        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/084/057/LC09_L2SR_084057_20250722_20250725_02_T1/LC09_L2SR_084057_20250722_20250725_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\n        blue\"}],\"description\":\"Collection 2 Level-2 Blue Band (SR_B2) Surface Reflectance\",\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Blue\n        Band\",\"raster:bands\":[{\"scale\":0.0000275,\"nodata\":0,\"offset\":-0.2,\"data_type\":\"uint16\",\"spatial_resolution\":30}]},\"green\":{\"href\":\"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/084/057/LC09_L2SR_084057_20250722_20250725_02_T1/LC09_L2SR_084057_20250722_20250725_02_T1_SR_B3.TIF\",\"eo:bands\":[{\"name\":\"OLI_B3\",\"full_width_half_max\":0.06,\"common_name\":\"green\",\"description\":\"Visible\n        green\",\"center_wavelength\":0.56}],\"description\":\"Collection 2 Level-2 Green\n        Band (SR_B3) Surface Reflectance\",\"type\":\"image/tiff; application=geotiff;\n        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/084/057/LC09_L2SR_084057_20250722_20250725_02_T1/LC09_L2SR_084057_20250722_20250725_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\n        infrared\"}],\"description\":\"Collection 2 Level-2 Near Infrared Band 0.8 (SR_B5)\n        Surface Reflectance\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Near\n        Infrared Band 0.8\",\"raster:bands\":[{\"scale\":0.0000275,\"nodata\":0,\"offset\":-0.2,\"data_type\":\"uint16\",\"spatial_resolution\":30}]},\"swir16\":{\"href\":\"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/084/057/LC09_L2SR_084057_20250722_20250725_02_T1/LC09_L2SR_084057_20250722_20250725_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\n        infrared\"}],\"description\":\"Collection 2 Level-2 Short-wave Infrared Band 1.6\n        (SR_B6) Surface Reflectance\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Short-wave\n        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/084/057/LC09_L2SR_084057_20250722_20250725_02_T1/LC09_L2SR_084057_20250722_20250725_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\n        infrared\"}],\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Short-wave\n        Infrared Band 2.2\",\"description\":\"Collection 2 Level-2 Short-wave Infrared\n        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/084/057/LC09_L2SR_084057_20250722_20250725_02_T1/LC09_L2SR_084057_20250722_20250725_02_T1_SR_B1.TIF\",\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Coastal/Aerosol\n        Band\",\"eo:bands\":[{\"name\":\"OLI_B1\",\"common_name\":\"coastal\",\"description\":\"Coastal/Aerosol\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        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/084/057/LC09_L2SR_084057_20250722_20250725_02_T1/LC09_L2SR_084057_20250722_20250725_02_T1_MTL.txt\",\"type\":\"text/plain\",\"roles\":[\"metadata\"],\"title\":\"Product\n        Metadata File (txt)\",\"description\":\"Collection 2 Level-2 Product Metadata\n        File (txt)\"},\"mtl.xml\":{\"href\":\"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/084/057/LC09_L2SR_084057_20250722_20250725_02_T1/LC09_L2SR_084057_20250722_20250725_02_T1_MTL.xml\",\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Product\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-2 Product Metadata\n        File (xml)\"},\"mtl.json\":{\"href\":\"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/084/057/LC09_L2SR_084057_20250722_20250725_02_T1/LC09_L2SR_084057_20250722_20250725_02_T1_MTL.json\",\"type\":\"application/json\",\"roles\":[\"metadata\"],\"title\":\"Product\n        Metadata File (json)\",\"description\":\"Collection 2 Level-2 Product Metadata\n        File (json)\"},\"qa_pixel\":{\"href\":\"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/084/057/LC09_L2SR_084057_20250722_20250725_02_T1/LC09_L2SR_084057_20250722_20250725_02_T1_QA_PIXEL.TIF\",\"classification:bitfields\":[{\"name\":\"fill\",\"length\":1,\"offset\":0,\"classes\":[{\"name\":\"not_fill\",\"value\":0,\"description\":\"Image\n        data\"},{\"name\":\"fill\",\"value\":1,\"description\":\"Fill data\"}],\"description\":\"Image\n        or fill data\"},{\"name\":\"dilated_cloud\",\"length\":1,\"offset\":1,\"classes\":[{\"name\":\"not_dilated\",\"value\":0,\"description\":\"Cloud\n        is not dilated or no cloud\"},{\"name\":\"dilated\",\"value\":1,\"description\":\"Cloud\n        dilation\"}],\"description\":\"Dilated cloud\"},{\"name\":\"cirrus\",\"length\":1,\"offset\":2,\"classes\":[{\"name\":\"not_cirrus\",\"value\":0,\"description\":\"Cirrus\n        confidence is not high\"},{\"name\":\"cirrus\",\"value\":1,\"description\":\"High confidence\n        cirrus\"}],\"description\":\"Cirrus mask\"},{\"name\":\"cloud\",\"length\":1,\"offset\":3,\"classes\":[{\"name\":\"not_cloud\",\"value\":0,\"description\":\"Cloud\n        confidence is not high\"},{\"name\":\"cloud\",\"value\":1,\"description\":\"High confidence\n        cloud\"}],\"description\":\"Cloud mask\"},{\"name\":\"cloud_shadow\",\"length\":1,\"offset\":4,\"classes\":[{\"name\":\"not_shadow\",\"value\":0,\"description\":\"Cloud\n        shadow confidence is not high\"},{\"name\":\"shadow\",\"value\":1,\"description\":\"High\n        confidence cloud shadow\"}],\"description\":\"Cloud shadow mask\"},{\"name\":\"snow\",\"length\":1,\"offset\":5,\"classes\":[{\"name\":\"not_snow\",\"value\":0,\"description\":\"Snow/Ice\n        confidence is not high\"},{\"name\":\"snow\",\"value\":1,\"description\":\"High confidence\n        snow cover\"}],\"description\":\"Snow/Ice mask\"},{\"name\":\"clear\",\"length\":1,\"offset\":6,\"classes\":[{\"name\":\"not_clear\",\"value\":0,\"description\":\"Cloud\n        or dilated cloud bits are set\"},{\"name\":\"clear\",\"value\":1,\"description\":\"Cloud\n        and dilated cloud bits are not set\"}],\"description\":\"Clear mask\"},{\"name\":\"water\",\"length\":1,\"offset\":7,\"classes\":[{\"name\":\"not_water\",\"value\":0,\"description\":\"Land\n        or cloud\"},{\"name\":\"water\",\"value\":1,\"description\":\"Water\"}],\"description\":\"Water\n        mask\"},{\"name\":\"cloud_confidence\",\"length\":2,\"offset\":8,\"classes\":[{\"name\":\"not_set\",\"value\":0,\"description\":\"No\n        confidence level set\"},{\"name\":\"low\",\"value\":1,\"description\":\"Low confidence\n        cloud\"},{\"name\":\"medium\",\"value\":2,\"description\":\"Medium confidence cloud\"},{\"name\":\"high\",\"value\":3,\"description\":\"High\n        confidence cloud\"}],\"description\":\"Cloud confidence levels\"},{\"name\":\"cloud_shadow_confidence\",\"length\":2,\"offset\":10,\"classes\":[{\"name\":\"not_set\",\"value\":0,\"description\":\"No\n        confidence level set\"},{\"name\":\"low\",\"value\":1,\"description\":\"Low confidence\n        cloud shadow\"},{\"name\":\"reserved\",\"value\":2,\"description\":\"Reserved - value\n        not used\"},{\"name\":\"high\",\"value\":3,\"description\":\"High confidence cloud shadow\"}],\"description\":\"Cloud\n        shadow confidence levels\"},{\"name\":\"snow_confidence\",\"length\":2,\"offset\":12,\"classes\":[{\"name\":\"not_set\",\"value\":0,\"description\":\"No\n        confidence level set\"},{\"name\":\"low\",\"value\":1,\"description\":\"Low confidence\n        snow/ice\"},{\"name\":\"reserved\",\"value\":2,\"description\":\"Reserved - value not\n        used\"},{\"name\":\"high\",\"value\":3,\"description\":\"High confidence snow/ice\"}],\"description\":\"Snow/Ice\n        confidence levels\"},{\"name\":\"cirrus_confidence\",\"length\":2,\"offset\":14,\"classes\":[{\"name\":\"not_set\",\"value\":0,\"description\":\"No\n        confidence level set\"},{\"name\":\"low\",\"value\":1,\"description\":\"Low confidence\n        cirrus\"},{\"name\":\"reserved\",\"value\":2,\"description\":\"Reserved - value not\n        used\"},{\"name\":\"high\",\"value\":3,\"description\":\"High confidence cirrus\"}],\"description\":\"Cirrus\n        confidence levels\"}],\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"cloud\",\"cloud-shadow\",\"snow-ice\",\"water-mask\"],\"title\":\"Pixel\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Pixel Quality\n        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/084/057/LC09_L2SR_084057_20250722_20250725_02_T1/LC09_L2SR_084057_20250722_20250725_02_T1_QA_RADSAT.TIF\",\"title\":\"Radiometric\n        Saturation and Terrain Occlusion Quality Assessment Band\",\"description\":\"Collection\n        2 Level-1 Radiometric Saturation and Terrain Occlusion Quality Assessment\n        Band (QA_RADSAT)\",\"classification:bitfields\":[{\"name\":\"band1\",\"length\":1,\"offset\":0,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band\n        1 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 1 saturated\"}],\"description\":\"Band\n        1 radiometric saturation\"},{\"name\":\"band2\",\"length\":1,\"offset\":1,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band\n        2 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 2 saturated\"}],\"description\":\"Band\n        2 radiometric saturation\"},{\"name\":\"band3\",\"length\":1,\"offset\":2,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band\n        3 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 3 saturated\"}],\"description\":\"Band\n        3 radiometric saturation\"},{\"name\":\"band4\",\"length\":1,\"offset\":3,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band\n        4 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 4 saturated\"}],\"description\":\"Band\n        4 radiometric saturation\"},{\"name\":\"band5\",\"length\":1,\"offset\":4,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band\n        5 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 5 saturated\"}],\"description\":\"Band\n        5 radiometric saturation\"},{\"name\":\"band6\",\"length\":1,\"offset\":5,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band\n        6 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 6 saturated\"}],\"description\":\"Band\n        6 radiometric saturation\"},{\"name\":\"band7\",\"length\":1,\"offset\":6,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band\n        7 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 7 saturated\"}],\"description\":\"Band\n        7 radiometric saturation\"},{\"name\":\"band9\",\"length\":1,\"offset\":8,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band\n        9 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 9 saturated\"}],\"description\":\"Band\n        9 radiometric saturation\"},{\"name\":\"occlusion\",\"length\":1,\"offset\":11,\"classes\":[{\"name\":\"not_occluded\",\"value\":0,\"description\":\"Terrain\n        is not occluded\"},{\"name\":\"occluded\",\"value\":1,\"description\":\"Terrain is occluded\"}],\"description\":\"Terrain\n        not visible from sensor due to intervening terrain\"}],\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"saturation\"],\"raster:bands\":[{\"unit\":\"bit\n        index\",\"data_type\":\"uint16\",\"spatial_resolution\":30}]},\"qa_aerosol\":{\"href\":\"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/084/057/LC09_L2SR_084057_20250722_20250725_02_T1/LC09_L2SR_084057_20250722_20250725_02_T1_SR_QA_AEROSOL.TIF\",\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data-mask\",\"water-mask\"],\"title\":\"Aerosol\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality\n        Assessment Band (SR_QA_AEROSOL) Surface Reflectance Product\",\"raster:bands\":[{\"unit\":\"bit\n        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\n        is not fill\"},{\"name\":\"fill\",\"value\":1,\"description\":\"Pixel is fill\"}],\"description\":\"Image\n        or fill data\"},{\"name\":\"retrieval\",\"length\":1,\"offset\":1,\"classes\":[{\"name\":\"not_valid\",\"value\":0,\"description\":\"Pixel\n        retrieval is not valid\"},{\"name\":\"valid\",\"value\":1,\"description\":\"Pixel retrieval\n        is valid\"}],\"description\":\"Valid aerosol retrieval\"},{\"name\":\"water\",\"length\":1,\"offset\":2,\"classes\":[{\"name\":\"not_water\",\"value\":0,\"description\":\"Pixel\n        is not water\"},{\"name\":\"water\",\"value\":1,\"description\":\"Pixel is water\"}],\"description\":\"Water\n        mask\"},{\"name\":\"interpolated\",\"length\":1,\"offset\":5,\"classes\":[{\"name\":\"not_interpolated\",\"value\":0,\"description\":\"Pixel\n        is not interpolated aerosol\"},{\"name\":\"interpolated\",\"value\":1,\"description\":\"Pixel\n        is interpolated aerosol\"}],\"description\":\"Aerosol interpolation\"},{\"name\":\"level\",\"length\":2,\"offset\":6,\"classes\":[{\"name\":\"climatology\",\"value\":0,\"description\":\"No\n        aerosol correction applied\"},{\"name\":\"low\",\"value\":1,\"description\":\"Low aerosol\n        level\"},{\"name\":\"medium\",\"value\":2,\"description\":\"Medium aerosol level\"},{\"name\":\"high\",\"value\":3,\"description\":\"High\n        aerosol level\"}],\"description\":\"Aerosol level\"}]},\"tilejson\":{\"title\":\"TileJSON\n        with default rendering\",\"href\":\"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=landsat-c2-l2&item=LC09_L2SR_084057_20250722_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\n        preview\",\"rel\":\"preview\",\"href\":\"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=landsat-c2-l2&item=LC09_L2SR_084057_20250722_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.46137353264854,5.378726229731371],[167.09263800365406,3.643240441207092],[168.73271161801873,3.290641285683721],[169.10556498185414,5.02909601406591],[167.46137353264854,5.378726229731371]]]},\"collection\":\"landsat-c2-l2\",\"properties\":{\"gsd\":30,\"created\":\"2025-07-30T09:24:07.964677Z\",\"sci:doi\":\"10.5066/P9OGBGM6\",\"datetime\":\"2025-07-22T23:02:18.183463Z\",\"platform\":\"landsat-9\",\"proj:epsg\":32659,\"proj:shape\":[7761,7621],\"description\":\"Landsat\n        Collection 2 Level-2\",\"instruments\":[\"oli\",\"tirs\"],\"eo:cloud_cover\":29.4,\"proj:transform\":[30.0,0.0,63285.0,0.0,-30.0,596415.0],\"view:off_nadir\":0,\"landsat:wrs_row\":\"057\",\"landsat:scene_id\":\"LC90840572025203LGN00\",\"landsat:wrs_path\":\"084\",\"landsat:wrs_type\":\"2\",\"view:sun_azimuth\":57.60442707,\"landsat:correction\":\"L2SR\",\"view:sun_elevation\":58.56651887,\"landsat:cloud_cover_land\":17.67,\"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_L2SR_084056_20250722_02_T1\",\"bbox\":[167.36755479662366,4.723854361283974,169.4376357032103,6.839735638716026],\"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_L2SR_084056_20250722_02_T1\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5066/P9OGBGM6\",\"title\":\"Landsat\n        8-9 OLI/TIRS Collection 2 Level-2\"},{\"rel\":\"via\",\"href\":\"https://landsatlook.usgs.gov/stac-server/collections/landsat-c2l2-sr/items/LC09_L2SR_084056_20250722_20250725_02_T1_SR\",\"type\":\"application/json\",\"title\":\"USGS\n        STAC Item\"},{\"rel\":\"preview\",\"href\":\"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=landsat-c2-l2&item=LC09_L2SR_084056_20250722_02_T1\",\"title\":\"Map\n        of item\",\"type\":\"text/html\"}],\"assets\":{\"ang\":{\"href\":\"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/084/056/LC09_L2SR_084056_20250722_20250725_02_T1/LC09_L2SR_084056_20250722_20250725_02_T1_ANG.txt\",\"type\":\"text/plain\",\"roles\":[\"metadata\"],\"title\":\"Angle\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        File\"},\"red\":{\"href\":\"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/084/056/LC09_L2SR_084056_20250722_20250725_02_T1/LC09_L2SR_084056_20250722_20250725_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\n        red\"}],\"description\":\"Collection 2 Level-2 Red Band (SR_B4) Surface Reflectance\",\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Red\n        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/084/056/LC09_L2SR_084056_20250722_20250725_02_T1/LC09_L2SR_084056_20250722_20250725_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\n        blue\"}],\"description\":\"Collection 2 Level-2 Blue Band (SR_B2) Surface Reflectance\",\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Blue\n        Band\",\"raster:bands\":[{\"scale\":0.0000275,\"nodata\":0,\"offset\":-0.2,\"data_type\":\"uint16\",\"spatial_resolution\":30}]},\"green\":{\"href\":\"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/084/056/LC09_L2SR_084056_20250722_20250725_02_T1/LC09_L2SR_084056_20250722_20250725_02_T1_SR_B3.TIF\",\"eo:bands\":[{\"name\":\"OLI_B3\",\"full_width_half_max\":0.06,\"common_name\":\"green\",\"description\":\"Visible\n        green\",\"center_wavelength\":0.56}],\"description\":\"Collection 2 Level-2 Green\n        Band (SR_B3) Surface Reflectance\",\"type\":\"image/tiff; application=geotiff;\n        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/084/056/LC09_L2SR_084056_20250722_20250725_02_T1/LC09_L2SR_084056_20250722_20250725_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\n        infrared\"}],\"description\":\"Collection 2 Level-2 Near Infrared Band 0.8 (SR_B5)\n        Surface Reflectance\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Near\n        Infrared Band 0.8\",\"raster:bands\":[{\"scale\":0.0000275,\"nodata\":0,\"offset\":-0.2,\"data_type\":\"uint16\",\"spatial_resolution\":30}]},\"swir16\":{\"href\":\"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/084/056/LC09_L2SR_084056_20250722_20250725_02_T1/LC09_L2SR_084056_20250722_20250725_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\n        infrared\"}],\"description\":\"Collection 2 Level-2 Short-wave Infrared Band 1.6\n        (SR_B6) Surface Reflectance\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Short-wave\n        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/084/056/LC09_L2SR_084056_20250722_20250725_02_T1/LC09_L2SR_084056_20250722_20250725_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\n        infrared\"}],\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Short-wave\n        Infrared Band 2.2\",\"description\":\"Collection 2 Level-2 Short-wave Infrared\n        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/084/056/LC09_L2SR_084056_20250722_20250725_02_T1/LC09_L2SR_084056_20250722_20250725_02_T1_SR_B1.TIF\",\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Coastal/Aerosol\n        Band\",\"eo:bands\":[{\"name\":\"OLI_B1\",\"common_name\":\"coastal\",\"description\":\"Coastal/Aerosol\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        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/084/056/LC09_L2SR_084056_20250722_20250725_02_T1/LC09_L2SR_084056_20250722_20250725_02_T1_MTL.txt\",\"type\":\"text/plain\",\"roles\":[\"metadata\"],\"title\":\"Product\n        Metadata File (txt)\",\"description\":\"Collection 2 Level-2 Product Metadata\n        File (txt)\"},\"mtl.xml\":{\"href\":\"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/084/056/LC09_L2SR_084056_20250722_20250725_02_T1/LC09_L2SR_084056_20250722_20250725_02_T1_MTL.xml\",\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Product\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-2 Product Metadata\n        File (xml)\"},\"mtl.json\":{\"href\":\"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/084/056/LC09_L2SR_084056_20250722_20250725_02_T1/LC09_L2SR_084056_20250722_20250725_02_T1_MTL.json\",\"type\":\"application/json\",\"roles\":[\"metadata\"],\"title\":\"Product\n        Metadata File (json)\",\"description\":\"Collection 2 Level-2 Product Metadata\n        File (json)\"},\"qa_pixel\":{\"href\":\"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/084/056/LC09_L2SR_084056_20250722_20250725_02_T1/LC09_L2SR_084056_20250722_20250725_02_T1_QA_PIXEL.TIF\",\"classification:bitfields\":[{\"name\":\"fill\",\"length\":1,\"offset\":0,\"classes\":[{\"name\":\"not_fill\",\"value\":0,\"description\":\"Image\n        data\"},{\"name\":\"fill\",\"value\":1,\"description\":\"Fill data\"}],\"description\":\"Image\n        or fill data\"},{\"name\":\"dilated_cloud\",\"length\":1,\"offset\":1,\"classes\":[{\"name\":\"not_dilated\",\"value\":0,\"description\":\"Cloud\n        is not dilated or no cloud\"},{\"name\":\"dilated\",\"value\":1,\"description\":\"Cloud\n        dilation\"}],\"description\":\"Dilated cloud\"},{\"name\":\"cirrus\",\"length\":1,\"offset\":2,\"classes\":[{\"name\":\"not_cirrus\",\"value\":0,\"description\":\"Cirrus\n        confidence is not high\"},{\"name\":\"cirrus\",\"value\":1,\"description\":\"High confidence\n        cirrus\"}],\"description\":\"Cirrus mask\"},{\"name\":\"cloud\",\"length\":1,\"offset\":3,\"classes\":[{\"name\":\"not_cloud\",\"value\":0,\"description\":\"Cloud\n        confidence is not high\"},{\"name\":\"cloud\",\"value\":1,\"description\":\"High confidence\n        cloud\"}],\"description\":\"Cloud mask\"},{\"name\":\"cloud_shadow\",\"length\":1,\"offset\":4,\"classes\":[{\"name\":\"not_shadow\",\"value\":0,\"description\":\"Cloud\n        shadow confidence is not high\"},{\"name\":\"shadow\",\"value\":1,\"description\":\"High\n        confidence cloud shadow\"}],\"description\":\"Cloud shadow mask\"},{\"name\":\"snow\",\"length\":1,\"offset\":5,\"classes\":[{\"name\":\"not_snow\",\"value\":0,\"description\":\"Snow/Ice\n        confidence is not high\"},{\"name\":\"snow\",\"value\":1,\"description\":\"High confidence\n        snow cover\"}],\"description\":\"Snow/Ice mask\"},{\"name\":\"clear\",\"length\":1,\"offset\":6,\"classes\":[{\"name\":\"not_clear\",\"value\":0,\"description\":\"Cloud\n        or dilated cloud bits are set\"},{\"name\":\"clear\",\"value\":1,\"description\":\"Cloud\n        and dilated cloud bits are not set\"}],\"description\":\"Clear mask\"},{\"name\":\"water\",\"length\":1,\"offset\":7,\"classes\":[{\"name\":\"not_water\",\"value\":0,\"description\":\"Land\n        or cloud\"},{\"name\":\"water\",\"value\":1,\"description\":\"Water\"}],\"description\":\"Water\n        mask\"},{\"name\":\"cloud_confidence\",\"length\":2,\"offset\":8,\"classes\":[{\"name\":\"not_set\",\"value\":0,\"description\":\"No\n        confidence level set\"},{\"name\":\"low\",\"value\":1,\"description\":\"Low confidence\n        cloud\"},{\"name\":\"medium\",\"value\":2,\"description\":\"Medium confidence cloud\"},{\"name\":\"high\",\"value\":3,\"description\":\"High\n        confidence cloud\"}],\"description\":\"Cloud confidence levels\"},{\"name\":\"cloud_shadow_confidence\",\"length\":2,\"offset\":10,\"classes\":[{\"name\":\"not_set\",\"value\":0,\"description\":\"No\n        confidence level set\"},{\"name\":\"low\",\"value\":1,\"description\":\"Low confidence\n        cloud shadow\"},{\"name\":\"reserved\",\"value\":2,\"description\":\"Reserved - value\n        not used\"},{\"name\":\"high\",\"value\":3,\"description\":\"High confidence cloud shadow\"}],\"description\":\"Cloud\n        shadow confidence levels\"},{\"name\":\"snow_confidence\",\"length\":2,\"offset\":12,\"classes\":[{\"name\":\"not_set\",\"value\":0,\"description\":\"No\n        confidence level set\"},{\"name\":\"low\",\"value\":1,\"description\":\"Low confidence\n        snow/ice\"},{\"name\":\"reserved\",\"value\":2,\"description\":\"Reserved - value not\n        used\"},{\"name\":\"high\",\"value\":3,\"description\":\"High confidence snow/ice\"}],\"description\":\"Snow/Ice\n        confidence levels\"},{\"name\":\"cirrus_confidence\",\"length\":2,\"offset\":14,\"classes\":[{\"name\":\"not_set\",\"value\":0,\"description\":\"No\n        confidence level set\"},{\"name\":\"low\",\"value\":1,\"description\":\"Low confidence\n        cirrus\"},{\"name\":\"reserved\",\"value\":2,\"description\":\"Reserved - value not\n        used\"},{\"name\":\"high\",\"value\":3,\"description\":\"High confidence cirrus\"}],\"description\":\"Cirrus\n        confidence levels\"}],\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"cloud\",\"cloud-shadow\",\"snow-ice\",\"water-mask\"],\"title\":\"Pixel\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Pixel Quality\n        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/084/056/LC09_L2SR_084056_20250722_20250725_02_T1/LC09_L2SR_084056_20250722_20250725_02_T1_QA_RADSAT.TIF\",\"title\":\"Radiometric\n        Saturation and Terrain Occlusion Quality Assessment Band\",\"description\":\"Collection\n        2 Level-1 Radiometric Saturation and Terrain Occlusion Quality Assessment\n        Band (QA_RADSAT)\",\"classification:bitfields\":[{\"name\":\"band1\",\"length\":1,\"offset\":0,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band\n        1 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 1 saturated\"}],\"description\":\"Band\n        1 radiometric saturation\"},{\"name\":\"band2\",\"length\":1,\"offset\":1,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band\n        2 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 2 saturated\"}],\"description\":\"Band\n        2 radiometric saturation\"},{\"name\":\"band3\",\"length\":1,\"offset\":2,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band\n        3 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 3 saturated\"}],\"description\":\"Band\n        3 radiometric saturation\"},{\"name\":\"band4\",\"length\":1,\"offset\":3,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band\n        4 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 4 saturated\"}],\"description\":\"Band\n        4 radiometric saturation\"},{\"name\":\"band5\",\"length\":1,\"offset\":4,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band\n        5 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 5 saturated\"}],\"description\":\"Band\n        5 radiometric saturation\"},{\"name\":\"band6\",\"length\":1,\"offset\":5,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band\n        6 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 6 saturated\"}],\"description\":\"Band\n        6 radiometric saturation\"},{\"name\":\"band7\",\"length\":1,\"offset\":6,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band\n        7 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 7 saturated\"}],\"description\":\"Band\n        7 radiometric saturation\"},{\"name\":\"band9\",\"length\":1,\"offset\":8,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band\n        9 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 9 saturated\"}],\"description\":\"Band\n        9 radiometric saturation\"},{\"name\":\"occlusion\",\"length\":1,\"offset\":11,\"classes\":[{\"name\":\"not_occluded\",\"value\":0,\"description\":\"Terrain\n        is not occluded\"},{\"name\":\"occluded\",\"value\":1,\"description\":\"Terrain is occluded\"}],\"description\":\"Terrain\n        not visible from sensor due to intervening terrain\"}],\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"saturation\"],\"raster:bands\":[{\"unit\":\"bit\n        index\",\"data_type\":\"uint16\",\"spatial_resolution\":30}]},\"qa_aerosol\":{\"href\":\"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/084/056/LC09_L2SR_084056_20250722_20250725_02_T1/LC09_L2SR_084056_20250722_20250725_02_T1_SR_QA_AEROSOL.TIF\",\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data-mask\",\"water-mask\"],\"title\":\"Aerosol\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality\n        Assessment Band (SR_QA_AEROSOL) Surface Reflectance Product\",\"raster:bands\":[{\"unit\":\"bit\n        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\n        is not fill\"},{\"name\":\"fill\",\"value\":1,\"description\":\"Pixel is fill\"}],\"description\":\"Image\n        or fill data\"},{\"name\":\"retrieval\",\"length\":1,\"offset\":1,\"classes\":[{\"name\":\"not_valid\",\"value\":0,\"description\":\"Pixel\n        retrieval is not valid\"},{\"name\":\"valid\",\"value\":1,\"description\":\"Pixel retrieval\n        is valid\"}],\"description\":\"Valid aerosol retrieval\"},{\"name\":\"water\",\"length\":1,\"offset\":2,\"classes\":[{\"name\":\"not_water\",\"value\":0,\"description\":\"Pixel\n        is not water\"},{\"name\":\"water\",\"value\":1,\"description\":\"Pixel is water\"}],\"description\":\"Water\n        mask\"},{\"name\":\"interpolated\",\"length\":1,\"offset\":5,\"classes\":[{\"name\":\"not_interpolated\",\"value\":0,\"description\":\"Pixel\n        is not interpolated aerosol\"},{\"name\":\"interpolated\",\"value\":1,\"description\":\"Pixel\n        is interpolated aerosol\"}],\"description\":\"Aerosol interpolation\"},{\"name\":\"level\",\"length\":2,\"offset\":6,\"classes\":[{\"name\":\"climatology\",\"value\":0,\"description\":\"No\n        aerosol correction applied\"},{\"name\":\"low\",\"value\":1,\"description\":\"Low aerosol\n        level\"},{\"name\":\"medium\",\"value\":2,\"description\":\"Medium aerosol level\"},{\"name\":\"high\",\"value\":3,\"description\":\"High\n        aerosol level\"}],\"description\":\"Aerosol level\"}]},\"tilejson\":{\"title\":\"TileJSON\n        with default rendering\",\"href\":\"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=landsat-c2-l2&item=LC09_L2SR_084056_20250722_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\n        preview\",\"rel\":\"preview\",\"href\":\"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=landsat-c2-l2&item=LC09_L2SR_084056_20250722_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.76899145618466,6.824674148566868],[167.39978828314983,5.089350764233426],[169.04257911009228,4.736510371116045],[169.41726226693714,6.474817037426609],[167.76899145618466,6.824674148566868]]]},\"collection\":\"landsat-c2-l2\",\"properties\":{\"gsd\":30,\"created\":\"2025-07-30T09:24:04.585141Z\",\"sci:doi\":\"10.5066/P9OGBGM6\",\"datetime\":\"2025-07-22T23:01:54.271268Z\",\"platform\":\"landsat-9\",\"proj:epsg\":32659,\"proj:shape\":[7771,7611],\"description\":\"Landsat\n        Collection 2 Level-2\",\"instruments\":[\"oli\",\"tirs\"],\"eo:cloud_cover\":14.59,\"proj:transform\":[30.0,0.0,98385.0,0.0,-30.0,756315.0],\"view:off_nadir\":0,\"landsat:wrs_row\":\"056\",\"landsat:scene_id\":\"LC90840562025203LGN00\",\"landsat:wrs_path\":\"084\",\"landsat:wrs_type\":\"2\",\"view:sun_azimuth\":59.49727991,\"landsat:correction\":\"L2SR\",\"view:sun_elevation\":59.49924222,\"landsat:cloud_cover_land\":27.05,\"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\"}],\"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_L2SR_084056_20250722_02_T1\"}]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '7626'\n      Content-Type:\n      - application/geo+json\n      Date:\n      - Thu, 31 Jul 2025 15:07:52 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150740Z-r17d779659cgl5g2hC1DEN025w00000003q0000000003x3n\n    status:\n      code: 200\n      message: OK\nversion: 1\n"
  },
  {
    "path": "tests/cassettes/test_client/test_get_collection_returns_none_if_not_found.yaml",
    "content": "interactions:\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://earth-search.aws.element84.com/v1\n  response:\n    body:\n      string: '{\"stac_version\":\"1.0.0\",\"type\":\"Catalog\",\"id\":\"earth-search-aws\",\"title\":\"Earth\n        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\"]}'\n    headers:\n      Connection:\n      - keep-alive\n      Content-Encoding:\n      - gzip\n      Content-Length:\n      - '612'\n      Content-Type:\n      - application/json; charset=utf-8\n      Date:\n      - Tue, 16 Dec 2025 14:13:21 GMT\n      Via:\n      - 1.1 81423e9dbafa2fcbc4e583dc457e4002.cloudfront.net (CloudFront)\n      X-Amz-Cf-Id:\n      - 8g02g62SSCq5AprzG3yV_FwjAYlu9y7D3sfkjeflNHN4KNt_mxY4VA==\n      X-Amz-Cf-Pop:\n      - BOS50-P5\n      X-Amzn-Trace-Id:\n      - Root=1-69416901-3333b72b4e0d3a1c117f4a04;Parent=7e4ae8e6e0356a35;Sampled=0;Lineage=1:9e2884e9:0\n      X-Cache:\n      - Miss from cloudfront\n      access-control-allow-origin:\n      - '*'\n      etag:\n      - W/\"d29-QPs+H0wJLUX32EZKNgzG3k6wfQ8\"\n      x-amz-apigw-id:\n      - Vr1YOF3cPHcEcHQ=\n      x-amzn-Remapped-content-length:\n      - '3369'\n      x-amzn-RequestId:\n      - b1e37c9f-6585-4a02-b36d-f542adbc17e0\n      x-powered-by:\n      - Express\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://earth-search.aws.element84.com/v1/collections/foo\n  response:\n    body:\n      string: '{\"code\":\"NotFound\",\"description\":\"Not Found\"}'\n    headers:\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '45'\n      Content-Type:\n      - application/json; charset=utf-8\n      Date:\n      - Tue, 16 Dec 2025 14:13:21 GMT\n      Via:\n      - 1.1 25674eb6b3a8da4a14756edb56fe49b6.cloudfront.net (CloudFront)\n      X-Amz-Cf-Id:\n      - x5LDZHvWAj80Vn9wtUTOVUc4dIbTsakFiWAK3sZG6EyX1ZGcqS4XDg==\n      X-Amz-Cf-Pop:\n      - BOS50-P5\n      X-Amzn-Trace-Id:\n      - Root=1-69416901-4bdb4fac624fae807d0039cc;Parent=79b93944f6ee55b1;Sampled=0;Lineage=1:9e2884e9:0\n      X-Cache:\n      - Error from cloudfront\n      access-control-allow-origin:\n      - '*'\n      etag:\n      - W/\"2d-w2QFXCe6e41RSRvomKbcZAMy0ok\"\n      x-amz-apigw-id:\n      - Vr1YRGn-PHcEZRQ=\n      x-amzn-Remapped-content-length:\n      - '45'\n      x-amzn-RequestId:\n      - d65dbeca-c2fd-4334-b27b-969184fcf3f5\n      x-powered-by:\n      - Express\n    status:\n      code: 404\n      message: Not Found\nversion: 1\n"
  },
  {
    "path": "tests/cassettes/test_client/test_get_items_without_ids.yaml",
    "content": "interactions:\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://stac.eoapi.dev/\n  response:\n    body:\n      string: '{\"type\":\"Catalog\",\"id\":\"eoapi-devseed-stac\",\"title\":\"eoAPI-stac\",\"description\":\"Custom\n        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\n        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\n        available for this Catalog\",\"href\":\"https://stac.eoapi.dev/collections\"},{\"rel\":\"conformance\",\"type\":\"application/json\",\"title\":\"STAC/OGC\n        conformance classes implemented by this server\",\"href\":\"https://stac.eoapi.dev/conformance\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        search [GET]\",\"href\":\"https://stac.eoapi.dev/search\",\"method\":\"GET\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        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\n        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\n        service description\",\"href\":\"https://stac.eoapi.dev/api\"},{\"rel\":\"service-doc\",\"type\":\"text/html\",\"title\":\"OpenAPI\n        service documentation\",\"href\":\"https://stac.eoapi.dev/api.html\"}],\"stac_extensions\":[]}'\n    headers:\n      Apigw-Requestid:\n      - OlH9Mhj2PHcEJgw=\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '674'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:07:38 GMT\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://stac.eoapi.dev/\n  response:\n    body:\n      string: '{\"type\":\"Catalog\",\"id\":\"eoapi-devseed-stac\",\"title\":\"eoAPI-stac\",\"description\":\"Custom\n        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\n        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\n        available for this Catalog\",\"href\":\"https://stac.eoapi.dev/collections\"},{\"rel\":\"conformance\",\"type\":\"application/json\",\"title\":\"STAC/OGC\n        conformance classes implemented by this server\",\"href\":\"https://stac.eoapi.dev/conformance\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        search [GET]\",\"href\":\"https://stac.eoapi.dev/search\",\"method\":\"GET\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        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\n        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\n        service description\",\"href\":\"https://stac.eoapi.dev/api\"},{\"rel\":\"service-doc\",\"type\":\"text/html\",\"title\":\"OpenAPI\n        service documentation\",\"href\":\"https://stac.eoapi.dev/api.html\"}],\"stac_extensions\":[]}'\n    headers:\n      Apigw-Requestid:\n      - OlH9OgbVPHcEJnA=\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '674'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:07:38 GMT\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n    status:\n      code: 200\n      message: OK\n- request:\n    body: '{}'\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '2'\n      Content-Type:\n      - application/json\n      User-Agent:\n      - python-requests/2.32.4\n    method: POST\n    uri: https://stac.eoapi.dev/search\n  response:\n    body:\n      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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"visual\"],\"title\":\"Visual\n        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\n        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\n        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\n        Access\"}}},\"ms_analytic\":{\"href\":\"s3://maxar-opendata/events/WildFires-LosAngeles-Jan-2025/ard/11/031311120101/2025-01-16/103001010C12B000-ms.tif\",\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Multispectral\n        Image\",\"eo:bands\":[{\"name\":\"BAND_C\",\"common_name\":\"coastal\",\"description\":\"Coastal\n        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\n        Edge 1\"},{\"name\":\"BAND_N\",\"common_name\":\"nir08\",\"description\":\"Near Infrared\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Panchromatic\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"visual\"],\"title\":\"Visual\n        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\n        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\n        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\n        Access\"}}},\"ms_analytic\":{\"href\":\"s3://maxar-opendata/events/WildFires-LosAngeles-Jan-2025/ard/11/031311102323/2025-01-16/103001010C12B000-ms.tif\",\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Multispectral\n        Image\",\"eo:bands\":[{\"name\":\"BAND_C\",\"common_name\":\"coastal\",\"description\":\"Coastal\n        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\n        Edge 1\"},{\"name\":\"BAND_N\",\"common_name\":\"nir08\",\"description\":\"Near Infrared\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Panchromatic\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"visual\"],\"title\":\"Visual\n        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\n        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\n        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\n        Access\"}}},\"ms_analytic\":{\"href\":\"s3://maxar-opendata/events/WildFires-LosAngeles-Jan-2025/ard/11/031311102322/2025-01-16/103001010C12B000-ms.tif\",\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Multispectral\n        Image\",\"eo:bands\":[{\"name\":\"BAND_C\",\"common_name\":\"coastal\",\"description\":\"Coastal\n        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\n        Edge 1\"},{\"name\":\"BAND_N\",\"common_name\":\"nir08\",\"description\":\"Near Infrared\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Panchromatic\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"visual\"],\"title\":\"Visual\n        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\n        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\n        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\n        Access\"}}},\"ms_analytic\":{\"href\":\"s3://maxar-opendata/events/WildFires-LosAngeles-Jan-2025/ard/11/031311102321/2025-01-16/103001010C12B000-ms.tif\",\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Multispectral\n        Image\",\"eo:bands\":[{\"name\":\"BAND_C\",\"common_name\":\"coastal\",\"description\":\"Coastal\n        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\n        Edge 1\"},{\"name\":\"BAND_N\",\"common_name\":\"nir08\",\"description\":\"Near Infrared\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Panchromatic\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"visual\"],\"title\":\"Visual\n        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\n        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\n        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\n        Access\"}}},\"ms_analytic\":{\"href\":\"s3://maxar-opendata/events/WildFires-LosAngeles-Jan-2025/ard/11/031311102320/2025-01-16/103001010C12B000-ms.tif\",\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Multispectral\n        Image\",\"eo:bands\":[{\"name\":\"BAND_C\",\"common_name\":\"coastal\",\"description\":\"Coastal\n        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\n        Edge 1\"},{\"name\":\"BAND_N\",\"common_name\":\"nir08\",\"description\":\"Near Infrared\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Panchromatic\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"visual\"],\"title\":\"Visual\n        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\n        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\n        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\n        Access\"}}},\"ms_analytic\":{\"href\":\"s3://maxar-opendata/events/WildFires-LosAngeles-Jan-2025/ard/11/031311102303/2025-01-16/103001010C12B000-ms.tif\",\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Multispectral\n        Image\",\"eo:bands\":[{\"name\":\"BAND_C\",\"common_name\":\"coastal\",\"description\":\"Coastal\n        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\n        Edge 1\"},{\"name\":\"BAND_N\",\"common_name\":\"nir08\",\"description\":\"Near Infrared\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Panchromatic\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"visual\"],\"title\":\"Visual\n        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\n        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\n        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\n        Access\"}}},\"ms_analytic\":{\"href\":\"s3://maxar-opendata/events/WildFires-LosAngeles-Jan-2025/ard/11/031311102302/2025-01-16/103001010C12B000-ms.tif\",\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Multispectral\n        Image\",\"eo:bands\":[{\"name\":\"BAND_C\",\"common_name\":\"coastal\",\"description\":\"Coastal\n        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\n        Edge 1\"},{\"name\":\"BAND_N\",\"common_name\":\"nir08\",\"description\":\"Near Infrared\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Panchromatic\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"visual\"],\"title\":\"Visual\n        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\n        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\n        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\n        Access\"}}},\"ms_analytic\":{\"href\":\"s3://maxar-opendata/events/WildFires-LosAngeles-Jan-2025/ard/11/031311102231/2025-01-16/103001010C12B000-ms.tif\",\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Multispectral\n        Image\",\"eo:bands\":[{\"name\":\"BAND_C\",\"common_name\":\"coastal\",\"description\":\"Coastal\n        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\n        Edge 1\"},{\"name\":\"BAND_N\",\"common_name\":\"nir08\",\"description\":\"Near Infrared\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Panchromatic\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"visual\"],\"title\":\"Visual\n        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\n        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\n        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\n        Access\"}}},\"ms_analytic\":{\"href\":\"s3://maxar-opendata/events/WildFires-LosAngeles-Jan-2025/ard/11/031311102230/2025-01-16/103001010C12B000-ms.tif\",\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Multispectral\n        Image\",\"eo:bands\":[{\"name\":\"BAND_C\",\"common_name\":\"coastal\",\"description\":\"Coastal\n        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\n        Edge 1\"},{\"name\":\"BAND_N\",\"common_name\":\"nir08\",\"description\":\"Near Infrared\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Panchromatic\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"visual\"],\"title\":\"Visual\n        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\n        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\n        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\n        Access\"}}},\"ms_analytic\":{\"href\":\"s3://maxar-opendata/events/WildFires-LosAngeles-Jan-2025/ard/11/031311102221/2025-01-16/103001010C12B000-ms.tif\",\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Multispectral\n        Image\",\"eo:bands\":[{\"name\":\"BAND_C\",\"common_name\":\"coastal\",\"description\":\"Coastal\n        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\n        Edge 1\"},{\"name\":\"BAND_N\",\"common_name\":\"nir08\",\"description\":\"Near Infrared\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Panchromatic\n        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\n        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}'\n    headers:\n      Apigw-Requestid:\n      - OlH9QhyIvHcEJoQ=\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '4496'\n      Content-Type:\n      - application/geo+json\n      Date:\n      - Thu, 31 Jul 2025 15:07:38 GMT\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n    status:\n      code: 200\n      message: OK\nversion: 1\n"
  },
  {
    "path": "tests/cassettes/test_client/test_non_recursion_on_fallback.yaml",
    "content": "interactions:\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://raw.githubusercontent.com/stac-utils/pystac/v1.9.0/docs/example-catalog/catalog.json\n  response:\n    body:\n      string: \"{\\n  \\\"type\\\": \\\"Catalog\\\",\\n  \\\"stac_version\\\": \\\"1.0.0\\\",\\n  \\\"stac_extensions\\\":\n        [],\\n  \\\"id\\\": \\\"landsat-stac-collection-catalog\\\",\\n  \\\"title\\\": \\\"STAC for\n        Landsat data\\\",\\n  \\\"description\\\": \\\"STAC for Landsat data\\\",\\n  \\\"links\\\":\n        [\\n    {\\n      \\\"href\\\": \\\"./catalog.json\\\",\\n      \\\"rel\\\": \\\"self\\\"\\n    },\\n\n        \\   {\\n      \\\"href\\\": \\\"./catalog.json\\\",\\n      \\\"rel\\\": \\\"root\\\"\\n    },\\n\n        \\   {\\n      \\\"href\\\": \\\"./landsat-8-l1/collection.json\\\",\\n      \\\"rel\\\":\n        \\\"child\\\"\\n    }\\n  ]\\n}\"\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Origin:\n      - '*'\n      Cache-Control:\n      - max-age=300\n      Connection:\n      - keep-alive\n      Content-Encoding:\n      - gzip\n      Content-Length:\n      - '209'\n      Content-Security-Policy:\n      - default-src 'none'; style-src 'unsafe-inline'; sandbox\n      Content-Type:\n      - text/plain; charset=utf-8\n      Cross-Origin-Resource-Policy:\n      - cross-origin\n      Date:\n      - Thu, 31 Jul 2025 15:07:39 GMT\n      ETag:\n      - W/\"4f517310845b65ca442e14b6613d76cdc06523f64710d84a6d49b93c49d0dca9\"\n      Expires:\n      - Thu, 31 Jul 2025 15:12:39 GMT\n      Source-Age:\n      - '0'\n      Strict-Transport-Security:\n      - max-age=31536000\n      Vary:\n      - Authorization,Accept-Encoding\n      Via:\n      - 1.1 varnish\n      X-Cache:\n      - MISS\n      X-Cache-Hits:\n      - '0'\n      X-Content-Type-Options:\n      - nosniff\n      X-Fastly-Request-ID:\n      - 651f0460a4c654d9b1298de5fcef431bc2fca01f\n      X-Frame-Options:\n      - deny\n      X-GitHub-Request-Id:\n      - 33F8:21DA39:77BCBA:993078:688B86BB\n      X-Served-By:\n      - cache-den-kden1300058-DEN\n      X-Timer:\n      - S1753974459.062898,VS0,VE101\n      X-XSS-Protection:\n      - 1; mode=block\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://raw.githubusercontent.com/stac-utils/pystac/v1.9.0/docs/example-catalog/landsat-8-l1/collection.json\n  response:\n    body:\n      string: \"{\\n  \\\"type\\\": \\\"Collection\\\",\\n  \\\"stac_version\\\" : \\\"1.0.0\\\",\\n  \\\"stac_extensions\\\"\n        : [\\n    \\\"eo\\\",\\n    \\\"view\\\",\\n    \\\"https://example.com/stac/landsat-extension/1.0/schema.json\\\"\\n\n        \\ ],\\n  \\\"id\\\" : \\\"landsat-8-l1\\\",\\n  \\\"title\\\" : \\\"Landsat 8 L1\\\",\\n  \\\"description\\\"\n        : \\\"Landsat 8 imagery radiometrically calibrated and orthorectified using\n        ground points and Digital Elevation Model (DEM) data to correct relief displacement.\\\",\\n\n        \\ \\\"keywords\\\" : [\\n    \\\"landsat\\\",\\n    \\\"earth observation\\\",\\n    \\\"usgs\\\"\\n\n        \\ ],\\n  \\\"license\\\" : \\\"proprietary\\\",\\n  \\\"providers\\\" : [\\n    {\\n      \\\"name\\\"\n        : \\\"Development Seed\\\",\\n      \\\"roles\\\" : [\\n        \\\"processor\\\"\\n      ],\\n\n        \\     \\\"url\\\" : \\\"https://github.com/sat-utils/sat-api\\\"\\n    }\\n  ],\\n  \\\"extent\\\"\n        : {\\n    \\\"spatial\\\" : {\\n      \\\"bbox\\\" : [\\n        [\\n          -180.0,\\n\n        \\         -90.0,\\n          180.0,\\n          90.0\\n        ]\\n      ]\\n    },\\n\n        \\   \\\"temporal\\\" : {\\n      \\\"interval\\\" : [\\n        [\\n          \\\"2018-05-21T15:44:59Z\\\",\\n\n        \\         \\\"2018-07-08T15:45:34Z\\\"\\n        ]\\n      ]\\n    }\\n  },\\n  \\\"summaries\\\":\n        {},\\n  \\\"properties\\\" : {\\n    \\\"collection\\\" : \\\"landsat-8-l1\\\",\\n    \\\"instruments\\\"\n        : [\\\"OLI_TIRS\\\"],\\n    \\\"view:sun_azimuth\\\" : 149.01607154,\\n    \\\"eo:bands\\\"\n        : [\\n      {\\n        \\\"name\\\" : \\\"B1\\\",\\n        \\\"full_width_half_max\\\"\n        : 0.02,\\n        \\\"center_wavelength\\\" : 0.44,\\n        \\\"common_name\\\" :\n        \\\"coastal\\\"\\n      },\\n      {\\n        \\\"name\\\" : \\\"B2\\\",\\n        \\\"full_width_half_max\\\"\n        : 0.06,\\n        \\\"center_wavelength\\\" : 0.48,\\n        \\\"common_name\\\" :\n        \\\"blue\\\"\\n      },\\n      {\\n        \\\"name\\\" : \\\"B3\\\",\\n        \\\"full_width_half_max\\\"\n        : 0.06,\\n        \\\"center_wavelength\\\" : 0.56,\\n        \\\"common_name\\\" :\n        \\\"green\\\"\\n      },\\n      {\\n        \\\"name\\\" : \\\"B4\\\",\\n        \\\"full_width_half_max\\\"\n        : 0.04,\\n        \\\"center_wavelength\\\" : 0.65,\\n        \\\"common_name\\\" :\n        \\\"red\\\"\\n      },\\n      {\\n        \\\"name\\\" : \\\"B5\\\",\\n        \\\"full_width_half_max\\\"\n        : 0.03,\\n        \\\"center_wavelength\\\" : 0.86,\\n        \\\"common_name\\\" :\n        \\\"nir\\\"\\n      },\\n      {\\n        \\\"name\\\" : \\\"B6\\\",\\n        \\\"full_width_half_max\\\"\n        : 0.08,\\n        \\\"center_wavelength\\\" : 1.6,\\n        \\\"common_name\\\" : \\\"swir16\\\"\\n\n        \\     },\\n      {\\n        \\\"name\\\" : \\\"B7\\\",\\n        \\\"full_width_half_max\\\"\n        : 0.22,\\n        \\\"center_wavelength\\\" : 2.2,\\n        \\\"common_name\\\" : \\\"swir22\\\"\\n\n        \\     },\\n      {\\n        \\\"name\\\" : \\\"B8\\\",\\n        \\\"full_width_half_max\\\"\n        : 0.18,\\n        \\\"center_wavelength\\\" : 0.59,\\n        \\\"common_name\\\" :\n        \\\"pan\\\"\\n      },\\n      {\\n        \\\"name\\\" : \\\"B9\\\",\\n        \\\"full_width_half_max\\\"\n        : 0.02,\\n        \\\"center_wavelength\\\" : 1.37,\\n        \\\"common_name\\\" :\n        \\\"cirrus\\\"\\n      },\\n      {\\n        \\\"name\\\" : \\\"B10\\\",\\n        \\\"full_width_half_max\\\"\n        : 0.8,\\n        \\\"center_wavelength\\\" : 10.9,\\n        \\\"common_name\\\" : \\\"lwir11\\\"\\n\n        \\     },\\n      {\\n        \\\"name\\\" : \\\"B11\\\",\\n        \\\"full_width_half_max\\\"\n        : 1,\\n        \\\"center_wavelength\\\" : 12,\\n        \\\"common_name\\\" : \\\"lwir2\\\"\\n\n        \\     }\\n    ],\\n    \\\"view:off_nadir\\\" : 0,\\n    \\\"view:azimuth\\\" : 0,\\n\n        \\   \\\"platform\\\" : \\\"landsat-8\\\",\\n    \\\"gsd\\\" : 15,\\n    \\\"view:sun_elevation\\\"\n        : 59.214247\\n  },\\n  \\\"links\\\" : [\\n    {\\n      \\\"href\\\" : \\\"../catalog.json\\\",\\n\n        \\     \\\"rel\\\" : \\\"root\\\"\\n    },\\n    {\\n      \\\"href\\\" : \\\"../catalog.json\\\",\\n\n        \\     \\\"rel\\\" : \\\"parent\\\"\\n    },\\n    {\\n      \\\"href\\\" : \\\"./collection.json\\\",\\n\n        \\     \\\"rel\\\" : \\\"self\\\"\\n    },\\n    {\\n      \\\"href\\\" : \\\"./2018-06/LC80140332018166LGN00.json\\\",\\n\n        \\     \\\"rel\\\" : \\\"item\\\"\\n    },\\n    {\\n      \\\"href\\\" : \\\"./2018-05/LC80150322018141LGN00.json\\\",\\n\n        \\     \\\"rel\\\" : \\\"item\\\"\\n    },\\n    {\\n      \\\"href\\\" : \\\"./2018-07/LC80150332018189LGN00.json\\\",\\n\n        \\     \\\"rel\\\" : \\\"item\\\"\\n    },\\n    {\\n      \\\"href\\\" : \\\"./2018-06/LC80300332018166LGN00.json\\\",\\n\n        \\     \\\"rel\\\" : \\\"item\\\"\\n    }\\n  ]\\n}\\n\"\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Origin:\n      - '*'\n      Cache-Control:\n      - max-age=300\n      Connection:\n      - keep-alive\n      Content-Encoding:\n      - gzip\n      Content-Length:\n      - '959'\n      Content-Security-Policy:\n      - default-src 'none'; style-src 'unsafe-inline'; sandbox\n      Content-Type:\n      - text/plain; charset=utf-8\n      Cross-Origin-Resource-Policy:\n      - cross-origin\n      Date:\n      - Thu, 31 Jul 2025 15:07:39 GMT\n      ETag:\n      - W/\"d7e83b66298977e660cd41eced9df63c47c5075485bc81bbb67f17a4df051e24\"\n      Expires:\n      - Thu, 31 Jul 2025 15:12:39 GMT\n      Source-Age:\n      - '0'\n      Strict-Transport-Security:\n      - max-age=31536000\n      Vary:\n      - Authorization,Accept-Encoding\n      Via:\n      - 1.1 varnish\n      X-Cache:\n      - MISS\n      X-Cache-Hits:\n      - '0'\n      X-Content-Type-Options:\n      - nosniff\n      X-Fastly-Request-ID:\n      - f3a6e8203d374851550def7145dc9aee39182bed\n      X-Frame-Options:\n      - deny\n      X-GitHub-Request-Id:\n      - E202:F3FF1:6E4832:8FBBBD:688B86B8\n      X-Served-By:\n      - cache-den-kden1300076-DEN\n      X-Timer:\n      - S1753974459.204093,VS0,VE87\n      X-XSS-Protection:\n      - 1; mode=block\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://raw.githubusercontent.com/stac-utils/pystac/v1.9.0/docs/example-catalog/landsat-8-l1/2018-06/LC80140332018166LGN00.json\n  response:\n    body:\n      string: \"{\\n  \\\"type\\\": \\\"Feature\\\",\\n  \\\"id\\\": \\\"LC80140332018166LGN00\\\",\\n\n        \\ \\\"stac_version\\\" : \\\"1.0.0\\\",\\n  \\\"stac_extensions\\\" : [\\n    \\\"https://stac-extensions.github.io/eo/v1.1.0/schema.json\\\",\\n\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        \\ ],\\n  \\\"bbox\\\": [\\n    -76.66703,\\n    37.82561,\\n    -73.94861,\\n    39.95958\\n\n        \\ ],\\n  \\\"geometry\\\": {\\n    \\\"type\\\": \\\"Polygon\\\",\\n    \\\"coordinates\\\":\n        [\\n      [\\n        [\\n          -76.12180471942207,\\n          39.95810181489563\\n\n        \\       ],\\n        [\\n          -73.94910518227414,\\n          39.55117185146004\\n\n        \\       ],\\n        [\\n          -74.49564725552679,\\n          37.826064511480496\\n\n        \\       ],\\n        [\\n          -76.66550404911956,\\n          38.240699151776084\\n\n        \\       ],\\n        [\\n          -76.12180471942207,\\n          39.95810181489563\\n\n        \\       ]\\n      ]\\n    ]\\n  },\\n  \\\"collection\\\": \\\"landsat-8-l1\\\",\\n  \\\"properties\\\":\n        {\\n    \\\"collection\\\": \\\"landsat-8-l1\\\",\\n    \\\"datetime\\\": \\\"2018-06-15T15:39:09Z\\\",\\n\n        \\   \\\"view:sun_azimuth\\\": 125.59055137,\\n    \\\"view:sun_elevation\\\": 66.54485226,\\n\n        \\   \\\"eo:cloud_cover\\\": 22,\\n    \\\"instruments\\\": [\\\"OLI_TIRS\\\"],\\n    \\\"view:off_nadir\\\":\n        0,\\n    \\\"platform\\\": \\\"landsat-8\\\",\\n    \\\"gsd\\\": 30,\\n    \\\"proj:epsg\\\":\n        32618,\\n    \\\"proj:transform\\\": [357585.0, 30.0, 0.0, 4423815.0, 0.0, -30.0],\\n\n        \\   \\\"proj:geometry\\\": {\\n      \\\"type\\\": \\\"Polygon\\\",\\n      \\\"coordinates\\\":\n        [\\n        [\\n          [357585.0, 4187685.0],\\n          [357585.0, 4423815.0],\\n\n        \\         [589815.0, 4423815.0],\\n          [589815.0, 4187685.0],\\n          [357585.0,\n        4187685.0]\\n        ]\\n      ]\\n    },\\n    \\\"proj:shape\\\": [7741, 7871]\\n\n        \\ },\\n  \\\"assets\\\": {\\n    \\\"index\\\": {\\n      \\\"type\\\": \\\"text/html\\\",\\n\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\n        \\     \\\"roles\\\": []\\n    },\\n    \\\"thumbnail\\\": {\\n      \\\"title\\\": \\\"Thumbnail\n        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\n        \\     \\\"roles\\\" : [\\n        \\\"thumbnail\\\"\\n      ]\\n    },\\n    \\\"B1\\\": {\\n\n        \\     \\\"type\\\": \\\"image/tiff\\\",\\n      \\\"title\\\": \\\"Band 1 (coastal)\\\",\\n\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\n        \\     \\\"roles\\\": [],\\n      \\\"eo:bands\\\": [\\n        {\\n          \\\"name\\\"\n        : \\\"B1\\\",\\n          \\\"full_width_half_max\\\" : 0.02,\\n          \\\"center_wavelength\\\"\n        : 0.44,\\n          \\\"common_name\\\" : \\\"coastal\\\"\\n        }\\n      ]\\n    },\\n\n        \\   \\\"B2\\\": {\\n      \\\"type\\\": \\\"image/tiff\\\",\\n      \\\"title\\\": \\\"Band 2\n        (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\n        \\     \\\"roles\\\": [],\\n      \\\"eo:bands\\\": [\\n        {\\n          \\\"name\\\"\n        : \\\"B2\\\",\\n          \\\"full_width_half_max\\\" : 0.06,\\n          \\\"center_wavelength\\\"\n        : 0.48,\\n          \\\"common_name\\\" : \\\"blue\\\"\\n        }\\n      ]\\n    },\\n\n        \\   \\\"B3\\\": {\\n      \\\"type\\\": \\\"image/tiff\\\",\\n      \\\"title\\\": \\\"Band 3\n        (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\n        \\     \\\"roles\\\": [],\\n      \\\"eo:bands\\\": [\\n        {\\n          \\\"name\\\"\n        : \\\"B3\\\",\\n          \\\"full_width_half_max\\\" : 0.06,\\n          \\\"center_wavelength\\\"\n        : 0.56,\\n          \\\"common_name\\\" : \\\"green\\\"\\n        }\\n      ]\\n    },\\n\n        \\   \\\"B4\\\": {\\n      \\\"type\\\": \\\"image/tiff\\\",\\n      \\\"title\\\": \\\"Band 4\n        (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\n        \\     \\\"roles\\\": [],\\n      \\\"eo:bands\\\": [\\n        {\\n          \\\"name\\\"\n        : \\\"B4\\\",\\n          \\\"full_width_half_max\\\" : 0.04,\\n          \\\"center_wavelength\\\"\n        : 0.65,\\n          \\\"common_name\\\" : \\\"red\\\"\\n        }\\n      ]\\n    },\\n\n        \\   \\\"B5\\\": {\\n      \\\"type\\\": \\\"image/tiff\\\",\\n      \\\"title\\\": \\\"Band 5\n        (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\n        \\     \\\"roles\\\": [],\\n      \\\"eo:bands\\\": [\\n        {\\n          \\\"name\\\"\n        : \\\"B5\\\",\\n          \\\"full_width_half_max\\\" : 0.03,\\n          \\\"center_wavelength\\\"\n        : 0.86,\\n          \\\"common_name\\\" : \\\"nir\\\"\\n        }\\n      ]\\n    },\\n\n        \\   \\\"B6\\\": {\\n      \\\"type\\\": \\\"image/tiff\\\",\\n      \\\"title\\\": \\\"Band 6\n        (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\n        \\     \\\"roles\\\": [],\\n      \\\"eo:bands\\\": [\\n        {\\n          \\\"name\\\"\n        : \\\"B6\\\",\\n          \\\"full_width_half_max\\\" : 0.08,\\n          \\\"center_wavelength\\\"\n        : 1.6,\\n          \\\"common_name\\\" : \\\"swir16\\\"\\n        }\\n      ]\\n    },\\n\n        \\   \\\"B7\\\": {\\n      \\\"type\\\": \\\"image/tiff\\\",\\n      \\\"title\\\": \\\"Band 7\n        (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\n        \\     \\\"roles\\\": [],\\n      \\\"eo:bands\\\": [\\n        {\\n          \\\"name\\\"\n        : \\\"B7\\\",\\n          \\\"full_width_half_max\\\" : 0.22,\\n          \\\"center_wavelength\\\"\n        : 2.2,\\n          \\\"common_name\\\" : \\\"swir22\\\"\\n        }\\n      ]\\n    },\\n\n        \\   \\\"B8\\\": {\\n      \\\"type\\\": \\\"image/tiff\\\",\\n      \\\"title\\\": \\\"Band 8\n        (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\n        \\     \\\"roles\\\": [],\\n      \\\"eo:bands\\\": [\\n        {\\n          \\\"name\\\"\n        : \\\"B8\\\",\\n          \\\"full_width_half_max\\\" : 0.18,\\n          \\\"center_wavelength\\\"\n        : 0.59,\\n          \\\"common_name\\\" : \\\"pan\\\"\\n        }\\n      ]\\n    },\\n\n        \\   \\\"B9\\\": {\\n      \\\"type\\\": \\\"image/tiff\\\",\\n      \\\"title\\\": \\\"Band 9\n        (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\n        \\     \\\"roles\\\": [],\\n      \\\"eo:bands\\\": [\\n        {\\n          \\\"name\\\"\n        : \\\"B9\\\",\\n          \\\"full_width_half_max\\\" : 0.02,\\n          \\\"center_wavelength\\\"\n        : 1.37,\\n          \\\"common_name\\\" : \\\"cirrus\\\"\\n        }\\n      ]\\n    },\\n\n        \\   \\\"B10\\\": {\\n      \\\"type\\\": \\\"image/tiff\\\",\\n      \\\"title\\\": \\\"Band 10\n        (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\n        \\     \\\"roles\\\": [],\\n      \\\"eo:bands\\\": [\\n        {\\n          \\\"name\\\"\n        : \\\"B10\\\",\\n          \\\"full_width_half_max\\\" : 0.8,\\n          \\\"center_wavelength\\\"\n        : 10.9,\\n          \\\"common_name\\\" : \\\"lwir11\\\"\\n        }\\n      ]\\n    },\\n\n        \\   \\\"B11\\\": {\\n      \\\"type\\\": \\\"image/tiff\\\",\\n      \\\"title\\\": \\\"Band 11\n        (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\n        \\     \\\"roles\\\": [],\\n      \\\"eo:bands\\\": [\\n        {\\n          \\\"name\\\"\n        : \\\"B11\\\",\\n          \\\"full_width_half_max\\\" : 1,\\n          \\\"center_wavelength\\\"\n        : 12,\\n          \\\"common_name\\\" : \\\"lwir2\\\"\\n        }\\n      ]\\n    },\\n\n        \\   \\\"ANG\\\": {\\n      \\\"title\\\": \\\"Angle coefficients file\\\",\\n      \\\"type\\\":\n        \\\"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\n        \\     \\\"roles\\\": []\\n    },\\n    \\\"MTL\\\": {\\n      \\\"title\\\": \\\"original metadata\n        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\n        \\     \\\"roles\\\": []\\n    },\\n    \\\"BQA\\\": {\\n      \\\"title\\\": \\\"Band quality\n        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\n        \\     \\\"roles\\\": []\\n    }\\n  },\\n  \\\"links\\\": [\\n    {\\n      \\\"rel\\\": \\\"self\\\",\\n\n        \\     \\\"href\\\": \\\"./LC80140332018166LGN00.json\\\"\\n    },\\n    {\\n      \\\"rel\\\":\n        \\\"parent\\\",\\n      \\\"href\\\": \\\"../collection.json\\\"\\n    },\\n    {\\n      \\\"rel\\\":\n        \\\"collection\\\",\\n      \\\"href\\\": \\\"../collection.json\\\"\\n    },\\n    {\\n      \\\"rel\\\":\n        \\\"root\\\",\\n      \\\"href\\\": \\\"../../catalog.json\\\"\\n    }\\n  ]\\n}\\n\"\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Origin:\n      - '*'\n      Cache-Control:\n      - max-age=300\n      Connection:\n      - keep-alive\n      Content-Encoding:\n      - gzip\n      Content-Length:\n      - '1382'\n      Content-Security-Policy:\n      - default-src 'none'; style-src 'unsafe-inline'; sandbox\n      Content-Type:\n      - text/plain; charset=utf-8\n      Cross-Origin-Resource-Policy:\n      - cross-origin\n      Date:\n      - Thu, 31 Jul 2025 15:07:39 GMT\n      ETag:\n      - W/\"4aeda1cb7469bd902a948455e21ccb8b8cec0e530c5f287fa31532aeba8a4b4c\"\n      Expires:\n      - Thu, 31 Jul 2025 15:12:39 GMT\n      Source-Age:\n      - '0'\n      Strict-Transport-Security:\n      - max-age=31536000\n      Vary:\n      - Authorization,Accept-Encoding\n      Via:\n      - 1.1 varnish\n      X-Cache:\n      - MISS\n      X-Cache-Hits:\n      - '0'\n      X-Content-Type-Options:\n      - nosniff\n      X-Fastly-Request-ID:\n      - 1e7ef92dff1cf00a6099d33bcaacf75636cf3bda\n      X-Frame-Options:\n      - deny\n      X-GitHub-Request-Id:\n      - 1ADB:22988F:6DAD65:8F2214:688B86B9\n      X-Served-By:\n      - cache-den-kden1300067-DEN\n      X-Timer:\n      - S1753974459.328132,VS0,VE95\n      X-XSS-Protection:\n      - 1; mode=block\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://raw.githubusercontent.com/stac-utils/pystac/v1.9.0/docs/example-catalog/landsat-8-l1/2018-05/LC80150322018141LGN00.json\n  response:\n    body:\n      string: \"{\\n  \\\"type\\\": \\\"Feature\\\",\\n  \\\"id\\\": \\\"LC80150322018141LGN00\\\",\\n\n        \\ \\\"stac_version\\\" : \\\"1.0.0\\\",\\n  \\\"stac_extensions\\\" : [\\n    \\\"https://stac-extensions.github.io/eo/v1.1.0/schema.json\\\",\\n\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        \\ ],\\n  \\\"bbox\\\": [\\n    -77.88298,\\n    39.23073,\\n    -75.07535,\\n    41.41022\\n\n        \\ ],\\n  \\\"geometry\\\": {\\n    \\\"type\\\": \\\"Polygon\\\",\\n    \\\"coordinates\\\":\n        [\\n      [\\n        [\\n          -77.28911976020206,\\n          41.40912394323429\\n\n        \\       ],\\n        [\\n          -75.07576783500748,\\n          40.97162247589133\\n\n        \\       ],\\n        [\\n          -75.66872631473827,\\n          39.23210949585851\\n\n        \\       ],\\n        [\\n          -77.87946700654118,\\n          39.67679918442899\\n\n        \\       ],\\n        [\\n          -77.28911976020206,\\n          41.40912394323429\\n\n        \\       ]\\n      ]\\n    ]\\n  },\\n  \\\"collection\\\": \\\"landsat-8-l1\\\",\\n  \\\"properties\\\":\n        {\\n    \\\"collection\\\": \\\"landsat-8-l1\\\",\\n    \\\"datetime\\\": \\\"2018-05-21T15:44:59Z\\\",\\n\n        \\   \\\"view:sun_azimuth\\\": 134.8082647,\\n    \\\"view:sun_elevation\\\": 64.00406717,\\n\n        \\   \\\"eo:cloud_cover\\\": 4,\\n    \\\"instruments\\\": [\\\"OLI_TIRS\\\"],\\n    \\\"view:off_nadir\\\":\n        0,\\n    \\\"platform\\\": \\\"landsat-8\\\",\\n    \\\"gsd\\\": 30,\\n    \\\"proj:epsg\\\":\n        32618,\\n    \\\"proj:transform\\\": [258885.0, 30.0, 0.0, 4584315.0, 0.0, -30.0],\\n\n        \\   \\\"proj:geometry\\\": {\\n      \\\"type\\\": \\\"Polygon\\\",\\n      \\\"coordinates\\\":\n        [\\n        [\\n          [258885.0, 4346085.0],\\n          [258885.0, 4584315.0],\\n\n        \\         [493515.0, 4584315.0],\\n          [493515.0, 4346085.0],\\n          [258885.0,\n        4346085.0]\\n        ]\\n      ]\\n    },\\n    \\\"proj:shape\\\": [7821, 7941]\\n\n        \\ },\\n  \\\"assets\\\": {\\n    \\\"index\\\": {\\n      \\\"type\\\": \\\"text/html\\\",\\n\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\n        \\     \\\"roles\\\": []\\n    },\\n    \\\"thumbnail\\\": {\\n      \\\"title\\\": \\\"Thumbnail\n        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\n        \\     \\\"roles\\\" : [\\n        \\\"thumbnail\\\"\\n      ]\\n    },\\n    \\\"B1\\\": {\\n\n        \\     \\\"type\\\": \\\"image/tiff\\\",\\n      \\\"title\\\": \\\"Band 1 (coastal)\\\",\\n\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\n        \\     \\\"roles\\\": [],\\n      \\\"eo:bands\\\": [\\n        {\\n          \\\"name\\\"\n        : \\\"B1\\\",\\n          \\\"full_width_half_max\\\" : 0.02,\\n          \\\"center_wavelength\\\"\n        : 0.44,\\n          \\\"common_name\\\" : \\\"coastal\\\"\\n        }\\n      ]\\n    },\\n\n        \\   \\\"B2\\\": {\\n      \\\"type\\\": \\\"image/tiff\\\",\\n      \\\"title\\\": \\\"Band 2\n        (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\n        \\     \\\"roles\\\": [],\\n      \\\"eo:bands\\\": [\\n        {\\n          \\\"name\\\"\n        : \\\"B2\\\",\\n          \\\"full_width_half_max\\\" : 0.06,\\n          \\\"center_wavelength\\\"\n        : 0.48,\\n          \\\"common_name\\\" : \\\"blue\\\"\\n        }\\n      ]\\n    },\\n\n        \\   \\\"B3\\\": {\\n      \\\"type\\\": \\\"image/tiff\\\",\\n      \\\"title\\\": \\\"Band 3\n        (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\n        \\     \\\"roles\\\": [],\\n      \\\"eo:bands\\\": [\\n        {\\n          \\\"name\\\"\n        : \\\"B3\\\",\\n          \\\"full_width_half_max\\\" : 0.06,\\n          \\\"center_wavelength\\\"\n        : 0.56,\\n          \\\"common_name\\\" : \\\"green\\\"\\n        }\\n      ]\\n    },\\n\n        \\   \\\"B4\\\": {\\n      \\\"type\\\": \\\"image/tiff\\\",\\n      \\\"title\\\": \\\"Band 4\n        (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\n        \\     \\\"roles\\\": [],\\n      \\\"eo:bands\\\": [\\n        {\\n          \\\"name\\\"\n        : \\\"B4\\\",\\n          \\\"full_width_half_max\\\" : 0.04,\\n          \\\"center_wavelength\\\"\n        : 0.65,\\n          \\\"common_name\\\" : \\\"red\\\"\\n        }\\n      ]\\n    },\\n\n        \\   \\\"B5\\\": {\\n      \\\"type\\\": \\\"image/tiff\\\",\\n      \\\"title\\\": \\\"Band 5\n        (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\n        \\     \\\"roles\\\": [],\\n      \\\"eo:bands\\\": [\\n        {\\n          \\\"name\\\"\n        : \\\"B5\\\",\\n          \\\"full_width_half_max\\\" : 0.03,\\n          \\\"center_wavelength\\\"\n        : 0.86,\\n          \\\"common_name\\\" : \\\"nir\\\"\\n        }\\n      ]\\n    },\\n\n        \\   \\\"B6\\\": {\\n      \\\"type\\\": \\\"image/tiff\\\",\\n      \\\"title\\\": \\\"Band 6\n        (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\n        \\     \\\"roles\\\": [],\\n      \\\"eo:bands\\\": [\\n        {\\n          \\\"name\\\"\n        : \\\"B6\\\",\\n          \\\"full_width_half_max\\\" : 0.08,\\n          \\\"center_wavelength\\\"\n        : 1.6,\\n          \\\"common_name\\\" : \\\"swir16\\\"\\n        }\\n      ]\\n    },\\n\n        \\   \\\"B7\\\": {\\n      \\\"type\\\": \\\"image/tiff\\\",\\n      \\\"title\\\": \\\"Band 7\n        (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\n        \\     \\\"roles\\\": [],\\n      \\\"eo:bands\\\": [\\n        {\\n          \\\"name\\\"\n        : \\\"B7\\\",\\n          \\\"full_width_half_max\\\" : 0.22,\\n          \\\"center_wavelength\\\"\n        : 2.2,\\n          \\\"common_name\\\" : \\\"swir22\\\"\\n        }\\n      ]\\n    },\\n\n        \\   \\\"B8\\\": {\\n      \\\"type\\\": \\\"image/tiff\\\",\\n      \\\"title\\\": \\\"Band 8\n        (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\n        \\     \\\"roles\\\": [],\\n      \\\"eo:bands\\\": [\\n        {\\n          \\\"name\\\"\n        : \\\"B8\\\",\\n          \\\"full_width_half_max\\\" : 0.18,\\n          \\\"center_wavelength\\\"\n        : 0.59,\\n          \\\"common_name\\\" : \\\"pan\\\"\\n        }\\n      ]\\n    },\\n\n        \\   \\\"B9\\\": {\\n      \\\"type\\\": \\\"image/tiff\\\",\\n      \\\"title\\\": \\\"Band 9\n        (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\n        \\     \\\"roles\\\": [],\\n      \\\"eo:bands\\\": [\\n        {\\n          \\\"name\\\"\n        : \\\"B9\\\",\\n          \\\"full_width_half_max\\\" : 0.02,\\n          \\\"center_wavelength\\\"\n        : 1.37,\\n          \\\"common_name\\\" : \\\"cirrus\\\"\\n        }\\n      ]\\n    },\\n\n        \\   \\\"B10\\\": {\\n      \\\"type\\\": \\\"image/tiff\\\",\\n      \\\"title\\\": \\\"Band 10\n        (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\n        \\     \\\"roles\\\": [],\\n      \\\"eo:bands\\\": [\\n        {\\n          \\\"name\\\"\n        : \\\"B10\\\",\\n          \\\"full_width_half_max\\\" : 0.8,\\n          \\\"center_wavelength\\\"\n        : 10.9,\\n          \\\"common_name\\\" : \\\"lwir11\\\"\\n        }\\n      ]\\n    },\\n\n        \\   \\\"B11\\\": {\\n      \\\"type\\\": \\\"image/tiff\\\",\\n      \\\"title\\\": \\\"Band 11\n        (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\n        \\     \\\"roles\\\": [],\\n      \\\"eo:bands\\\": [\\n        {\\n          \\\"name\\\"\n        : \\\"B11\\\",\\n          \\\"full_width_half_max\\\" : 1,\\n          \\\"center_wavelength\\\"\n        : 12,\\n          \\\"common_name\\\" : \\\"lwir2\\\"\\n        }\\n      ]\\n    },\\n\n        \\   \\\"ANG\\\": {\\n      \\\"title\\\": \\\"Angle coefficients file\\\",\\n      \\\"type\\\":\n        \\\"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\n        \\     \\\"roles\\\": []\\n    },\\n    \\\"MTL\\\": {\\n      \\\"title\\\": \\\"original metadata\n        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\n        \\     \\\"roles\\\": []\\n    },\\n    \\\"BQA\\\": {\\n      \\\"title\\\": \\\"Band quality\n        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\n        \\     \\\"roles\\\": []\\n    }\\n  },\\n  \\\"links\\\": [\\n    {\\n      \\\"rel\\\": \\\"self\\\",\\n\n        \\     \\\"href\\\": \\\"./LC80150322018141LGN00.json\\\"\\n    },\\n    {\\n      \\\"rel\\\":\n        \\\"parent\\\",\\n      \\\"href\\\": \\\"../collection.json\\\"\\n    },\\n    {\\n      \\\"rel\\\":\n        \\\"collection\\\",\\n      \\\"href\\\": \\\"../collection.json\\\"\\n    },\\n    {\\n      \\\"rel\\\":\n        \\\"root\\\",\\n      \\\"href\\\": \\\"../../catalog.json\\\"\\n    }\\n  ]\\n}\\n\"\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Origin:\n      - '*'\n      Cache-Control:\n      - max-age=300\n      Connection:\n      - keep-alive\n      Content-Encoding:\n      - gzip\n      Content-Length:\n      - '1380'\n      Content-Security-Policy:\n      - default-src 'none'; style-src 'unsafe-inline'; sandbox\n      Content-Type:\n      - text/plain; charset=utf-8\n      Cross-Origin-Resource-Policy:\n      - cross-origin\n      Date:\n      - Thu, 31 Jul 2025 15:07:39 GMT\n      ETag:\n      - W/\"cd518c56745214a4d20ae145f9fb6edf689b57fc9ac77e1d3592c1476949550f\"\n      Expires:\n      - Thu, 31 Jul 2025 15:12:39 GMT\n      Source-Age:\n      - '0'\n      Strict-Transport-Security:\n      - max-age=31536000\n      Vary:\n      - Authorization,Accept-Encoding\n      Via:\n      - 1.1 varnish\n      X-Cache:\n      - MISS\n      X-Cache-Hits:\n      - '0'\n      X-Content-Type-Options:\n      - nosniff\n      X-Fastly-Request-ID:\n      - 8899fd014390cd678f829232e5032313aee941d2\n      X-Frame-Options:\n      - deny\n      X-GitHub-Request-Id:\n      - 2698:338F28:7481AA:95F5CA:688B86B8\n      X-Served-By:\n      - cache-den-kden1300080-DEN\n      X-Timer:\n      - S1753974459.456357,VS0,VE88\n      X-XSS-Protection:\n      - 1; mode=block\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://raw.githubusercontent.com/stac-utils/pystac/v1.9.0/docs/example-catalog/landsat-8-l1/2018-07/LC80150332018189LGN00.json\n  response:\n    body:\n      string: \"{\\n  \\\"type\\\": \\\"Feature\\\",\\n  \\\"id\\\": \\\"LC80150332018189LGN00\\\",\\n\n        \\ \\\"stac_version\\\" : \\\"1.0.0\\\",\\n  \\\"stac_extensions\\\" : [\\n    \\\"https://stac-extensions.github.io/eo/v1.1.0/schema.json\\\",\\n\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        \\ ],\\n  \\\"bbox\\\": [\\n    -78.25028,\\n    37.79719,\\n    -75.48983,\\n    39.98757\\n\n        \\ ],\\n  \\\"geometry\\\": {\\n    \\\"type\\\": \\\"Polygon\\\",\\n    \\\"coordinates\\\":\n        [\\n      [\\n        [\\n          -77.66532657556414,\\n          39.987421383364385\\n\n        \\       ],\\n        [\\n          -75.49021499188945,\\n          39.54442448711656\\n\n        \\       ],\\n        [\\n          -76.07747288135147,\\n          37.799167045362736\\n\n        \\       ],\\n        [\\n          -78.25025639728777,\\n          38.24897728816149\\n\n        \\       ],\\n        [\\n          -77.66532657556414,\\n          39.987421383364385\\n\n        \\       ]\\n      ]\\n    ]\\n  },\\n  \\\"collection\\\": \\\"landsat-8-l1\\\",\\n  \\\"properties\\\":\n        {\\n    \\\"collection\\\": \\\"landsat-8-l1\\\",\\n    \\\"datetime\\\": \\\"2018-07-08T15:45:34Z\\\",\\n\n        \\   \\\"view:sun_azimuth\\\": 125.31095515,\\n    \\\"view:sun_elevation\\\": 65.2014335,\\n\n        \\   \\\"eo:cloud_cover\\\": 0,\\n    \\\"instruments\\\": [\\\"OLI_TIRS\\\"],\\n    \\\"view:off_nadir\\\":\n        0,\\n    \\\"platform\\\": \\\"landsat-8\\\",\\n    \\\"gsd\\\": 30,\\n    \\\"proj:epsg\\\":\n        32618,\\n    \\\"proj:transform\\\": [222285.0, 30.0, 0.0, 4426515.0, 0.0, -30.0],\\n\n        \\   \\\"proj:geometry\\\": {\\n      \\\"type\\\": \\\"Polygon\\\",\\n      \\\"coordinates\\\":\n        [\\n        [\\n          [222285.0, 4187985.0],\\n          [222285.0, 4426515.0],\\n\n        \\         [456915.0, 4426515.0],\\n          [456915.0, 4187985.0],\\n          [222285.0,4187985.0]]\\n\n        \\     ]\\n    },\\n    \\\"proj:shape\\\": [7821, 7951]\\n  },\\n  \\\"assets\\\": {\\n\n        \\   \\\"index\\\": {\\n      \\\"type\\\": \\\"text/html\\\",\\n      \\\"title\\\": \\\"HTML\n        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\n        \\     \\\"roles\\\": []\\n    },\\n    \\\"thumbnail\\\": {\\n      \\\"title\\\": \\\"Thumbnail\n        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\n        \\     \\\"roles\\\" : [\\n        \\\"thumbnail\\\"\\n      ]\\n    },\\n    \\\"B1\\\": {\\n\n        \\     \\\"type\\\": \\\"image/tiff\\\",\\n      \\\"title\\\": \\\"Band 1 (coastal)\\\",\\n\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\n        \\     \\\"roles\\\": [],\\n      \\\"eo:bands\\\": [\\n        {\\n          \\\"name\\\"\n        : \\\"B1\\\",\\n          \\\"full_width_half_max\\\" : 0.02,\\n          \\\"center_wavelength\\\"\n        : 0.44,\\n          \\\"common_name\\\" : \\\"coastal\\\"\\n        }\\n      ]\\n    },\\n\n        \\   \\\"B2\\\": {\\n      \\\"type\\\": \\\"image/tiff\\\",\\n      \\\"title\\\": \\\"Band 2\n        (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\n        \\     \\\"roles\\\": [],\\n      \\\"eo:bands\\\": [\\n        {\\n          \\\"name\\\"\n        : \\\"B2\\\",\\n          \\\"full_width_half_max\\\" : 0.06,\\n          \\\"center_wavelength\\\"\n        : 0.48,\\n          \\\"common_name\\\" : \\\"blue\\\"\\n        }\\n      ]\\n    },\\n\n        \\   \\\"B3\\\": {\\n      \\\"type\\\": \\\"image/tiff\\\",\\n      \\\"title\\\": \\\"Band 3\n        (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\n        \\     \\\"roles\\\": [],\\n      \\\"eo:bands\\\": [\\n        {\\n          \\\"name\\\"\n        : \\\"B3\\\",\\n          \\\"full_width_half_max\\\" : 0.06,\\n          \\\"center_wavelength\\\"\n        : 0.56,\\n          \\\"common_name\\\" : \\\"green\\\"\\n        }\\n      ]\\n    },\\n\n        \\   \\\"B4\\\": {\\n      \\\"type\\\": \\\"image/tiff\\\",\\n      \\\"title\\\": \\\"Band 4\n        (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\n        \\     \\\"roles\\\": [],\\n      \\\"eo:bands\\\": [\\n        {\\n          \\\"name\\\"\n        : \\\"B4\\\",\\n          \\\"full_width_half_max\\\" : 0.04,\\n          \\\"center_wavelength\\\"\n        : 0.65,\\n          \\\"common_name\\\" : \\\"red\\\"\\n        }\\n      ]\\n    },\\n\n        \\   \\\"B5\\\": {\\n      \\\"type\\\": \\\"image/tiff\\\",\\n      \\\"title\\\": \\\"Band 5\n        (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\n        \\     \\\"roles\\\": [],\\n      \\\"eo:bands\\\": [\\n        {\\n          \\\"name\\\"\n        : \\\"B5\\\",\\n          \\\"full_width_half_max\\\" : 0.03,\\n          \\\"center_wavelength\\\"\n        : 0.86,\\n          \\\"common_name\\\" : \\\"nir\\\"\\n        }\\n      ]\\n    },\\n\n        \\   \\\"B6\\\": {\\n      \\\"type\\\": \\\"image/tiff\\\",\\n      \\\"title\\\": \\\"Band 6\n        (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\n        \\     \\\"roles\\\": [],\\n      \\\"eo:bands\\\": [\\n        {\\n          \\\"name\\\"\n        : \\\"B6\\\",\\n          \\\"full_width_half_max\\\" : 0.08,\\n          \\\"center_wavelength\\\"\n        : 1.6,\\n          \\\"common_name\\\" : \\\"swir16\\\"\\n        }\\n      ]\\n    },\\n\n        \\   \\\"B7\\\": {\\n      \\\"type\\\": \\\"image/tiff\\\",\\n      \\\"title\\\": \\\"Band 7\n        (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\n        \\     \\\"roles\\\": [],\\n      \\\"eo:bands\\\": [\\n        {\\n          \\\"name\\\"\n        : \\\"B7\\\",\\n          \\\"full_width_half_max\\\" : 0.22,\\n          \\\"center_wavelength\\\"\n        : 2.2,\\n          \\\"common_name\\\" : \\\"swir22\\\"\\n        }\\n      ]\\n    },\\n\n        \\   \\\"B8\\\": {\\n      \\\"type\\\": \\\"image/tiff\\\",\\n      \\\"title\\\": \\\"Band 8\n        (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\n        \\     \\\"roles\\\": [],\\n      \\\"eo:bands\\\": [\\n        {\\n          \\\"name\\\"\n        : \\\"B8\\\",\\n          \\\"full_width_half_max\\\" : 0.18,\\n          \\\"center_wavelength\\\"\n        : 0.59,\\n          \\\"common_name\\\" : \\\"pan\\\"\\n        }\\n      ]\\n    },\\n\n        \\   \\\"B9\\\": {\\n      \\\"type\\\": \\\"image/tiff\\\",\\n      \\\"title\\\": \\\"Band 9\n        (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\n        \\     \\\"roles\\\": [],\\n      \\\"eo:bands\\\": [\\n        {\\n          \\\"name\\\"\n        : \\\"B9\\\",\\n          \\\"full_width_half_max\\\" : 0.02,\\n          \\\"center_wavelength\\\"\n        : 1.37,\\n          \\\"common_name\\\" : \\\"cirrus\\\"\\n        }\\n      ]\\n    },\\n\n        \\   \\\"B10\\\": {\\n      \\\"type\\\": \\\"image/tiff\\\",\\n      \\\"title\\\": \\\"Band 10\n        (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\n        \\     \\\"roles\\\": [],\\n      \\\"eo:bands\\\": [\\n        {\\n          \\\"name\\\"\n        : \\\"B10\\\",\\n          \\\"full_width_half_max\\\" : 0.8,\\n          \\\"center_wavelength\\\"\n        : 10.9,\\n          \\\"common_name\\\" : \\\"lwir11\\\"\\n        }\\n      ]\\n    },\\n\n        \\   \\\"B11\\\": {\\n      \\\"type\\\": \\\"image/tiff\\\",\\n      \\\"title\\\": \\\"Band 11\n        (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\n        \\     \\\"roles\\\": [],\\n      \\\"eo:bands\\\": [\\n        {\\n          \\\"name\\\"\n        : \\\"B11\\\",\\n          \\\"full_width_half_max\\\" : 1,\\n          \\\"center_wavelength\\\"\n        : 12,\\n          \\\"common_name\\\" : \\\"lwir2\\\"\\n        }\\n      ]\\n    },\\n\n        \\   \\\"ANG\\\": {\\n      \\\"title\\\": \\\"Angle coefficients file\\\",\\n      \\\"type\\\":\n        \\\"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\n        \\     \\\"roles\\\": []\\n    },\\n    \\\"MTL\\\": {\\n      \\\"title\\\": \\\"original metadata\n        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\n        \\     \\\"roles\\\": []\\n    },\\n    \\\"BQA\\\": {\\n      \\\"title\\\": \\\"Band quality\n        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\n        \\     \\\"roles\\\": []\\n    }\\n  },\\n  \\\"links\\\": [\\n    {\\n      \\\"rel\\\": \\\"self\\\",\\n\n        \\     \\\"href\\\": \\\"./LC80150332018189LGN00.json\\\"\\n    },\\n    {\\n      \\\"rel\\\":\n        \\\"parent\\\",\\n      \\\"href\\\": \\\"../collection.json\\\"\\n    },\\n    {\\n      \\\"rel\\\":\n        \\\"collection\\\",\\n      \\\"href\\\": \\\"../collection.json\\\"\\n    },\\n    {\\n      \\\"rel\\\":\n        \\\"root\\\",\\n      \\\"href\\\": \\\"../../catalog.json\\\"\\n    }\\n  ]\\n}\\n\"\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Origin:\n      - '*'\n      Cache-Control:\n      - max-age=300\n      Connection:\n      - keep-alive\n      Content-Encoding:\n      - gzip\n      Content-Length:\n      - '1375'\n      Content-Security-Policy:\n      - default-src 'none'; style-src 'unsafe-inline'; sandbox\n      Content-Type:\n      - text/plain; charset=utf-8\n      Cross-Origin-Resource-Policy:\n      - cross-origin\n      Date:\n      - Thu, 31 Jul 2025 15:07:39 GMT\n      ETag:\n      - W/\"f1956bfe0994b5049095141c760f2d24f565019a6e81e1aec1816740157df998\"\n      Expires:\n      - Thu, 31 Jul 2025 15:12:39 GMT\n      Source-Age:\n      - '0'\n      Strict-Transport-Security:\n      - max-age=31536000\n      Vary:\n      - Authorization,Accept-Encoding\n      Via:\n      - 1.1 varnish\n      X-Cache:\n      - MISS\n      X-Cache-Hits:\n      - '0'\n      X-Content-Type-Options:\n      - nosniff\n      X-Fastly-Request-ID:\n      - 87edae353c9a8817346824d46ba4d79ca5151404\n      X-Frame-Options:\n      - deny\n      X-GitHub-Request-Id:\n      - B01D:2CF9F0:436DB5:553CE8:688B86B8\n      X-Served-By:\n      - cache-den-kden1300097-DEN\n      X-Timer:\n      - S1753974460.579919,VS0,VE98\n      X-XSS-Protection:\n      - 1; mode=block\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://raw.githubusercontent.com/stac-utils/pystac/v1.9.0/docs/example-catalog/landsat-8-l1/2018-06/LC80300332018166LGN00.json\n  response:\n    body:\n      string: \"{\\n  \\\"type\\\": \\\"Feature\\\",\\n  \\\"stac_version\\\" : \\\"1.0.0\\\",\\n  \\\"stac_extensions\\\"\n        : [\\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\n        \\   \\\"https://stac-extensions.github.io/projection/v1.1.0/schema.json\\\"\\n\n        \\ ],\\n  \\\"id\\\": \\\"LC80300332018166LGN00\\\",\\n  \\\"bbox\\\": [\\n    -101.40793,\\n\n        \\   37.81084,\\n    -98.6721,\\n    39.97469\\n  ],\\n  \\\"geometry\\\": {\\n    \\\"type\\\":\n        \\\"Polygon\\\",\\n    \\\"coordinates\\\": [\\n      [\\n        [\\n          -100.84368079413701,\\n\n        \\         39.97210491033466\\n        ],\\n        [\\n          -98.67492641719046,\\n\n        \\         39.54833037653145\\n        ],\\n        [\\n          -99.23946071016417,\\n\n        \\         37.81370881408165\\n        ],\\n        [\\n          -101.40560438472555,\\n\n        \\         38.24476872678675\\n        ],\\n        [\\n          -100.84368079413701,\\n\n        \\         39.97210491033466\\n        ]\\n      ]\\n    ]\\n  },\\n  \\\"collection\\\":\n        \\\"landsat-8-l1\\\",\\n  \\\"properties\\\": {\\n    \\\"collection\\\": \\\"landsat-8-l1\\\",\\n\n        \\   \\\"datetime\\\": \\\"2018-06-15T17:18:03Z\\\",\\n    \\\"view:sun_azimuth\\\": 125.5799919,\\n\n        \\   \\\"view:sun_elevation\\\": 66.54407242,\\n    \\\"eo:cloud_cover\\\": 0,\\n    \\\"instruments\\\":\n        [\\\"OLI_TIRS\\\"],\\n    \\\"view:off_nadir\\\": 0,\\n    \\\"platform\\\": \\\"landsat-8\\\",\\n\n        \\   \\\"gsd\\\": 30,\\n    \\\"proj:epsg\\\": 32614,\\n    \\\"proj:transform\\\": [294285.0,\n        30.0, 0.0, 4425015.0, 0.0, -30],\\n    \\\"proj:geometry\\\": {\\n      \\\"type\\\":\n        \\\"Polygon\\\",\\n      \\\"coordinates\\\": [\\n        [\\n          [294285.0, 4187385.0],\\n\n        \\         [294285.0, 4425015.0],\\n          [528015.0, 4425015.0],\\n          [528015.0,\n        4187385.0],\\n          [294285.0, 4187385.0]\\n        ]\\n      ]\\n    },\\n\n        \\   \\\"proj:shape\\\": [7791, 7921]\\n  },\\n  \\\"assets\\\": {\\n    \\\"index\\\": {\\n\n        \\     \\\"type\\\": \\\"text/html\\\",\\n      \\\"title\\\": \\\"HTML index page\\\",\\n      \\\"href\\\":\n        \\\"https://s3-us-west-2.amazonaws.com/landsat-pds/c1/L8/030/033/LC08_L1TP_030033_20180615_20180703_01_T1/index.html\\\",\\n\n        \\     \\\"roles\\\" : []\\n    },\\n    \\\"thumbnail\\\": {\\n      \\\"title\\\": \\\"Thumbnail\n        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\n        \\     \\\"roles\\\" : [\\n        \\\"thumbnail\\\"\\n      ]\\n    },\\n    \\\"B1\\\": {\\n\n        \\     \\\"type\\\": \\\"image/tiff\\\",\\n      \\\"title\\\": \\\"Band 1 (coastal)\\\",\\n\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\n        \\     \\\"roles\\\": [],\\n      \\\"eo:bands\\\": [\\n        {\\n          \\\"name\\\"\n        : \\\"B1\\\",\\n          \\\"full_width_half_max\\\" : 0.02,\\n          \\\"center_wavelength\\\"\n        : 0.44,\\n          \\\"common_name\\\" : \\\"coastal\\\"\\n        }\\n      ]\\n    },\\n\n        \\   \\\"B2\\\": {\\n      \\\"type\\\": \\\"image/tiff\\\",\\n      \\\"title\\\": \\\"Band 2\n        (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\n        \\     \\\"roles\\\": [],\\n      \\\"eo:bands\\\": [\\n        {\\n          \\\"name\\\"\n        : \\\"B2\\\",\\n          \\\"full_width_half_max\\\" : 0.06,\\n          \\\"center_wavelength\\\"\n        : 0.48,\\n          \\\"common_name\\\" : \\\"blue\\\"\\n        }\\n      ]\\n    },\\n\n        \\   \\\"B3\\\": {\\n      \\\"type\\\": \\\"image/tiff\\\",\\n      \\\"title\\\": \\\"Band 3\n        (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\n        \\     \\\"roles\\\": [],\\n      \\\"eo:bands\\\": [\\n        {\\n          \\\"name\\\"\n        : \\\"B3\\\",\\n          \\\"full_width_half_max\\\" : 0.06,\\n          \\\"center_wavelength\\\"\n        : 0.56,\\n          \\\"common_name\\\" : \\\"green\\\"\\n        }\\n      ]\\n    },\\n\n        \\   \\\"B4\\\": {\\n      \\\"type\\\": \\\"image/tiff\\\",\\n      \\\"title\\\": \\\"Band 4\n        (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\n        \\     \\\"roles\\\": [],\\n      \\\"eo:bands\\\": [\\n        {\\n          \\\"name\\\"\n        : \\\"B4\\\",\\n          \\\"full_width_half_max\\\" : 0.04,\\n          \\\"center_wavelength\\\"\n        : 0.65,\\n          \\\"common_name\\\" : \\\"red\\\"\\n        }\\n      ]\\n    },\\n\n        \\   \\\"B5\\\": {\\n      \\\"type\\\": \\\"image/tiff\\\",\\n      \\\"title\\\": \\\"Band 5\n        (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\n        \\     \\\"roles\\\": [],\\n      \\\"eo:bands\\\": [\\n        {\\n          \\\"name\\\"\n        : \\\"B5\\\",\\n          \\\"full_width_half_max\\\" : 0.03,\\n          \\\"center_wavelength\\\"\n        : 0.86,\\n          \\\"common_name\\\" : \\\"nir\\\"\\n        }\\n      ]\\n    },\\n\n        \\   \\\"B6\\\": {\\n      \\\"type\\\": \\\"image/tiff\\\",\\n      \\\"title\\\": \\\"Band 6\n        (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\n        \\     \\\"roles\\\": [],\\n      \\\"eo:bands\\\": [\\n        {\\n          \\\"name\\\"\n        : \\\"B6\\\",\\n          \\\"full_width_half_max\\\" : 0.08,\\n          \\\"center_wavelength\\\"\n        : 1.6,\\n          \\\"common_name\\\" : \\\"swir16\\\"\\n        }\\n      ]\\n    },\\n\n        \\   \\\"B7\\\": {\\n      \\\"type\\\": \\\"image/tiff\\\",\\n      \\\"title\\\": \\\"Band 7\n        (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\n        \\     \\\"roles\\\": [],\\n      \\\"eo:bands\\\": [\\n        {\\n          \\\"name\\\"\n        : \\\"B7\\\",\\n          \\\"full_width_half_max\\\" : 0.22,\\n          \\\"center_wavelength\\\"\n        : 2.2,\\n          \\\"common_name\\\" : \\\"swir22\\\"\\n        }\\n      ]\\n    },\\n\n        \\   \\\"B8\\\": {\\n      \\\"type\\\": \\\"image/tiff\\\",\\n      \\\"title\\\": \\\"Band 8\n        (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\n        \\     \\\"roles\\\": [],\\n      \\\"eo:bands\\\": [\\n        {\\n          \\\"name\\\"\n        : \\\"B8\\\",\\n          \\\"full_width_half_max\\\" : 0.18,\\n          \\\"center_wavelength\\\"\n        : 0.59,\\n          \\\"common_name\\\" : \\\"pan\\\"\\n        }\\n      ]\\n    },\\n\n        \\   \\\"B9\\\": {\\n      \\\"type\\\": \\\"image/tiff\\\",\\n      \\\"title\\\": \\\"Band 9\n        (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\n        \\     \\\"roles\\\": [],\\n      \\\"eo:bands\\\": [\\n        {\\n          \\\"name\\\"\n        : \\\"B9\\\",\\n          \\\"full_width_half_max\\\" : 0.02,\\n          \\\"center_wavelength\\\"\n        : 1.37,\\n          \\\"common_name\\\" : \\\"cirrus\\\"\\n        }\\n      ]\\n    },\\n\n        \\   \\\"B10\\\": {\\n      \\\"type\\\": \\\"image/tiff\\\",\\n      \\\"title\\\": \\\"Band 10\n        (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\n        \\     \\\"roles\\\": [],\\n      \\\"eo:bands\\\": [\\n        {\\n          \\\"name\\\"\n        : \\\"B10\\\",\\n          \\\"full_width_half_max\\\" : 0.8,\\n          \\\"center_wavelength\\\"\n        : 10.9,\\n          \\\"common_name\\\" : \\\"lwir11\\\"\\n        }\\n      ]\\n    },\\n\n        \\   \\\"B11\\\": {\\n      \\\"type\\\": \\\"image/tiff\\\",\\n      \\\"title\\\": \\\"Band 11\n        (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\n        \\     \\\"roles\\\": [],\\n      \\\"eo:bands\\\": [\\n        {\\n          \\\"name\\\"\n        : \\\"B11\\\",\\n          \\\"full_width_half_max\\\" : 1,\\n          \\\"center_wavelength\\\"\n        : 12,\\n          \\\"common_name\\\" : \\\"lwir2\\\"\\n        }\\n      ]\\n    },\\n\n        \\   \\\"ANG\\\": {\\n      \\\"title\\\": \\\"Angle coefficients file\\\",\\n      \\\"type\\\":\n        \\\"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\n        \\     \\\"roles\\\": []\\n    },\\n    \\\"MTL\\\": {\\n      \\\"title\\\": \\\"original metadata\n        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\n        \\     \\\"roles\\\": []\\n    },\\n    \\\"BQA\\\": {\\n      \\\"title\\\": \\\"Band quality\n        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\n        \\     \\\"roles\\\": []\\n    }\\n  },\\n  \\\"links\\\": [\\n    {\\n      \\\"rel\\\": \\\"self\\\",\\n\n        \\     \\\"href\\\": \\\"./LC80300332018166LGN00.json\\\"\\n    },\\n    {\\n      \\\"rel\\\":\n        \\\"parent\\\",\\n      \\\"href\\\": \\\"../collection.json\\\"\\n    },\\n    {\\n      \\\"rel\\\":\n        \\\"collection\\\",\\n      \\\"href\\\": \\\"../collection.json\\\"\\n    },\\n    {\\n      \\\"rel\\\":\n        \\\"root\\\",\\n      \\\"href\\\": \\\"../../catalog.json\\\"\\n    }\\n  ]\\n}\\n\"\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Origin:\n      - '*'\n      Cache-Control:\n      - max-age=300\n      Connection:\n      - keep-alive\n      Content-Encoding:\n      - gzip\n      Content-Length:\n      - '1384'\n      Content-Security-Policy:\n      - default-src 'none'; style-src 'unsafe-inline'; sandbox\n      Content-Type:\n      - text/plain; charset=utf-8\n      Cross-Origin-Resource-Policy:\n      - cross-origin\n      Date:\n      - Thu, 31 Jul 2025 15:07:39 GMT\n      ETag:\n      - W/\"6da3b66dc885889ceff60c1a0618fcc959b22734a7a4d9646fe0f55f0869ca5f\"\n      Expires:\n      - Thu, 31 Jul 2025 15:12:39 GMT\n      Source-Age:\n      - '0'\n      Strict-Transport-Security:\n      - max-age=31536000\n      Vary:\n      - Authorization,Accept-Encoding\n      Via:\n      - 1.1 varnish\n      X-Cache:\n      - MISS\n      X-Cache-Hits:\n      - '0'\n      X-Content-Type-Options:\n      - nosniff\n      X-Fastly-Request-ID:\n      - 644b3f6a0cc1868ac4c1d8db5eb862be5f6656f4\n      X-Frame-Options:\n      - deny\n      X-GitHub-Request-Id:\n      - 1AD7:1EA0F5:74C855:963BCF:688B86B8\n      X-Served-By:\n      - cache-den-kden1300066-DEN\n      X-Timer:\n      - S1753974460.713381,VS0,VE111\n      X-XSS-Protection:\n      - 1; mode=block\n    status:\n      code: 200\n      message: OK\nversion: 1\n"
  },
  {
    "path": "tests/cassettes/test_client/test_query_string_in_collections_url.yaml",
    "content": "interactions:\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://paituli.csc.fi/geoserver/ogc/stac/v1\n  response:\n    body:\n      string: '{\"title\":\"Paituli STAC\",\"description\":\"Paituli STAC with Finnish data.\n        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\n        document\"},{\"href\":\"https://paituli.csc.fi/geoserver/ogc/stac/v1/?f=application%2Fyaml\",\"rel\":\"alternate\",\"type\":\"application/yaml\",\"title\":\"This\n        document as application/yaml\"},{\"href\":\"https://paituli.csc.fi/geoserver/ogc/stac/v1/?f=text%2Fhtml\",\"rel\":\"alternate\",\"type\":\"text/html\",\"title\":\"This\n        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\n        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\n        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\n        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\n        declaration as application/json\"},{\"href\":\"https://paituli.csc.fi/geoserver/ogc/stac/v1/conformance?f=application%2Fyaml\",\"rel\":\"conformance\",\"type\":\"application/yaml\",\"title\":\"Conformance\n        declaration as application/yaml\"},{\"href\":\"https://paituli.csc.fi/geoserver/ogc/stac/v1/conformance?f=text%2Fhtml\",\"rel\":\"conformance\",\"type\":\"text/html\",\"title\":\"Conformance\n        declaration as text/html\"},{\"href\":\"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections?f=application%2Fjson\",\"rel\":\"data\",\"type\":\"application/json\",\"title\":\"Collections\n        Metadata as application/json\"},{\"href\":\"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections?f=text%2Fhtml\",\"rel\":\"data\",\"type\":\"text/html\",\"title\":\"Collections\n        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\n        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\n        as text/html\",\"method\":\"GET\"},{\"href\":\"https://paituli.csc.fi/geoserver/ogc/stac/v1?f=application%2Fjson\",\"rel\":\"root\",\"type\":\"application/json\",\"title\":\"Root\n        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\n        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\n        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\n        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\n        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\n        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\n        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\"}'\n    headers:\n      API-Version:\n      - 1.0.0\n      Access-Control-Allow-Headers:\n      - Accept, Accept-Language, Cache-Control, Content-Type, DNT, If-Modified-Since,\n        Origin,Range, User-Agent, X-Requested-With\n      Access-Control-Allow-Methods:\n      - GET\n      Access-Control-Allow-Origin:\n      - '*'\n      Connection:\n      - keep-alive\n      Content-Encoding:\n      - gzip\n      Content-Security-Policy:\n      - base-uri 'self'; form-action 'self' https://paituli.csc.fi; default-src 'none';\n        child-src 'self' https://paituli.csc.fi; connect-src 'self' https://paituli.csc.fi;\n        font-src 'self' https://paituli.csc.fi; img-src 'self' https://paituli.csc.fi\n        data:; style-src 'self' https://paituli.csc.fi 'unsafe-inline'; script-src\n        'self' https://paituli.csc.fi;, frame-ancestors 'self';\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:07:52 GMT\n      Link:\n      - <https://paituli.csc.fi/geoserver/ogc/stac/v1/conformance?f=application%2Fjson>;\n        rel=\"self\"; type=\"application/json\"; title=\"This document\"\n      - <https://paituli.csc.fi/geoserver/ogc/stac/v1/conformance?f=application%2Fyaml>;\n        rel=\"alternate\"; type=\"application/yaml\"; title=\"This document as application/yaml\"\n      - <https://paituli.csc.fi/geoserver/ogc/stac/v1/conformance?f=text%2Fhtml>;\n        rel=\"alternate\"; type=\"text/html\"; title=\"This document as text/html\"\n      - <https://paituli.csc.fi/geoserver/ogc/stac/v1/?f=application%2Fjson>; rel=\"self\";\n        type=\"application/json\"; title=\"This document\"\n      - <https://paituli.csc.fi/geoserver/ogc/stac/v1/?f=application%2Fyaml>; rel=\"alternate\";\n        type=\"application/yaml\"; title=\"This document as application/yaml\"\n      - <https://paituli.csc.fi/geoserver/ogc/stac/v1/?f=text%2Fhtml>; rel=\"alternate\";\n        type=\"text/html\"; title=\"This document as text/html\"\n      Server:\n      - nginx/1.24.0\n      Set-Cookie:\n      - GS_FLOW_CONTROL=GS_CFLOW_-39b4ff7d:1985e35967f:-5142\n      Transfer-Encoding:\n      - chunked\n      X-Concurrent-Limit-ip:\n      - '10'\n      X-Concurrent-Limit-user:\n      - '10'\n      X-Concurrent-Requests-ip:\n      - '1'\n      X-Concurrent-Requests-user:\n      - '1'\n      X-Content-Type-Options:\n      - nosniff\n      X-Control-flow-delay-ms:\n      - '0'\n      X-Frame-Options:\n      - SAMEORIGIN\n    status:\n      code: 200\n      message: ''\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      Cookie:\n      - GS_FLOW_CONTROL=GS_CFLOW_-39b4ff7d:1985e35967f:-5142\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://paituli.csc.fi/geoserver/ogc/stac/v1?f=application%2Fjson\n  response:\n    body:\n      string: '{\"title\":\"Paituli STAC\",\"description\":\"Paituli STAC with Finnish data.\n        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\n        document\"},{\"href\":\"https://paituli.csc.fi/geoserver/ogc/stac/v1/?f=application%2Fyaml\",\"rel\":\"alternate\",\"type\":\"application/yaml\",\"title\":\"This\n        document as application/yaml\"},{\"href\":\"https://paituli.csc.fi/geoserver/ogc/stac/v1/?f=text%2Fhtml\",\"rel\":\"alternate\",\"type\":\"text/html\",\"title\":\"This\n        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\n        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\n        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\n        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\n        declaration as application/json\"},{\"href\":\"https://paituli.csc.fi/geoserver/ogc/stac/v1/conformance?f=application%2Fyaml\",\"rel\":\"conformance\",\"type\":\"application/yaml\",\"title\":\"Conformance\n        declaration as application/yaml\"},{\"href\":\"https://paituli.csc.fi/geoserver/ogc/stac/v1/conformance?f=text%2Fhtml\",\"rel\":\"conformance\",\"type\":\"text/html\",\"title\":\"Conformance\n        declaration as text/html\"},{\"href\":\"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections?f=application%2Fjson\",\"rel\":\"data\",\"type\":\"application/json\",\"title\":\"Collections\n        Metadata as application/json\"},{\"href\":\"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections?f=text%2Fhtml\",\"rel\":\"data\",\"type\":\"text/html\",\"title\":\"Collections\n        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\n        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\n        as text/html\",\"method\":\"GET\"},{\"href\":\"https://paituli.csc.fi/geoserver/ogc/stac/v1?f=application%2Fjson\",\"rel\":\"root\",\"type\":\"application/json\",\"title\":\"Root\n        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\n        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\n        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\n        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\n        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\n        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\n        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\"}'\n    headers:\n      API-Version:\n      - 1.0.0\n      Access-Control-Allow-Headers:\n      - Accept, Accept-Language, Cache-Control, Content-Type, DNT, If-Modified-Since,\n        Origin,Range, User-Agent, X-Requested-With\n      Access-Control-Allow-Methods:\n      - GET\n      Access-Control-Allow-Origin:\n      - '*'\n      Connection:\n      - keep-alive\n      Content-Encoding:\n      - gzip\n      Content-Security-Policy:\n      - base-uri 'self'; form-action 'self' https://paituli.csc.fi; default-src 'none';\n        child-src 'self' https://paituli.csc.fi; connect-src 'self' https://paituli.csc.fi;\n        font-src 'self' https://paituli.csc.fi; img-src 'self' https://paituli.csc.fi\n        data:; style-src 'self' https://paituli.csc.fi 'unsafe-inline'; script-src\n        'self' https://paituli.csc.fi;, frame-ancestors 'self';\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:07:53 GMT\n      Link:\n      - <https://paituli.csc.fi/geoserver/ogc/stac/v1/conformance?f=application%2Fjson>;\n        rel=\"self\"; type=\"application/json\"; title=\"This document\"\n      - <https://paituli.csc.fi/geoserver/ogc/stac/v1/conformance?f=application%2Fyaml>;\n        rel=\"alternate\"; type=\"application/yaml\"; title=\"This document as application/yaml\"\n      - <https://paituli.csc.fi/geoserver/ogc/stac/v1/conformance?f=text%2Fhtml>;\n        rel=\"alternate\"; type=\"text/html\"; title=\"This document as text/html\"\n      - <https://paituli.csc.fi/geoserver/ogc/stac/v1/?f=application%2Fjson>; rel=\"self\";\n        type=\"application/json\"; title=\"This document\"\n      - <https://paituli.csc.fi/geoserver/ogc/stac/v1/?f=application%2Fyaml>; rel=\"alternate\";\n        type=\"application/yaml\"; title=\"This document as application/yaml\"\n      - <https://paituli.csc.fi/geoserver/ogc/stac/v1/?f=text%2Fhtml>; rel=\"alternate\";\n        type=\"text/html\"; title=\"This document as text/html\"\n      Server:\n      - nginx/1.24.0\n      Set-Cookie:\n      - GS_FLOW_CONTROL=GS_CFLOW_-39b4ff7d:1985e35967f:-5142\n      Transfer-Encoding:\n      - chunked\n      X-Concurrent-Limit-ip:\n      - '10'\n      X-Concurrent-Limit-user:\n      - '10'\n      X-Concurrent-Requests-ip:\n      - '1'\n      X-Concurrent-Requests-user:\n      - '1'\n      X-Content-Type-Options:\n      - nosniff\n      X-Control-flow-delay-ms:\n      - '0'\n      X-Frame-Options:\n      - SAMEORIGIN\n    status:\n      code: 200\n      message: ''\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      Cookie:\n      - GS_FLOW_CONTROL=GS_CFLOW_-39b4ff7d:1985e35967f:-5142\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel2-l2a?f=application%2Fjson\n  response:\n    body:\n      string: \"{\\\"id\\\":\\\"sentinel2-l2a\\\",\\\"title\\\":\\\"Sentinel-2 L2A\\\",\\\"description\\\":\\\"Sentinel-2\n        products, processed to Level-2A (Surface Reflectance), a selection of mostly\n        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-25T00:00:00.000+00:00\\\"]]}},\\\"providers\\\":[{\\\"name\\\":\\\"CSC\n        Finland\\\",\\\"roles\\\":[\\\"host\\\"],\\\"url\\\":\\\"https://www.csc.fi/\\\"},{\\\"name\\\":\\\"ESA\\\",\\\"roles\\\":[\\\"producer\\\",\\\"licensor\\\"],\\\"url\\\":\\\"https://www.esa.int/\\\"},{\\\"name\\\":\\\"Maria\n        Yli-Heikkil\\xE4\\\",\\\"roles\\\":[\\\"processor\\\"]},{\\\"name\\\":\\\"Arttu Kivim\\xE4ki\\\",\\\"roles\\\":[\\\"processor\\\"]},{\\\"name\\\":\\\"Matias\n        Heino\\\",\\\"roles\\\":[\\\"processor\\\"]}],\\\"assets\\\":{\\\"metadata\\\":{\\\"href\\\":\\\"https://a3s.fi/sentinel-readme/README.txt\\\",\\\"roles\\\":[\\\"metadata\\\"]}},\\\"summaries\\\":{\\\"eo:bands\\\":[{\\\"name\\\":\\\"B01\\\",\\\"description\\\":\\\"Coastal:\n        400 - 450 nm\\\",\\\"common_name\\\":\\\"coastal\\\"},{\\\"name\\\":\\\"B02\\\",\\\"description\\\":\\\"Blue:\n        450 - 500 nm\\\",\\\"common_name\\\":\\\"blue\\\"},{\\\"name\\\":\\\"B03\\\",\\\"description\\\":\\\"Green:\n        500 - 600 nm\\\",\\\"common_name\\\":\\\"green\\\"},{\\\"name\\\":\\\"B04\\\",\\\"description\\\":\\\"Red:\n        600 - 700 nm\\\",\\\"common_name\\\":\\\"red\\\"},{\\\"name\\\":\\\"B05\\\",\\\"description\\\":\\\"Vegetation\n        Red Edge: 705 nm\\\",\\\"common_name\\\":\\\"rededge\\\"},{\\\"name\\\":\\\"B06\\\",\\\"description\\\":\\\"Vegetation\n        Red Edge: 740 nm\\\",\\\"common_name\\\":\\\"rededge\\\"},{\\\"name\\\":\\\"B07\\\",\\\"description\\\":\\\"Vegetation\n        Red Edge: 783 nm\\\",\\\"common_name\\\":\\\"rededge\\\"},{\\\"name\\\":\\\"B08\\\",\\\"description\\\":\\\"Near-IR:\n        750 - 1000 nm\\\",\\\"common_name\\\":\\\"nir\\\"},{\\\"name\\\":\\\"B8A\\\",\\\"description\\\":\\\"Near-IR:\n        750 - 900 nm\\\",\\\"common_name\\\":\\\"nir08\\\"},{\\\"name\\\":\\\"B09\\\",\\\"description\\\":\\\"Water\n        vapour: 850 - 1050 nm\\\",\\\"common_name\\\":\\\"nir09\\\"},{\\\"name\\\":\\\"B10\\\",\\\"description\\\":\\\"SWIR-Cirrus:\n        1350 - 1400 nm\\\",\\\"common_name\\\":\\\"cirrus\\\"},{\\\"name\\\":\\\"B11\\\",\\\"description\\\":\\\"SWIR16:\n        1550 - 1750 nm\\\",\\\"common_name\\\":\\\"swir16\\\"},{\\\"name\\\":\\\"B12\\\",\\\"description\\\":\\\"SWIR22:\n        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\\\"}]}\"\n    headers:\n      API-Version:\n      - 1.0.0\n      Access-Control-Allow-Headers:\n      - Accept, Accept-Language, Cache-Control, Content-Type, DNT, If-Modified-Since,\n        Origin,Range, User-Agent, X-Requested-With\n      Access-Control-Allow-Methods:\n      - GET\n      Access-Control-Allow-Origin:\n      - '*'\n      Connection:\n      - keep-alive\n      Content-Encoding:\n      - gzip\n      Content-Length:\n      - '1024'\n      Content-Security-Policy:\n      - base-uri 'self'; form-action 'self' https://paituli.csc.fi; default-src 'none';\n        child-src 'self' https://paituli.csc.fi; connect-src 'self' https://paituli.csc.fi;\n        font-src 'self' https://paituli.csc.fi; img-src 'self' https://paituli.csc.fi\n        data:; style-src 'self' https://paituli.csc.fi 'unsafe-inline'; script-src\n        'self' https://paituli.csc.fi;, frame-ancestors 'self';\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:07:54 GMT\n      Server:\n      - nginx/1.24.0\n      Set-Cookie:\n      - GS_FLOW_CONTROL=GS_CFLOW_-39b4ff7d:1985e35967f:-5142\n      X-Concurrent-Limit-ip:\n      - '10'\n      X-Concurrent-Limit-user:\n      - '10'\n      X-Concurrent-Requests-ip:\n      - '1'\n      X-Concurrent-Requests-user:\n      - '1'\n      X-Content-Type-Options:\n      - nosniff\n      X-Control-flow-delay-ms:\n      - '0'\n      X-Frame-Options:\n      - SAMEORIGIN\n    status:\n      code: 200\n      message: ''\nversion: 1\n"
  },
  {
    "path": "tests/cassettes/test_collection_client/TestCollectionClient.test_get_item.yaml",
    "content": "interactions:\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1\n  response:\n    body:\n      string: '{\"type\":\"Catalog\",\"id\":\"microsoft-pc\",\"title\":\"Microsoft Planetary\n        Computer STAC API\",\"description\":\"Searchable spatiotemporal metadata describing\n        Earth science datasets hosted by the Microsoft Planetary Computer\",\"stac_version\":\"1.0.0\",\"conformsTo\":[\"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-rc.2/item-search#filter\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-text\",\"https://api.stacspec.org/v1.0.0/item-search\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core\",\"https://api.stacspec.org/v1.0.0/item-search#sort\",\"http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter\",\"http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2\",\"https://api.stacspec.org/v1.0.0/collections\",\"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/cql2/1.0/conf/cql2-json\",\"https://api.stacspec.org/v1.0.0/ogcapi-features\",\"https://api.stacspec.org/v1.0.0/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\n        conformance classes implemented by this server\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/conformance\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        search\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/search\",\"method\":\"GET\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        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\n        Annual Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Seamless DEMs\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Surface Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Forest\n        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\n        Annual North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Annual Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Tables\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HGB:\n        Harmonized Global Biomass for 2010\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        DEM GLO-30\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        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\n        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\n        IMERG\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Rasters\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Height above Ground\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        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\n        1 Radiometrically Terrain Corrected (RTC)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Intensity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Source\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MTBS:\n        Monitoring Trends in Burn Severity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"C-CAP\n        Regional Land Cover and Change\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Cloud\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Burned Area Monthly\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        Forest/Non-Forest Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Returns\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MoBI:\n        Map of Biodiversity Importance\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ERA5\n        - PDS\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chloris\n        Biomass\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HydroForecast\n        - Kwando & Upper Zambezi Rivers\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Planet-NICFI\n        Basemaps (Analytic)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Gross Primary Productivity 8-Day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Daily Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        3DEP Lidar Classification\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Terrain Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        Gap Land Cover\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Basemaps (Visual)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Global\n        Biodiversity Information Facility (GBIF)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        World 3D-30m\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        PALSAR Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Water Availability\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Net Evapotranspiration Yearly Gap-Filled\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Census\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"JRC\n        Global Surface Water\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Flood Maps\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Thermal Anomalies/Fire Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HREA:\n        High Resolution Electricity Access\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Vegetation Indices 16-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Level-2A\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Land Surface Temperature/Emissivity Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Vegetation Indices 16-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Land\n        Cover of Canada\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Snow Cover 8-day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ECMWF\n        Open Data (real-time)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        HGT v001\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Esri\n        10-Meter Land Cover (10-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-1\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Denver\n        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\n        Land Cover (7-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Cover (13-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Use\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        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\n        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\n        Cropland Data Layers (CDLs)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Urban\n        Innovation Eclipse Sensor Data\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ESA\n        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\n        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\n        National Wetlands Inventory\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        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\n        US Tabular Climate Normals\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        Lightning Detection\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel\n        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\n        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\n        L1T\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"CIL\n        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:\n        National Agriculture Imagery Program\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        Intactness\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sea\n        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\n        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\n        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\n        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\n        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\n        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\n        Snow Cover Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-5P\n        Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        Building Footprints\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        service description\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json\"},{\"rel\":\"service-doc\",\"type\":\"text/html\",\"title\":\"OpenAPI\n        service documentation\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/docs\"}],\"stac_extensions\":[]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '3356'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:08:00 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150800Z-r17d779659c6qstkhC1DENnvqn0000000220000000006m3b\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/\n  response:\n    body:\n      string: '{\"type\":\"Catalog\",\"id\":\"microsoft-pc\",\"title\":\"Microsoft Planetary\n        Computer STAC API\",\"description\":\"Searchable spatiotemporal metadata describing\n        Earth science datasets hosted by the Microsoft Planetary Computer\",\"stac_version\":\"1.0.0\",\"conformsTo\":[\"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-rc.2/item-search#filter\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-text\",\"https://api.stacspec.org/v1.0.0/item-search\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core\",\"https://api.stacspec.org/v1.0.0/item-search#sort\",\"http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter\",\"http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2\",\"https://api.stacspec.org/v1.0.0/collections\",\"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/cql2/1.0/conf/cql2-json\",\"https://api.stacspec.org/v1.0.0/ogcapi-features\",\"https://api.stacspec.org/v1.0.0/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\n        conformance classes implemented by this server\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/conformance\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        search\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/search\",\"method\":\"GET\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        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\n        Annual Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Seamless DEMs\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Surface Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Forest\n        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\n        Annual North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Annual Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Tables\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HGB:\n        Harmonized Global Biomass for 2010\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        DEM GLO-30\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        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\n        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\n        IMERG\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Rasters\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Height above Ground\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        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\n        1 Radiometrically Terrain Corrected (RTC)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Intensity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Source\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MTBS:\n        Monitoring Trends in Burn Severity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"C-CAP\n        Regional Land Cover and Change\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Cloud\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Burned Area Monthly\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        Forest/Non-Forest Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Returns\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MoBI:\n        Map of Biodiversity Importance\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ERA5\n        - PDS\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chloris\n        Biomass\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HydroForecast\n        - Kwando & Upper Zambezi Rivers\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Planet-NICFI\n        Basemaps (Analytic)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Gross Primary Productivity 8-Day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Daily Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        3DEP Lidar Classification\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Terrain Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        Gap Land Cover\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Basemaps (Visual)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Global\n        Biodiversity Information Facility (GBIF)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        World 3D-30m\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        PALSAR Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Water Availability\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Net Evapotranspiration Yearly Gap-Filled\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Census\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"JRC\n        Global Surface Water\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Flood Maps\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Thermal Anomalies/Fire Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HREA:\n        High Resolution Electricity Access\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Vegetation Indices 16-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Level-2A\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Land Surface Temperature/Emissivity Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Vegetation Indices 16-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Land\n        Cover of Canada\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Snow Cover 8-day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ECMWF\n        Open Data (real-time)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        HGT v001\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Esri\n        10-Meter Land Cover (10-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-1\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Denver\n        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\n        Land Cover (7-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Cover (13-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Use\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        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\n        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\n        Cropland Data Layers (CDLs)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Urban\n        Innovation Eclipse Sensor Data\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ESA\n        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\n        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\n        National Wetlands Inventory\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        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\n        US Tabular Climate Normals\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        Lightning Detection\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel\n        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\n        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\n        L1T\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"CIL\n        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:\n        National Agriculture Imagery Program\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        Intactness\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sea\n        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\n        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\n        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\n        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\n        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\n        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\n        Snow Cover Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-5P\n        Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        Building Footprints\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        service description\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json\"},{\"rel\":\"service-doc\",\"type\":\"text/html\",\"title\":\"OpenAPI\n        service documentation\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/docs\"}],\"stac_extensions\":[]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '3356'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:08:01 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150801Z-r17d779659c22gb9hC1DENxd5s00000004p00000000021ec\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t\n  response:\n    body:\n      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\n        Domain\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/aster-l1t\",\"type\":\"text/html\",\"title\":\"Human\n        readable dataset overview and reference\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/aster-l1t\",\"title\":\"Human\n        readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"ASTER\n        L1T\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/aster.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"ASTER\n        L1T\"},\"geoparquet-items\":{\"href\":\"abfs://items/aster-l1t.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet\n        STAC items\",\"description\":\"Snapshot of the collection''s STAC items exported\n        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\n        yellow/green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.08},{\"gsd\":15,\"name\":\"VNIR_Band2\",\"common_name\":\"red\",\"description\":\"visible\n        red\",\"center_wavelength\":0.66,\"full_width_half_max\":0.06},{\"gsd\":15,\"name\":\"VNIR_Band3N\",\"common_name\":\"nir08\",\"description\":\"near\n        infrared\",\"center_wavelength\":0.82,\"full_width_half_max\":0.08},{\"gsd\":30,\"name\":\"SWIR_Band4\",\"common_name\":\"swir16\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":1.65,\"full_width_half_max\":0.1},{\"gsd\":30,\"name\":\"SWIR_Band5\",\"common_name\":\"swir22\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.165,\"full_width_half_max\":0.04},{\"gsd\":30,\"name\":\"SWIR_Band6\",\"common_name\":\"swir22\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.205,\"full_width_half_max\":0.04},{\"gsd\":30,\"name\":\"SWIR_Band7\",\"common_name\":\"swir22\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.26,\"full_width_half_max\":0.05},{\"gsd\":30,\"name\":\"SWIR_Band8\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.339,\"full_width_half_max\":0.07},{\"gsd\":30,\"name\":\"SWIR_Band9\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.395,\"full_width_half_max\":0.07},{\"gsd\":90,\"name\":\"TIR_Band10\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":8.3,\"full_width_half_max\":0.35},{\"gsd\":90,\"name\":\"TIR_Band11\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":8.65,\"full_width_half_max\":0.35},{\"gsd\":90,\"name\":\"TIR_Band12\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":9.11,\"full_width_half_max\":0.35},{\"gsd\":90,\"name\":\"TIR_Band13\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":10.6,\"full_width_half_max\":0.7},{\"gsd\":90,\"name\":\"TIR_Band14\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":11.3,\"full_width_half_max\":0.7}],\"platform\":[\"terra\"],\"instruments\":[\"aster\"]},\"description\":\"The\n        [ASTER](https://terra.nasa.gov/about/terra-instruments/aster) instrument,\n        launched on-board NASA''s [Terra](https://terra.nasa.gov/) satellite in 1999,\n        provides multispectral images of the Earth at 15m-90m resolution.  ASTER images\n        provide information about land surface temperature, color, elevation, and\n        mineral composition.\\n\\nThis dataset represents ASTER [L1T](https://lpdaac.usgs.gov/products/ast_l1tv003/)\n        data from 2000-2006.  L1T images have been terrain-corrected and rotated to\n        a north-up UTM projection.  Images are in [cloud-optimized GeoTIFF](https://www.cogeo.org/)\n        format.\\n\",\"item_assets\":{\"TIR\":{\"roles\":[\"data\"],\"title\":\"TIR Swath data\",\"eo:bands\":[{\"gsd\":90,\"name\":\"TIR_Band10\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":8.3,\"full_width_half_max\":0.35},{\"gsd\":90,\"name\":\"TIR_Band11\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":8.65,\"full_width_half_max\":0.35},{\"gsd\":90,\"name\":\"TIR_Band12\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":9.11,\"full_width_half_max\":0.35},{\"gsd\":90,\"name\":\"TIR_Band13\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":10.6,\"full_width_half_max\":0.7},{\"gsd\":90,\"name\":\"TIR_Band14\",\"common_name\":\"lwir\",\"description\":\"thermal\n        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\n        metadata\"},\"SWIR\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"SWIR\n        Swath data\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SWIR_Band4\",\"common_name\":\"swir\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":1.65,\"full_width_half_max\":0.1},{\"gsd\":30,\"name\":\"SWIR_Band5\",\"common_name\":\"swir\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.165,\"full_width_half_max\":0.04},{\"gsd\":30,\"name\":\"SWIR_Band6\",\"common_name\":\"swir\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.205,\"full_width_half_max\":0.04},{\"gsd\":30,\"name\":\"SWIR_Band7\",\"common_name\":\"swir\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.26,\"full_width_half_max\":0.05},{\"gsd\":30,\"name\":\"SWIR_Band8\",\"common_name\":\"swir\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.339,\"full_width_half_max\":0.07},{\"gsd\":30,\"name\":\"SWIR_Band9\",\"common_name\":\"swir\",\"description\":\"short-wave\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"VNIR\n        Swath data\",\"eo:bands\":[{\"gsd\":15,\"name\":\"VNIR_Band1\",\"common_name\":\"yellow/green\",\"description\":\"visible\n        yellow/green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.08},{\"gsd\":15,\"name\":\"VNIR_Band2\",\"common_name\":\"red\",\"description\":\"visible\n        red\",\"center_wavelength\":0.66,\"full_width_half_max\":0.06},{\"gsd\":15,\"name\":\"VNIR_Band3N\",\"common_name\":\"near\n        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\n        browse file\",\"description\":\"Geometric quality assessment report.\"},\"qa-browse\":{\"type\":\"image/jpeg\",\"roles\":[\"thumbnail\"],\"title\":\"QA\n        browse file\",\"description\":\"Single-band black and white reduced resolution\n        browse overlaid with red, green, and blue (RGB) markers for GCPs used during\n        the geometric verification quality check.\"},\"tir-browse\":{\"type\":\"image/jpeg\",\"roles\":[\"thumbnail\"],\"title\":\"Standalone\n        reduced resolution TIR\"},\"vnir-browse\":{\"type\":\"image/jpeg\",\"roles\":[\"thumbnail\"],\"title\":\"VNIR\n        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\n        ASTER instrument, launched on-board NASA''s Terra satellite in 1999, provides\n        multispectral images of the Earth at 15m-90m resolution.  This dataset contains\n        ASTER data from 2000-2006.\",\"msft:region\":\"westeurope\"}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '2034'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:08:01 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150801Z-r17d779659cxsjnnhC1DENgtwc000000025g000000001xxm\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t/items/AST_L1T_00312272006020322_20150518201805\n  response:\n    body:\n      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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"eo:bands\":[{\"name\":\"TIR_Band10\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":8.3,\"full_width_half_max\":0.35},{\"name\":\"TIR_Band11\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":8.65,\"full_width_half_max\":0.35},{\"name\":\"TIR_Band12\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":9.11,\"full_width_half_max\":0.35},{\"name\":\"TIR_Band13\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":10.6,\"full_width_half_max\":0.7},{\"name\":\"TIR_Band14\",\"common_name\":\"lwir\",\"description\":\"thermal\n        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\n        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\n        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\n        infrared\",\"center_wavelength\":1.65,\"full_width_half_max\":0.1},{\"common_name\":\"swir22\",\"name\":\"SWIR_Band5\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.165,\"full_width_half_max\":0.04},{\"common_name\":\"swir22\",\"name\":\"SWIR_Band6\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.205,\"full_width_half_max\":0.04},{\"common_name\":\"swir22\",\"name\":\"SWIR_Band7\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.26,\"full_width_half_max\":0.05},{\"name\":\"SWIR_Band8\",\"common_name\":\"swir\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.339,\"full_width_half_max\":0.07},{\"name\":\"SWIR_Band9\",\"common_name\":\"swir\",\"description\":\"short-wave\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"SWIR\n        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\n        yellow/green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.08},{\"name\":\"VNIR_Band2\",\"common_name\":\"red\",\"description\":\"visible\n        red\",\"center_wavelength\":0.66,\"full_width_half_max\":0.06},{\"common_name\":\"nir08\",\"name\":\"VNIR_Band3N\",\"description\":\"near\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"VNIR\n        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\n        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\n        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\n        browse file\",\"description\":\"Standalone reduced resolution VNIR\"},\"rendered_preview\":{\"title\":\"Rendered\n        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\"}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '5640'\n      Content-Type:\n      - application/geo+json\n      Date:\n      - Thu, 31 Jul 2025 15:08:02 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150801Z-r17d779659cnj9cghC1DENr2m800000004m0000000004wg3\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t/items/for-sure-not-a-real-id\n  response:\n    body:\n      string: '{\"code\":\"NotFoundError\",\"description\":\"Item for-sure-not-a-real-id\n        in Collection aster-l1t does not exist.\"}'\n    headers:\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '108'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:08:02 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      x-azure-ref:\n      - 20250731T150802Z-r17d779659cgb75vhC1DEN1dss000000061g000000004um5\n    status:\n      code: 404\n      message: Not Found\nversion: 1\n"
  },
  {
    "path": "tests/cassettes/test_collection_client/TestCollectionClient.test_get_item_with_item_search.yaml",
    "content": "interactions:\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1\n  response:\n    body:\n      string: '{\"type\":\"Catalog\",\"id\":\"microsoft-pc\",\"title\":\"Microsoft Planetary\n        Computer STAC API\",\"description\":\"Searchable spatiotemporal metadata describing\n        Earth science datasets hosted by the Microsoft Planetary Computer\",\"stac_version\":\"1.0.0\",\"conformsTo\":[\"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-rc.2/item-search#filter\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-text\",\"https://api.stacspec.org/v1.0.0/item-search\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core\",\"https://api.stacspec.org/v1.0.0/item-search#sort\",\"http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter\",\"http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2\",\"https://api.stacspec.org/v1.0.0/collections\",\"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/cql2/1.0/conf/cql2-json\",\"https://api.stacspec.org/v1.0.0/ogcapi-features\",\"https://api.stacspec.org/v1.0.0/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\n        conformance classes implemented by this server\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/conformance\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        search\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/search\",\"method\":\"GET\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        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\n        Annual Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Seamless DEMs\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Surface Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Forest\n        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\n        Annual North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Annual Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Tables\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HGB:\n        Harmonized Global Biomass for 2010\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        DEM GLO-30\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        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\n        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\n        IMERG\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Rasters\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Height above Ground\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        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\n        1 Radiometrically Terrain Corrected (RTC)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Intensity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Source\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MTBS:\n        Monitoring Trends in Burn Severity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"C-CAP\n        Regional Land Cover and Change\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Cloud\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Burned Area Monthly\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        Forest/Non-Forest Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Returns\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MoBI:\n        Map of Biodiversity Importance\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ERA5\n        - PDS\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chloris\n        Biomass\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HydroForecast\n        - Kwando & Upper Zambezi Rivers\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Planet-NICFI\n        Basemaps (Analytic)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Gross Primary Productivity 8-Day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Daily Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        3DEP Lidar Classification\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Terrain Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        Gap Land Cover\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Basemaps (Visual)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Global\n        Biodiversity Information Facility (GBIF)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        World 3D-30m\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        PALSAR Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Water Availability\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Net Evapotranspiration Yearly Gap-Filled\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Census\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"JRC\n        Global Surface Water\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Flood Maps\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Thermal Anomalies/Fire Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HREA:\n        High Resolution Electricity Access\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Vegetation Indices 16-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Level-2A\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Land Surface Temperature/Emissivity Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Vegetation Indices 16-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Land\n        Cover of Canada\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Snow Cover 8-day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ECMWF\n        Open Data (real-time)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        HGT v001\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Esri\n        10-Meter Land Cover (10-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-1\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Denver\n        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\n        Land Cover (7-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Cover (13-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Use\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        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\n        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\n        Cropland Data Layers (CDLs)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Urban\n        Innovation Eclipse Sensor Data\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ESA\n        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\n        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\n        National Wetlands Inventory\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        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\n        US Tabular Climate Normals\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        Lightning Detection\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel\n        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\n        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\n        L1T\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"CIL\n        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:\n        National Agriculture Imagery Program\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        Intactness\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sea\n        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\n        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\n        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\n        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\n        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\n        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\n        Snow Cover Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-5P\n        Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        Building Footprints\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        service description\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json\"},{\"rel\":\"service-doc\",\"type\":\"text/html\",\"title\":\"OpenAPI\n        service documentation\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/docs\"}],\"stac_extensions\":[]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '3356'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:08:03 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150802Z-r17d779659cgb75vhC1DEN1dss00000005xg000000009cvb\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/\n  response:\n    body:\n      string: '{\"type\":\"Catalog\",\"id\":\"microsoft-pc\",\"title\":\"Microsoft Planetary\n        Computer STAC API\",\"description\":\"Searchable spatiotemporal metadata describing\n        Earth science datasets hosted by the Microsoft Planetary Computer\",\"stac_version\":\"1.0.0\",\"conformsTo\":[\"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-rc.2/item-search#filter\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-text\",\"https://api.stacspec.org/v1.0.0/item-search\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core\",\"https://api.stacspec.org/v1.0.0/item-search#sort\",\"http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter\",\"http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2\",\"https://api.stacspec.org/v1.0.0/collections\",\"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/cql2/1.0/conf/cql2-json\",\"https://api.stacspec.org/v1.0.0/ogcapi-features\",\"https://api.stacspec.org/v1.0.0/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\n        conformance classes implemented by this server\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/conformance\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        search\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/search\",\"method\":\"GET\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        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\n        Annual Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Seamless DEMs\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Surface Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Forest\n        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\n        Annual North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Annual Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Tables\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HGB:\n        Harmonized Global Biomass for 2010\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        DEM GLO-30\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        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\n        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\n        IMERG\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Rasters\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Height above Ground\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        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\n        1 Radiometrically Terrain Corrected (RTC)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Intensity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Source\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MTBS:\n        Monitoring Trends in Burn Severity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"C-CAP\n        Regional Land Cover and Change\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Cloud\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Burned Area Monthly\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        Forest/Non-Forest Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Returns\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MoBI:\n        Map of Biodiversity Importance\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ERA5\n        - PDS\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chloris\n        Biomass\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HydroForecast\n        - Kwando & Upper Zambezi Rivers\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Planet-NICFI\n        Basemaps (Analytic)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Gross Primary Productivity 8-Day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Daily Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        3DEP Lidar Classification\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Terrain Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        Gap Land Cover\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Basemaps (Visual)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Global\n        Biodiversity Information Facility (GBIF)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        World 3D-30m\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        PALSAR Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Water Availability\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Net Evapotranspiration Yearly Gap-Filled\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Census\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"JRC\n        Global Surface Water\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Flood Maps\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Thermal Anomalies/Fire Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HREA:\n        High Resolution Electricity Access\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Vegetation Indices 16-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Level-2A\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Land Surface Temperature/Emissivity Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Vegetation Indices 16-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Land\n        Cover of Canada\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Snow Cover 8-day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ECMWF\n        Open Data (real-time)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        HGT v001\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Esri\n        10-Meter Land Cover (10-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-1\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Denver\n        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\n        Land Cover (7-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Cover (13-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Use\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        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\n        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\n        Cropland Data Layers (CDLs)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Urban\n        Innovation Eclipse Sensor Data\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ESA\n        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\n        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\n        National Wetlands Inventory\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        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\n        US Tabular Climate Normals\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        Lightning Detection\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel\n        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\n        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\n        L1T\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"CIL\n        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:\n        National Agriculture Imagery Program\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        Intactness\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sea\n        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\n        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\n        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\n        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\n        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\n        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\n        Snow Cover Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-5P\n        Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        Building Footprints\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        service description\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json\"},{\"rel\":\"service-doc\",\"type\":\"text/html\",\"title\":\"OpenAPI\n        service documentation\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/docs\"}],\"stac_extensions\":[]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '3356'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:08:03 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150803Z-r17d779659cqdtckhC1DENvakn000000025g00000000205k\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t\n  response:\n    body:\n      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\n        Domain\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/aster-l1t\",\"type\":\"text/html\",\"title\":\"Human\n        readable dataset overview and reference\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/aster-l1t\",\"title\":\"Human\n        readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"ASTER\n        L1T\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/aster.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"ASTER\n        L1T\"},\"geoparquet-items\":{\"href\":\"abfs://items/aster-l1t.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet\n        STAC items\",\"description\":\"Snapshot of the collection''s STAC items exported\n        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\n        yellow/green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.08},{\"gsd\":15,\"name\":\"VNIR_Band2\",\"common_name\":\"red\",\"description\":\"visible\n        red\",\"center_wavelength\":0.66,\"full_width_half_max\":0.06},{\"gsd\":15,\"name\":\"VNIR_Band3N\",\"common_name\":\"nir08\",\"description\":\"near\n        infrared\",\"center_wavelength\":0.82,\"full_width_half_max\":0.08},{\"gsd\":30,\"name\":\"SWIR_Band4\",\"common_name\":\"swir16\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":1.65,\"full_width_half_max\":0.1},{\"gsd\":30,\"name\":\"SWIR_Band5\",\"common_name\":\"swir22\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.165,\"full_width_half_max\":0.04},{\"gsd\":30,\"name\":\"SWIR_Band6\",\"common_name\":\"swir22\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.205,\"full_width_half_max\":0.04},{\"gsd\":30,\"name\":\"SWIR_Band7\",\"common_name\":\"swir22\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.26,\"full_width_half_max\":0.05},{\"gsd\":30,\"name\":\"SWIR_Band8\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.339,\"full_width_half_max\":0.07},{\"gsd\":30,\"name\":\"SWIR_Band9\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.395,\"full_width_half_max\":0.07},{\"gsd\":90,\"name\":\"TIR_Band10\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":8.3,\"full_width_half_max\":0.35},{\"gsd\":90,\"name\":\"TIR_Band11\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":8.65,\"full_width_half_max\":0.35},{\"gsd\":90,\"name\":\"TIR_Band12\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":9.11,\"full_width_half_max\":0.35},{\"gsd\":90,\"name\":\"TIR_Band13\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":10.6,\"full_width_half_max\":0.7},{\"gsd\":90,\"name\":\"TIR_Band14\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":11.3,\"full_width_half_max\":0.7}],\"platform\":[\"terra\"],\"instruments\":[\"aster\"]},\"description\":\"The\n        [ASTER](https://terra.nasa.gov/about/terra-instruments/aster) instrument,\n        launched on-board NASA''s [Terra](https://terra.nasa.gov/) satellite in 1999,\n        provides multispectral images of the Earth at 15m-90m resolution.  ASTER images\n        provide information about land surface temperature, color, elevation, and\n        mineral composition.\\n\\nThis dataset represents ASTER [L1T](https://lpdaac.usgs.gov/products/ast_l1tv003/)\n        data from 2000-2006.  L1T images have been terrain-corrected and rotated to\n        a north-up UTM projection.  Images are in [cloud-optimized GeoTIFF](https://www.cogeo.org/)\n        format.\\n\",\"item_assets\":{\"TIR\":{\"roles\":[\"data\"],\"title\":\"TIR Swath data\",\"eo:bands\":[{\"gsd\":90,\"name\":\"TIR_Band10\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":8.3,\"full_width_half_max\":0.35},{\"gsd\":90,\"name\":\"TIR_Band11\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":8.65,\"full_width_half_max\":0.35},{\"gsd\":90,\"name\":\"TIR_Band12\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":9.11,\"full_width_half_max\":0.35},{\"gsd\":90,\"name\":\"TIR_Band13\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":10.6,\"full_width_half_max\":0.7},{\"gsd\":90,\"name\":\"TIR_Band14\",\"common_name\":\"lwir\",\"description\":\"thermal\n        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\n        metadata\"},\"SWIR\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"SWIR\n        Swath data\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SWIR_Band4\",\"common_name\":\"swir\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":1.65,\"full_width_half_max\":0.1},{\"gsd\":30,\"name\":\"SWIR_Band5\",\"common_name\":\"swir\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.165,\"full_width_half_max\":0.04},{\"gsd\":30,\"name\":\"SWIR_Band6\",\"common_name\":\"swir\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.205,\"full_width_half_max\":0.04},{\"gsd\":30,\"name\":\"SWIR_Band7\",\"common_name\":\"swir\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.26,\"full_width_half_max\":0.05},{\"gsd\":30,\"name\":\"SWIR_Band8\",\"common_name\":\"swir\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.339,\"full_width_half_max\":0.07},{\"gsd\":30,\"name\":\"SWIR_Band9\",\"common_name\":\"swir\",\"description\":\"short-wave\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"VNIR\n        Swath data\",\"eo:bands\":[{\"gsd\":15,\"name\":\"VNIR_Band1\",\"common_name\":\"yellow/green\",\"description\":\"visible\n        yellow/green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.08},{\"gsd\":15,\"name\":\"VNIR_Band2\",\"common_name\":\"red\",\"description\":\"visible\n        red\",\"center_wavelength\":0.66,\"full_width_half_max\":0.06},{\"gsd\":15,\"name\":\"VNIR_Band3N\",\"common_name\":\"near\n        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\n        browse file\",\"description\":\"Geometric quality assessment report.\"},\"qa-browse\":{\"type\":\"image/jpeg\",\"roles\":[\"thumbnail\"],\"title\":\"QA\n        browse file\",\"description\":\"Single-band black and white reduced resolution\n        browse overlaid with red, green, and blue (RGB) markers for GCPs used during\n        the geometric verification quality check.\"},\"tir-browse\":{\"type\":\"image/jpeg\",\"roles\":[\"thumbnail\"],\"title\":\"Standalone\n        reduced resolution TIR\"},\"vnir-browse\":{\"type\":\"image/jpeg\",\"roles\":[\"thumbnail\"],\"title\":\"VNIR\n        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\n        ASTER instrument, launched on-board NASA''s Terra satellite in 1999, provides\n        multispectral images of the Earth at 15m-90m resolution.  This dataset contains\n        ASTER data from 2000-2006.\",\"msft:region\":\"westeurope\"}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '2034'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:08:04 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150803Z-r17d779659c22gb9hC1DENxd5s00000004h00000000075uh\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/search?ids=AST_L1T_00312272006020322_20150518201805&collections=aster-l1t\n  response:\n    body:\n      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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"eo:bands\":[{\"name\":\"TIR_Band10\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":8.3,\"full_width_half_max\":0.35},{\"name\":\"TIR_Band11\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":8.65,\"full_width_half_max\":0.35},{\"name\":\"TIR_Band12\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":9.11,\"full_width_half_max\":0.35},{\"name\":\"TIR_Band13\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":10.6,\"full_width_half_max\":0.7},{\"name\":\"TIR_Band14\",\"common_name\":\"lwir\",\"description\":\"thermal\n        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\n        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\n        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\n        infrared\",\"center_wavelength\":1.65,\"full_width_half_max\":0.1},{\"common_name\":\"swir22\",\"name\":\"SWIR_Band5\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.165,\"full_width_half_max\":0.04},{\"common_name\":\"swir22\",\"name\":\"SWIR_Band6\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.205,\"full_width_half_max\":0.04},{\"common_name\":\"swir22\",\"name\":\"SWIR_Band7\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.26,\"full_width_half_max\":0.05},{\"name\":\"SWIR_Band8\",\"common_name\":\"swir\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.339,\"full_width_half_max\":0.07},{\"name\":\"SWIR_Band9\",\"common_name\":\"swir\",\"description\":\"short-wave\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"SWIR\n        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\n        yellow/green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.08},{\"name\":\"VNIR_Band2\",\"common_name\":\"red\",\"description\":\"visible\n        red\",\"center_wavelength\":0.66,\"full_width_half_max\":0.06},{\"common_name\":\"nir08\",\"name\":\"VNIR_Band3N\",\"description\":\"near\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"VNIR\n        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\n        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\n        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\n        browse file\",\"description\":\"Standalone reduced resolution VNIR\"},\"rendered_preview\":{\"title\":\"Rendered\n        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\"}]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '5684'\n      Content-Type:\n      - application/geo+json\n      Date:\n      - Thu, 31 Jul 2025 15:08:05 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150804Z-r17d779659cgb75vhC1DEN1dss0000000630000000002y80\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/search?ids=for-sure-not-a-real-id&collections=aster-l1t\n  response:\n    body:\n      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\"}]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '313'\n      Content-Type:\n      - application/geo+json\n      Date:\n      - Thu, 31 Jul 2025 15:08:05 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      x-azure-ref:\n      - 20250731T150805Z-r17d779659cp5mbvhC1DEN7mgn00000003k0000000007hn3\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t/items?collections=aster-l1t\n  response:\n    body:\n      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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"eo:bands\":[{\"name\":\"TIR_Band10\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":8.3,\"full_width_half_max\":0.35},{\"name\":\"TIR_Band11\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":8.65,\"full_width_half_max\":0.35},{\"name\":\"TIR_Band12\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":9.11,\"full_width_half_max\":0.35},{\"name\":\"TIR_Band13\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":10.6,\"full_width_half_max\":0.7},{\"name\":\"TIR_Band14\",\"common_name\":\"lwir\",\"description\":\"thermal\n        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\n        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\n        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\n        infrared\",\"center_wavelength\":1.65,\"full_width_half_max\":0.1},{\"common_name\":\"swir22\",\"name\":\"SWIR_Band5\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.165,\"full_width_half_max\":0.04},{\"common_name\":\"swir22\",\"name\":\"SWIR_Band6\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.205,\"full_width_half_max\":0.04},{\"common_name\":\"swir22\",\"name\":\"SWIR_Band7\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.26,\"full_width_half_max\":0.05},{\"name\":\"SWIR_Band8\",\"common_name\":\"swir\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.339,\"full_width_half_max\":0.07},{\"name\":\"SWIR_Band9\",\"common_name\":\"swir\",\"description\":\"short-wave\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"SWIR\n        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\n        yellow/green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.08},{\"name\":\"VNIR_Band2\",\"common_name\":\"red\",\"description\":\"visible\n        red\",\"center_wavelength\":0.66,\"full_width_half_max\":0.06},{\"common_name\":\"nir08\",\"name\":\"VNIR_Band3N\",\"description\":\"near\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"VNIR\n        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\n        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\n        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\n        browse file\",\"description\":\"Standalone reduced resolution VNIR\"},\"rendered_preview\":{\"title\":\"Rendered\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"eo:bands\":[{\"name\":\"TIR_Band10\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":8.3,\"full_width_half_max\":0.35},{\"name\":\"TIR_Band11\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":8.65,\"full_width_half_max\":0.35},{\"name\":\"TIR_Band12\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":9.11,\"full_width_half_max\":0.35},{\"name\":\"TIR_Band13\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":10.6,\"full_width_half_max\":0.7},{\"name\":\"TIR_Band14\",\"common_name\":\"lwir\",\"description\":\"thermal\n        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\n        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\n        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\n        infrared\",\"center_wavelength\":1.65,\"full_width_half_max\":0.1},{\"common_name\":\"swir22\",\"name\":\"SWIR_Band5\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.165,\"full_width_half_max\":0.04},{\"common_name\":\"swir22\",\"name\":\"SWIR_Band6\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.205,\"full_width_half_max\":0.04},{\"common_name\":\"swir22\",\"name\":\"SWIR_Band7\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.26,\"full_width_half_max\":0.05},{\"name\":\"SWIR_Band8\",\"common_name\":\"swir\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.339,\"full_width_half_max\":0.07},{\"name\":\"SWIR_Band9\",\"common_name\":\"swir\",\"description\":\"short-wave\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"SWIR\n        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\n        yellow/green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.08},{\"name\":\"VNIR_Band2\",\"common_name\":\"red\",\"description\":\"visible\n        red\",\"center_wavelength\":0.66,\"full_width_half_max\":0.06},{\"common_name\":\"nir08\",\"name\":\"VNIR_Band3N\",\"description\":\"near\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"VNIR\n        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\n        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\n        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\n        browse file\",\"description\":\"Standalone reduced resolution VNIR\"},\"rendered_preview\":{\"title\":\"Rendered\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"eo:bands\":[{\"name\":\"TIR_Band10\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":8.3,\"full_width_half_max\":0.35},{\"name\":\"TIR_Band11\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":8.65,\"full_width_half_max\":0.35},{\"name\":\"TIR_Band12\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":9.11,\"full_width_half_max\":0.35},{\"name\":\"TIR_Band13\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":10.6,\"full_width_half_max\":0.7},{\"name\":\"TIR_Band14\",\"common_name\":\"lwir\",\"description\":\"thermal\n        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\n        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\n        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\n        infrared\",\"center_wavelength\":1.65,\"full_width_half_max\":0.1},{\"common_name\":\"swir22\",\"name\":\"SWIR_Band5\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.165,\"full_width_half_max\":0.04},{\"common_name\":\"swir22\",\"name\":\"SWIR_Band6\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.205,\"full_width_half_max\":0.04},{\"common_name\":\"swir22\",\"name\":\"SWIR_Band7\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.26,\"full_width_half_max\":0.05},{\"name\":\"SWIR_Band8\",\"common_name\":\"swir\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.339,\"full_width_half_max\":0.07},{\"name\":\"SWIR_Band9\",\"common_name\":\"swir\",\"description\":\"short-wave\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"SWIR\n        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\n        yellow/green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.08},{\"name\":\"VNIR_Band2\",\"common_name\":\"red\",\"description\":\"visible\n        red\",\"center_wavelength\":0.66,\"full_width_half_max\":0.06},{\"common_name\":\"nir08\",\"name\":\"VNIR_Band3N\",\"description\":\"near\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"VNIR\n        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\n        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\n        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\n        browse file\",\"description\":\"Standalone reduced resolution VNIR\"},\"rendered_preview\":{\"title\":\"Rendered\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"eo:bands\":[{\"name\":\"TIR_Band10\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":8.3,\"full_width_half_max\":0.35},{\"name\":\"TIR_Band11\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":8.65,\"full_width_half_max\":0.35},{\"name\":\"TIR_Band12\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":9.11,\"full_width_half_max\":0.35},{\"name\":\"TIR_Band13\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":10.6,\"full_width_half_max\":0.7},{\"name\":\"TIR_Band14\",\"common_name\":\"lwir\",\"description\":\"thermal\n        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\n        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\n        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\n        infrared\",\"center_wavelength\":1.65,\"full_width_half_max\":0.1},{\"common_name\":\"swir22\",\"name\":\"SWIR_Band5\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.165,\"full_width_half_max\":0.04},{\"common_name\":\"swir22\",\"name\":\"SWIR_Band6\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.205,\"full_width_half_max\":0.04},{\"common_name\":\"swir22\",\"name\":\"SWIR_Band7\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.26,\"full_width_half_max\":0.05},{\"name\":\"SWIR_Band8\",\"common_name\":\"swir\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.339,\"full_width_half_max\":0.07},{\"name\":\"SWIR_Band9\",\"common_name\":\"swir\",\"description\":\"short-wave\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"SWIR\n        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\n        yellow/green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.08},{\"name\":\"VNIR_Band2\",\"common_name\":\"red\",\"description\":\"visible\n        red\",\"center_wavelength\":0.66,\"full_width_half_max\":0.06},{\"common_name\":\"nir08\",\"name\":\"VNIR_Band3N\",\"description\":\"near\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"VNIR\n        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\n        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\n        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\n        browse file\",\"description\":\"Standalone reduced resolution VNIR\"},\"rendered_preview\":{\"title\":\"Rendered\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"eo:bands\":[{\"name\":\"TIR_Band10\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":8.3,\"full_width_half_max\":0.35},{\"name\":\"TIR_Band11\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":8.65,\"full_width_half_max\":0.35},{\"name\":\"TIR_Band12\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":9.11,\"full_width_half_max\":0.35},{\"name\":\"TIR_Band13\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":10.6,\"full_width_half_max\":0.7},{\"name\":\"TIR_Band14\",\"common_name\":\"lwir\",\"description\":\"thermal\n        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\n        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\n        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\n        infrared\",\"center_wavelength\":1.65,\"full_width_half_max\":0.1},{\"common_name\":\"swir22\",\"name\":\"SWIR_Band5\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.165,\"full_width_half_max\":0.04},{\"common_name\":\"swir22\",\"name\":\"SWIR_Band6\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.205,\"full_width_half_max\":0.04},{\"common_name\":\"swir22\",\"name\":\"SWIR_Band7\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.26,\"full_width_half_max\":0.05},{\"name\":\"SWIR_Band8\",\"common_name\":\"swir\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.339,\"full_width_half_max\":0.07},{\"name\":\"SWIR_Band9\",\"common_name\":\"swir\",\"description\":\"short-wave\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"SWIR\n        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\n        yellow/green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.08},{\"name\":\"VNIR_Band2\",\"common_name\":\"red\",\"description\":\"visible\n        red\",\"center_wavelength\":0.66,\"full_width_half_max\":0.06},{\"common_name\":\"nir08\",\"name\":\"VNIR_Band3N\",\"description\":\"near\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"VNIR\n        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\n        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\n        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\n        browse file\",\"description\":\"Standalone reduced resolution VNIR\"},\"rendered_preview\":{\"title\":\"Rendered\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"eo:bands\":[{\"name\":\"TIR_Band10\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":8.3,\"full_width_half_max\":0.35},{\"name\":\"TIR_Band11\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":8.65,\"full_width_half_max\":0.35},{\"name\":\"TIR_Band12\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":9.11,\"full_width_half_max\":0.35},{\"name\":\"TIR_Band13\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":10.6,\"full_width_half_max\":0.7},{\"name\":\"TIR_Band14\",\"common_name\":\"lwir\",\"description\":\"thermal\n        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\n        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\n        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\n        infrared\",\"center_wavelength\":1.65,\"full_width_half_max\":0.1},{\"common_name\":\"swir22\",\"name\":\"SWIR_Band5\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.165,\"full_width_half_max\":0.04},{\"common_name\":\"swir22\",\"name\":\"SWIR_Band6\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.205,\"full_width_half_max\":0.04},{\"common_name\":\"swir22\",\"name\":\"SWIR_Band7\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.26,\"full_width_half_max\":0.05},{\"name\":\"SWIR_Band8\",\"common_name\":\"swir\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.339,\"full_width_half_max\":0.07},{\"name\":\"SWIR_Band9\",\"common_name\":\"swir\",\"description\":\"short-wave\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"SWIR\n        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\n        yellow/green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.08},{\"name\":\"VNIR_Band2\",\"common_name\":\"red\",\"description\":\"visible\n        red\",\"center_wavelength\":0.66,\"full_width_half_max\":0.06},{\"common_name\":\"nir08\",\"name\":\"VNIR_Band3N\",\"description\":\"near\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"VNIR\n        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\n        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\n        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\n        browse file\",\"description\":\"Standalone reduced resolution VNIR\"},\"rendered_preview\":{\"title\":\"Rendered\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"eo:bands\":[{\"name\":\"TIR_Band10\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":8.3,\"full_width_half_max\":0.35},{\"name\":\"TIR_Band11\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":8.65,\"full_width_half_max\":0.35},{\"name\":\"TIR_Band12\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":9.11,\"full_width_half_max\":0.35},{\"name\":\"TIR_Band13\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":10.6,\"full_width_half_max\":0.7},{\"name\":\"TIR_Band14\",\"common_name\":\"lwir\",\"description\":\"thermal\n        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\n        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\n        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\n        infrared\",\"center_wavelength\":1.65,\"full_width_half_max\":0.1},{\"common_name\":\"swir22\",\"name\":\"SWIR_Band5\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.165,\"full_width_half_max\":0.04},{\"common_name\":\"swir22\",\"name\":\"SWIR_Band6\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.205,\"full_width_half_max\":0.04},{\"common_name\":\"swir22\",\"name\":\"SWIR_Band7\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.26,\"full_width_half_max\":0.05},{\"name\":\"SWIR_Band8\",\"common_name\":\"swir\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.339,\"full_width_half_max\":0.07},{\"name\":\"SWIR_Band9\",\"common_name\":\"swir\",\"description\":\"short-wave\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"SWIR\n        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\n        yellow/green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.08},{\"name\":\"VNIR_Band2\",\"common_name\":\"red\",\"description\":\"visible\n        red\",\"center_wavelength\":0.66,\"full_width_half_max\":0.06},{\"common_name\":\"nir08\",\"name\":\"VNIR_Band3N\",\"description\":\"near\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"VNIR\n        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\n        browse file\",\"description\":\"Geometric quality assessment report.\"},\"tilejson\":{\"title\":\"TileJSON\n        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\n        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\n        browse file\",\"description\":\"Standalone reduced resolution VNIR\"},\"rendered_preview\":{\"title\":\"Rendered\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"eo:bands\":[{\"name\":\"TIR_Band10\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":8.3,\"full_width_half_max\":0.35},{\"name\":\"TIR_Band11\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":8.65,\"full_width_half_max\":0.35},{\"name\":\"TIR_Band12\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":9.11,\"full_width_half_max\":0.35},{\"name\":\"TIR_Band13\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":10.6,\"full_width_half_max\":0.7},{\"name\":\"TIR_Band14\",\"common_name\":\"lwir\",\"description\":\"thermal\n        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\n        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\n        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\n        infrared\",\"center_wavelength\":1.65,\"full_width_half_max\":0.1},{\"common_name\":\"swir22\",\"name\":\"SWIR_Band5\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.165,\"full_width_half_max\":0.04},{\"common_name\":\"swir22\",\"name\":\"SWIR_Band6\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.205,\"full_width_half_max\":0.04},{\"common_name\":\"swir22\",\"name\":\"SWIR_Band7\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.26,\"full_width_half_max\":0.05},{\"name\":\"SWIR_Band8\",\"common_name\":\"swir\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.339,\"full_width_half_max\":0.07},{\"name\":\"SWIR_Band9\",\"common_name\":\"swir\",\"description\":\"short-wave\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"SWIR\n        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\n        yellow/green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.08},{\"name\":\"VNIR_Band2\",\"common_name\":\"red\",\"description\":\"visible\n        red\",\"center_wavelength\":0.66,\"full_width_half_max\":0.06},{\"common_name\":\"nir08\",\"name\":\"VNIR_Band3N\",\"description\":\"near\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"VNIR\n        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\n        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\n        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\n        browse file\",\"description\":\"Standalone reduced resolution VNIR\"},\"rendered_preview\":{\"title\":\"Rendered\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"eo:bands\":[{\"name\":\"TIR_Band10\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":8.3,\"full_width_half_max\":0.35},{\"name\":\"TIR_Band11\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":8.65,\"full_width_half_max\":0.35},{\"name\":\"TIR_Band12\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":9.11,\"full_width_half_max\":0.35},{\"name\":\"TIR_Band13\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":10.6,\"full_width_half_max\":0.7},{\"name\":\"TIR_Band14\",\"common_name\":\"lwir\",\"description\":\"thermal\n        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\n        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\n        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\n        infrared\",\"center_wavelength\":1.65,\"full_width_half_max\":0.1},{\"common_name\":\"swir22\",\"name\":\"SWIR_Band5\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.165,\"full_width_half_max\":0.04},{\"common_name\":\"swir22\",\"name\":\"SWIR_Band6\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.205,\"full_width_half_max\":0.04},{\"common_name\":\"swir22\",\"name\":\"SWIR_Band7\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.26,\"full_width_half_max\":0.05},{\"name\":\"SWIR_Band8\",\"common_name\":\"swir\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.339,\"full_width_half_max\":0.07},{\"name\":\"SWIR_Band9\",\"common_name\":\"swir\",\"description\":\"short-wave\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"SWIR\n        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\n        yellow/green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.08},{\"name\":\"VNIR_Band2\",\"common_name\":\"red\",\"description\":\"visible\n        red\",\"center_wavelength\":0.66,\"full_width_half_max\":0.06},{\"common_name\":\"nir08\",\"name\":\"VNIR_Band3N\",\"description\":\"near\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"VNIR\n        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\n        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\n        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\n        browse file\",\"description\":\"Standalone reduced resolution VNIR\"},\"rendered_preview\":{\"title\":\"Rendered\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"eo:bands\":[{\"name\":\"TIR_Band10\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":8.3,\"full_width_half_max\":0.35},{\"name\":\"TIR_Band11\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":8.65,\"full_width_half_max\":0.35},{\"name\":\"TIR_Band12\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":9.11,\"full_width_half_max\":0.35},{\"name\":\"TIR_Band13\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":10.6,\"full_width_half_max\":0.7},{\"name\":\"TIR_Band14\",\"common_name\":\"lwir\",\"description\":\"thermal\n        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\n        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\n        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\n        infrared\",\"center_wavelength\":1.65,\"full_width_half_max\":0.1},{\"common_name\":\"swir22\",\"name\":\"SWIR_Band5\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.165,\"full_width_half_max\":0.04},{\"common_name\":\"swir22\",\"name\":\"SWIR_Band6\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.205,\"full_width_half_max\":0.04},{\"common_name\":\"swir22\",\"name\":\"SWIR_Band7\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.26,\"full_width_half_max\":0.05},{\"name\":\"SWIR_Band8\",\"common_name\":\"swir\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.339,\"full_width_half_max\":0.07},{\"name\":\"SWIR_Band9\",\"common_name\":\"swir\",\"description\":\"short-wave\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"SWIR\n        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\n        yellow/green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.08},{\"name\":\"VNIR_Band2\",\"common_name\":\"red\",\"description\":\"visible\n        red\",\"center_wavelength\":0.66,\"full_width_half_max\":0.06},{\"common_name\":\"nir08\",\"name\":\"VNIR_Band3N\",\"description\":\"near\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"VNIR\n        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\n        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\n        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\n        browse file\",\"description\":\"Standalone reduced resolution VNIR\"},\"rendered_preview\":{\"title\":\"Rendered\n        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\"}]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '21773'\n      Content-Type:\n      - application/geo+json\n      Date:\n      - Thu, 31 Jul 2025 15:08:05 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150805Z-r17d779659c9xxfhhC1DEN13nn00000005yg000000008ht2\n    status:\n      code: 200\n      message: OK\nversion: 1\n"
  },
  {
    "path": "tests/cassettes/test_collection_client/TestCollectionClient.test_get_items.yaml",
    "content": "interactions:\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1\n  response:\n    body:\n      string: '{\"type\":\"Catalog\",\"id\":\"microsoft-pc\",\"title\":\"Microsoft Planetary\n        Computer STAC API\",\"description\":\"Searchable spatiotemporal metadata describing\n        Earth science datasets hosted by the Microsoft Planetary Computer\",\"stac_version\":\"1.0.0\",\"conformsTo\":[\"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-rc.2/item-search#filter\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-text\",\"https://api.stacspec.org/v1.0.0/item-search\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core\",\"https://api.stacspec.org/v1.0.0/item-search#sort\",\"http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter\",\"http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2\",\"https://api.stacspec.org/v1.0.0/collections\",\"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/cql2/1.0/conf/cql2-json\",\"https://api.stacspec.org/v1.0.0/ogcapi-features\",\"https://api.stacspec.org/v1.0.0/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\n        conformance classes implemented by this server\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/conformance\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        search\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/search\",\"method\":\"GET\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        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\n        Annual Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Seamless DEMs\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Surface Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Forest\n        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\n        Annual North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Annual Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Tables\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HGB:\n        Harmonized Global Biomass for 2010\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        DEM GLO-30\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        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\n        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\n        IMERG\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Rasters\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Height above Ground\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        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\n        1 Radiometrically Terrain Corrected (RTC)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Intensity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Source\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MTBS:\n        Monitoring Trends in Burn Severity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"C-CAP\n        Regional Land Cover and Change\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Cloud\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Burned Area Monthly\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        Forest/Non-Forest Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Returns\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MoBI:\n        Map of Biodiversity Importance\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ERA5\n        - PDS\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chloris\n        Biomass\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HydroForecast\n        - Kwando & Upper Zambezi Rivers\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Planet-NICFI\n        Basemaps (Analytic)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Gross Primary Productivity 8-Day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Daily Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        3DEP Lidar Classification\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Terrain Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        Gap Land Cover\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Basemaps (Visual)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Global\n        Biodiversity Information Facility (GBIF)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        World 3D-30m\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        PALSAR Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Water Availability\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Net Evapotranspiration Yearly Gap-Filled\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Census\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"JRC\n        Global Surface Water\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Flood Maps\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Thermal Anomalies/Fire Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HREA:\n        High Resolution Electricity Access\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Vegetation Indices 16-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Level-2A\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Land Surface Temperature/Emissivity Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Vegetation Indices 16-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Land\n        Cover of Canada\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Snow Cover 8-day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ECMWF\n        Open Data (real-time)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        HGT v001\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Esri\n        10-Meter Land Cover (10-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-1\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Denver\n        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\n        Land Cover (7-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Cover (13-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Use\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        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\n        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\n        Cropland Data Layers (CDLs)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Urban\n        Innovation Eclipse Sensor Data\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ESA\n        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\n        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\n        National Wetlands Inventory\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        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\n        US Tabular Climate Normals\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        Lightning Detection\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel\n        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\n        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\n        L1T\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"CIL\n        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:\n        National Agriculture Imagery Program\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        Intactness\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sea\n        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\n        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\n        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\n        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\n        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\n        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\n        Snow Cover Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-5P\n        Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        Building Footprints\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        service description\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json\"},{\"rel\":\"service-doc\",\"type\":\"text/html\",\"title\":\"OpenAPI\n        service documentation\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/docs\"}],\"stac_extensions\":[]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '3356'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:07:56 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150756Z-r17d779659cqk8pthC1DENd5mn00000003m00000000078q7\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/\n  response:\n    body:\n      string: '{\"type\":\"Catalog\",\"id\":\"microsoft-pc\",\"title\":\"Microsoft Planetary\n        Computer STAC API\",\"description\":\"Searchable spatiotemporal metadata describing\n        Earth science datasets hosted by the Microsoft Planetary Computer\",\"stac_version\":\"1.0.0\",\"conformsTo\":[\"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-rc.2/item-search#filter\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-text\",\"https://api.stacspec.org/v1.0.0/item-search\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core\",\"https://api.stacspec.org/v1.0.0/item-search#sort\",\"http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter\",\"http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2\",\"https://api.stacspec.org/v1.0.0/collections\",\"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/cql2/1.0/conf/cql2-json\",\"https://api.stacspec.org/v1.0.0/ogcapi-features\",\"https://api.stacspec.org/v1.0.0/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\n        conformance classes implemented by this server\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/conformance\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        search\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/search\",\"method\":\"GET\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        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\n        Annual Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Seamless DEMs\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Surface Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Forest\n        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\n        Annual North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Annual Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Tables\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HGB:\n        Harmonized Global Biomass for 2010\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        DEM GLO-30\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        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\n        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\n        IMERG\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Rasters\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Height above Ground\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        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\n        1 Radiometrically Terrain Corrected (RTC)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Intensity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Source\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MTBS:\n        Monitoring Trends in Burn Severity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"C-CAP\n        Regional Land Cover and Change\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Cloud\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Burned Area Monthly\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        Forest/Non-Forest Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Returns\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MoBI:\n        Map of Biodiversity Importance\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ERA5\n        - PDS\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chloris\n        Biomass\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HydroForecast\n        - Kwando & Upper Zambezi Rivers\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Planet-NICFI\n        Basemaps (Analytic)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Gross Primary Productivity 8-Day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Daily Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        3DEP Lidar Classification\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Terrain Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        Gap Land Cover\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Basemaps (Visual)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Global\n        Biodiversity Information Facility (GBIF)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        World 3D-30m\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        PALSAR Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Water Availability\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Net Evapotranspiration Yearly Gap-Filled\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Census\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"JRC\n        Global Surface Water\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Flood Maps\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Thermal Anomalies/Fire Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HREA:\n        High Resolution Electricity Access\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Vegetation Indices 16-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Level-2A\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Land Surface Temperature/Emissivity Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Vegetation Indices 16-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Land\n        Cover of Canada\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Snow Cover 8-day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ECMWF\n        Open Data (real-time)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        HGT v001\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Esri\n        10-Meter Land Cover (10-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-1\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Denver\n        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\n        Land Cover (7-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Cover (13-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Use\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        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\n        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\n        Cropland Data Layers (CDLs)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Urban\n        Innovation Eclipse Sensor Data\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ESA\n        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\n        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\n        National Wetlands Inventory\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        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\n        US Tabular Climate Normals\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        Lightning Detection\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel\n        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\n        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\n        L1T\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"CIL\n        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:\n        National Agriculture Imagery Program\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        Intactness\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sea\n        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\n        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\n        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\n        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\n        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\n        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\n        Snow Cover Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-5P\n        Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        Building Footprints\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        service description\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json\"},{\"rel\":\"service-doc\",\"type\":\"text/html\",\"title\":\"OpenAPI\n        service documentation\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/docs\"}],\"stac_extensions\":[]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '3356'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:07:57 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150756Z-r17d779659c44ntghC1DEN26ng0000000260000000002w96\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t\n  response:\n    body:\n      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\n        Domain\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/aster-l1t\",\"type\":\"text/html\",\"title\":\"Human\n        readable dataset overview and reference\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/aster-l1t\",\"title\":\"Human\n        readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"ASTER\n        L1T\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/aster.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"ASTER\n        L1T\"},\"geoparquet-items\":{\"href\":\"abfs://items/aster-l1t.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet\n        STAC items\",\"description\":\"Snapshot of the collection''s STAC items exported\n        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\n        yellow/green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.08},{\"gsd\":15,\"name\":\"VNIR_Band2\",\"common_name\":\"red\",\"description\":\"visible\n        red\",\"center_wavelength\":0.66,\"full_width_half_max\":0.06},{\"gsd\":15,\"name\":\"VNIR_Band3N\",\"common_name\":\"nir08\",\"description\":\"near\n        infrared\",\"center_wavelength\":0.82,\"full_width_half_max\":0.08},{\"gsd\":30,\"name\":\"SWIR_Band4\",\"common_name\":\"swir16\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":1.65,\"full_width_half_max\":0.1},{\"gsd\":30,\"name\":\"SWIR_Band5\",\"common_name\":\"swir22\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.165,\"full_width_half_max\":0.04},{\"gsd\":30,\"name\":\"SWIR_Band6\",\"common_name\":\"swir22\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.205,\"full_width_half_max\":0.04},{\"gsd\":30,\"name\":\"SWIR_Band7\",\"common_name\":\"swir22\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.26,\"full_width_half_max\":0.05},{\"gsd\":30,\"name\":\"SWIR_Band8\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.339,\"full_width_half_max\":0.07},{\"gsd\":30,\"name\":\"SWIR_Band9\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.395,\"full_width_half_max\":0.07},{\"gsd\":90,\"name\":\"TIR_Band10\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":8.3,\"full_width_half_max\":0.35},{\"gsd\":90,\"name\":\"TIR_Band11\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":8.65,\"full_width_half_max\":0.35},{\"gsd\":90,\"name\":\"TIR_Band12\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":9.11,\"full_width_half_max\":0.35},{\"gsd\":90,\"name\":\"TIR_Band13\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":10.6,\"full_width_half_max\":0.7},{\"gsd\":90,\"name\":\"TIR_Band14\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":11.3,\"full_width_half_max\":0.7}],\"platform\":[\"terra\"],\"instruments\":[\"aster\"]},\"description\":\"The\n        [ASTER](https://terra.nasa.gov/about/terra-instruments/aster) instrument,\n        launched on-board NASA''s [Terra](https://terra.nasa.gov/) satellite in 1999,\n        provides multispectral images of the Earth at 15m-90m resolution.  ASTER images\n        provide information about land surface temperature, color, elevation, and\n        mineral composition.\\n\\nThis dataset represents ASTER [L1T](https://lpdaac.usgs.gov/products/ast_l1tv003/)\n        data from 2000-2006.  L1T images have been terrain-corrected and rotated to\n        a north-up UTM projection.  Images are in [cloud-optimized GeoTIFF](https://www.cogeo.org/)\n        format.\\n\",\"item_assets\":{\"TIR\":{\"roles\":[\"data\"],\"title\":\"TIR Swath data\",\"eo:bands\":[{\"gsd\":90,\"name\":\"TIR_Band10\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":8.3,\"full_width_half_max\":0.35},{\"gsd\":90,\"name\":\"TIR_Band11\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":8.65,\"full_width_half_max\":0.35},{\"gsd\":90,\"name\":\"TIR_Band12\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":9.11,\"full_width_half_max\":0.35},{\"gsd\":90,\"name\":\"TIR_Band13\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":10.6,\"full_width_half_max\":0.7},{\"gsd\":90,\"name\":\"TIR_Band14\",\"common_name\":\"lwir\",\"description\":\"thermal\n        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\n        metadata\"},\"SWIR\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"SWIR\n        Swath data\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SWIR_Band4\",\"common_name\":\"swir\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":1.65,\"full_width_half_max\":0.1},{\"gsd\":30,\"name\":\"SWIR_Band5\",\"common_name\":\"swir\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.165,\"full_width_half_max\":0.04},{\"gsd\":30,\"name\":\"SWIR_Band6\",\"common_name\":\"swir\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.205,\"full_width_half_max\":0.04},{\"gsd\":30,\"name\":\"SWIR_Band7\",\"common_name\":\"swir\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.26,\"full_width_half_max\":0.05},{\"gsd\":30,\"name\":\"SWIR_Band8\",\"common_name\":\"swir\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.339,\"full_width_half_max\":0.07},{\"gsd\":30,\"name\":\"SWIR_Band9\",\"common_name\":\"swir\",\"description\":\"short-wave\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"VNIR\n        Swath data\",\"eo:bands\":[{\"gsd\":15,\"name\":\"VNIR_Band1\",\"common_name\":\"yellow/green\",\"description\":\"visible\n        yellow/green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.08},{\"gsd\":15,\"name\":\"VNIR_Band2\",\"common_name\":\"red\",\"description\":\"visible\n        red\",\"center_wavelength\":0.66,\"full_width_half_max\":0.06},{\"gsd\":15,\"name\":\"VNIR_Band3N\",\"common_name\":\"near\n        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\n        browse file\",\"description\":\"Geometric quality assessment report.\"},\"qa-browse\":{\"type\":\"image/jpeg\",\"roles\":[\"thumbnail\"],\"title\":\"QA\n        browse file\",\"description\":\"Single-band black and white reduced resolution\n        browse overlaid with red, green, and blue (RGB) markers for GCPs used during\n        the geometric verification quality check.\"},\"tir-browse\":{\"type\":\"image/jpeg\",\"roles\":[\"thumbnail\"],\"title\":\"Standalone\n        reduced resolution TIR\"},\"vnir-browse\":{\"type\":\"image/jpeg\",\"roles\":[\"thumbnail\"],\"title\":\"VNIR\n        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\n        ASTER instrument, launched on-board NASA''s Terra satellite in 1999, provides\n        multispectral images of the Earth at 15m-90m resolution.  This dataset contains\n        ASTER data from 2000-2006.\",\"msft:region\":\"westeurope\"}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '2034'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:07:57 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150757Z-r17d779659c6gjnhhC1DENcrvc000000021g000000007ph4\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t/items?collections=aster-l1t\n  response:\n    body:\n      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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"eo:bands\":[{\"name\":\"TIR_Band10\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":8.3,\"full_width_half_max\":0.35},{\"name\":\"TIR_Band11\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":8.65,\"full_width_half_max\":0.35},{\"name\":\"TIR_Band12\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":9.11,\"full_width_half_max\":0.35},{\"name\":\"TIR_Band13\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":10.6,\"full_width_half_max\":0.7},{\"name\":\"TIR_Band14\",\"common_name\":\"lwir\",\"description\":\"thermal\n        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\n        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\n        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\n        infrared\",\"center_wavelength\":1.65,\"full_width_half_max\":0.1},{\"common_name\":\"swir22\",\"name\":\"SWIR_Band5\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.165,\"full_width_half_max\":0.04},{\"common_name\":\"swir22\",\"name\":\"SWIR_Band6\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.205,\"full_width_half_max\":0.04},{\"common_name\":\"swir22\",\"name\":\"SWIR_Band7\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.26,\"full_width_half_max\":0.05},{\"name\":\"SWIR_Band8\",\"common_name\":\"swir\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.339,\"full_width_half_max\":0.07},{\"name\":\"SWIR_Band9\",\"common_name\":\"swir\",\"description\":\"short-wave\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"SWIR\n        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\n        yellow/green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.08},{\"name\":\"VNIR_Band2\",\"common_name\":\"red\",\"description\":\"visible\n        red\",\"center_wavelength\":0.66,\"full_width_half_max\":0.06},{\"common_name\":\"nir08\",\"name\":\"VNIR_Band3N\",\"description\":\"near\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"VNIR\n        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\n        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\n        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\n        browse file\",\"description\":\"Standalone reduced resolution VNIR\"},\"rendered_preview\":{\"title\":\"Rendered\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"eo:bands\":[{\"name\":\"TIR_Band10\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":8.3,\"full_width_half_max\":0.35},{\"name\":\"TIR_Band11\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":8.65,\"full_width_half_max\":0.35},{\"name\":\"TIR_Band12\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":9.11,\"full_width_half_max\":0.35},{\"name\":\"TIR_Band13\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":10.6,\"full_width_half_max\":0.7},{\"name\":\"TIR_Band14\",\"common_name\":\"lwir\",\"description\":\"thermal\n        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\n        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\n        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\n        infrared\",\"center_wavelength\":1.65,\"full_width_half_max\":0.1},{\"common_name\":\"swir22\",\"name\":\"SWIR_Band5\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.165,\"full_width_half_max\":0.04},{\"common_name\":\"swir22\",\"name\":\"SWIR_Band6\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.205,\"full_width_half_max\":0.04},{\"common_name\":\"swir22\",\"name\":\"SWIR_Band7\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.26,\"full_width_half_max\":0.05},{\"name\":\"SWIR_Band8\",\"common_name\":\"swir\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.339,\"full_width_half_max\":0.07},{\"name\":\"SWIR_Band9\",\"common_name\":\"swir\",\"description\":\"short-wave\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"SWIR\n        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\n        yellow/green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.08},{\"name\":\"VNIR_Band2\",\"common_name\":\"red\",\"description\":\"visible\n        red\",\"center_wavelength\":0.66,\"full_width_half_max\":0.06},{\"common_name\":\"nir08\",\"name\":\"VNIR_Band3N\",\"description\":\"near\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"VNIR\n        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\n        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\n        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\n        browse file\",\"description\":\"Standalone reduced resolution VNIR\"},\"rendered_preview\":{\"title\":\"Rendered\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"eo:bands\":[{\"name\":\"TIR_Band10\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":8.3,\"full_width_half_max\":0.35},{\"name\":\"TIR_Band11\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":8.65,\"full_width_half_max\":0.35},{\"name\":\"TIR_Band12\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":9.11,\"full_width_half_max\":0.35},{\"name\":\"TIR_Band13\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":10.6,\"full_width_half_max\":0.7},{\"name\":\"TIR_Band14\",\"common_name\":\"lwir\",\"description\":\"thermal\n        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\n        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\n        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\n        infrared\",\"center_wavelength\":1.65,\"full_width_half_max\":0.1},{\"common_name\":\"swir22\",\"name\":\"SWIR_Band5\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.165,\"full_width_half_max\":0.04},{\"common_name\":\"swir22\",\"name\":\"SWIR_Band6\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.205,\"full_width_half_max\":0.04},{\"common_name\":\"swir22\",\"name\":\"SWIR_Band7\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.26,\"full_width_half_max\":0.05},{\"name\":\"SWIR_Band8\",\"common_name\":\"swir\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.339,\"full_width_half_max\":0.07},{\"name\":\"SWIR_Band9\",\"common_name\":\"swir\",\"description\":\"short-wave\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"SWIR\n        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\n        yellow/green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.08},{\"name\":\"VNIR_Band2\",\"common_name\":\"red\",\"description\":\"visible\n        red\",\"center_wavelength\":0.66,\"full_width_half_max\":0.06},{\"common_name\":\"nir08\",\"name\":\"VNIR_Band3N\",\"description\":\"near\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"VNIR\n        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\n        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\n        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\n        browse file\",\"description\":\"Standalone reduced resolution VNIR\"},\"rendered_preview\":{\"title\":\"Rendered\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"eo:bands\":[{\"name\":\"TIR_Band10\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":8.3,\"full_width_half_max\":0.35},{\"name\":\"TIR_Band11\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":8.65,\"full_width_half_max\":0.35},{\"name\":\"TIR_Band12\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":9.11,\"full_width_half_max\":0.35},{\"name\":\"TIR_Band13\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":10.6,\"full_width_half_max\":0.7},{\"name\":\"TIR_Band14\",\"common_name\":\"lwir\",\"description\":\"thermal\n        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\n        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\n        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\n        infrared\",\"center_wavelength\":1.65,\"full_width_half_max\":0.1},{\"common_name\":\"swir22\",\"name\":\"SWIR_Band5\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.165,\"full_width_half_max\":0.04},{\"common_name\":\"swir22\",\"name\":\"SWIR_Band6\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.205,\"full_width_half_max\":0.04},{\"common_name\":\"swir22\",\"name\":\"SWIR_Band7\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.26,\"full_width_half_max\":0.05},{\"name\":\"SWIR_Band8\",\"common_name\":\"swir\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.339,\"full_width_half_max\":0.07},{\"name\":\"SWIR_Band9\",\"common_name\":\"swir\",\"description\":\"short-wave\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"SWIR\n        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\n        yellow/green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.08},{\"name\":\"VNIR_Band2\",\"common_name\":\"red\",\"description\":\"visible\n        red\",\"center_wavelength\":0.66,\"full_width_half_max\":0.06},{\"common_name\":\"nir08\",\"name\":\"VNIR_Band3N\",\"description\":\"near\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"VNIR\n        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\n        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\n        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\n        browse file\",\"description\":\"Standalone reduced resolution VNIR\"},\"rendered_preview\":{\"title\":\"Rendered\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"eo:bands\":[{\"name\":\"TIR_Band10\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":8.3,\"full_width_half_max\":0.35},{\"name\":\"TIR_Band11\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":8.65,\"full_width_half_max\":0.35},{\"name\":\"TIR_Band12\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":9.11,\"full_width_half_max\":0.35},{\"name\":\"TIR_Band13\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":10.6,\"full_width_half_max\":0.7},{\"name\":\"TIR_Band14\",\"common_name\":\"lwir\",\"description\":\"thermal\n        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\n        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\n        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\n        infrared\",\"center_wavelength\":1.65,\"full_width_half_max\":0.1},{\"common_name\":\"swir22\",\"name\":\"SWIR_Band5\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.165,\"full_width_half_max\":0.04},{\"common_name\":\"swir22\",\"name\":\"SWIR_Band6\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.205,\"full_width_half_max\":0.04},{\"common_name\":\"swir22\",\"name\":\"SWIR_Band7\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.26,\"full_width_half_max\":0.05},{\"name\":\"SWIR_Band8\",\"common_name\":\"swir\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.339,\"full_width_half_max\":0.07},{\"name\":\"SWIR_Band9\",\"common_name\":\"swir\",\"description\":\"short-wave\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"SWIR\n        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\n        yellow/green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.08},{\"name\":\"VNIR_Band2\",\"common_name\":\"red\",\"description\":\"visible\n        red\",\"center_wavelength\":0.66,\"full_width_half_max\":0.06},{\"common_name\":\"nir08\",\"name\":\"VNIR_Band3N\",\"description\":\"near\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"VNIR\n        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\n        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\n        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\n        browse file\",\"description\":\"Standalone reduced resolution VNIR\"},\"rendered_preview\":{\"title\":\"Rendered\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"eo:bands\":[{\"name\":\"TIR_Band10\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":8.3,\"full_width_half_max\":0.35},{\"name\":\"TIR_Band11\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":8.65,\"full_width_half_max\":0.35},{\"name\":\"TIR_Band12\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":9.11,\"full_width_half_max\":0.35},{\"name\":\"TIR_Band13\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":10.6,\"full_width_half_max\":0.7},{\"name\":\"TIR_Band14\",\"common_name\":\"lwir\",\"description\":\"thermal\n        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\n        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\n        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\n        infrared\",\"center_wavelength\":1.65,\"full_width_half_max\":0.1},{\"common_name\":\"swir22\",\"name\":\"SWIR_Band5\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.165,\"full_width_half_max\":0.04},{\"common_name\":\"swir22\",\"name\":\"SWIR_Band6\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.205,\"full_width_half_max\":0.04},{\"common_name\":\"swir22\",\"name\":\"SWIR_Band7\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.26,\"full_width_half_max\":0.05},{\"name\":\"SWIR_Band8\",\"common_name\":\"swir\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.339,\"full_width_half_max\":0.07},{\"name\":\"SWIR_Band9\",\"common_name\":\"swir\",\"description\":\"short-wave\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"SWIR\n        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\n        yellow/green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.08},{\"name\":\"VNIR_Band2\",\"common_name\":\"red\",\"description\":\"visible\n        red\",\"center_wavelength\":0.66,\"full_width_half_max\":0.06},{\"common_name\":\"nir08\",\"name\":\"VNIR_Band3N\",\"description\":\"near\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"VNIR\n        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\n        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\n        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\n        browse file\",\"description\":\"Standalone reduced resolution VNIR\"},\"rendered_preview\":{\"title\":\"Rendered\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"eo:bands\":[{\"name\":\"TIR_Band10\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":8.3,\"full_width_half_max\":0.35},{\"name\":\"TIR_Band11\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":8.65,\"full_width_half_max\":0.35},{\"name\":\"TIR_Band12\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":9.11,\"full_width_half_max\":0.35},{\"name\":\"TIR_Band13\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":10.6,\"full_width_half_max\":0.7},{\"name\":\"TIR_Band14\",\"common_name\":\"lwir\",\"description\":\"thermal\n        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\n        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\n        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\n        infrared\",\"center_wavelength\":1.65,\"full_width_half_max\":0.1},{\"common_name\":\"swir22\",\"name\":\"SWIR_Band5\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.165,\"full_width_half_max\":0.04},{\"common_name\":\"swir22\",\"name\":\"SWIR_Band6\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.205,\"full_width_half_max\":0.04},{\"common_name\":\"swir22\",\"name\":\"SWIR_Band7\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.26,\"full_width_half_max\":0.05},{\"name\":\"SWIR_Band8\",\"common_name\":\"swir\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.339,\"full_width_half_max\":0.07},{\"name\":\"SWIR_Band9\",\"common_name\":\"swir\",\"description\":\"short-wave\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"SWIR\n        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\n        yellow/green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.08},{\"name\":\"VNIR_Band2\",\"common_name\":\"red\",\"description\":\"visible\n        red\",\"center_wavelength\":0.66,\"full_width_half_max\":0.06},{\"common_name\":\"nir08\",\"name\":\"VNIR_Band3N\",\"description\":\"near\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"VNIR\n        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\n        browse file\",\"description\":\"Geometric quality assessment report.\"},\"tilejson\":{\"title\":\"TileJSON\n        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\n        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\n        browse file\",\"description\":\"Standalone reduced resolution VNIR\"},\"rendered_preview\":{\"title\":\"Rendered\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"eo:bands\":[{\"name\":\"TIR_Band10\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":8.3,\"full_width_half_max\":0.35},{\"name\":\"TIR_Band11\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":8.65,\"full_width_half_max\":0.35},{\"name\":\"TIR_Band12\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":9.11,\"full_width_half_max\":0.35},{\"name\":\"TIR_Band13\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":10.6,\"full_width_half_max\":0.7},{\"name\":\"TIR_Band14\",\"common_name\":\"lwir\",\"description\":\"thermal\n        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\n        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\n        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\n        infrared\",\"center_wavelength\":1.65,\"full_width_half_max\":0.1},{\"common_name\":\"swir22\",\"name\":\"SWIR_Band5\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.165,\"full_width_half_max\":0.04},{\"common_name\":\"swir22\",\"name\":\"SWIR_Band6\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.205,\"full_width_half_max\":0.04},{\"common_name\":\"swir22\",\"name\":\"SWIR_Band7\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.26,\"full_width_half_max\":0.05},{\"name\":\"SWIR_Band8\",\"common_name\":\"swir\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.339,\"full_width_half_max\":0.07},{\"name\":\"SWIR_Band9\",\"common_name\":\"swir\",\"description\":\"short-wave\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"SWIR\n        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\n        yellow/green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.08},{\"name\":\"VNIR_Band2\",\"common_name\":\"red\",\"description\":\"visible\n        red\",\"center_wavelength\":0.66,\"full_width_half_max\":0.06},{\"common_name\":\"nir08\",\"name\":\"VNIR_Band3N\",\"description\":\"near\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"VNIR\n        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\n        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\n        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\n        browse file\",\"description\":\"Standalone reduced resolution VNIR\"},\"rendered_preview\":{\"title\":\"Rendered\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"eo:bands\":[{\"name\":\"TIR_Band10\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":8.3,\"full_width_half_max\":0.35},{\"name\":\"TIR_Band11\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":8.65,\"full_width_half_max\":0.35},{\"name\":\"TIR_Band12\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":9.11,\"full_width_half_max\":0.35},{\"name\":\"TIR_Band13\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":10.6,\"full_width_half_max\":0.7},{\"name\":\"TIR_Band14\",\"common_name\":\"lwir\",\"description\":\"thermal\n        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\n        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\n        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\n        infrared\",\"center_wavelength\":1.65,\"full_width_half_max\":0.1},{\"common_name\":\"swir22\",\"name\":\"SWIR_Band5\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.165,\"full_width_half_max\":0.04},{\"common_name\":\"swir22\",\"name\":\"SWIR_Band6\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.205,\"full_width_half_max\":0.04},{\"common_name\":\"swir22\",\"name\":\"SWIR_Band7\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.26,\"full_width_half_max\":0.05},{\"name\":\"SWIR_Band8\",\"common_name\":\"swir\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.339,\"full_width_half_max\":0.07},{\"name\":\"SWIR_Band9\",\"common_name\":\"swir\",\"description\":\"short-wave\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"SWIR\n        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\n        yellow/green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.08},{\"name\":\"VNIR_Band2\",\"common_name\":\"red\",\"description\":\"visible\n        red\",\"center_wavelength\":0.66,\"full_width_half_max\":0.06},{\"common_name\":\"nir08\",\"name\":\"VNIR_Band3N\",\"description\":\"near\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"VNIR\n        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\n        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\n        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\n        browse file\",\"description\":\"Standalone reduced resolution VNIR\"},\"rendered_preview\":{\"title\":\"Rendered\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"eo:bands\":[{\"name\":\"TIR_Band10\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":8.3,\"full_width_half_max\":0.35},{\"name\":\"TIR_Band11\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":8.65,\"full_width_half_max\":0.35},{\"name\":\"TIR_Band12\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":9.11,\"full_width_half_max\":0.35},{\"name\":\"TIR_Band13\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":10.6,\"full_width_half_max\":0.7},{\"name\":\"TIR_Band14\",\"common_name\":\"lwir\",\"description\":\"thermal\n        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\n        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\n        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\n        infrared\",\"center_wavelength\":1.65,\"full_width_half_max\":0.1},{\"common_name\":\"swir22\",\"name\":\"SWIR_Band5\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.165,\"full_width_half_max\":0.04},{\"common_name\":\"swir22\",\"name\":\"SWIR_Band6\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.205,\"full_width_half_max\":0.04},{\"common_name\":\"swir22\",\"name\":\"SWIR_Band7\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.26,\"full_width_half_max\":0.05},{\"name\":\"SWIR_Band8\",\"common_name\":\"swir\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.339,\"full_width_half_max\":0.07},{\"name\":\"SWIR_Band9\",\"common_name\":\"swir\",\"description\":\"short-wave\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"SWIR\n        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\n        yellow/green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.08},{\"name\":\"VNIR_Band2\",\"common_name\":\"red\",\"description\":\"visible\n        red\",\"center_wavelength\":0.66,\"full_width_half_max\":0.06},{\"common_name\":\"nir08\",\"name\":\"VNIR_Band3N\",\"description\":\"near\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"VNIR\n        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\n        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\n        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\n        browse file\",\"description\":\"Standalone reduced resolution VNIR\"},\"rendered_preview\":{\"title\":\"Rendered\n        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\"}]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '21773'\n      Content-Type:\n      - application/geo+json\n      Date:\n      - Thu, 31 Jul 2025 15:07:58 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150757Z-r17d779659c9xxfhhC1DEN13nn0000000610000000005ye5\n    status:\n      code: 200\n      message: OK\nversion: 1\n"
  },
  {
    "path": "tests/cassettes/test_collection_client/TestCollectionClient.test_get_items_with_ids.yaml",
    "content": "interactions:\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1\n  response:\n    body:\n      string: '{\"type\":\"Catalog\",\"id\":\"microsoft-pc\",\"title\":\"Microsoft Planetary\n        Computer STAC API\",\"description\":\"Searchable spatiotemporal metadata describing\n        Earth science datasets hosted by the Microsoft Planetary Computer\",\"stac_version\":\"1.0.0\",\"conformsTo\":[\"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-rc.2/item-search#filter\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-text\",\"https://api.stacspec.org/v1.0.0/item-search\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core\",\"https://api.stacspec.org/v1.0.0/item-search#sort\",\"http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter\",\"http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2\",\"https://api.stacspec.org/v1.0.0/collections\",\"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/cql2/1.0/conf/cql2-json\",\"https://api.stacspec.org/v1.0.0/ogcapi-features\",\"https://api.stacspec.org/v1.0.0/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\n        conformance classes implemented by this server\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/conformance\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        search\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/search\",\"method\":\"GET\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        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\n        Annual Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Seamless DEMs\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Surface Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Forest\n        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\n        Annual North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Annual Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Tables\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HGB:\n        Harmonized Global Biomass for 2010\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        DEM GLO-30\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        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\n        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\n        IMERG\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Rasters\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Height above Ground\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        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\n        1 Radiometrically Terrain Corrected (RTC)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Intensity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Source\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MTBS:\n        Monitoring Trends in Burn Severity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"C-CAP\n        Regional Land Cover and Change\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Cloud\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Burned Area Monthly\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        Forest/Non-Forest Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Returns\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MoBI:\n        Map of Biodiversity Importance\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ERA5\n        - PDS\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chloris\n        Biomass\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HydroForecast\n        - Kwando & Upper Zambezi Rivers\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Planet-NICFI\n        Basemaps (Analytic)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Gross Primary Productivity 8-Day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Daily Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        3DEP Lidar Classification\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Terrain Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        Gap Land Cover\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Basemaps (Visual)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Global\n        Biodiversity Information Facility (GBIF)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        World 3D-30m\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        PALSAR Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Water Availability\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Net Evapotranspiration Yearly Gap-Filled\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Census\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"JRC\n        Global Surface Water\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Flood Maps\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Thermal Anomalies/Fire Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HREA:\n        High Resolution Electricity Access\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Vegetation Indices 16-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Level-2A\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Land Surface Temperature/Emissivity Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Vegetation Indices 16-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Land\n        Cover of Canada\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Snow Cover 8-day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ECMWF\n        Open Data (real-time)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        HGT v001\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Esri\n        10-Meter Land Cover (10-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-1\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Denver\n        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\n        Land Cover (7-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Cover (13-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Use\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        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\n        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\n        Cropland Data Layers (CDLs)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Urban\n        Innovation Eclipse Sensor Data\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ESA\n        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\n        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\n        National Wetlands Inventory\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        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\n        US Tabular Climate Normals\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        Lightning Detection\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel\n        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\n        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\n        L1T\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"CIL\n        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:\n        National Agriculture Imagery Program\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        Intactness\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sea\n        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\n        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\n        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\n        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\n        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\n        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\n        Snow Cover Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-5P\n        Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        Building Footprints\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        service description\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json\"},{\"rel\":\"service-doc\",\"type\":\"text/html\",\"title\":\"OpenAPI\n        service documentation\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/docs\"}],\"stac_extensions\":[]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '3356'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:07:58 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150758Z-r17d779659c9xxfhhC1DEN13nn0000000610000000005ykr\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/\n  response:\n    body:\n      string: '{\"type\":\"Catalog\",\"id\":\"microsoft-pc\",\"title\":\"Microsoft Planetary\n        Computer STAC API\",\"description\":\"Searchable spatiotemporal metadata describing\n        Earth science datasets hosted by the Microsoft Planetary Computer\",\"stac_version\":\"1.0.0\",\"conformsTo\":[\"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-rc.2/item-search#filter\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-text\",\"https://api.stacspec.org/v1.0.0/item-search\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core\",\"https://api.stacspec.org/v1.0.0/item-search#sort\",\"http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter\",\"http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2\",\"https://api.stacspec.org/v1.0.0/collections\",\"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/cql2/1.0/conf/cql2-json\",\"https://api.stacspec.org/v1.0.0/ogcapi-features\",\"https://api.stacspec.org/v1.0.0/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\n        conformance classes implemented by this server\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/conformance\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        search\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/search\",\"method\":\"GET\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        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\n        Annual Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Seamless DEMs\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Surface Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Forest\n        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\n        Annual North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Annual Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Tables\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HGB:\n        Harmonized Global Biomass for 2010\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        DEM GLO-30\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        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\n        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\n        IMERG\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Rasters\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Height above Ground\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        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\n        1 Radiometrically Terrain Corrected (RTC)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Intensity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Source\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MTBS:\n        Monitoring Trends in Burn Severity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"C-CAP\n        Regional Land Cover and Change\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Cloud\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Burned Area Monthly\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        Forest/Non-Forest Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Returns\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MoBI:\n        Map of Biodiversity Importance\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ERA5\n        - PDS\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chloris\n        Biomass\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HydroForecast\n        - Kwando & Upper Zambezi Rivers\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Planet-NICFI\n        Basemaps (Analytic)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Gross Primary Productivity 8-Day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Daily Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        3DEP Lidar Classification\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Terrain Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        Gap Land Cover\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Basemaps (Visual)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Global\n        Biodiversity Information Facility (GBIF)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        World 3D-30m\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        PALSAR Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Water Availability\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Net Evapotranspiration Yearly Gap-Filled\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Census\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"JRC\n        Global Surface Water\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Flood Maps\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Thermal Anomalies/Fire Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HREA:\n        High Resolution Electricity Access\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Vegetation Indices 16-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Level-2A\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Land Surface Temperature/Emissivity Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Vegetation Indices 16-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Land\n        Cover of Canada\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Snow Cover 8-day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ECMWF\n        Open Data (real-time)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        HGT v001\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Esri\n        10-Meter Land Cover (10-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-1\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Denver\n        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\n        Land Cover (7-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Cover (13-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Use\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        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\n        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\n        Cropland Data Layers (CDLs)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Urban\n        Innovation Eclipse Sensor Data\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ESA\n        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\n        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\n        National Wetlands Inventory\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        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\n        US Tabular Climate Normals\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        Lightning Detection\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel\n        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\n        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\n        L1T\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"CIL\n        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:\n        National Agriculture Imagery Program\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        Intactness\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sea\n        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\n        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\n        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\n        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\n        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\n        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\n        Snow Cover Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-5P\n        Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        Building Footprints\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        service description\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json\"},{\"rel\":\"service-doc\",\"type\":\"text/html\",\"title\":\"OpenAPI\n        service documentation\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/docs\"}],\"stac_extensions\":[]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '3356'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:07:59 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150758Z-r17d779659cspvb8hC1DENa2x400000004f0000000009skg\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t\n  response:\n    body:\n      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\n        Domain\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/aster-l1t\",\"type\":\"text/html\",\"title\":\"Human\n        readable dataset overview and reference\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/aster-l1t\",\"title\":\"Human\n        readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"ASTER\n        L1T\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/aster.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"ASTER\n        L1T\"},\"geoparquet-items\":{\"href\":\"abfs://items/aster-l1t.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet\n        STAC items\",\"description\":\"Snapshot of the collection''s STAC items exported\n        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\n        yellow/green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.08},{\"gsd\":15,\"name\":\"VNIR_Band2\",\"common_name\":\"red\",\"description\":\"visible\n        red\",\"center_wavelength\":0.66,\"full_width_half_max\":0.06},{\"gsd\":15,\"name\":\"VNIR_Band3N\",\"common_name\":\"nir08\",\"description\":\"near\n        infrared\",\"center_wavelength\":0.82,\"full_width_half_max\":0.08},{\"gsd\":30,\"name\":\"SWIR_Band4\",\"common_name\":\"swir16\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":1.65,\"full_width_half_max\":0.1},{\"gsd\":30,\"name\":\"SWIR_Band5\",\"common_name\":\"swir22\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.165,\"full_width_half_max\":0.04},{\"gsd\":30,\"name\":\"SWIR_Band6\",\"common_name\":\"swir22\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.205,\"full_width_half_max\":0.04},{\"gsd\":30,\"name\":\"SWIR_Band7\",\"common_name\":\"swir22\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.26,\"full_width_half_max\":0.05},{\"gsd\":30,\"name\":\"SWIR_Band8\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.339,\"full_width_half_max\":0.07},{\"gsd\":30,\"name\":\"SWIR_Band9\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.395,\"full_width_half_max\":0.07},{\"gsd\":90,\"name\":\"TIR_Band10\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":8.3,\"full_width_half_max\":0.35},{\"gsd\":90,\"name\":\"TIR_Band11\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":8.65,\"full_width_half_max\":0.35},{\"gsd\":90,\"name\":\"TIR_Band12\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":9.11,\"full_width_half_max\":0.35},{\"gsd\":90,\"name\":\"TIR_Band13\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":10.6,\"full_width_half_max\":0.7},{\"gsd\":90,\"name\":\"TIR_Band14\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":11.3,\"full_width_half_max\":0.7}],\"platform\":[\"terra\"],\"instruments\":[\"aster\"]},\"description\":\"The\n        [ASTER](https://terra.nasa.gov/about/terra-instruments/aster) instrument,\n        launched on-board NASA''s [Terra](https://terra.nasa.gov/) satellite in 1999,\n        provides multispectral images of the Earth at 15m-90m resolution.  ASTER images\n        provide information about land surface temperature, color, elevation, and\n        mineral composition.\\n\\nThis dataset represents ASTER [L1T](https://lpdaac.usgs.gov/products/ast_l1tv003/)\n        data from 2000-2006.  L1T images have been terrain-corrected and rotated to\n        a north-up UTM projection.  Images are in [cloud-optimized GeoTIFF](https://www.cogeo.org/)\n        format.\\n\",\"item_assets\":{\"TIR\":{\"roles\":[\"data\"],\"title\":\"TIR Swath data\",\"eo:bands\":[{\"gsd\":90,\"name\":\"TIR_Band10\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":8.3,\"full_width_half_max\":0.35},{\"gsd\":90,\"name\":\"TIR_Band11\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":8.65,\"full_width_half_max\":0.35},{\"gsd\":90,\"name\":\"TIR_Band12\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":9.11,\"full_width_half_max\":0.35},{\"gsd\":90,\"name\":\"TIR_Band13\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":10.6,\"full_width_half_max\":0.7},{\"gsd\":90,\"name\":\"TIR_Band14\",\"common_name\":\"lwir\",\"description\":\"thermal\n        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\n        metadata\"},\"SWIR\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"SWIR\n        Swath data\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SWIR_Band4\",\"common_name\":\"swir\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":1.65,\"full_width_half_max\":0.1},{\"gsd\":30,\"name\":\"SWIR_Band5\",\"common_name\":\"swir\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.165,\"full_width_half_max\":0.04},{\"gsd\":30,\"name\":\"SWIR_Band6\",\"common_name\":\"swir\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.205,\"full_width_half_max\":0.04},{\"gsd\":30,\"name\":\"SWIR_Band7\",\"common_name\":\"swir\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.26,\"full_width_half_max\":0.05},{\"gsd\":30,\"name\":\"SWIR_Band8\",\"common_name\":\"swir\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.339,\"full_width_half_max\":0.07},{\"gsd\":30,\"name\":\"SWIR_Band9\",\"common_name\":\"swir\",\"description\":\"short-wave\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"VNIR\n        Swath data\",\"eo:bands\":[{\"gsd\":15,\"name\":\"VNIR_Band1\",\"common_name\":\"yellow/green\",\"description\":\"visible\n        yellow/green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.08},{\"gsd\":15,\"name\":\"VNIR_Band2\",\"common_name\":\"red\",\"description\":\"visible\n        red\",\"center_wavelength\":0.66,\"full_width_half_max\":0.06},{\"gsd\":15,\"name\":\"VNIR_Band3N\",\"common_name\":\"near\n        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\n        browse file\",\"description\":\"Geometric quality assessment report.\"},\"qa-browse\":{\"type\":\"image/jpeg\",\"roles\":[\"thumbnail\"],\"title\":\"QA\n        browse file\",\"description\":\"Single-band black and white reduced resolution\n        browse overlaid with red, green, and blue (RGB) markers for GCPs used during\n        the geometric verification quality check.\"},\"tir-browse\":{\"type\":\"image/jpeg\",\"roles\":[\"thumbnail\"],\"title\":\"Standalone\n        reduced resolution TIR\"},\"vnir-browse\":{\"type\":\"image/jpeg\",\"roles\":[\"thumbnail\"],\"title\":\"VNIR\n        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\n        ASTER instrument, launched on-board NASA''s Terra satellite in 1999, provides\n        multispectral images of the Earth at 15m-90m resolution.  This dataset contains\n        ASTER data from 2000-2006.\",\"msft:region\":\"westeurope\"}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '2034'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:07:59 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150759Z-r17d779659cnzmbkhC1DENc1cg0000000600000000006vqw\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    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\n  response:\n    body:\n      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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"eo:bands\":[{\"name\":\"TIR_Band10\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":8.3,\"full_width_half_max\":0.35},{\"name\":\"TIR_Band11\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":8.65,\"full_width_half_max\":0.35},{\"name\":\"TIR_Band12\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":9.11,\"full_width_half_max\":0.35},{\"name\":\"TIR_Band13\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":10.6,\"full_width_half_max\":0.7},{\"name\":\"TIR_Band14\",\"common_name\":\"lwir\",\"description\":\"thermal\n        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\n        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\n        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\n        infrared\",\"center_wavelength\":1.65,\"full_width_half_max\":0.1},{\"common_name\":\"swir22\",\"name\":\"SWIR_Band5\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.165,\"full_width_half_max\":0.04},{\"common_name\":\"swir22\",\"name\":\"SWIR_Band6\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.205,\"full_width_half_max\":0.04},{\"common_name\":\"swir22\",\"name\":\"SWIR_Band7\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.26,\"full_width_half_max\":0.05},{\"name\":\"SWIR_Band8\",\"common_name\":\"swir\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.339,\"full_width_half_max\":0.07},{\"name\":\"SWIR_Band9\",\"common_name\":\"swir\",\"description\":\"short-wave\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"SWIR\n        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\n        yellow/green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.08},{\"name\":\"VNIR_Band2\",\"common_name\":\"red\",\"description\":\"visible\n        red\",\"center_wavelength\":0.66,\"full_width_half_max\":0.06},{\"common_name\":\"nir08\",\"name\":\"VNIR_Band3N\",\"description\":\"near\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"VNIR\n        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\n        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\n        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\n        browse file\",\"description\":\"Standalone reduced resolution VNIR\"},\"rendered_preview\":{\"title\":\"Rendered\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"eo:bands\":[{\"name\":\"TIR_Band10\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":8.3,\"full_width_half_max\":0.35},{\"name\":\"TIR_Band11\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":8.65,\"full_width_half_max\":0.35},{\"name\":\"TIR_Band12\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":9.11,\"full_width_half_max\":0.35},{\"name\":\"TIR_Band13\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":10.6,\"full_width_half_max\":0.7},{\"name\":\"TIR_Band14\",\"common_name\":\"lwir\",\"description\":\"thermal\n        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\n        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\n        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\n        infrared\",\"center_wavelength\":1.65,\"full_width_half_max\":0.1},{\"common_name\":\"swir22\",\"name\":\"SWIR_Band5\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.165,\"full_width_half_max\":0.04},{\"common_name\":\"swir22\",\"name\":\"SWIR_Band6\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.205,\"full_width_half_max\":0.04},{\"common_name\":\"swir22\",\"name\":\"SWIR_Band7\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.26,\"full_width_half_max\":0.05},{\"name\":\"SWIR_Band8\",\"common_name\":\"swir\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.339,\"full_width_half_max\":0.07},{\"name\":\"SWIR_Band9\",\"common_name\":\"swir\",\"description\":\"short-wave\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"SWIR\n        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\n        yellow/green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.08},{\"name\":\"VNIR_Band2\",\"common_name\":\"red\",\"description\":\"visible\n        red\",\"center_wavelength\":0.66,\"full_width_half_max\":0.06},{\"common_name\":\"nir08\",\"name\":\"VNIR_Band3N\",\"description\":\"near\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"VNIR\n        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\n        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\n        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\n        browse file\",\"description\":\"Standalone reduced resolution VNIR\"},\"rendered_preview\":{\"title\":\"Rendered\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"eo:bands\":[{\"name\":\"TIR_Band10\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":8.3,\"full_width_half_max\":0.35},{\"name\":\"TIR_Band11\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":8.65,\"full_width_half_max\":0.35},{\"name\":\"TIR_Band12\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":9.11,\"full_width_half_max\":0.35},{\"name\":\"TIR_Band13\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":10.6,\"full_width_half_max\":0.7},{\"name\":\"TIR_Band14\",\"common_name\":\"lwir\",\"description\":\"thermal\n        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\n        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\n        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\n        infrared\",\"center_wavelength\":1.65,\"full_width_half_max\":0.1},{\"common_name\":\"swir22\",\"name\":\"SWIR_Band5\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.165,\"full_width_half_max\":0.04},{\"common_name\":\"swir22\",\"name\":\"SWIR_Band6\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.205,\"full_width_half_max\":0.04},{\"common_name\":\"swir22\",\"name\":\"SWIR_Band7\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.26,\"full_width_half_max\":0.05},{\"name\":\"SWIR_Band8\",\"common_name\":\"swir\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.339,\"full_width_half_max\":0.07},{\"name\":\"SWIR_Band9\",\"common_name\":\"swir\",\"description\":\"short-wave\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"SWIR\n        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\n        yellow/green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.08},{\"name\":\"VNIR_Band2\",\"common_name\":\"red\",\"description\":\"visible\n        red\",\"center_wavelength\":0.66,\"full_width_half_max\":0.06},{\"common_name\":\"nir08\",\"name\":\"VNIR_Band3N\",\"description\":\"near\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"VNIR\n        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\n        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\n        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\n        browse file\",\"description\":\"Standalone reduced resolution VNIR\"},\"rendered_preview\":{\"title\":\"Rendered\n        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\"}]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '14425'\n      Content-Type:\n      - application/geo+json\n      Date:\n      - Thu, 31 Jul 2025 15:08:00 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150759Z-r17d779659clwxzchC1DEN2z9w0000000210000000006zws\n    status:\n      code: 200\n      message: OK\nversion: 1\n"
  },
  {
    "path": "tests/cassettes/test_collection_client/TestCollectionClient.test_get_queryables.yaml",
    "content": "interactions:\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1\n  response:\n    body:\n      string: '{\"type\":\"Catalog\",\"id\":\"microsoft-pc\",\"title\":\"Microsoft Planetary\n        Computer STAC API\",\"description\":\"Searchable spatiotemporal metadata describing\n        Earth science datasets hosted by the Microsoft Planetary Computer\",\"stac_version\":\"1.0.0\",\"conformsTo\":[\"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-rc.2/item-search#filter\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-text\",\"https://api.stacspec.org/v1.0.0/item-search\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core\",\"https://api.stacspec.org/v1.0.0/item-search#sort\",\"http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter\",\"http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2\",\"https://api.stacspec.org/v1.0.0/collections\",\"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/cql2/1.0/conf/cql2-json\",\"https://api.stacspec.org/v1.0.0/ogcapi-features\",\"https://api.stacspec.org/v1.0.0/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\n        conformance classes implemented by this server\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/conformance\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        search\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/search\",\"method\":\"GET\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        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\n        Annual Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Seamless DEMs\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Surface Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Forest\n        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\n        Annual North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Annual Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Tables\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HGB:\n        Harmonized Global Biomass for 2010\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        DEM GLO-30\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        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\n        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\n        IMERG\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Rasters\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Height above Ground\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        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\n        1 Radiometrically Terrain Corrected (RTC)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Intensity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Source\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MTBS:\n        Monitoring Trends in Burn Severity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"C-CAP\n        Regional Land Cover and Change\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Cloud\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Burned Area Monthly\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        Forest/Non-Forest Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Returns\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MoBI:\n        Map of Biodiversity Importance\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ERA5\n        - PDS\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chloris\n        Biomass\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HydroForecast\n        - Kwando & Upper Zambezi Rivers\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Planet-NICFI\n        Basemaps (Analytic)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Gross Primary Productivity 8-Day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Daily Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        3DEP Lidar Classification\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Terrain Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        Gap Land Cover\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Basemaps (Visual)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Global\n        Biodiversity Information Facility (GBIF)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        World 3D-30m\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        PALSAR Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Water Availability\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Net Evapotranspiration Yearly Gap-Filled\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Census\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"JRC\n        Global Surface Water\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Flood Maps\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Thermal Anomalies/Fire Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HREA:\n        High Resolution Electricity Access\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Vegetation Indices 16-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Level-2A\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Land Surface Temperature/Emissivity Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Vegetation Indices 16-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Land\n        Cover of Canada\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Snow Cover 8-day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ECMWF\n        Open Data (real-time)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        HGT v001\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Esri\n        10-Meter Land Cover (10-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-1\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Denver\n        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\n        Land Cover (7-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Cover (13-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Use\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        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\n        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\n        Cropland Data Layers (CDLs)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Urban\n        Innovation Eclipse Sensor Data\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ESA\n        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\n        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\n        National Wetlands Inventory\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        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\n        US Tabular Climate Normals\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        Lightning Detection\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel\n        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\n        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\n        L1T\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"CIL\n        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:\n        National Agriculture Imagery Program\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        Intactness\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sea\n        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\n        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\n        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\n        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\n        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\n        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\n        Snow Cover Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-5P\n        Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        Building Footprints\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        service description\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json\"},{\"rel\":\"service-doc\",\"type\":\"text/html\",\"title\":\"OpenAPI\n        service documentation\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/docs\"}],\"stac_extensions\":[]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '3356'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:08:06 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150805Z-r17d779659cwgrlbhC1DEN643g00000004h000000000768m\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/\n  response:\n    body:\n      string: '{\"type\":\"Catalog\",\"id\":\"microsoft-pc\",\"title\":\"Microsoft Planetary\n        Computer STAC API\",\"description\":\"Searchable spatiotemporal metadata describing\n        Earth science datasets hosted by the Microsoft Planetary Computer\",\"stac_version\":\"1.0.0\",\"conformsTo\":[\"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-rc.2/item-search#filter\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-text\",\"https://api.stacspec.org/v1.0.0/item-search\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core\",\"https://api.stacspec.org/v1.0.0/item-search#sort\",\"http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter\",\"http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2\",\"https://api.stacspec.org/v1.0.0/collections\",\"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/cql2/1.0/conf/cql2-json\",\"https://api.stacspec.org/v1.0.0/ogcapi-features\",\"https://api.stacspec.org/v1.0.0/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\n        conformance classes implemented by this server\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/conformance\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        search\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/search\",\"method\":\"GET\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        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\n        Annual Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Seamless DEMs\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Surface Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Forest\n        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\n        Annual North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Annual Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Tables\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HGB:\n        Harmonized Global Biomass for 2010\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        DEM GLO-30\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        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\n        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\n        IMERG\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Rasters\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Height above Ground\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        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\n        1 Radiometrically Terrain Corrected (RTC)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Intensity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Source\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MTBS:\n        Monitoring Trends in Burn Severity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"C-CAP\n        Regional Land Cover and Change\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Cloud\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Burned Area Monthly\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        Forest/Non-Forest Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Returns\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MoBI:\n        Map of Biodiversity Importance\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ERA5\n        - PDS\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chloris\n        Biomass\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HydroForecast\n        - Kwando & Upper Zambezi Rivers\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Planet-NICFI\n        Basemaps (Analytic)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Gross Primary Productivity 8-Day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Daily Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        3DEP Lidar Classification\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Terrain Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        Gap Land Cover\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Basemaps (Visual)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Global\n        Biodiversity Information Facility (GBIF)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        World 3D-30m\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        PALSAR Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Water Availability\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Net Evapotranspiration Yearly Gap-Filled\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Census\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"JRC\n        Global Surface Water\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Flood Maps\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Thermal Anomalies/Fire Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HREA:\n        High Resolution Electricity Access\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Vegetation Indices 16-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Level-2A\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Land Surface Temperature/Emissivity Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Vegetation Indices 16-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Land\n        Cover of Canada\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Snow Cover 8-day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ECMWF\n        Open Data (real-time)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        HGT v001\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Esri\n        10-Meter Land Cover (10-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-1\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Denver\n        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\n        Land Cover (7-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Cover (13-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Use\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        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\n        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\n        Cropland Data Layers (CDLs)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Urban\n        Innovation Eclipse Sensor Data\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ESA\n        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\n        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\n        National Wetlands Inventory\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        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\n        US Tabular Climate Normals\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        Lightning Detection\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel\n        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\n        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\n        L1T\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"CIL\n        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:\n        National Agriculture Imagery Program\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        Intactness\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sea\n        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\n        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\n        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\n        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\n        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\n        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\n        Snow Cover Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-5P\n        Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        Building Footprints\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        service description\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json\"},{\"rel\":\"service-doc\",\"type\":\"text/html\",\"title\":\"OpenAPI\n        service documentation\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/docs\"}],\"stac_extensions\":[]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '3356'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:08:06 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150806Z-r17d779659chjt9hhC1DEN373s000000022g000000006bq1\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2\n  response:\n    body:\n      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\n        4-5 TM Collection 2 Level-2\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5066/P9C7I13B\",\"title\":\"Landsat\n        7 ETM+ Collection 2 Level-2\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5066/P9OGBGM6\",\"title\":\"Landsat\n        8-9 OLI/TIRS Collection 2 Level-2\"},{\"rel\":\"license\",\"href\":\"https://www.usgs.gov/core-science-systems/hdds/data-policy\",\"title\":\"Public\n        Domain\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/landsat-c2-l2\",\"title\":\"Human\n        readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Landsat\n        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\n        Collection 2 Level-2 thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/landsat-c2-l2.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet\n        STAC items\",\"description\":\"Snapshot of the collection''s STAC items exported\n        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\n        blue (Thematic Mapper)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.07},{\"name\":\"TM_B2\",\"common_name\":\"green\",\"description\":\"Visible\n        green (Thematic Mapper)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.08},{\"name\":\"TM_B3\",\"common_name\":\"red\",\"description\":\"Visible\n        red (Thematic Mapper)\",\"center_wavelength\":0.66,\"full_width_half_max\":0.06},{\"name\":\"TM_B4\",\"common_name\":\"nir08\",\"description\":\"Near\n        infrared (Thematic Mapper)\",\"center_wavelength\":0.83,\"full_width_half_max\":0.14},{\"name\":\"TM_B5\",\"common_name\":\"swir16\",\"description\":\"Short-wave\n        infrared (Thematic Mapper)\",\"center_wavelength\":1.65,\"full_width_half_max\":0.2},{\"name\":\"TM_B6\",\"common_name\":\"lwir\",\"description\":\"Long-wave\n        infrared (Thematic Mapper)\",\"center_wavelength\":11.45,\"full_width_half_max\":2.1},{\"name\":\"TM_B7\",\"common_name\":\"swir22\",\"description\":\"Short-wave\n        infrared (Thematic Mapper)\",\"center_wavelength\":2.22,\"full_width_half_max\":0.27},{\"name\":\"ETM_B1\",\"common_name\":\"blue\",\"description\":\"Visible\n        blue (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":0.48,\"full_width_half_max\":0.07},{\"name\":\"ETM_B2\",\"common_name\":\"green\",\"description\":\"Visible\n        green (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.08},{\"name\":\"ETM_B3\",\"common_name\":\"red\",\"description\":\"Visible\n        red (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":0.66,\"full_width_half_max\":0.06},{\"name\":\"ETM_B4\",\"common_name\":\"nir08\",\"description\":\"Near\n        infrared (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":0.84,\"full_width_half_max\":0.13},{\"name\":\"ETM_B5\",\"common_name\":\"swir16\",\"description\":\"Short-wave\n        infrared (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":1.65,\"full_width_half_max\":0.2},{\"name\":\"ETM_B6\",\"common_name\":\"lwir\",\"description\":\"Long-wave\n        infrared (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":11.34,\"full_width_half_max\":2.05},{\"name\":\"ETM_B7\",\"common_name\":\"swir22\",\"description\":\"Short-wave\n        infrared (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":2.2,\"full_width_half_max\":0.28},{\"name\":\"OLI_B1\",\"common_name\":\"coastal\",\"description\":\"Coastal/Aerosol\n        (Operational Land Imager)\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02},{\"name\":\"OLI_B2\",\"common_name\":\"blue\",\"description\":\"Visible\n        blue (Operational Land Imager)\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06},{\"name\":\"OLI_B3\",\"common_name\":\"green\",\"description\":\"Visible\n        green (Operational Land Imager)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06},{\"name\":\"OLI_B4\",\"common_name\":\"red\",\"description\":\"Visible\n        red (Operational Land Imager)\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04},{\"name\":\"OLI_B5\",\"common_name\":\"nir08\",\"description\":\"Near\n        infrared (Operational Land Imager)\",\"center_wavelength\":0.87,\"full_width_half_max\":0.03},{\"name\":\"OLI_B6\",\"common_name\":\"swir16\",\"description\":\"Short-wave\n        infrared (Operational Land Imager)\",\"center_wavelength\":1.61,\"full_width_half_max\":0.09},{\"name\":\"OLI_B7\",\"common_name\":\"swir22\",\"description\":\"Short-wave\n        infrared (Operational Land Imager)\",\"center_wavelength\":2.2,\"full_width_half_max\":0.19},{\"name\":\"TIRS_B10\",\"common_name\":\"lwir11\",\"description\":\"Long-wave\n        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\n        Collection 2 Level-2 [Science Products](https://www.usgs.gov/landsat-missions/landsat-collection-2-level-2-science-products),\n        consisting of atmospherically corrected [surface reflectance](https://www.usgs.gov/landsat-missions/landsat-collection-2-surface-reflectance)\n        and [surface temperature](https://www.usgs.gov/landsat-missions/landsat-collection-2-surface-temperature)\n        image data. Collection 2 Level-2 Science Products are available from August\n        22, 1982 to present.\\n\\nThis dataset represents the global archive of Level-2\n        data from [Landsat Collection 2](https://www.usgs.gov/core-science-systems/nli/landsat/landsat-collection-2)\n        acquired by the [Thematic Mapper](https://landsat.gsfc.nasa.gov/thematic-mapper/)\n        onboard Landsat 4 and 5, the [Enhanced Thematic Mapper](https://landsat.gsfc.nasa.gov/the-enhanced-thematic-mapper-plus-etm/)\n        onboard Landsat 7, and the [Operatational Land Imager](https://landsat.gsfc.nasa.gov/satellites/landsat-8/spacecraft-instruments/operational-land-imager/)\n        and [Thermal Infrared Sensor](https://landsat.gsfc.nasa.gov/satellites/landsat-8/spacecraft-instruments/thermal-infrared-sensor/)\n        onboard Landsat 8 and 9. Images are stored in [cloud-optimized GeoTIFF](https://www.cogeo.org/)\n        format.\\n\",\"item_assets\":{\"qa\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Surface\n        Temperature Quality Assessment Band\",\"description\":\"Collection 2 Level-2 Quality\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        File\"},\"red\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Red\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Blue\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Downwelled\n        Radiance Band\",\"description\":\"Collection 2 Level-2 Downwelled Radiance Band\n        (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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Emissivity\n        Band\",\"description\":\"Collection 2 Level-2 Emissivity Band (ST_EMIS) Surface\n        Temperature Product\",\"raster:bands\":[{\"unit\":\"emissivity coefficient\",\"scale\":0.0001,\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30}]},\"emsd\":{\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Emissivity\n        Standard Deviation Band\",\"description\":\"Collection 2 Level-2 Emissivity Standard\n        Deviation Band (ST_EMSD) Surface Temperature Product\",\"raster:bands\":[{\"unit\":\"emissivity\n        coefficient\",\"scale\":0.0001,\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30}]},\"lwir\":{\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"temperature\"],\"title\":\"Surface\n        Temperature Band\",\"eo:bands\":[{\"common_name\":\"lwir\",\"description\":\"Long-wave\n        infrared\"}],\"description\":\"Collection 2 Level-2 Thermal Infrared Band (ST_B6)\n        Surface Temperature\",\"raster:bands\":[{\"unit\":\"kelvin\",\"scale\":0.00341802,\"nodata\":0,\"offset\":149.0,\"data_type\":\"uint16\",\"spatial_resolution\":30}]},\"trad\":{\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Thermal\n        Radiance Band\",\"description\":\"Collection 2 Level-2 Thermal Radiance Band (ST_TRAD)\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Upwelled\n        Radiance Band\",\"description\":\"Collection 2 Level-2 Upwelled Radiance Band\n        (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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Atmospheric\n        Transmittance Band\",\"description\":\"Collection 2 Level-2 Atmospheric Transmittance\n        Band (ST_ATRAN) Surface Temperature Product\",\"raster:bands\":[{\"scale\":0.0001,\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30}]},\"cdist\":{\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Cloud\n        Distance Band\",\"description\":\"Collection 2 Level-2 Cloud Distance Band (ST_CDIST)\n        Surface Temperature Product\",\"raster:bands\":[{\"unit\":\"kilometer\",\"scale\":0.01,\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30}]},\"green\":{\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Green\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Near\n        Infrared Band 0.8\",\"eo:bands\":[{\"common_name\":\"nir08\",\"description\":\"Near\n        infrared\"}],\"raster:bands\":[{\"scale\":0.0000275,\"nodata\":0,\"offset\":-0.2,\"data_type\":\"uint16\",\"spatial_resolution\":30}]},\"lwir11\":{\"gsd\":100,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"temperature\"],\"title\":\"Surface\n        Temperature Band\",\"eo:bands\":[{\"name\":\"TIRS_B10\",\"common_name\":\"lwir11\",\"description\":\"Long-wave\n        infrared\",\"center_wavelength\":10.9,\"full_width_half_max\":0.59}],\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Short-wave\n        Infrared Band 1.6\",\"eo:bands\":[{\"common_name\":\"swir16\",\"description\":\"Short-wave\n        infrared\"}],\"raster:bands\":[{\"scale\":0.0000275,\"nodata\":0,\"offset\":-0.2,\"data_type\":\"uint16\",\"spatial_resolution\":30}]},\"swir22\":{\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Short-wave\n        Infrared Band 2.2\",\"eo:bands\":[{\"common_name\":\"swir22\",\"description\":\"Short-wave\n        infrared\"}],\"description\":\"Collection 2 Level-2 Short-wave Infrared Band 2.2\n        (SR_B7) Surface Reflectance\",\"raster:bands\":[{\"scale\":0.0000275,\"nodata\":0,\"offset\":-0.2,\"data_type\":\"uint16\",\"spatial_resolution\":30}]},\"coastal\":{\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Coastal/Aerosol\n        Band\",\"eo:bands\":[{\"name\":\"OLI_B1\",\"common_name\":\"coastal\",\"description\":\"Coastal/Aerosol\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection\n        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\n        Metadata File (txt)\",\"description\":\"Collection 2 Level-2 Product Metadata\n        File (txt)\"},\"mtl.xml\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Product\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-2 Product Metadata\n        File (xml)\"},\"cloud_qa\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"cloud\",\"cloud-shadow\",\"snow-ice\",\"water-mask\"],\"title\":\"Cloud\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-2 Cloud Quality\n        Assessment Band (SR_CLOUD_QA) Surface Reflectance Product\",\"raster:bands\":[{\"unit\":\"bit\n        index\",\"data_type\":\"uint8\",\"spatial_resolution\":30}],\"classification:bitfields\":[{\"name\":\"ddv\",\"length\":1,\"offset\":0,\"classes\":[{\"name\":\"not_ddv\",\"value\":0,\"description\":\"Pixel\n        has no DDV\"},{\"name\":\"ddv\",\"value\":1,\"description\":\"Pixel has DDV\"}],\"description\":\"Dense\n        Dark Vegetation (DDV)\"},{\"name\":\"cloud\",\"length\":1,\"offset\":1,\"classes\":[{\"name\":\"not_cloud\",\"value\":0,\"description\":\"Pixel\n        has no cloud\"},{\"name\":\"cloud\",\"value\":1,\"description\":\"Pixel has cloud\"}],\"description\":\"Cloud\n        mask\"},{\"name\":\"cloud_shadow\",\"length\":1,\"offset\":2,\"classes\":[{\"name\":\"not_shadow\",\"value\":0,\"description\":\"Pixel\n        has no cloud shadow\"},{\"name\":\"shadow\",\"value\":1,\"description\":\"Pixel has\n        cloud shadow\"}],\"description\":\"Cloud shadow mask\"},{\"name\":\"cloud_adjacent\",\"length\":1,\"offset\":3,\"classes\":[{\"name\":\"not_adjacent\",\"value\":0,\"description\":\"Pixel\n        is not adjacent to cloud\"},{\"name\":\"adjacent\",\"value\":1,\"description\":\"Pixel\n        is adjacent to cloud\"}],\"description\":\"Cloud adjacency\"},{\"name\":\"snow\",\"length\":1,\"offset\":4,\"classes\":[{\"name\":\"not_snow\",\"value\":0,\"description\":\"Pixel\n        is not snow\"},{\"name\":\"shadow\",\"value\":1,\"description\":\"Pixel is snow\"}],\"description\":\"Snow\n        mask\"},{\"name\":\"water\",\"length\":1,\"offset\":5,\"classes\":[{\"name\":\"not_water\",\"value\":0,\"description\":\"Pixel\n        is not water\"},{\"name\":\"water\",\"value\":1,\"description\":\"Pixel is water\"}],\"description\":\"Water\n        mask\"}]},\"mtl.json\":{\"type\":\"application/json\",\"roles\":[\"metadata\"],\"title\":\"Product\n        Metadata File (json)\",\"description\":\"Collection 2 Level-2 Product Metadata\n        File (json)\"},\"qa_pixel\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"cloud\",\"cloud-shadow\",\"snow-ice\",\"water-mask\"],\"title\":\"Pixel\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Pixel Quality\n        Assessment Band (QA_PIXEL)\",\"raster:bands\":[{\"unit\":\"bit index\",\"nodata\":1,\"data_type\":\"uint16\",\"spatial_resolution\":30}]},\"qa_radsat\":{\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"saturation\"],\"raster:bands\":[{\"unit\":\"bit\n        index\",\"data_type\":\"uint16\",\"spatial_resolution\":30}]},\"qa_aerosol\":{\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data-mask\",\"water-mask\"],\"title\":\"Aerosol\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality\n        Assessment Band (SR_QA_AEROSOL) Surface Reflectance Product\",\"raster:bands\":[{\"unit\":\"bit\n        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\n        is not fill\"},{\"name\":\"fill\",\"value\":1,\"description\":\"Pixel is fill\"}],\"description\":\"Image\n        or fill data\"},{\"name\":\"retrieval\",\"length\":1,\"offset\":1,\"classes\":[{\"name\":\"not_valid\",\"value\":0,\"description\":\"Pixel\n        retrieval is not valid\"},{\"name\":\"valid\",\"value\":1,\"description\":\"Pixel retrieval\n        is valid\"}],\"description\":\"Valid aerosol retrieval\"},{\"name\":\"water\",\"length\":1,\"offset\":2,\"classes\":[{\"name\":\"not_water\",\"value\":0,\"description\":\"Pixel\n        is not water\"},{\"name\":\"water\",\"value\":1,\"description\":\"Pixel is water\"}],\"description\":\"Water\n        mask\"},{\"name\":\"interpolated\",\"length\":1,\"offset\":5,\"classes\":[{\"name\":\"not_interpolated\",\"value\":0,\"description\":\"Pixel\n        is not interpolated aerosol\"},{\"name\":\"interpolated\",\"value\":1,\"description\":\"Pixel\n        is interpolated aerosol\"}],\"description\":\"Aerosol interpolation\"},{\"name\":\"level\",\"length\":2,\"offset\":6,\"classes\":[{\"name\":\"climatology\",\"value\":0,\"description\":\"No\n        aerosol correction applied\"},{\"name\":\"low\",\"value\":1,\"description\":\"Low aerosol\n        level\"},{\"name\":\"medium\",\"value\":2,\"description\":\"Medium aerosol level\"},{\"name\":\"high\",\"value\":3,\"description\":\"High\n        aerosol level\"}],\"description\":\"Aerosol level\"}]},\"atmos_opacity\":{\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Atmospheric\n        Opacity Band\",\"description\":\"Collection 2 Level-2 Atmospheric Opacity Band\n        (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\n        Collection 2 Level-2 data from the Thematic Mapper (TM) onboard Landsat 4\n        and 5, the Enhanced Thematic Mapper Plus (ETM+) onboard Landsat 7, and the\n        Operational Land Imager (OLI) and Thermal Infrared Sensor (TIRS) onboard Landsat\n        8 and 9.\",\"msft:region\":\"westeurope\"}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '3454'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:08:07 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150807Z-r17d779659c22gb9hC1DENxd5s00000004kg000000005z37\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2/queryables\n  response:\n    body:\n      string: '{\"$id\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2/queryables\",\"type\":\"object\",\"title\":\"STAC\n        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\n        ID\",\"description\":\"Item identifier\"},\"gsd\":{\"type\":\"number\"},\"created\":{\"type\":\"string\"},\"sci:doi\":{\"type\":\"string\",\"title\":\"Data\n        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\n        Geometry\",\"description\":\"Item Geometry\"},\"platform\":{\"enum\":[\"SENTINEL-1A\",\"SENTINEL-1B\",\"SENTINEL-1C\"],\"type\":\"string\",\"title\":\"Platform\"},\"proj:epsg\":{\"type\":[\"integer\",\"null\"],\"title\":\"EPSG\n        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\n        datetime\",\"format\":\"date-time\",\"pattern\":\"(\\\\+00:00|Z)$\",\"description\":\"End\n        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\n        datetime\",\"format\":\"date-time\",\"pattern\":\"(\\\\+00:00|Z)$\",\"description\":\"Start\n        datetime\"},\"view:off_nadir\":{\"type\":\"number\",\"title\":\"Off Nadir\",\"maximum\":90,\"minimum\":0},\"landsat:wrs_row\":{\"type\":\"string\",\"title\":\"WRS\n        Row\"},\"landsat:scene_id\":{\"type\":\"string\",\"title\":\"Scene ID\"},\"landsat:wrs_path\":{\"type\":\"string\",\"title\":\"WRS\n        Path\"},\"landsat:wrs_type\":{\"type\":\"string\"},\"view:sun_azimuth\":{\"type\":\"number\",\"title\":\"Sun\n        Azimuth\",\"maximum\":360,\"minimum\":0},\"landsat:correction\":{\"type\":\"string\"},\"view:sun_elevation\":{\"type\":\"number\",\"title\":\"Sun\n        Elevation\",\"maximum\":90,\"minimum\":-90},\"landsat:cloud_cover_land\":{\"type\":\"number\",\"title\":\"Cloud\n        Cover Land\",\"maximum\":100,\"minimum\":0},\"landsat:collection_number\":{\"type\":\"string\"},\"landsat:collection_category\":{\"enum\":[\"T1\",\"T2\"],\"type\":\"string\",\"title\":\"Collection\n        Cat.\"}}}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '887'\n      Content-Type:\n      - application/schema+json\n      Date:\n      - Thu, 31 Jul 2025 15:08:07 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150807Z-r17d779659c7hhsdhC1DEN7tww00000005yg000000007sqh\n    status:\n      code: 200\n      message: OK\nversion: 1\n"
  },
  {
    "path": "tests/cassettes/test_collection_client/TestCollectionClient.test_instance.yaml",
    "content": "interactions:\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1\n  response:\n    body:\n      string: '{\"type\":\"Catalog\",\"id\":\"microsoft-pc\",\"title\":\"Microsoft Planetary\n        Computer STAC API\",\"description\":\"Searchable spatiotemporal metadata describing\n        Earth science datasets hosted by the Microsoft Planetary Computer\",\"stac_version\":\"1.0.0\",\"conformsTo\":[\"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-rc.2/item-search#filter\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-text\",\"https://api.stacspec.org/v1.0.0/item-search\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core\",\"https://api.stacspec.org/v1.0.0/item-search#sort\",\"http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter\",\"http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2\",\"https://api.stacspec.org/v1.0.0/collections\",\"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/cql2/1.0/conf/cql2-json\",\"https://api.stacspec.org/v1.0.0/ogcapi-features\",\"https://api.stacspec.org/v1.0.0/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\n        conformance classes implemented by this server\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/conformance\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        search\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/search\",\"method\":\"GET\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        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\n        Annual Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Seamless DEMs\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Surface Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Forest\n        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\n        Annual North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Annual Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Tables\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HGB:\n        Harmonized Global Biomass for 2010\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        DEM GLO-30\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        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\n        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\n        IMERG\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Rasters\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Height above Ground\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        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\n        1 Radiometrically Terrain Corrected (RTC)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Intensity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Source\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MTBS:\n        Monitoring Trends in Burn Severity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"C-CAP\n        Regional Land Cover and Change\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Cloud\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Burned Area Monthly\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        Forest/Non-Forest Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Returns\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MoBI:\n        Map of Biodiversity Importance\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ERA5\n        - PDS\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chloris\n        Biomass\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HydroForecast\n        - Kwando & Upper Zambezi Rivers\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Planet-NICFI\n        Basemaps (Analytic)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Gross Primary Productivity 8-Day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Daily Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        3DEP Lidar Classification\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Terrain Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        Gap Land Cover\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Basemaps (Visual)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Global\n        Biodiversity Information Facility (GBIF)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        World 3D-30m\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        PALSAR Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Water Availability\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Net Evapotranspiration Yearly Gap-Filled\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Census\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"JRC\n        Global Surface Water\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Flood Maps\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Thermal Anomalies/Fire Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HREA:\n        High Resolution Electricity Access\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Vegetation Indices 16-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Level-2A\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Land Surface Temperature/Emissivity Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Vegetation Indices 16-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Land\n        Cover of Canada\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Snow Cover 8-day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ECMWF\n        Open Data (real-time)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        HGT v001\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Esri\n        10-Meter Land Cover (10-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-1\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Denver\n        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\n        Land Cover (7-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Cover (13-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Use\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        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\n        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\n        Cropland Data Layers (CDLs)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Urban\n        Innovation Eclipse Sensor Data\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ESA\n        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\n        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\n        National Wetlands Inventory\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        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\n        US Tabular Climate Normals\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        Lightning Detection\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel\n        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\n        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\n        L1T\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"CIL\n        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:\n        National Agriculture Imagery Program\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        Intactness\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sea\n        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\n        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\n        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\n        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\n        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\n        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\n        Snow Cover Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-5P\n        Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        Building Footprints\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        service description\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json\"},{\"rel\":\"service-doc\",\"type\":\"text/html\",\"title\":\"OpenAPI\n        service documentation\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/docs\"}],\"stac_extensions\":[]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '3356'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:07:54 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150754Z-r17d779659cqdtckhC1DENvakn0000000230000000005188\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/\n  response:\n    body:\n      string: '{\"type\":\"Catalog\",\"id\":\"microsoft-pc\",\"title\":\"Microsoft Planetary\n        Computer STAC API\",\"description\":\"Searchable spatiotemporal metadata describing\n        Earth science datasets hosted by the Microsoft Planetary Computer\",\"stac_version\":\"1.0.0\",\"conformsTo\":[\"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-rc.2/item-search#filter\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-text\",\"https://api.stacspec.org/v1.0.0/item-search\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core\",\"https://api.stacspec.org/v1.0.0/item-search#sort\",\"http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter\",\"http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2\",\"https://api.stacspec.org/v1.0.0/collections\",\"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/cql2/1.0/conf/cql2-json\",\"https://api.stacspec.org/v1.0.0/ogcapi-features\",\"https://api.stacspec.org/v1.0.0/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\n        conformance classes implemented by this server\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/conformance\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        search\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/search\",\"method\":\"GET\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        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\n        Annual Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Seamless DEMs\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Surface Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Forest\n        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\n        Annual North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Annual Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Tables\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HGB:\n        Harmonized Global Biomass for 2010\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        DEM GLO-30\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        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\n        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\n        IMERG\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Rasters\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Height above Ground\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        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\n        1 Radiometrically Terrain Corrected (RTC)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Intensity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Source\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MTBS:\n        Monitoring Trends in Burn Severity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"C-CAP\n        Regional Land Cover and Change\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Cloud\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Burned Area Monthly\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        Forest/Non-Forest Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Returns\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MoBI:\n        Map of Biodiversity Importance\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ERA5\n        - PDS\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chloris\n        Biomass\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HydroForecast\n        - Kwando & Upper Zambezi Rivers\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Planet-NICFI\n        Basemaps (Analytic)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Gross Primary Productivity 8-Day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Daily Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        3DEP Lidar Classification\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Terrain Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        Gap Land Cover\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Basemaps (Visual)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Global\n        Biodiversity Information Facility (GBIF)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        World 3D-30m\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        PALSAR Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Water Availability\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Net Evapotranspiration Yearly Gap-Filled\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Census\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"JRC\n        Global Surface Water\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Flood Maps\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Thermal Anomalies/Fire Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HREA:\n        High Resolution Electricity Access\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Vegetation Indices 16-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Level-2A\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Land Surface Temperature/Emissivity Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Vegetation Indices 16-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Land\n        Cover of Canada\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Snow Cover 8-day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ECMWF\n        Open Data (real-time)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        HGT v001\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Esri\n        10-Meter Land Cover (10-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-1\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Denver\n        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\n        Land Cover (7-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Cover (13-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Use\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        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\n        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\n        Cropland Data Layers (CDLs)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Urban\n        Innovation Eclipse Sensor Data\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ESA\n        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\n        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\n        National Wetlands Inventory\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        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\n        US Tabular Climate Normals\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        Lightning Detection\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel\n        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\n        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\n        L1T\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"CIL\n        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:\n        National Agriculture Imagery Program\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        Intactness\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sea\n        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\n        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\n        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\n        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\n        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\n        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\n        Snow Cover Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-5P\n        Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        Building Footprints\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        service description\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json\"},{\"rel\":\"service-doc\",\"type\":\"text/html\",\"title\":\"OpenAPI\n        service documentation\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/docs\"}],\"stac_extensions\":[]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '3356'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:07:55 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150754Z-r17d779659cbwrpkhC1DEN2qus00000005y00000000090vq\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t\n  response:\n    body:\n      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\n        Domain\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/aster-l1t\",\"type\":\"text/html\",\"title\":\"Human\n        readable dataset overview and reference\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/aster-l1t\",\"title\":\"Human\n        readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"ASTER\n        L1T\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/aster.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"ASTER\n        L1T\"},\"geoparquet-items\":{\"href\":\"abfs://items/aster-l1t.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet\n        STAC items\",\"description\":\"Snapshot of the collection''s STAC items exported\n        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\n        yellow/green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.08},{\"gsd\":15,\"name\":\"VNIR_Band2\",\"common_name\":\"red\",\"description\":\"visible\n        red\",\"center_wavelength\":0.66,\"full_width_half_max\":0.06},{\"gsd\":15,\"name\":\"VNIR_Band3N\",\"common_name\":\"nir08\",\"description\":\"near\n        infrared\",\"center_wavelength\":0.82,\"full_width_half_max\":0.08},{\"gsd\":30,\"name\":\"SWIR_Band4\",\"common_name\":\"swir16\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":1.65,\"full_width_half_max\":0.1},{\"gsd\":30,\"name\":\"SWIR_Band5\",\"common_name\":\"swir22\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.165,\"full_width_half_max\":0.04},{\"gsd\":30,\"name\":\"SWIR_Band6\",\"common_name\":\"swir22\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.205,\"full_width_half_max\":0.04},{\"gsd\":30,\"name\":\"SWIR_Band7\",\"common_name\":\"swir22\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.26,\"full_width_half_max\":0.05},{\"gsd\":30,\"name\":\"SWIR_Band8\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.339,\"full_width_half_max\":0.07},{\"gsd\":30,\"name\":\"SWIR_Band9\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.395,\"full_width_half_max\":0.07},{\"gsd\":90,\"name\":\"TIR_Band10\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":8.3,\"full_width_half_max\":0.35},{\"gsd\":90,\"name\":\"TIR_Band11\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":8.65,\"full_width_half_max\":0.35},{\"gsd\":90,\"name\":\"TIR_Band12\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":9.11,\"full_width_half_max\":0.35},{\"gsd\":90,\"name\":\"TIR_Band13\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":10.6,\"full_width_half_max\":0.7},{\"gsd\":90,\"name\":\"TIR_Band14\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":11.3,\"full_width_half_max\":0.7}],\"platform\":[\"terra\"],\"instruments\":[\"aster\"]},\"description\":\"The\n        [ASTER](https://terra.nasa.gov/about/terra-instruments/aster) instrument,\n        launched on-board NASA''s [Terra](https://terra.nasa.gov/) satellite in 1999,\n        provides multispectral images of the Earth at 15m-90m resolution.  ASTER images\n        provide information about land surface temperature, color, elevation, and\n        mineral composition.\\n\\nThis dataset represents ASTER [L1T](https://lpdaac.usgs.gov/products/ast_l1tv003/)\n        data from 2000-2006.  L1T images have been terrain-corrected and rotated to\n        a north-up UTM projection.  Images are in [cloud-optimized GeoTIFF](https://www.cogeo.org/)\n        format.\\n\",\"item_assets\":{\"TIR\":{\"roles\":[\"data\"],\"title\":\"TIR Swath data\",\"eo:bands\":[{\"gsd\":90,\"name\":\"TIR_Band10\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":8.3,\"full_width_half_max\":0.35},{\"gsd\":90,\"name\":\"TIR_Band11\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":8.65,\"full_width_half_max\":0.35},{\"gsd\":90,\"name\":\"TIR_Band12\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":9.11,\"full_width_half_max\":0.35},{\"gsd\":90,\"name\":\"TIR_Band13\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":10.6,\"full_width_half_max\":0.7},{\"gsd\":90,\"name\":\"TIR_Band14\",\"common_name\":\"lwir\",\"description\":\"thermal\n        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\n        metadata\"},\"SWIR\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"SWIR\n        Swath data\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SWIR_Band4\",\"common_name\":\"swir\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":1.65,\"full_width_half_max\":0.1},{\"gsd\":30,\"name\":\"SWIR_Band5\",\"common_name\":\"swir\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.165,\"full_width_half_max\":0.04},{\"gsd\":30,\"name\":\"SWIR_Band6\",\"common_name\":\"swir\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.205,\"full_width_half_max\":0.04},{\"gsd\":30,\"name\":\"SWIR_Band7\",\"common_name\":\"swir\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.26,\"full_width_half_max\":0.05},{\"gsd\":30,\"name\":\"SWIR_Band8\",\"common_name\":\"swir\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.339,\"full_width_half_max\":0.07},{\"gsd\":30,\"name\":\"SWIR_Band9\",\"common_name\":\"swir\",\"description\":\"short-wave\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"VNIR\n        Swath data\",\"eo:bands\":[{\"gsd\":15,\"name\":\"VNIR_Band1\",\"common_name\":\"yellow/green\",\"description\":\"visible\n        yellow/green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.08},{\"gsd\":15,\"name\":\"VNIR_Band2\",\"common_name\":\"red\",\"description\":\"visible\n        red\",\"center_wavelength\":0.66,\"full_width_half_max\":0.06},{\"gsd\":15,\"name\":\"VNIR_Band3N\",\"common_name\":\"near\n        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\n        browse file\",\"description\":\"Geometric quality assessment report.\"},\"qa-browse\":{\"type\":\"image/jpeg\",\"roles\":[\"thumbnail\"],\"title\":\"QA\n        browse file\",\"description\":\"Single-band black and white reduced resolution\n        browse overlaid with red, green, and blue (RGB) markers for GCPs used during\n        the geometric verification quality check.\"},\"tir-browse\":{\"type\":\"image/jpeg\",\"roles\":[\"thumbnail\"],\"title\":\"Standalone\n        reduced resolution TIR\"},\"vnir-browse\":{\"type\":\"image/jpeg\",\"roles\":[\"thumbnail\"],\"title\":\"VNIR\n        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\n        ASTER instrument, launched on-board NASA''s Terra satellite in 1999, provides\n        multispectral images of the Earth at 15m-90m resolution.  This dataset contains\n        ASTER data from 2000-2006.\",\"msft:region\":\"westeurope\"}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '2034'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:07:56 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150755Z-r17d779659cl2jdhhC1DENntbs00000002300000000055u8\n    status:\n      code: 200\n      message: OK\nversion: 1\n"
  },
  {
    "path": "tests/cassettes/test_collection_search/TestCollectionSearch.test_bbox_results.yaml",
    "content": "interactions:\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://emc.spacebel.be/collections?limit=10&bbox=-159.893%2C21.843%2C-159.176%2C22.266\n  response:\n    body:\n      string: \"{\\n  \\\"collections\\\": [\\n    {\\n      \\\"extent\\\": {\\n        \\\"spatial\\\":\n        {\\\"bbox\\\": [[\\n          -180,\\n          -90,\\n          180,\\n          90\\n\n        \\       ]]},\\n        \\\"temporal\\\": {\\\"interval\\\": [[\\n          \\\"2002-05-20T00:00:00.000Z\\\",\\n\n        \\         \\\"2012-04-08T23:59:59.999Z\\\"\\n        ]]}\\n      },\\n      \\\"stac_version\\\":\n        \\\"1.0.0\\\",\\n      \\\"keywords\\\": [\\n        \\\"World\\\",\\n        \\\"800 km\\\",\\n\n        \\       \\\"5 - 1150 km\\\",\\n        \\\"Sun-synchronous\\\",\\n        \\\"Very High\n        Resolution - VHR (0 - 5m)\\\",\\n        \\\"Medium Resolution - MR (20 - 500 m)\\\",\\n\n        \\       \\\"EARTH SCIENCE > BIOSPHERE > VEGETATION\\\",\\n        \\\"EARTH SCIENCE\n        > OCEANS\\\",\\n        \\\"EARTH SCIENCE > OCEANS > OCEAN TEMPERATURE\\\",\\n        \\\"EARTH\n        SCIENCE > ATMOSPHERE\\\",\\n        \\\"EARTH SCIENCE > ATMOSPHERE > CLOUDS\\\",\\n\n        \\       \\\"EARTH SCIENCE > ATMOSPHERE > PRECIPITATION\\\",\\n        \\\"Vegetation\\\",\\n\n        \\       \\\"Oceans\\\",\\n        \\\"Ocean Temperature\\\",\\n        \\\"Atmosphere\\\",\\n\n        \\       \\\"Clouds\\\",\\n        \\\"Precipitation\\\",\\n        \\\"Imaging Spectrometers/Radiometers\\\",\\n\n        \\       \\\"Envisat\\\",\\n        \\\"AATSR\\\"\\n      ],\\n      \\\"created\\\": \\\"2019-05-21T00:00:00.00Z\\\",\\n\n        \\     \\\"description\\\": \\\"The Averaged Surface Temperature (AST) Product contains\n        averaged geophysical data at two different resolutions, and with respect to\n        two different averaging schemes. Measurement data sets at resolutions of 0.5\n        by 0.5 degrees and 10 by 10 arcmin with respect to a latitude/longitude grid\n        provide continuity with existing ATSR products.  Other data sets contain data\n        averaged over equal area cells of 50 by 50 km and 17 by 17 km aligned with\n        the satellite ground track. Both top-of-atmosphere and surface data sets are\n        provided. The surface temperature data sets provide, for sea cells, nadir\n        and dual view sea surface temperatures, and for land cells, land surface temperature\n        and NDVI. Cloud data is also included. No ADS are included in the AST product;\n        auxiliary data is contained within the MDS. The data sets of the AST product\n        are arranged by surface type and resolution.  This product is a continuation\n        of ERS ATSR data.  The 3rd reprocessing of AATSR data was performed in 2013;\n        the processing updates that have been put in place and the scientific improvements\n        are outlined in full in the User Summary Note for the Third Envisat AATSR\n        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\n        \\     \\\"type\\\": \\\"Collection\\\",\\n      \\\"title\\\": \\\"Envisat AATSR Averaged\n        Surface Temperature (AST) Product [ATS_AR__2P]\\\",\\n      \\\"license\\\": \\\"various\\\",\\n\n        \\     \\\"assets\\\": {\\n        \\\"metadata_ogc_17_069r3\\\": {\\n          \\\"roles\\\":\n        [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/ENVISAT.ATS.AR__2P\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/ENVISAT.ATS.AR__2P?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ENVISAT.ATS.AR__2P?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ENVISAT.ATS.AR__2P?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ENVISAT.ATS.AR__2P?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ENVISAT.ATS.AR__2P?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ENVISAT.ATS.AR__2P?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        }\\n\n        \\     },\\n      \\\"links\\\": [\\n        {\\n          \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/ENVISAT.ATS.AR__2P\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"root\\\",\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\": \\\"application/json\\\",\\n\n        \\         \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"title\\\":\n        \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"AATSR Product\n        Specification - Product Specifications\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://earth.esa.int/eogateway/instruments/aatsr/auxiliary-data\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"AATSR auxiliary\n        data - Auxiliary Data\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://earth.esa.int/eogateway/instruments/aatsr/products-information\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"AATSR Product Information\n        - Product Information\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://earth.esa.int/eogateway/documents/20142/37627/AATSR-product-handbook.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"AATSR Product\n        Handbook - User Manual\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://earth.esa.int/eogateway/documents/20142/37627/AATSR-Level-2-ATS_AR__2P-Product-Quality-Readme-Information.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"ATS_AR__2P\n        Product Quality Readme Information - Product Specifications\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://earth.esa.int/eogateway/search?text=&category=Document%20library&filter=envisat,aatsr\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"More AATSR Documents\n        - Product Specifications\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://earth.esa.int/eogateway/search?text=&category=Tools%20and%20toolboxes&filter=aatsr\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"(A)ATSR Software\n        Tools - Tools\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://esatellus.service-now.com/csp?id=esa_simple_request\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Get Help? - ESA\n        Earth Observation User Services Portal\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/ENVISAT.ATS.AR__2P?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/ENVISAT.ATS.AR__2P?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/ENVISAT.ATS.AR__2P?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/ENVISAT.ATS.AR__2P?httpAccept=text/turtle;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for ESA/ESRIN\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/Envisat\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for Envisat platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/702277a0-8a84-5af3-a8f4-31d712ff17c3\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for AATSR instrument\\\"\\n        }\\n\n        \\     ],\\n      \\\"id\\\": \\\"ENVISAT.ATS.AR__2P\\\",\\n      \\\"updated\\\": \\\"2022-11-11T00:00:00.00Z\\\",\\n\n        \\     \\\"providers\\\": [\\n        {\\n          \\\"roles\\\": [\\\"producer\\\"],\\n\n        \\         \\\"name\\\": \\\"ESA/ESRIN\\\",\\n          \\\"url\\\": \\\"http://www.esa.int\\\"\\n\n        \\       },\\n        {\\n          \\\"roles\\\": [\\\"host\\\"],\\n          \\\"name\\\":\n        \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\": \\\"https://emc.spacebel.be/readme.html\\\"\\n\n        \\       }\\n      ],\\n      \\\"summaries\\\": {\\n        \\\"instruments\\\": [\\\"AATSR\\\"],\\n\n        \\       \\\"platform\\\": [\\\"Envisat\\\"]\\n      }\\n    },\\n    {\\n      \\\"extent\\\":\n        {\\n        \\\"spatial\\\": {\\\"bbox\\\": [[\\n          -180,\\n          -90,\\n          180,\\n\n        \\         90\\n        ]]},\\n        \\\"temporal\\\": {\\\"interval\\\": [[\\n          \\\"2002-05-20T00:00:00.000Z\\\",\\n\n        \\         \\\"2012-04-08T23:59:59.999Z\\\"\\n        ]]}\\n      },\\n      \\\"stac_version\\\":\n        \\\"1.0.0\\\",\\n      \\\"keywords\\\": [\\n        \\\"World\\\",\\n        \\\"800 km\\\",\\n\n        \\       \\\"5 - 1150 km\\\",\\n        \\\"Sun-synchronous\\\",\\n        \\\"EARTH SCIENCE\n        > OCEANS\\\",\\n        \\\"EARTH SCIENCE > OCEANS > OCEAN TEMPERATURE\\\",\\n        \\\"Oceans\\\",\\n\n        \\       \\\"Ocean Temperature\\\",\\n        \\\"Imaging Spectrometers/Radiometers\\\",\\n\n        \\       \\\"Envisat\\\",\\n        \\\"AATSR\\\"\\n      ],\\n      \\\"created\\\": \\\"2019-05-29T00:00:00.00Z\\\",\\n\n        \\     \\\"description\\\": \\\"The L2P product contains full resolution dual-view\n        Sea Surface Temperature (SST) values. These SST use the ARC SST retrieval\n        and cloud screening which differ from the methods used to produce the Gridded\n        Surface Temperature (ATS_NR__2P) products. In addition to SST, the L2P products\n        contain the ATSR Saharan Dust Index (ASDI) and the clear-sky probability estimated\n        by the ARC cloud detection algorithm.  The L2P processor also generates L3U\n        products; these are the L2P products averaged onto a regular grid at 0.1 degree\n        resolution (they are therefore similar to the AR / Meteo Envisat-format products).\n        \\ The L2P and L3U products are provided in NetCDF-4 format following GHRSST\n        Data Specifications (GDS) v2.  The L2P/L3U archive was reprocessed in 2013\n        with a new processor based upon the ARC SST; the changes are outlined in full\n        in the L2P Reprocessing User Notehttps://earth.esa.int/eogateway/documents/20142/37627/User%20Note%20for%20%28A%29ATSR%20L2P%20Reprocessing\\\",\\n\n        \\     \\\"type\\\": \\\"Collection\\\",\\n      \\\"title\\\": \\\"Envisat AATSR ARC L2P/L3U\n        \\ [UPA-L2P_GHRSST/UPA-L3U_GHRSST]\\\",\\n      \\\"license\\\": \\\"various\\\",\\n      \\\"assets\\\":\n        {\\n        \\\"metadata_ogc_17_069r3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ENVISAT.UPA-L2P-L3U\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/ENVISAT.UPA-L2P-L3U?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ENVISAT.UPA-L2P-L3U?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ENVISAT.UPA-L2P-L3U?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ENVISAT.UPA-L2P-L3U?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ENVISAT.UPA-L2P-L3U?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ENVISAT.UPA-L2P-L3U?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        }\\n\n        \\     },\\n      \\\"links\\\": [\\n        {\\n          \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/ENVISAT.UPA-L2P-L3U\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"root\\\",\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\": \\\"application/json\\\",\\n\n        \\         \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"title\\\":\n        \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://earth.esa.int/eogateway/instruments/aatsr/auxiliary-data\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"AATSR auxiliary\n        data - Auxiliary Data\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://earth.esa.int/eogateway/documents/20142/37627/ENVISAT-1%20PRODUCTS%20SPECIFICATIONS%20-%20VOLUME%207-%20AATSR%20PRODUCTS%20SPECIFICATIONS\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"AATSR Products\n        Specifications - Product Specifications\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://earth.esa.int/eogateway/documents/20142/37627/AATSR-product-handbook.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"AATSR Product\n        Handbook - User Manual\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://earth.esa.int/eogateway/instruments/aatsr/products-information\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"AATSR Product Information\n        - Product Information\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://earth.esa.int/eogateway/documents/20142/37627/L2P-Product-Description.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"(A)ATSR SST\n        L2P/L3U Product User Guide - Product Specifications\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://www.ghrsst.org/about-ghrsst/governance-documents/\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"GHRSST data specifications\n        - Product Specifications\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://earth.esa.int/eogateway/search?text=&category=Document%20library&filter=envisat,aatsr\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"More AATSR Documents\n        - Product Specifications\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://earth.esa.int/eogateway/search?text=&category=Tools%20and%20toolboxes&filter=aatsr\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"(A)ATSR Software\n        Tools - Tools\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://esatellus.service-now.com/csp?id=esa_simple_request\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Get Help? - ESA\n        Earth Observation User Services Portal\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/ENVISAT.UPA-L2P-L3U?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/ENVISAT.UPA-L2P-L3U?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/ENVISAT.UPA-L2P-L3U?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/ENVISAT.UPA-L2P-L3U?httpAccept=text/turtle;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for ESA/ESRIN\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/Envisat\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for Envisat platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/702277a0-8a84-5af3-a8f4-31d712ff17c3\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for AATSR instrument\\\"\\n        }\\n\n        \\     ],\\n      \\\"id\\\": \\\"ENVISAT.UPA-L2P-L3U\\\",\\n      \\\"updated\\\": \\\"2022-11-11T00:00:00.00Z\\\",\\n\n        \\     \\\"providers\\\": [\\n        {\\n          \\\"roles\\\": [\\\"producer\\\"],\\n\n        \\         \\\"name\\\": \\\"ESA/ESRIN\\\",\\n          \\\"url\\\": \\\"http://www.esa.int\\\"\\n\n        \\       },\\n        {\\n          \\\"roles\\\": [\\\"host\\\"],\\n          \\\"name\\\":\n        \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\": \\\"https://emc.spacebel.be/readme.html\\\"\\n\n        \\       }\\n      ],\\n      \\\"summaries\\\": {\\n        \\\"instruments\\\": [\\\"AATSR\\\"],\\n\n        \\       \\\"platform\\\": [\\\"Envisat\\\"]\\n      }\\n    },\\n    {\\n      \\\"extent\\\":\n        {\\n        \\\"spatial\\\": {\\\"bbox\\\": [[\\n          -180,\\n          -90,\\n          180,\\n\n        \\         90\\n        ]]},\\n        \\\"temporal\\\": {\\\"interval\\\": [[\\n          \\\"2021-10-09T00:00:00.000Z\\\",\\n\n        \\         null\\n        ]]}\\n      },\\n      \\\"stac_version\\\": \\\"1.0.0\\\",\\n\n        \\     \\\"keywords\\\": [\\n        \\\"FedEO\\\",\\n        \\\"SCIHUB\\\",\\n        \\\"DIF10\\\",\\n\n        \\       \\\"Sea Surface Topography\\\",\\n        \\\"EARTH SCIENCE > OCEANS > SEA\n        SURFACE TOPOGRAPHY\\\",\\n        \\\"Radar Altimeters\\\",\\n        \\\"Radiometers\\\",\\n\n        \\       \\\"Sentinel-6\\\",\\n        \\\"POSEIDON-4\\\",\\n        \\\"AMR-C\\\"\\n      ],\\n\n        \\     \\\"created\\\": \\\"2024-01-02T00:00:00.00Z\\\",\\n      \\\"description\\\": \\\"Copernicus\n        Sentinel-6 Michael Freilich is an Earth Observation satellite mission developed\n        to provide enhanced continuity to the very stable time series of mean sea\n        level measurements and ocean sea state that started in 1992, with the TOPEX/Poseidon\n        mission, then continued by the Jason-1, Jason-2 and Jason-3 satellite missions.\\\",\\n\n        \\     \\\"type\\\": \\\"Collection\\\",\\n      \\\"title\\\": \\\"Sentinel-6 Products\\\",\\n\n        \\     \\\"license\\\": \\\"various\\\",\\n      \\\"assets\\\": {\\n        \\\"search\\\":\n        {\\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\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Search client\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_069r3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        }\\n\n        \\     },\\n      \\\"links\\\": [\\n        {\\n          \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"root\\\",\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\": \\\"application/json\\\",\\n\n        \\         \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"title\\\":\n        \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/geo+json\\\",\\n          \\\"title\\\": \\\"Datasets\n        search for the series EOP:ESA:Sentinel-6\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"http://www.opengis.net/def/rel/ogc/1.0/queryables\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/EOP:ESA:SCIHUB:S6/queryables\\\",\\n          \\\"type\\\":\n        \\\"application/schema+json\\\",\\n          \\\"title\\\": \\\"Queryables for EOP:ESA:SCIHUB:S6\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"search\\\",\\n          \\\"href\\\":\n        \\\"https://dataspace.copernicus.eu\\\",\\n          \\\"title\\\": \\\"Copernicus Data\n        Space Ecosystem - Copernicus Data Space Ecosystem\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"search\\\",\\n          \\\"href\\\": \\\"https://fedeo.ceos.org/opensearch/description.xml?parentIdentifier=EOP:ESA:SCIHUB:S6\\\",\\n\n        \\         \\\"title\\\": \\\"FedEO Clearinghouse - FedEO Clearinghouse\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"search\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/series/items/EOP:ESA:SCIHUB:S6/api\\\",\\n\n        \\         \\\"type\\\": \\\"application/opensearchdescription+xml\\\",\\n          \\\"title\\\":\n        \\\"OpenSearch Description Document\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://sentinel.esa.int/web/sentinel/missions/sentinel-6\\\",\\n\n        \\         \\\"title\\\": \\\"ESA Sentinel-6 Online\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=text/turtle;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for ESA/ESRIN\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/Sentinel-6\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for Sentinel-6 platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/700b6e99-a527-5819-b283-4656c8832ea0\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for AMR-C instrument\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/5d1512a5-cb97-5e74-8778-35cd65c06936\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for POSEIDON-4 instrument\\\"\\n        }\\n\n        \\     ],\\n      \\\"id\\\": \\\"EOP:ESA:Sentinel-6\\\",\\n      \\\"updated\\\": \\\"2020-11-21T00:00:00.00Z\\\",\\n\n        \\     \\\"providers\\\": [\\n        {\\n          \\\"roles\\\": [\\\"producer\\\"],\\n\n        \\         \\\"name\\\": \\\"ESA/ESRIN\\\"\\n        },\\n        {\\n          \\\"roles\\\":\n        [\\\"host\\\"],\\n          \\\"name\\\": \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\":\n        \\\"https://emc.spacebel.be/readme.html\\\"\\n        }\\n      ],\\n      \\\"summaries\\\":\n        {\\n        \\\"instruments\\\": [\\n          \\\"AMR-C\\\",\\n          \\\"POSEIDON-4\\\"\\n\n        \\       ],\\n        \\\"platform\\\": [\\\"Sentinel-6\\\"]\\n      }\\n    },\\n    {\\n\n        \\     \\\"extent\\\": {\\n        \\\"spatial\\\": {\\\"bbox\\\": [[\\n          -180,\\n\n        \\         -90,\\n          180,\\n          90\\n        ]]},\\n        \\\"temporal\\\":\n        {\\\"interval\\\": [[\\n          \\\"2017-10-13T00:00:00.000Z\\\",\\n          null\\n\n        \\       ]]}\\n      },\\n      \\\"stac_version\\\": \\\"1.0.0\\\",\\n      \\\"keywords\\\":\n        [\\n        \\\"FedEO\\\",\\n        \\\"SCIHUB\\\",\\n        \\\"DIF10\\\",\\n        \\\"Air\n        Quality\\\",\\n        \\\"EARTH SCIENCE > ATMOSPHERE > AIR QUALITY\\\",\\n        \\\"Sentinel-5P\\\",\\n\n        \\       \\\"TROPOMI\\\"\\n      ],\\n      \\\"created\\\": \\\"2018-10-09T00:00:00.00Z\\\",\\n\n        \\     \\\"description\\\": \\\"The Sentinel-5P data offer for the Pre-Operations\n        Open Access Hub consists of Level-1B and Level-2 user products for the TROPOMI\n        instrument.\\\",\\n      \\\"type\\\": \\\"Collection\\\",\\n      \\\"title\\\": \\\"Sentinel-5P\n        Products\\\",\\n      \\\"license\\\": \\\"various\\\",\\n      \\\"assets\\\": {\\n        \\\"search\\\":\n        {\\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\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Search client\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_069r3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        }\\n\n        \\     },\\n      \\\"links\\\": [\\n        {\\n          \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"root\\\",\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\": \\\"application/json\\\",\\n\n        \\         \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"title\\\":\n        \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/geo+json\\\",\\n          \\\"title\\\": \\\"Datasets\n        search for the series EOP:ESA:Sentinel-5P\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"http://www.opengis.net/def/rel/ogc/1.0/queryables\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/EOP:ESA:SCIHUB:S5P/queryables\\\",\\n          \\\"type\\\":\n        \\\"application/schema+json\\\",\\n          \\\"title\\\": \\\"Queryables for EOP:ESA:SCIHUB:S5P\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"search\\\",\\n          \\\"href\\\":\n        \\\"https://dataspace.copernicus.eu\\\",\\n          \\\"title\\\": \\\"Copernicus Data\n        Space Ecosystem - Copernicus Data Space Ecosystem\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"search\\\",\\n          \\\"href\\\": \\\"https://fedeo.ceos.org/opensearch/description.xml?parentIdentifier=EOP:ESA:SCIHUB:S5P\\\",\\n\n        \\         \\\"title\\\": \\\"FedEO Clearinghouse - FedEO Clearinghouse\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"search\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/series/items/EOP:ESA:SCIHUB:S5P/api\\\",\\n\n        \\         \\\"type\\\": \\\"application/opensearchdescription+xml\\\",\\n          \\\"title\\\":\n        \\\"OpenSearch Description Document\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://sentinel.esa.int/web/sentinel/missions/sentinel-5P\\\",\\n\n        \\         \\\"title\\\": \\\"ESA Sentinel-5P Online\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://sentinels.copernicus.eu/web/sentinel/user-guides/sentinel-5p-tropomi\\\",\\n\n        \\         \\\"title\\\": \\\"Sentinel-5P TROPOMI User Guide \\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=text/turtle;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for ESA/ESRIN\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/Sentinel-5P\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for Sentinel-5P platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/09f91afd-c0d2-52a9-9b50-b895a60917fa\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for TROPOMI instrument\\\"\\n        }\\n\n        \\     ],\\n      \\\"id\\\": \\\"EOP:ESA:Sentinel-5P\\\",\\n      \\\"updated\\\": \\\"2017-04-30T00:00:00.00Z\\\",\\n\n        \\     \\\"stac_extensions\\\": [\\\"https://stac-extensions.github.io/processing/v1.2.0/schema.json\\\"],\\n\n        \\     \\\"providers\\\": [\\n        {\\n          \\\"roles\\\": [\\\"producer\\\"],\\n\n        \\         \\\"name\\\": \\\"ESA/ESRIN\\\"\\n        },\\n        {\\n          \\\"roles\\\":\n        [\\\"host\\\"],\\n          \\\"name\\\": \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\":\n        \\\"https://emc.spacebel.be/readme.html\\\"\\n        }\\n      ],\\n      \\\"summaries\\\":\n        {\\n        \\\"instruments\\\": [\\\"TROPOMI\\\"],\\n        \\\"processing:lineage\\\":\n        [\\\"The Sentinel-5 Precursor objectives are to provide operational space-borne\n        observations in support to the operational monitoring of Air Quality, Climate,\n        Ozone and Surface UV. It will provide measurements of Ozone, NO_2, SO_2, Formaldehyde,\n        Aerosol, Carbonmonoxide, Methane, Clouds.\\\"],\\n        \\\"platform\\\": [\\\"Sentinel-5P\\\"]\\n\n        \\     }\\n    },\\n    {\\n      \\\"extent\\\": {\\n        \\\"spatial\\\": {\\\"bbox\\\":\n        [[\\n          -180,\\n          -90,\\n          180,\\n          90\\n        ]]},\\n\n        \\       \\\"temporal\\\": {\\\"interval\\\": [[\\n          \\\"2016-06-22T00:00:00.000Z\\\",\\n\n        \\         null\\n        ]]}\\n      },\\n      \\\"stac_version\\\": \\\"1.0.0\\\",\\n\n        \\     \\\"keywords\\\": [\\n        \\\"World\\\",\\n        \\\"Planet\\\",\\n        \\\"Land\n        Surface\\\",\\n        \\\"Mapping and Cartography\\\",\\n        \\\"Natural Hazards\n        and Disaster Risk\\\",\\n        \\\"EARTH SCIENCE > LAND SURFACE\\\",\\n        \\\"EARTH\n        SCIENCE > HUMAN DIMENSIONS > NATURAL HAZARDS\\\",\\n        \\\"VIS (0.40 - 0.75\n        \\xB5m)\\\",\\n        \\\"NIR (0.75 - 1.30 \\xB5m)\\\",\\n        \\\"Sun-synchronous\\\",\\n\n        \\       \\\"Very High Resolution - VHR (0 - 5m)\\\",\\n        \\\"475 km (reference)\\\",\\n\n        \\       \\\"25 km\\\",\\n        \\\"Imaging Spectrometers/Radiometers\\\",\\n        \\\"PlanetScope\\\",\\n\n        \\       \\\"PlanetScope Camera\\\"\\n      ],\\n      \\\"created\\\": \\\"2019-08-09T00:00:00.00Z\\\",\\n\n        \\     \\\"description\\\": \\\"The PlanetScope Level 1B Basic Scene and Level 3B\n        Ortho Scene full archive products are available as part of Planet imagery\n        offer.  The Unrectified Asset: PlanetScope Basic Analytic Radiance (TOAR)\n        product is a Scaled Top of Atmosphere Radiance (at sensor) and sensor corrected\n        product, without correction for any geometric distortions inherent in the\n        imaging processes and is not mapped to a cartographic projection. The imagery\n        data is accompanied by Rational Polynomial Coefficients (RPCs) to enable orthorectification\n        by the user.  This kind of product is designed for users with advanced image\n        processing and geometric correction capabilities.     Basic Scene Product\n        Components and Format Product Components:\\\\t - Image File (GeoTIFF format)\n        - Metadata File (XML format) - Rational Polynomial Coefficients (XML format)\n        - Thumbnail File (GeoTIFF format) - Unusable Data Mask UDM File (GeoTIFF format)\n        - Usable Data Mask UDM2 File (GeoTIFF format) Bands: 4-band multispectral\n        image (blue, green, red, near-infrared) or 8-band (coastal-blue, blue, green\n        I, green, yellow, red, Rededge, near-infrared) Ground Sampling Distance:\\\\t\n        - Approximate, satellite altitude dependent - Dove-C: 3.0 m-4.1 m - Dove-R:\n        3.0 m-4.1 m - SuperDove: 3.7 m-4.2 m Accuracy: &lt;10 m RMSE    The Rectified\n        assets: The PlanetScope Ortho Scene product is radiometrically-, sensor- and\n        geometrically- corrected and is projected to a UTM/WGS84 cartographic map\n        projection. The geometric correction uses fine Digital Elevation Models (DEMs)\n        with a post spacing of between 30 and 90 metres.  Ortho Scene Product Components\n        and Format Product Components:\\\\t - Image File (GeoTIFF format) - Metadata\n        File (XML format) - Thumbnail File (GeoTIFF format) - Unusable Data Mask UDM\n        File (GeoTIFF format) - Usable Data Mask UDM2 File (GeoTIFF format) Bands:\n        3-band natural color (red, green, blue) or 4-band multispectral image (blue,\n        green, red, near-infrared) or 8-band (costal-blue, blue, green I, green, yellow,\n        red, RedEdge, near-infrared) Ground Sampling Distance:\\\\t - Approximate, satellite\n        altitude dependent - Dove-C: 3.0 m-4.1 m - Dove-R: 3.0 m-4.1 m  - SuperDove:\n        3.7 m-4.2 m Projection: UTM WGS84 Accuracy: &lt;10 m RMSE    PlanetScope Ortho\n        Scene product is available in the following:   PlanetScope Visual Ortho Scene\n        product is orthorectified and color-corrected (using a colour curve) 3-band\n        RGB Imagery. This correction attempts to optimise colours as seen by the human\n        eye providing images as they would look if viewed from the perspective of\n        the satellite  PlanetScope  Surface Reflectance product is orthorectified,\n        4-band BGRN or 8-band Coastal Blue, Blue, Green I, Green, Yellow, Red, RedEdge,\n        NIR Imagery with geometric, radiometric and  corrected for surface reflection.\n        This data is optimal for value-added image processing such as land cover classifications.\n        \\ PlanetScope Analytic Ortho Scene Surface Reflectance product is orthorectified,\n        4-band BGRN or 8-band Coastal Blue, Blue, Green I, Green, Yellow, Red, RedEdge,\n        NIR Imagery with geometric, radiometric and calibrated to top of atmosphere\n        radiance.  _$$Planet Explorer Catalogue$$ https://www.planet.com/explorer/\n        can be accessed (Planet registration requested) to discover and check the\n        data readiness. It is worth to mention that the data distribution is based\n        on Data Voucher, corresponding to maximum amount of square kilometers can\n        be ordered and downloaded by the project in a maximum period of 15 moths (this\n        duration cannot be extended) starting from the project proposal acceptance\n        date. Each Date Voucher includes PlanetScope tile view streaming access for\n        a total of 20,000 tiles per calendar month during the project period.  All\n        details about the data provision, data access conditions and quota assignment\n        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\n        available in Resources section.\\\",\\n      \\\"type\\\": \\\"Collection\\\",\\n      \\\"title\\\":\n        \\\"PlanetScope Full Archive\\\",\\n      \\\"license\\\": \\\"various\\\",\\n      \\\"assets\\\":\n        {\\n        \\\"metadata_ogc_17_069r3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/PlanetScope.Full.Archive\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        }\\n\n        \\     },\\n      \\\"links\\\": [\\n        {\\n          \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/PlanetScope.Full.Archive\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"root\\\",\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\": \\\"application/json\\\",\\n\n        \\         \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"title\\\":\n        \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://www.planet.com/products/#satellite-imagery\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Planet products\n        - Catalogue\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://earth.esa.int/eogateway/documents/20142/37627/Planet-combined-imagery-product-specs-2020.pdf?text=Combined-Imagery-Product-Spec.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"Planet Imagery\n        Product Specifications - Product Specifications\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://developers.planet.com/docs/apps/explorer/\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"Planet Explorer\n        User Guide - User Manual\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://www.planet.com/explorer/\\\",\\n          \\\"type\\\":\n        \\\"text/html\\\",\\n          \\\"title\\\": \\\"Planet Explorer Catalogue - Catalogue\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\":\n        \\\"https://earth.esa.int/eogateway/documents/20142/37627/Access-to-ESAs-Planet-Missions-Terms-of-Applicability.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"Planet Terms\n        of Applicability - Access Guide\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://esatellus.service-now.com/csp?id=esa_simple_request\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Get Help? - ESA\n        Earth Observation User Services Portal\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?httpAccept=application/rdf%2Bxml;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?httpAccept=text/turtle;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for ESA/ESRIN\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/PlanetScope\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for PlanetScope platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/94314806-9c68-521a-87e2-8cd838eb9de0\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for PlanetScope Camera instrument\\\"\\n\n        \\       }\\n      ],\\n      \\\"id\\\": \\\"PlanetScope.Full.Archive\\\",\\n      \\\"updated\\\":\n        \\\"2023-06-13T13:23:41Z\\\",\\n      \\\"providers\\\": [\\n        {\\n          \\\"roles\\\":\n        [\\\"producer\\\"],\\n          \\\"name\\\": \\\"ESA/ESRIN\\\",\\n          \\\"url\\\": \\\"http://www.esa.int\\\"\\n\n        \\       },\\n        {\\n          \\\"roles\\\": [\\\"host\\\"],\\n          \\\"name\\\":\n        \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\": \\\"https://emc.spacebel.be/readme.html\\\"\\n\n        \\       }\\n      ],\\n      \\\"summaries\\\": {\\n        \\\"instruments\\\": [\\\"PlanetScope\n        Camera\\\"],\\n        \\\"platform\\\": [\\\"PlanetScope\\\"]\\n      }\\n    },\\n    {\\n\n        \\     \\\"extent\\\": {\\n        \\\"spatial\\\": {\\\"bbox\\\": [[\\n          -180,\\n\n        \\         -82,\\n          180,\\n          82\\n        ]]},\\n        \\\"temporal\\\":\n        {\\\"interval\\\": [[\\n          \\\"1991-08-01T00:00:00.000Z\\\",\\n          \\\"2003-06-22T23:59:59.999Z\\\"\\n\n        \\       ]]}\\n      },\\n      \\\"stac_version\\\": \\\"1.0.0\\\",\\n      \\\"keywords\\\":\n        [\\n        \\\"World\\\",\\n        \\\"Agriculture\\\",\\n        \\\"Forestry\\\",\\n        \\\"Oceans\\\",\\n\n        \\       \\\"Ocean Temperature\\\",\\n        \\\"Natural Hazards and Disaster Risk\\\",\\n\n        \\       \\\"Atmosphere\\\",\\n        \\\"Clouds\\\",\\n        \\\"Precipitation\\\",\\n\n        \\       \\\"EARTH SCIENCE > AGRICULTURE\\\",\\n        \\\"EARTH SCIENCE > BIOSPHERE\n        > ECOSYSTEMS > TERRESTRIAL ECOSYSTEMS > FORESTS\\\",\\n        \\\"EARTH SCIENCE\n        > OCEANS\\\",\\n        \\\"EARTH SCIENCE > OCEANS > OCEAN TEMPERATURE\\\",\\n        \\\"EARTH\n        SCIENCE > HUMAN DIMENSIONS > NATURAL HAZARDS\\\",\\n        \\\"EARTH SCIENCE >\n        ATMOSPHERE\\\",\\n        \\\"EARTH SCIENCE > ATMOSPHERE > CLOUDS\\\",\\n        \\\"EARTH\n        SCIENCE > ATMOSPHERE > PRECIPITATION\\\",\\n        \\\"Sun-synchronous\\\",\\n        \\\"782\n        to 785 km\\\",\\n        \\\"5 km\\\",\\n        \\\"Imaging Spectrometers/Radiometers\\\",\\n\n        \\       \\\"ERS-1\\\",\\n        \\\"ERS-2\\\",\\n        \\\"ATSR-1\\\",\\n        \\\"ATSR-2\\\"\\n\n        \\     ],\\n      \\\"created\\\": \\\"2019-05-29T00:00:00.00Z\\\",\\n      \\\"description\\\":\n        \\\"The Gridded Surface Temperature (GST) Product is the Level 2 full resolution\n        geophysical product. The product contains gridded sea-surface temperature\n        images using both nadir and dual view retrieval algorithms. The product includes\n        pixel latitude/longitude positions, X/Y offset and the results of the cloud-clearing/land-flagging.\n        \\ It contains a single measurement data set the content of which is switchable,\n        that is to say, the content of each pixel field will depend on the surface\n        type. Specifically, the contents of the data fields will depend on the setting\n        of the forward and nadir cloud flags and the land flag.  The 3rd reprocessing\n        of ATSR data was performed in 2013; the processing updates that have been\n        put in place and the scientific improvements are outlined in full in the User\n        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\n        \\     \\\"type\\\": \\\"Collection\\\",\\n      \\\"title\\\": \\\"ERS-1/2 ATSR Gridded Surface\n        Temperature [AT1/AT2_NR__2P]\\\",\\n      \\\"license\\\": \\\"various\\\",\\n      \\\"assets\\\":\n        {\\n        \\\"metadata_ogc_17_069r3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ERS.AT_NR__2P\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/ERS.AT_NR__2P?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ERS.AT_NR__2P?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ERS.AT_NR__2P?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ERS.AT_NR__2P?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ERS.AT_NR__2P?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ERS.AT_NR__2P?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        }\\n\n        \\     },\\n      \\\"links\\\": [\\n        {\\n          \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/ERS.AT_NR__2P\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"root\\\",\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\": \\\"application/json\\\",\\n\n        \\         \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"title\\\":\n        \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"Envisat-style\n        products for ATSR-1 and ATSR-2 data - Products Specification\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"AATSR Product\n        Specifications - Products Specification\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://earth.esa.int/eogateway/instruments/atsr/products-information\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"ATSR Product Information\n        - Product Information\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://earth.esa.int/eogateway/search?text=&category=Document%20library&filter=atsr-1,atsr-2\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"More ATSR Documents\n        - Product Specifications\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://earth.esa.int/eogateway/search?skipDetection=true&text=&category=Tools%20and%20toolboxes&filter=atsr-1,atsr-2\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"(A)ATSR Software\n        Tools - Tools\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://esatellus.service-now.com/csp?id=esa_simple_request\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Get Help? - ESA\n        Earth Observation User Services Portal\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/ERS.AT_NR__2P?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/ERS.AT_NR__2P?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/ERS.AT_NR__2P?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/ERS.AT_NR__2P?httpAccept=text/turtle;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for ESA/ESRIN\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/ERS-1\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for ERS-1 platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/ERS-2\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for ERS-2 platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/93343b90-3e9f-5830-abe7-151cc69401c1\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for ATSR-1 instrument\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/f3ef7078-65ef-5dee-8c5c-61f9706a34ad\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for ATSR-2 instrument\\\"\\n        }\\n\n        \\     ],\\n      \\\"id\\\": \\\"ERS.AT_NR__2P\\\",\\n      \\\"updated\\\": \\\"2023-06-13T13:23:39Z\\\",\\n\n        \\     \\\"providers\\\": [\\n        {\\n          \\\"roles\\\": [\\\"producer\\\"],\\n\n        \\         \\\"name\\\": \\\"ESA/ESRIN\\\",\\n          \\\"url\\\": \\\"http://www.esa.int\\\"\\n\n        \\       },\\n        {\\n          \\\"roles\\\": [\\\"host\\\"],\\n          \\\"name\\\":\n        \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\": \\\"https://emc.spacebel.be/readme.html\\\"\\n\n        \\       }\\n      ],\\n      \\\"summaries\\\": {\\n        \\\"instruments\\\": [\\n\n        \\         \\\"ATSR-1\\\",\\n          \\\"ATSR-2\\\"\\n        ],\\n        \\\"platform\\\":\n        [\\n          \\\"ERS-1\\\",\\n          \\\"ERS-2\\\"\\n        ]\\n      }\\n    },\\n\n        \\   {\\n      \\\"extent\\\": {\\n        \\\"spatial\\\": {\\\"bbox\\\": [[\\n          -180,\\n\n        \\         -90,\\n          180,\\n          90\\n        ]]},\\n        \\\"temporal\\\":\n        {\\\"interval\\\": [[\\n          \\\"1995-07-01T00:00:00.000Z\\\",\\n          \\\"2015-12-31T23:59:59.999Z\\\"\\n\n        \\       ]]}\\n      },\\n      \\\"stac_version\\\": \\\"1.0.0\\\",\\n      \\\"sci:doi\\\":\n        \\\"10.57780/esa-1268efe\\\",\\n      \\\"keywords\\\": [\\n        \\\"World\\\",\\n        \\\"Atmosphere\\\",\\n\n        \\       \\\"Atmospheric Chemistry\\\",\\n        \\\"Atmospheric Radiation\\\",\\n        \\\"Atmospheric\n        Temperature\\\",\\n        \\\"Climate\\\",\\n        \\\"EARTH SCIENCE > ATMOSPHERE\\\",\\n\n        \\       \\\"EARTH SCIENCE > ATMOSPHERE > ATMOSPHERIC CHEMISTRY\\\",\\n        \\\"EARTH\n        SCIENCE > ATMOSPHERE > ATMOSPHERIC RADIATION\\\",\\n        \\\"EARTH SCIENCE >\n        ATMOSPHERE > ATMOSPHERIC TEMPERATURE\\\",\\n        \\\"EARTH SCIENCE > CLIMATE\n        INDICATORS\\\",\\n        \\\"Sun-synchronous\\\",\\n        \\\"GDP 5.0\\\",\\n        \\\"782\n        to 785 km\\\",\\n        \\\"5 km\\\",\\n        \\\"Spectrometers\\\",\\n        \\\"ERS-2\\\",\\n\n        \\       \\\"GOME\\\"\\n      ],\\n      \\\"created\\\": \\\"2019-05-29T00:00:00.00Z\\\",\\n\n        \\     \\\"description\\\": \\\"The GOME Total Column Water Vapour (TCWV) Climate\n        product was generated by the Max Planck Institute for Chemistry (MPIC), and\n        the German Aerospace Center (DLR) within the ESA GOME-Evolution project. It\n        is a Level 3 type product containing homogenized time-series of the global\n        distribution of TCWV spanning over more than two decades (1995-2015).  The\n        data is provided as single netCDF file, containing monthly mean TCWV (units\n        kg/m2) with 1-degree resolution, and is based on measurements from the satellite\n        instruments ERS-2 GOME, Envisat SCIAMACHY, and MetOp-A GOME-2.  Details are\n        available in the paper by Beirle et al, 2018,.  Please also consult the GOME\n        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\n        \\     \\\"type\\\": \\\"Collection\\\",\\n      \\\"title\\\": \\\"GOME Total Column Water\n        Vapour Climate product\\\",\\n      \\\"license\\\": \\\"various\\\",\\n      \\\"assets\\\":\n        {\\n        \\\"metadata_ogc_17_069r3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/GOME_Evl_ClimateProd_TCWV\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/GOME_Evl_ClimateProd_TCWV?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/GOME_Evl_ClimateProd_TCWV?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/GOME_Evl_ClimateProd_TCWV?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/GOME_Evl_ClimateProd_TCWV?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/GOME_Evl_ClimateProd_TCWV?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/GOME_Evl_ClimateProd_TCWV?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        }\\n\n        \\     },\\n      \\\"links\\\": [\\n        {\\n          \\\"rel\\\": \\\"cite-as\\\",\\n\n        \\         \\\"href\\\": \\\"https://doi.org/10.57780/esa-1268efe\\\",\\n          \\\"type\\\":\n        \\\"text/html\\\",\\n          \\\"title\\\": \\\"Landing page\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/GOME_Evl_ClimateProd_TCWV\\\",\\n\n        \\         \\\"type\\\": \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"root\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\",\\n          \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n\n        \\         \\\"title\\\": \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\":\n        \\\"https://earth.esa.int/eogateway/documents/20142/37627/GOME-Data-Processor-DLFE-638-PSD-4B.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"GOME TCWV\n        Climate product Technical Documents - Product Specifications\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"GOME Level\n        1 to 2 Algorithms Description - Technical Note\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"Algorithm\n        Theoretical Basis Document for GOME Total Column Densities of Ozone and Nitrogen\n        Dioxide - Technical Note\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://earth.esa.int/eogateway/documents/20142/37627/GOME-Disclaimer-2004-DLFE-640.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"Disclaimer\n        for GOME Level-1 and Level-2 Data Products - Technical Note\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"GOME Software\n        Databases for Level 1 to 2 Processing - Technical Note\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"Delta Validation\n        Report for ERS-2 GOME Data Processor upgrade toversion 4.0 - Technical Note\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\":\n        \\\"https://earth.esa.int/eogateway/documents/20142/37627/GOME-Data-Processor-DLFE-656-DLR-GOME-SUM-gdp01-ex-4.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"GOME Data\n        Processor Extraction Software - User Manual\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://earth.esa.int/eogateway/search?category=Document+library&filter=gome\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"More GOME Documents\n        - Other\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\":\n        \\\"https://earth.esa.int/eogateway/instruments/gome/products-information\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Documentation related\n        to GOME data quality - Other\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://esatellus.service-now.com/csp?id=esa_simple_request\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Get Help? - ESA\n        Earth Observation User Services Portal\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/GOME_Evl_ClimateProd_TCWV?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/GOME_Evl_ClimateProd_TCWV?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/GOME_Evl_ClimateProd_TCWV?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/GOME_Evl_ClimateProd_TCWV?httpAccept=text/turtle;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for ESA/ESRIN\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/ERS-2\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for ERS-2 platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/a58b108b-492f-54a5-b807-cb97306b6aad\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for GOME instrument\\\"\\n        }\\n\n        \\     ],\\n      \\\"id\\\": \\\"GOME_Evl_ClimateProd_TCWV\\\",\\n      \\\"updated\\\":\n        \\\"2023-06-13T13:23:39Z\\\",\\n      \\\"stac_extensions\\\": [\\\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\\\"],\\n\n        \\     \\\"providers\\\": [\\n        {\\n          \\\"roles\\\": [\\\"producer\\\"],\\n\n        \\         \\\"name\\\": \\\"ESA/ESRIN\\\",\\n          \\\"url\\\": \\\"http://www.esa.int\\\"\\n\n        \\       },\\n        {\\n          \\\"roles\\\": [\\\"host\\\"],\\n          \\\"name\\\":\n        \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\": \\\"https://emc.spacebel.be/readme.html\\\"\\n\n        \\       }\\n      ],\\n      \\\"summaries\\\": {\\n        \\\"instruments\\\": [\\\"GOME\\\"],\\n\n        \\       \\\"platform\\\": [\\\"ERS-2\\\"]\\n      }\\n    },\\n    {\\n      \\\"extent\\\":\n        {\\n        \\\"spatial\\\": {\\\"bbox\\\": [[\\n          -180,\\n          -90,\\n          180,\\n\n        \\         90\\n        ]]},\\n        \\\"temporal\\\": {\\\"interval\\\": [[\\n          \\\"2001-11-01T00:00:00.000Z\\\",\\n\n        \\         \\\"2015-03-31T23:59:59.999Z\\\"\\n        ]]}\\n      },\\n      \\\"stac_version\\\":\n        \\\"1.0.0\\\",\\n      \\\"keywords\\\": [\\n        \\\"World\\\",\\n        \\\"Multispectral\\\",\\n\n        \\       \\\"Panchromatic\\\",\\n        \\\"Pan-sharpened\\\",\\n        \\\"EUSI\\\",\\n\n        \\       \\\"Maxar\\\",\\n        \\\"GeoEye\\\",\\n        \\\"WorldView\\\",\\n        \\\"Cartosat\\\",\\n\n        \\       \\\"Vegetation\\\",\\n        \\\"EARTH SCIENCE > BIOSPHERE > VEGETATION\\\",\\n\n        \\       \\\"VIS (0.40 - 0.75 \\xB5m)\\\",\\n        \\\"NIR (0.75 - 1.30 \\xB5m)\\\",\\n\n        \\       \\\"Sun-synchronous\\\",\\n        \\\"Very High Resolution - VHR (0 - 5m)\\\",\\n\n        \\       \\\"High Resolution - HR (5 - 20 m)\\\",\\n        \\\"450 km\\\",\\n        \\\"16.5\n        km\\\",\\n        \\\"Cameras\\\",\\n        \\\"QuickBird-2\\\",\\n        \\\"BGI\\\"\\n      ],\\n\n        \\     \\\"created\\\": \\\"2019-05-22T00:00:00.00Z\\\",\\n      \\\"description\\\": \\\"QuickBird\n        high resolution optical products are available as part of the Maxar Standard\n        Satellite Imagery products from the QuickBird, WorldView-1/-2/-3/-4, and GeoEye-1\n        satellites. All details about the data provision, data access conditions and\n        quota assignment procedure are described into the Terms of Applicability available\n        in Resources section.  In particular, QuickBird offers archive panchromatic\n        products up to 0.60m GSD resolution and 4-Bands Multispectral products up\n        to 2.4m GSD resolution  \\\\u2022 Panchromatic and 4-bands - Levels: STANDARD\n        (2A) / VIEW READY STANDARD (OR2A), VIEW READY STEREO, MAP-READY (ORTHO) 1:12.000\n        Orthorectified, MAP-READY (ORTHO) 1:50.000 Orthorectified - Resolutions: 0.30\n        m, 0.40 m, 0.50 m. 0.60 m \\\\u2022 8-Bands - Levels: STANDARD (2A) / VIEW READY\n        STANDARD (OR2A), VIEW READY STEREO, MAP-READY (ORTHO) 1:12.000 Orthorectified\n        - Resolutions: 0.30 m, 0.40 m, 0.50 m. 0.60 m   4-Bands being an optional\n        from: \\\\u2022\\\\u2022 4-Band Multispectral (BLUE, GREEN, RED, NIR1) \\\\u2022\n        4-Band Pan-sharpened (BLUE, GREEN, RED, NIR1) \\\\u2022 4-Band Bundle (PAN,\n        BLUE, GREEN, RED, NIR1) \\\\u2022 3-Bands Natural Colour (pan-sharpened BLUE,\n        GREEN, RED)  \\\\u2022 3-Band Colored Infrared (pan-sharpened GREEN, RED, NIR1)\n        \\\\u2022 Natural Colour / Coloured Infrared (3-Band pan-sharpened)  The list\n        of available archived data can be retrieved using the Image Library (https://www.euspaceimaging.com/image-library/)\n        catalogue.\\\",\\n      \\\"type\\\": \\\"Collection\\\",\\n      \\\"title\\\": \\\"QuickBird\n        full archive\\\",\\n      \\\"license\\\": \\\"various\\\",\\n      \\\"assets\\\": {\\n        \\\"metadata_ogc_17_069r3\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/QuickBird.full.archive\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/QuickBird.full.archive?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/QuickBird.full.archive?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/QuickBird.full.archive?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/QuickBird.full.archive?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/QuickBird.full.archive?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/QuickBird.full.archive?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        }\\n\n        \\     },\\n      \\\"links\\\": [\\n        {\\n          \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/QuickBird.full.archive\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"root\\\",\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\": \\\"application/json\\\",\\n\n        \\         \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"title\\\":\n        \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"Map Ready\n        data imagery sheet - Product Sepcification\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://earth.esa.int/eogateway/documents/20142/37627/DigitalGlobe-GeoStereo.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"GeoStereo\n        product details - Product Sepcification\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://earth.esa.int/eogateway/documents/20142/37627/DigitalGlobe-Stereo-Imagery.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"Stereo product\n        details - Product Sepcification\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://earth.esa.int/eogateway/documents/20142/37627/view-ready-imagery-data-sheet.pdf/e1476ac6-51cc-6052-c138-844dcc0200b8\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"View Ready\n        imagery data sheet - Product Sepcification\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://earth.esa.int/eogateway/documents/20142/37627/WorldView-GeoEye-QuickBird-Terms-Of-Applicability.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"Indian Data\n        Terms of Applicability - Access guide\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://esatellus.service-now.com/csp?id=esa_simple_request&sys_id=f27b38f9dbdffe40e3cedb11ce961958\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Get Help? - ESA\n        Earth Observation User Services Portal\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/QuickBird.full.archive?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/QuickBird.full.archive?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/QuickBird.full.archive?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/QuickBird.full.archive?httpAccept=application/rdf%2Bxml;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/QuickBird.full.archive?httpAccept=text/turtle;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for ESA/ESRIN\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/QuickBird-2\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for QuickBird-2 platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/aee4648e-d5cc-5e77-8354-87f45367f1a9\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for BGI instrument\\\"\\n        }\\n\n        \\     ],\\n      \\\"id\\\": \\\"QuickBird.full.archive\\\",\\n      \\\"updated\\\": \\\"2023-06-13T13:23:41Z\\\",\\n\n        \\     \\\"providers\\\": [\\n        {\\n          \\\"roles\\\": [\\\"producer\\\"],\\n\n        \\         \\\"name\\\": \\\"ESA/ESRIN\\\",\\n          \\\"url\\\": \\\"http://www.esa.int\\\"\\n\n        \\       },\\n        {\\n          \\\"roles\\\": [\\\"host\\\"],\\n          \\\"name\\\":\n        \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\": \\\"https://emc.spacebel.be/readme.html\\\"\\n\n        \\       }\\n      ],\\n      \\\"summaries\\\": {\\n        \\\"instruments\\\": [\\\"BGI\\\"],\\n\n        \\       \\\"platform\\\": [\\\"QuickBird-2\\\"]\\n      }\\n    },\\n    {\\n      \\\"extent\\\":\n        {\\n        \\\"spatial\\\": {\\\"bbox\\\": [[\\n          -180,\\n          -90,\\n          180,\\n\n        \\         90\\n        ]]},\\n        \\\"temporal\\\": {\\\"interval\\\": [[\\n          \\\"2005-01-01T00:00:00.000Z\\\",\\n\n        \\         \\\"2005-12-31T23:59:59.999Z\\\"\\n        ]]}\\n      },\\n      \\\"stac_version\\\":\n        \\\"1.0.0\\\",\\n      \\\"sci:doi\\\": \\\"10.5270/esa-6riial9\\\",\\n      \\\"keywords\\\":\n        [\\n        \\\"World\\\",\\n        \\\"Surface Radiative Properties\\\",\\n        \\\"EARTH\n        SCIENCE > LAND SURFACE > SURFACE RADIATIVE PROPERTIES\\\",\\n        \\\"UV (0.01\n        - 0.4 \\xB5m)\\\",\\n        \\\"VIS (0.40 - 0.75 \\xB5m)\\\",\\n        \\\"NIR (0.75\n        - 1.30 \\xB5m)\\\",\\n        \\\"SWIR (1.3 - 3.0 \\xB5m)\\\",\\n        \\\"MWIR (3.0\n        - 6.0 \\xB5m)\\\",\\n        \\\"4.0\\\",\\n        \\\"Very Low Resolution - VLR (>\n        1200 m)\\\",\\n        \\\"Imaging Spectrometers/Radiometers\\\",\\n        \\\"Scatterometers\\\",\\n\n        \\       \\\"TERRA\\\",\\n        \\\"AQUA\\\",\\n        \\\"QuikSCAT\\\",\\n        \\\"OrbView-2\\\",\\n\n        \\       \\\"MODIS\\\",\\n        \\\"SeaWinds\\\",\\n        \\\"SeaWiFS\\\"\\n      ],\\n\n        \\     \\\"created\\\": \\\"2019-11-21T00:00:00.00Z\\\",\\n      \\\"description\\\": \\\"ADAM\n        enables generating typical monthly variations of the global Earth surface\n        reflectance at 0.1\\xB0 spatial resolution (Plate Carree projection) and over\n        the spectral range 240-4000nm.  The ADAM product is made of gridded monthly\n        mean climatologies over land and ocean surfaces, and of a companion API toolkit\n        that enables the calculation of hyperspectral (at 1 nm resolution over the\n        whole 240-4000 nm spectral range) and multidirectional reflectances (i.e.\n        in any illumination/viewing geometry) depending on user choices.  The ADAM\n        climatologies that feed the ADAM calculation tools are:  For ocean:  monthly\n        chlorophyll concentration derived from SeaWiFS-OrbView-2 (1999-2009); it is\n        used to compute the water column reflectance (which shows large spectral variations\n        in the visible, but is insignificant in the near and mid infrared). monthly\n        wind speed derived from SeaWinds-QuikSCAT-(1999-2009); it is used to calculate\n        the ocean glint reflectance. For land:  monthly normalized surface reflectances\n        in the 7 MODIS narrow spectral bands derived from FondsdeSol processing chain\n        of MOD09A1 products (derived from Aqua and Terra observations), on which relies\n        the modelling of the hyperspectral/multidirectional surface (soil/vegetation/snow)\n        reflectance. uncertainty variance-covariance matrix for the 7 spectral bands\n        associated to the normalized surface reflectance. For sea-ice:  Sea ice pixels\n        (masked in the original MOD09A1 products) have been accounted for by a gap-filling\n        approach relying on the spatial-temporal distribution of sea ice coverage\n        provided by the CryoClim climatology for year 2005.\\\",\\n      \\\"type\\\": \\\"Collection\\\",\\n\n        \\     \\\"title\\\": \\\"ADAM Surface Reflectance Database v4.0\\\",\\n      \\\"license\\\":\n        \\\"various\\\",\\n      \\\"assets\\\": {\\n        \\\"metadata_ogc_17_069r3\\\": {\\n\n        \\         \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/ADAM.Surface.Reflectance.Database\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/ADAM.Surface.Reflectance.Database?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ADAM.Surface.Reflectance.Database?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ADAM.Surface.Reflectance.Database?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ADAM.Surface.Reflectance.Database?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ADAM.Surface.Reflectance.Database?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ADAM.Surface.Reflectance.Database?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        }\\n\n        \\     },\\n      \\\"links\\\": [\\n        {\\n          \\\"rel\\\": \\\"cite-as\\\",\\n\n        \\         \\\"href\\\": \\\"https://doi.org/10.5270/esa-6riial9\\\",\\n          \\\"type\\\":\n        \\\"text/html\\\",\\n          \\\"title\\\": \\\"Landing page\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/ADAM.Surface.Reflectance.Database\\\",\\n\n        \\         \\\"type\\\": \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"root\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\",\\n          \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n\n        \\         \\\"title\\\": \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\":\n        \\\"https://adam.noveltis.fr/\\\",\\n          \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\":\n        \\\"ADAM Database - Software Tool\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://adam.noveltis.fr/pdfs/NOV-FE-0724-NT-007-v4.2.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"ADAM Algorithm\n        Theoretical Basis Document - Technical Note\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://adam.noveltis.fr/pdfs/NOV-FE-0724-NT-008-v4.0.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"ADAM, description\n        of the web interface. Structure of the ADAM input surface database and output\n        products - Technical Note\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://adam.noveltis.fr/pdfs/NOV-FE-0724-NT-006_v2.1.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"ADAM Final\n        Report, Contract Change request 6 - Technical Note\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://esatellus.service-now.com/csp?id=esa_simple_request\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Get Help? - ESA\n        Earth Observation User Services Portal\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/ADAM.Surface.Reflectance.Database?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/ADAM.Surface.Reflectance.Database?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/ADAM.Surface.Reflectance.Database?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/ADAM.Surface.Reflectance.Database?httpAccept=text/turtle;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for ESA/ESRIN\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/TERRA\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for TERRA platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/AQUA\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for AQUA platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/QuikSCAT\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for QuikSCAT platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/OrbView-2\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for OrbView-2 platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/482c462e-543c-5b17-9c69-ef7327e950a9\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for SeaWiFS instrument\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/ada8f84c-48ef-50a6-b2ba-635a1bdb7d14\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for MODIS instrument\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/3a0e9379-9541-569c-8492-3636d0ef2a27\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for SeaWinds instrument\\\"\\n        }\\n\n        \\     ],\\n      \\\"id\\\": \\\"ADAM.Surface.Reflectance.Database\\\",\\n      \\\"updated\\\":\n        \\\"2023-06-13T13:23:39Z\\\",\\n      \\\"stac_extensions\\\": [\\\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\\\"],\\n\n        \\     \\\"providers\\\": [\\n        {\\n          \\\"roles\\\": [\\\"producer\\\"],\\n\n        \\         \\\"name\\\": \\\"ESA/ESRIN\\\",\\n          \\\"url\\\": \\\"http://www.esa.int\\\"\\n\n        \\       },\\n        {\\n          \\\"roles\\\": [\\\"host\\\"],\\n          \\\"name\\\":\n        \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\": \\\"https://emc.spacebel.be/readme.html\\\"\\n\n        \\       }\\n      ],\\n      \\\"summaries\\\": {\\n        \\\"instruments\\\": [\\n\n        \\         \\\"SeaWiFS\\\",\\n          \\\"MODIS\\\",\\n          \\\"SeaWinds\\\"\\n        ],\\n\n        \\       \\\"platform\\\": [\\n          \\\"TERRA\\\",\\n          \\\"AQUA\\\",\\n          \\\"QuikSCAT\\\",\\n\n        \\         \\\"OrbView-2\\\"\\n        ]\\n      }\\n    },\\n    {\\n      \\\"extent\\\":\n        {\\n        \\\"spatial\\\": {\\\"bbox\\\": [[\\n          -180,\\n          -82,\\n          180,\\n\n        \\         82\\n        ]]},\\n        \\\"temporal\\\": {\\\"interval\\\": [[\\n          \\\"1991-08-01T00:00:00.000Z\\\",\\n\n        \\         \\\"2011-07-04T23:59:59.999Z\\\"\\n        ]]}\\n      },\\n      \\\"stac_version\\\":\n        \\\"1.0.0\\\",\\n      \\\"sci:doi\\\": \\\"10.57780/ers-af99f2b\\\",\\n      \\\"keywords\\\":\n        [\\n        \\\"World\\\",\\n        \\\"Natural Hazards and Disaster Risk\\\",\\n        \\\"Atmosphere\\\",\\n\n        \\       \\\"Atmospheric Winds\\\",\\n        \\\"EARTH SCIENCE > HUMAN DIMENSIONS\n        > NATURAL HAZARDS\\\",\\n        \\\"EARTH SCIENCE > ATMOSPHERE\\\",\\n        \\\"EARTH\n        SCIENCE > ATMOSPHERE > ATMOSPHERIC WINDS\\\",\\n        \\\"Sun-synchronous\\\",\\n\n        \\       \\\"ASPS 10.04\\\",\\n        \\\"Very Low Resolution - VLR (> 1200 m)\\\",\\n\n        \\       \\\"782 to 785 km\\\",\\n        \\\"5 km\\\",\\n        \\\"Scatterometers\\\",\\n\n        \\       \\\"ERS-1\\\",\\n        \\\"ERS-2\\\",\\n        \\\"AMI/Scatterometer\\\"\\n      ],\\n\n        \\     \\\"created\\\": \\\"2019-05-29T00:00:00.00Z\\\",\\n      \\\"description\\\": \\\"The\n        ERS data reprocessed with the ASPS facility is also available in the UWI format\n        to maintain the compatibility with the FD (Fast Delivery) products.  The ASPS\n        UWI product is organised in frames of 500 x 500 km providing the radar backscattering\n        sigma nought for the three beams of the instrument plus the wind speed and\n        direction.  The wind retrieval is performed with the CMOD5N geophysical model\n        function derived by ECMWF to compute the neutral winds rather than 10m winds.\n        \\ ASPS UWI products are provided with a spatial resolution of 50x50km and\n        a grid spacing of 25 km. One product covers one orbit from ascending node\n        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)\n        before using the ERS ASPS data.\\\",\\n      \\\"type\\\": \\\"Collection\\\",\\n      \\\"title\\\":\n        \\\"ERS-1/2 SCATTEROMETER Nominal Resolution back-scattering measurements, Ocean\n        Wind field [UWI]\\\",\\n      \\\"license\\\": \\\"various\\\",\\n      \\\"assets\\\": {\\n\n        \\       \\\"metadata_ogc_17_069r3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ERS.UWI\\\",\\n          \\\"type\\\":\n        \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/ERS.UWI?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ERS.UWI?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ERS.UWI?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ERS.UWI?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ERS.UWI?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ERS.UWI?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        }\\n\n        \\     },\\n      \\\"links\\\": [\\n        {\\n          \\\"rel\\\": \\\"cite-as\\\",\\n\n        \\         \\\"href\\\": \\\"https://doi.org/10.57780/ers-af99f2b\\\",\\n          \\\"type\\\":\n        \\\"text/html\\\",\\n          \\\"title\\\": \\\"Landing page\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/ERS.UWI\\\",\\n\n        \\         \\\"type\\\": \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"root\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\",\\n          \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n\n        \\         \\\"title\\\": \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\":\n        \\\"https://earth.esa.int/eogateway/instruments/ws/products-information\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Documentation related\n        to SCATTEROMETER data - Product Specifications\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://earth.esa.int/web/sppa/mission-performance/esa-missions/ers-2/scatterometer/quality-control-reports\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"SCATTEROMETER Quality\n        Information - Product Specifications\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://earth.esa.int/eogateway/search?skipDetection=true&text=&category=Document%20library&filter=ami-scatterometer\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"All SCATTEROMETER\n        documents - Product Specifications\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://esatellus.service-now.com/csp?id=esa_simple_request\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Get Help? - ESA\n        Earth Observation User Services Portal\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/ERS.UWI?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/ERS.UWI?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/ERS.UWI?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/ERS.UWI?httpAccept=application/rdf%2Bxml;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/ERS.UWI?httpAccept=text/turtle;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/ERS.UWI?httpAccept=text/turtle;profile=http://data.europa.eu/930/\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for ESA/ESRIN\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/ERS-1\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for ERS-1 platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/ERS-2\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for ERS-2 platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/2659e931-c15f-5b28-82e4-36c69ee2f848\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for AMI/Scatterometer instrument\\\"\\n\n        \\       }\\n      ],\\n      \\\"id\\\": \\\"ERS.UWI\\\",\\n      \\\"updated\\\": \\\"2023-06-23T09:01:27Z\\\",\\n\n        \\     \\\"stac_extensions\\\": [\\\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\\\"],\\n\n        \\     \\\"providers\\\": [\\n        {\\n          \\\"roles\\\": [\\\"producer\\\"],\\n\n        \\         \\\"name\\\": \\\"ESA/ESRIN\\\",\\n          \\\"url\\\": \\\"http://www.esa.int\\\"\\n\n        \\       },\\n        {\\n          \\\"roles\\\": [\\\"host\\\"],\\n          \\\"name\\\":\n        \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\": \\\"https://emc.spacebel.be/readme.html\\\"\\n\n        \\       }\\n      ],\\n      \\\"summaries\\\": {\\n        \\\"instruments\\\": [\\\"AMI/Scatterometer\\\"],\\n\n        \\       \\\"platform\\\": [\\n          \\\"ERS-1\\\",\\n          \\\"ERS-2\\\"\\n        ]\\n\n        \\     }\\n    }\\n  ],\\n  \\\"numberReturned\\\": 10,\\n  \\\"links\\\": [\\n    {\\n      \\\"rel\\\":\n        \\\"self\\\",\\n      \\\"href\\\": \\\"https://emc.spacebel.be/collections?limit=10&bbox=-159.893%2C21.843%2C-159.176%2C22.266\\\",\\n\n        \\     \\\"type\\\": \\\"application/json\\\",\\n      \\\"title\\\": \\\"This document\\\"\\n\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\n        \\     \\\"type\\\": \\\"application/json\\\",\\n      \\\"title\\\": \\\"Next results\\\"\\n\n        \\   },\\n    {\\n      \\\"rel\\\": \\\"http://www.opengis.net/def/rel/ogc/1.0/queryables\\\",\\n\n        \\     \\\"href\\\": \\\"https://emc.spacebel.be/collections/queryables\\\",\\n      \\\"type\\\":\n        \\\"application/schema+json\\\",\\n      \\\"title\\\": \\\"Queryables for collection\n        search\\\"\\n    }\\n  ],\\n  \\\"numberMatched\\\": 2365\\n}\"\n    headers:\n      Access-Control-Allow-Headers:\n      - X-PINGOTHER, Content-Type, Authorization, Accept\n      Access-Control-Allow-Methods:\n      - POST,GET,PUT,HEAD,OPTIONS,DELETE\n      Access-Control-Allow-Origin:\n      - '*'\n      Cache-Control:\n      - no-cache, no-store, max-age=0, must-revalidate\n      Connection:\n      - keep-alive\n      Content-Type:\n      - application/json;charset=UTF-8\n      Date:\n      - Thu, 31 Jul 2025 15:08:16 GMT\n      Expires:\n      - '0'\n      Pragma:\n      - no-cache\n      Server:\n      - openresty\n      Strict-Transport-Security:\n      - max-age=31536000 ; includeSubDomains\n      Transfer-Encoding:\n      - chunked\n      X-Content-Type-Options:\n      - nosniff\n      X-Frame-Options:\n      - DENY\n      X-Served-By:\n      - emc.spacebel.be\n      X-XSS-Protection:\n      - 1; mode=block\n    status:\n      code: 200\n      message: ''\nversion: 1\n"
  },
  {
    "path": "tests/cassettes/test_collection_search/TestCollectionSearch.test_client_side_bbox.yaml",
    "content": "interactions:\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://earth-search.aws.element84.com/v1/collections?limit=10&bbox=60.0%2C0.0%2C70.0%2C10.0\n  response:\n    body:\n      string: \"{\\\"collections\\\":[{\\\"type\\\":\\\"Collection\\\",\\\"id\\\":\\\"sentinel-2-pre-c1-l2a\\\",\\\"title\\\":\\\"Sentinel-2\n        Pre-Collection 1 Level-2A \\\",\\\"description\\\":\\\"Sentinel-2 Pre-Collection 1\n        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\n        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;\n        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;\n        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;\n        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;\n        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;\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"SWIR 2.2\\u03BCm\n        - 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;\n        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;\n        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;\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"SWIR 1.6\\u03BCm\n        - 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;\n        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;\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Scene classification\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Aerosol optical\n        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;\n        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;\n        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;\n        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;\n        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;\n        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\n        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\n        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\n        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\n        aerosol (band 1)\\\",\\\"center_wavelength\\\":0.443,\\\"full_width_half_max\\\":0.027},{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (band 2)\\\",\\\"center_wavelength\\\":0.49,\\\"full_width_half_max\\\":0.098},{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (band 3)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.045},{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (band 4)\\\",\\\"center_wavelength\\\":0.665,\\\"full_width_half_max\\\":0.038},{\\\"name\\\":\\\"rededge1\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 1 (band 5)\\\",\\\"center_wavelength\\\":0.704,\\\"full_width_half_max\\\":0.019},{\\\"name\\\":\\\"rededge2\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 2 (band 6)\\\",\\\"center_wavelength\\\":0.74,\\\"full_width_half_max\\\":0.018},{\\\"name\\\":\\\"rededge3\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 3 (band 7)\\\",\\\"center_wavelength\\\":0.783,\\\"full_width_half_max\\\":0.028},{\\\"name\\\":\\\"nir\\\",\\\"common_name\\\":\\\"nir\\\",\\\"description\\\":\\\"NIR\n        1 (band 8)\\\",\\\"center_wavelength\\\":0.842,\\\"full_width_half_max\\\":0.145},{\\\"name\\\":\\\"nir08\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"NIR\n        2 (band 8A)\\\",\\\"center_wavelength\\\":0.865,\\\"full_width_half_max\\\":0.033},{\\\"name\\\":\\\"nir09\\\",\\\"common_name\\\":\\\"nir09\\\",\\\"description\\\":\\\"NIR\n        3 (band 9)\\\",\\\"center_wavelength\\\":0.945,\\\"full_width_half_max\\\":0.026},{\\\"name\\\":\\\"cirrus\\\",\\\"common_name\\\":\\\"cirrus\\\",\\\"description\\\":\\\"Cirrus\n        (band 10)\\\",\\\"center_wavelength\\\":1.3735,\\\"full_width_half_max\\\":0.075},{\\\"name\\\":\\\"swir16\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"SWIR\n        1 (band 11)\\\",\\\"center_wavelength\\\":1.61,\\\"full_width_half_max\\\":0.143},{\\\"name\\\":\\\"swir22\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"SWIR\n        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\n        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\n        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\n        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\n        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\n        Copernicus DEM is a Digital Surface Model (DSM) which represents the surface\n        of the Earth including buildings, infrastructure and vegetation. GLO-30 Public\n        provides limited worldwide coverage at 30 meters because a small subset of\n        tiles covering specific countries are not yet released to the public by the\n        Copernicus Programme.\\\",\\\"item_assets\\\":{\\\"data\\\":{\\\"type\\\":\\\"image/tiff;\n        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\n        [National Agriculture Imagery Program](https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/)\n        (NAIP) provides U.S.-wide, high-resolution aerial imagery, with four spectral\n        bands (R, G, B, IR).  NAIP is administered by the [Aerial Field Photography\n        Office](https://www.fsa.usda.gov/programs-and-services/aerial-photography/)\n        (AFPO) within the [US Department of Agriculture](https://www.usda.gov/) (USDA).\n        \\ Data are captured at least once every three years for each state.  This\n        dataset represents NAIP data from 2010-present, in [cloud-optimized GeoTIFF](https://www.cogeo.org/)\n        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\n        Domain\\\",\\\"type\\\":\\\"text/html\\\"},{\\\"rel\\\":\\\"cite-as\\\",\\\"href\\\":\\\"https://doi.org/10.5066/F7QN651G\\\",\\\"title\\\":\\\"NAIP\n        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:\n        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\n        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\n        84\\\",\\\"roles\\\":[\\\"processor\\\"],\\\"url\\\":\\\"https://element84.com\\\"}],\\\"summaries\\\":{\\\"gsd\\\":[0.6,1],\\\"eo:bands\\\":[{\\\"name\\\":\\\"Red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"visible\n        red\\\"},{\\\"name\\\":\\\"Green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"visible\n        green\\\"},{\\\"name\\\":\\\"Blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"visible\n        blue\\\"},{\\\"name\\\":\\\"NIR\\\",\\\"common_name\\\":\\\"nir\\\",\\\"description\\\":\\\"near-infrared\\\"}]},\\\"item_assets\\\":{\\\"image\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"RGBIR\n        COG tile\\\",\\\"eo:bands\\\":[{\\\"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\n        Metdata\\\"}},\\\"sci:doi\\\":\\\"10.5066/F7QN651G\\\",\\\"sci:publications\\\":[{\\\"doi\\\":\\\"10.14358/PERS.83.10.737\\\",\\\"citation\\\":\\\"Maxwell,\n        A. E., Warner, T. A., Vanderbilt, B. C., &amp; Ramezan, C. A. (2017). Land\n        cover classification and feature extraction from National Agriculture Imagery\n        Program (NAIP) orthoimagery: A Review. Photogrammetric Engineering &amp; Remote\n        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\n        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\n        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\n        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\n        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\n        Copernicus DEM is a Digital Surface Model (DSM) which represents the surface\n        of the Earth including buildings, infrastructure and vegetation. GLO-90 provides\n        worldwide coverage at 90 meters.\\\",\\\"item_assets\\\":{\\\"data\\\":{\\\"type\\\":\\\"image/tiff;\n        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\n        corrected global Landsat Collection 2 Level-2 data from the Thematic Mapper\n        (TM) onboard Landsat 4 and 5, the Enhanced Thematic Mapper Plus (ETM+) onboard\n        Landsat 7, and the Operational Land Imager (OLI) and Thermal Infrared Sensor\n        (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\n        4-5 TM Collection 2 Level-2\\\"},{\\\"rel\\\":\\\"cite-as\\\",\\\"href\\\":\\\"https://doi.org/10.5066/P9C7I13B\\\",\\\"title\\\":\\\"Landsat\n        7 ETM+ Collection 2 Level-2\\\"},{\\\"rel\\\":\\\"cite-as\\\",\\\"href\\\":\\\"https://doi.org/10.5066/P9OGBGM6\\\",\\\"title\\\":\\\"Landsat\n        8-9 OLI/TIRS Collection 2 Level-2\\\"},{\\\"rel\\\":\\\"license\\\",\\\"href\\\":\\\"https://www.usgs.gov/core-science-systems/hdds/data-policy\\\",\\\"title\\\":\\\"Public\n        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\n        image\\\",\\\"roles\\\":[\\\"thumbnail\\\"]},\\\"reduced_resolution_browse\\\":{\\\"type\\\":\\\"image/jpeg\\\",\\\"title\\\":\\\"Reduced\n        resolution browse image\\\",\\\"roles\\\":[\\\"overview\\\"]},\\\"mtl.json\\\":{\\\"type\\\":\\\"application/json\\\",\\\"title\\\":\\\"Product\n        Metadata File (json)\\\",\\\"description\\\":\\\"Collection 2 Level-2 Product Metadata\n        File (json)\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"mtl.txt\\\":{\\\"type\\\":\\\"text/plain\\\",\\\"title\\\":\\\"Product\n        Metadata File (txt)\\\",\\\"description\\\":\\\"Collection 2 Level-2 Product Metadata\n        File (txt)\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"mtl.xml\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"title\\\":\\\"Product\n        Metadata File (xml)\\\",\\\"description\\\":\\\"Collection 2 Level-2 Product Metadata\n        File (xml)\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"ang\\\":{\\\"type\\\":\\\"text/plain\\\",\\\"title\\\":\\\"Angle\n        Coefficients File\\\",\\\"description\\\":\\\"Collection 2 Level-1 Angle Coefficients\n        File\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"qa_pixel\\\":{\\\"type\\\":\\\"image/tiff; application=geotiff;\n        profile=cloud-optimized\\\",\\\"title\\\":\\\"Pixel Quality Assessment Band\\\",\\\"description\\\":\\\"Collection\n        2 Level-1 Pixel Quality Assessment Band\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":1,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":30,\\\"unit\\\":\\\"bit\n        index\\\"}],\\\"roles\\\":[\\\"cloud\\\",\\\"cloud-shadow\\\",\\\"snow-ice\\\",\\\"water-mask\\\"]},\\\"qa_radsat\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Radiometric Saturation\n        Quality Assessment Band\\\",\\\"description\\\":\\\"Collection 2 Level-1 Radiometric\n        Saturation Quality Assessment Band\\\",\\\"raster:bands\\\":[{\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":30,\\\"unit\\\":\\\"bit\n        index\\\"}],\\\"roles\\\":[\\\"saturation\\\"]},\\\"coastal\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Coastal/Aerosol\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Coastal/Aerosol Band Surface\n        Reflectance\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":30,\\\"scale\\\":0.0000275,\\\"offset\\\":-0.2}],\\\"roles\\\":[\\\"reflectance\\\"]},\\\"blue\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Blue Band\\\",\\\"description\\\":\\\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Green Band\\\",\\\"description\\\":\\\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Red Band\\\",\\\"description\\\":\\\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Near Infrared Band\n        0.8\\\",\\\"description\\\":\\\"Collection 2 Level-2 Near Infrared Band 0.8 Surface\n        Reflectance\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":30,\\\"scale\\\":0.0000275,\\\"offset\\\":-0.2}],\\\"roles\\\":[\\\"reflectance\\\"]},\\\"swir16\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Short-wave Infrared\n        Band 1.6\\\",\\\"description\\\":\\\"Collection 2 Level-2 Short-wave Infrared Band\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Short-wave Infrared\n        Band 2.2\\\",\\\"description\\\":\\\"Collection 2 Level-2 Short-wave Infrared Band\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Atmospheric Opacity\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Atmospheric Opacity Band Surface\n        Reflectance Product\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":-9999,\\\"data_type\\\":\\\"int16\\\",\\\"spatial_resolution\\\":30,\\\"scale\\\":0.001}],\\\"roles\\\":[\\\"data\\\"]},\\\"cloud_qa\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Cloud Quality Assessment\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Cloud Quality Assessment Band\n        Surface Reflectance Product\\\",\\\"raster:bands\\\":[{\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":30,\\\"unit\\\":\\\"bit\n        index\\\"}],\\\"roles\\\":[\\\"cloud\\\",\\\"cloud-shadow\\\",\\\"snow-ice\\\",\\\"water-mask\\\"]},\\\"qa_aerosol\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Aerosol Quality\n        Assessment Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Aerosol Quality Assessment\n        Band Surface Reflectance Product\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":1,\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":30,\\\"unit\\\":\\\"bit\n        index\\\"}],\\\"roles\\\":[\\\"data-mask\\\",\\\"water-mask\\\"]},\\\"lwir11\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Surface Temperature\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Thermal Infrared Band Surface\n        Temperature\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":30,\\\"unit\\\":\\\"kelvin\\\",\\\"scale\\\":0.00341802,\\\"offset\\\":149}],\\\"roles\\\":[\\\"temperature\\\"]},\\\"lwir\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Surface Temperature\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Thermal Infrared Band Surface\n        Temperature\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":30,\\\"unit\\\":\\\"kelvin\\\",\\\"scale\\\":0.00341802,\\\"offset\\\":149}],\\\"roles\\\":[\\\"temperature\\\"]},\\\"atran\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Atmospheric Transmittance\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Atmospheric Transmittance Band\n        Surface Temperature Product\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":-9999,\\\"data_type\\\":\\\"int16\\\",\\\"spatial_resolution\\\":30,\\\"scale\\\":0.0001}],\\\"roles\\\":[\\\"data\\\"]},\\\"cdist\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Cloud Distance\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Cloud Distance Band Surface\n        Temperature Product\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":-9999,\\\"data_type\\\":\\\"int16\\\",\\\"spatial_resolution\\\":30,\\\"unit\\\":\\\"kilometer\\\",\\\"scale\\\":0.01}],\\\"roles\\\":[\\\"data\\\"]},\\\"drad\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Downwelled Radiance\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Downwelled Radiance Band Surface\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Upwelled Radiance\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Upwelled Radiance Band Surface\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Thermal Radiance\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Thermal Radiance Band Surface\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Emissivity Band\\\",\\\"description\\\":\\\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Emissivity Standard\n        Deviation Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Emissivity Standard\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Surface Temperature\n        Quality Assessment Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Quality Assessment\n        Band Surface Temperature Product\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":-9999,\\\"data_type\\\":\\\"int16\\\",\\\"spatial_resolution\\\":30,\\\"unit\\\":\\\"kelvin\\\",\\\"scale\\\":0.01}],\\\"roles\\\":[\\\"data\\\"]}},\\\"title\\\":\\\"Landsat\n        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\n        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\n        blue (Thematic Mapper)\\\",\\\"center_wavelength\\\":0.49,\\\"full_width_half_max\\\":0.07},{\\\"name\\\":\\\"TM_B2\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Visible\n        green (Thematic Mapper)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.08},{\\\"name\\\":\\\"TM_B3\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Visible\n        red (Thematic Mapper)\\\",\\\"center_wavelength\\\":0.66,\\\"full_width_half_max\\\":0.06},{\\\"name\\\":\\\"TM_B4\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"Near\n        infrared (Thematic Mapper)\\\",\\\"center_wavelength\\\":0.83,\\\"full_width_half_max\\\":0.14},{\\\"name\\\":\\\"TM_B5\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"Short-wave\n        infrared (Thematic Mapper)\\\",\\\"center_wavelength\\\":1.65,\\\"full_width_half_max\\\":0.2},{\\\"name\\\":\\\"TM_B6\\\",\\\"common_name\\\":\\\"lwir\\\",\\\"description\\\":\\\"Long-wave\n        infrared (Thematic Mapper)\\\",\\\"center_wavelength\\\":11.45,\\\"full_width_half_max\\\":2.1},{\\\"name\\\":\\\"TM_B7\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"Short-wave\n        infrared (Thematic Mapper)\\\",\\\"center_wavelength\\\":2.22,\\\"full_width_half_max\\\":0.27},{\\\"name\\\":\\\"ETM_B1\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Visible\n        blue (Enhanced Thematic Mapper Plus)\\\",\\\"center_wavelength\\\":0.48,\\\"full_width_half_max\\\":0.07},{\\\"name\\\":\\\"ETM_B2\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Visible\n        green (Enhanced Thematic Mapper Plus)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.08},{\\\"name\\\":\\\"ETM_B3\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Visible\n        red (Enhanced Thematic Mapper Plus)\\\",\\\"center_wavelength\\\":0.66,\\\"full_width_half_max\\\":0.06},{\\\"name\\\":\\\"ETM_B4\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"Near\n        infrared (Enhanced Thematic Mapper Plus)\\\",\\\"center_wavelength\\\":0.84,\\\"full_width_half_max\\\":0.13},{\\\"name\\\":\\\"ETM_B5\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"Short-wave\n        infrared (Enhanced Thematic Mapper Plus)\\\",\\\"center_wavelength\\\":1.65,\\\"full_width_half_max\\\":0.2},{\\\"name\\\":\\\"ETM_B6\\\",\\\"common_name\\\":\\\"lwir\\\",\\\"description\\\":\\\"Long-wave\n        infrared (Enhanced Thematic Mapper Plus)\\\",\\\"center_wavelength\\\":11.34,\\\"full_width_half_max\\\":2.05},{\\\"name\\\":\\\"ETM_B7\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"Short-wave\n        infrared (Enhanced Thematic Mapper Plus)\\\",\\\"center_wavelength\\\":2.2,\\\"full_width_half_max\\\":0.28},{\\\"name\\\":\\\"OLI_B1\\\",\\\"common_name\\\":\\\"coastal\\\",\\\"description\\\":\\\"Coastal/Aerosol\n        (Operational Land Imager)\\\",\\\"center_wavelength\\\":0.44,\\\"full_width_half_max\\\":0.02},{\\\"name\\\":\\\"OLI_B2\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Visible\n        blue (Operational Land Imager)\\\",\\\"center_wavelength\\\":0.48,\\\"full_width_half_max\\\":0.06},{\\\"name\\\":\\\"OLI_B3\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Visible\n        green (Operational Land Imager)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.06},{\\\"name\\\":\\\"OLI_B4\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Visible\n        red (Operational Land Imager)\\\",\\\"center_wavelength\\\":0.65,\\\"full_width_half_max\\\":0.04},{\\\"name\\\":\\\"OLI_B5\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"Near\n        infrared (Operational Land Imager)\\\",\\\"center_wavelength\\\":0.87,\\\"full_width_half_max\\\":0.03},{\\\"name\\\":\\\"OLI_B6\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"Short-wave\n        infrared (Operational Land Imager)\\\",\\\"center_wavelength\\\":1.61,\\\"full_width_half_max\\\":0.09},{\\\"name\\\":\\\"OLI_B7\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"Short-wave\n        infrared (Operational Land Imager)\\\",\\\"center_wavelength\\\":2.2,\\\"full_width_half_max\\\":0.19},{\\\"name\\\":\\\"TIRS_B10\\\",\\\"common_name\\\":\\\"lwir11\\\",\\\"description\\\":\\\"Long-wave\n        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\n        Level-2A\\\",\\\"description\\\":\\\"Global Sentinel-2 data from the Multispectral\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Aerosol optical\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Blue (band 2) -\n        10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Coastal aerosol\n        (band 1) - 60m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"coastal\\\",\\\"common_name\\\":\\\"coastal\\\",\\\"description\\\":\\\"Coastal\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Green (band 3)\n        - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"NIR 1 (band 8)\n        - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"nir\\\",\\\"common_name\\\":\\\"nir\\\",\\\"description\\\":\\\"NIR\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"NIR 2 (band 8A)\n        - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"nir08\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"NIR\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"NIR 3 (band 9)\n        - 60m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"nir09\\\",\\\"common_name\\\":\\\"nir09\\\",\\\"description\\\":\\\"NIR\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Red (band 4) -\n        10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Red edge 1 (band\n        5) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"rededge1\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Red edge 2 (band\n        6) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"rededge2\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Red edge 3 (band\n        7) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"rededge3\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Scene classification\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"SWIR 1 (band 11)\n        - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"swir16\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"SWIR\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"SWIR 2 (band 12)\n        - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"swir22\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"SWIR\n        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\n        image\\\",\\\"roles\\\":[\\\"thumbnail\\\"]},\\\"tileinfo_metadata\\\":{\\\"type\\\":\\\"application/json\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"visual\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"True color image\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (band 4)\\\",\\\"center_wavelength\\\":0.665,\\\"full_width_half_max\\\":0.038},{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (band 3)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.045},{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (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;\n        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\n        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\n        (band 2) - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (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\n        aerosol (band 1) - 60m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"coastal\\\",\\\"common_name\\\":\\\"coastal\\\",\\\"description\\\":\\\"Coastal\n        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\n        (band 3) - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (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\n        1 (band 8) - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"nir\\\",\\\"common_name\\\":\\\"nir\\\",\\\"description\\\":\\\"NIR\n        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\n        2 (band 8A) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"nir08\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"NIR\n        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\n        3 (band 9) - 60m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"nir09\\\",\\\"common_name\\\":\\\"nir09\\\",\\\"description\\\":\\\"NIR\n        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\n        (band 4) - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (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\n        edge 1 (band 5) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"rededge1\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        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\n        edge 2 (band 6) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"rededge2\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        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\n        edge 3 (band 7) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"rededge3\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        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\n        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\n        1 (band 11) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"swir16\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"SWIR\n        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\n        2 (band 12) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"swir22\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"SWIR\n        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\n        color image\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (band 4)\\\",\\\"center_wavelength\\\":0.665,\\\"full_width_half_max\\\":0.038},{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (band 3)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.045},{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (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\n        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\n        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\n        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\n        aerosol (band 1)\\\",\\\"center_wavelength\\\":0.443,\\\"full_width_half_max\\\":0.027},{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (band 2)\\\",\\\"center_wavelength\\\":0.49,\\\"full_width_half_max\\\":0.098},{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (band 3)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.045},{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (band 4)\\\",\\\"center_wavelength\\\":0.665,\\\"full_width_half_max\\\":0.038},{\\\"name\\\":\\\"rededge1\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 1 (band 5)\\\",\\\"center_wavelength\\\":0.704,\\\"full_width_half_max\\\":0.019},{\\\"name\\\":\\\"rededge2\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 2 (band 6)\\\",\\\"center_wavelength\\\":0.74,\\\"full_width_half_max\\\":0.018},{\\\"name\\\":\\\"rededge3\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 3 (band 7)\\\",\\\"center_wavelength\\\":0.783,\\\"full_width_half_max\\\":0.028},{\\\"name\\\":\\\"nir\\\",\\\"common_name\\\":\\\"nir\\\",\\\"description\\\":\\\"NIR\n        1 (band 8)\\\",\\\"center_wavelength\\\":0.842,\\\"full_width_half_max\\\":0.145},{\\\"name\\\":\\\"nir08\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"NIR\n        2 (band 8A)\\\",\\\"center_wavelength\\\":0.865,\\\"full_width_half_max\\\":0.033},{\\\"name\\\":\\\"nir09\\\",\\\"common_name\\\":\\\"nir09\\\",\\\"description\\\":\\\"NIR\n        3 (band 9)\\\",\\\"center_wavelength\\\":0.945,\\\"full_width_half_max\\\":0.026},{\\\"name\\\":\\\"cirrus\\\",\\\"common_name\\\":\\\"cirrus\\\",\\\"description\\\":\\\"Cirrus\n        (band 10)\\\",\\\"center_wavelength\\\":1.3735,\\\"full_width_half_max\\\":0.075},{\\\"name\\\":\\\"swir16\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"SWIR\n        1 (band 11)\\\",\\\"center_wavelength\\\":1.61,\\\"full_width_half_max\\\":0.143},{\\\"name\\\":\\\"swir22\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"SWIR\n        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\n        Level-1C\\\",\\\"description\\\":\\\"Global Sentinel-2 data from the Multispectral\n        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\n        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\n        (band 2) - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (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\n        (band 10) - 60m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"cirrus\\\",\\\"common_name\\\":\\\"cirrus\\\",\\\"description\\\":\\\"Cirrus\n        (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\n        aerosol (band 1) - 60m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"coastal\\\",\\\"common_name\\\":\\\"coastal\\\",\\\"description\\\":\\\"Coastal\n        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\n        (band 3) - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (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\n        1 (band 8) - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"nir\\\",\\\"common_name\\\":\\\"nir\\\",\\\"description\\\":\\\"NIR\n        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\n        2 (band 8A) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"nir08\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"NIR\n        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\n        3 (band 9) - 60m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"nir09\\\",\\\"common_name\\\":\\\"nir09\\\",\\\"description\\\":\\\"NIR\n        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\n        (band 4) - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (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\n        edge 1 (band 5) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"rededge1\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        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\n        edge 2 (band 6) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"rededge2\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        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\n        edge 3 (band 7) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"rededge3\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        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\n        1 (band 11) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"swir16\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"SWIR\n        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\n        2 (band 12) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"swir22\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"SWIR\n        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\n        image\\\",\\\"roles\\\":[\\\"thumbnail\\\"]},\\\"tileinfo_metadata\\\":{\\\"type\\\":\\\"application/json\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"visual\\\":{\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"True\n        color image\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (band 4)\\\",\\\"center_wavelength\\\":0.665,\\\"full_width_half_max\\\":0.038},{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (band 3)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.045},{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (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\n        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\n        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\n        aerosol (band 1)\\\",\\\"center_wavelength\\\":0.443,\\\"full_width_half_max\\\":0.027},{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (band 2)\\\",\\\"center_wavelength\\\":0.49,\\\"full_width_half_max\\\":0.098},{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (band 3)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.045},{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (band 4)\\\",\\\"center_wavelength\\\":0.665,\\\"full_width_half_max\\\":0.038},{\\\"name\\\":\\\"rededge1\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 1 (band 5)\\\",\\\"center_wavelength\\\":0.704,\\\"full_width_half_max\\\":0.019},{\\\"name\\\":\\\"rededge2\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 2 (band 6)\\\",\\\"center_wavelength\\\":0.74,\\\"full_width_half_max\\\":0.018},{\\\"name\\\":\\\"rededge3\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 3 (band 7)\\\",\\\"center_wavelength\\\":0.783,\\\"full_width_half_max\\\":0.028},{\\\"name\\\":\\\"nir\\\",\\\"common_name\\\":\\\"nir\\\",\\\"description\\\":\\\"NIR\n        1 (band 8)\\\",\\\"center_wavelength\\\":0.842,\\\"full_width_half_max\\\":0.145},{\\\"name\\\":\\\"nir08\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"NIR\n        2 (band 8A)\\\",\\\"center_wavelength\\\":0.865,\\\"full_width_half_max\\\":0.033},{\\\"name\\\":\\\"nir09\\\",\\\"common_name\\\":\\\"nir09\\\",\\\"description\\\":\\\"NIR\n        3 (band 9)\\\",\\\"center_wavelength\\\":0.945,\\\"full_width_half_max\\\":0.026},{\\\"name\\\":\\\"cirrus\\\",\\\"common_name\\\":\\\"cirrus\\\",\\\"description\\\":\\\"Cirrus\n        (band 10)\\\",\\\"center_wavelength\\\":1.3735,\\\"full_width_half_max\\\":0.075},{\\\"name\\\":\\\"swir16\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"SWIR\n        1 (band 11)\\\",\\\"center_wavelength\\\":1.61,\\\"full_width_half_max\\\":0.143},{\\\"name\\\":\\\"swir22\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"SWIR\n        2 (band 12)\\\",\\\"center_wavelength\\\":2.19,\\\"full_width_half_max\\\":0.242}]}},{\\\"type\\\":\\\"Collection\\\",\\\"id\\\":\\\"sentinel-2-c1-l2a\\\",\\\"title\\\":\\\"Sentinel-2\n        Collection 1 Level-2A\\\",\\\"description\\\":\\\"Sentinel-2 Collection 1 Level-2A,\n        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\n        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;\n        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;\n        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;\n        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;\n        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;\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"SWIR 2.2\\u03BCm\n        - 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;\n        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;\n        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;\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"SWIR 1.6\\u03BCm\n        - 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;\n        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;\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Scene classification\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Aerosol optical\n        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;\n        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;\n        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;\n        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;\n        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;\n        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\n        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\n        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\n        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\n        aerosol (band 1)\\\",\\\"center_wavelength\\\":0.443,\\\"full_width_half_max\\\":0.027},{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (band 2)\\\",\\\"center_wavelength\\\":0.49,\\\"full_width_half_max\\\":0.098},{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (band 3)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.045},{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (band 4)\\\",\\\"center_wavelength\\\":0.665,\\\"full_width_half_max\\\":0.038},{\\\"name\\\":\\\"rededge1\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 1 (band 5)\\\",\\\"center_wavelength\\\":0.704,\\\"full_width_half_max\\\":0.019},{\\\"name\\\":\\\"rededge2\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 2 (band 6)\\\",\\\"center_wavelength\\\":0.74,\\\"full_width_half_max\\\":0.018},{\\\"name\\\":\\\"rededge3\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 3 (band 7)\\\",\\\"center_wavelength\\\":0.783,\\\"full_width_half_max\\\":0.028},{\\\"name\\\":\\\"nir\\\",\\\"common_name\\\":\\\"nir\\\",\\\"description\\\":\\\"NIR\n        1 (band 8)\\\",\\\"center_wavelength\\\":0.842,\\\"full_width_half_max\\\":0.145},{\\\"name\\\":\\\"nir08\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"NIR\n        2 (band 8A)\\\",\\\"center_wavelength\\\":0.865,\\\"full_width_half_max\\\":0.033},{\\\"name\\\":\\\"nir09\\\",\\\"common_name\\\":\\\"nir09\\\",\\\"description\\\":\\\"NIR\n        3 (band 9)\\\",\\\"center_wavelength\\\":0.945,\\\"full_width_half_max\\\":0.026},{\\\"name\\\":\\\"cirrus\\\",\\\"common_name\\\":\\\"cirrus\\\",\\\"description\\\":\\\"Cirrus\n        (band 10)\\\",\\\"center_wavelength\\\":1.3735,\\\"full_width_half_max\\\":0.075},{\\\"name\\\":\\\"swir16\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"SWIR\n        1 (band 11)\\\",\\\"center_wavelength\\\":1.61,\\\"full_width_half_max\\\":0.143},{\\\"name\\\":\\\"swir22\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"SWIR\n        2 (band 12)\\\",\\\"center_wavelength\\\":2.19,\\\"full_width_half_max\\\":0.242}]}},{\\\"id\\\":\\\"sentinel-1-grd\\\",\\\"type\\\":\\\"Collection\\\",\\\"title\\\":\\\"Sentinel-1\n        Level-1C Ground Range Detected (GRD)\\\",\\\"description\\\":\\\"Sentinel-1 is a pair\n        of Synthetic Aperture Radar (SAR) imaging satellites launched in 2014 and\n        2016 by the European Space Agency (ESA). Their 6 day revisit cycle and ability\n        to observe through clouds makes this dataset perfect for sea and land monitoring,\n        emergency response due to environmental disasters, and economic applications.\n        This dataset represents the global Sentinel-1 GRD archive, from beginning\n        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\n        Ground Range Detected (GRD) Technical Guide\\\"},{\\\"rel\\\":\\\"license\\\",\\\"href\\\":\\\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\\\",\\\"title\\\":\\\"Copernicus\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"HH\n        Data\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\"}]},\\\"hv\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"HV\n        Data\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\"}]},\\\"vh\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"VH\n        Data\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\"}]},\\\"vv\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"VV\n        Data\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\"}]},\\\"thumbnail\\\":{\\\"type\\\":\\\"image/png\\\",\\\"roles\\\":[\\\"thumbnail\\\"],\\\"title\\\":\\\"Thumbnail\n        Image\\\"},\\\"safe-manifest\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"SAFE\n        Manifest File\\\"},\\\"schema-noise-hh\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"HH\n        Noise Schema\\\"},\\\"schema-noise-hv\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"HV\n        Noise Schema\\\"},\\\"schema-noise-vh\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"VH\n        Noise Schema\\\"},\\\"schema-noise-vv\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"VV\n        Noise Schema\\\"},\\\"schema-product-hh\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"HH\n        Product Schema\\\"},\\\"schema-product-hv\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"HV\n        Product Schema\\\"},\\\"schema-product-vh\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"VH\n        Product Schema\\\"},\\\"schema-product-vv\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"VV\n        Product Schema\\\"},\\\"schema-calibration-hh\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"HH\n        Calibration Schema\\\"},\\\"schema-calibration-hv\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"HV\n        Calibration Schema\\\"},\\\"schema-calibration-vh\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"VH\n        Calibration Schema\\\"},\\\"schema-calibration-vv\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"VV\n        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}}\"\n    headers:\n      Connection:\n      - keep-alive\n      Content-Encoding:\n      - gzip\n      Content-Length:\n      - '8117'\n      Content-Type:\n      - application/json; charset=utf-8\n      Date:\n      - Thu, 31 Jul 2025 15:08:23 GMT\n      Via:\n      - 1.1 a7bf7cf3a377b5000ee61eea3824eb74.cloudfront.net (CloudFront)\n      X-Amz-Cf-Id:\n      - 5n9Ajf5ID0Z7o9mzKalLL4_1taKappxqu7gjWmSg55Eh5CSQ6K8ThQ==\n      X-Amz-Cf-Pop:\n      - DEN52-C1\n      X-Amzn-Trace-Id:\n      - Root=1-688b86e7-1d71bd7b58ef9af56ce6b1bc;Parent=782943ef30611cad;Sampled=0;Lineage=1:9e2884e9:0\n      X-Cache:\n      - Miss from cloudfront\n      access-control-allow-origin:\n      - '*'\n      etag:\n      - W/\"141dd-9fMv6YJnvxPn9adSQK466CnIbE0\"\n      x-amz-apigw-id:\n      - OlIEPFAJvHcECVg=\n      x-amzn-Remapped-content-length:\n      - '82397'\n      x-amzn-RequestId:\n      - 437961f7-a756-47ae-a5f8-287ad3964d08\n      x-powered-by:\n      - Express\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://earth-search.aws.element84.com/v1/collections?limit=10&bbox=60.0%2C0.0%2C70.0%2C10.0\n  response:\n    body:\n      string: \"{\\\"collections\\\":[{\\\"type\\\":\\\"Collection\\\",\\\"id\\\":\\\"sentinel-2-pre-c1-l2a\\\",\\\"title\\\":\\\"Sentinel-2\n        Pre-Collection 1 Level-2A \\\",\\\"description\\\":\\\"Sentinel-2 Pre-Collection 1\n        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\n        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;\n        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;\n        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;\n        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;\n        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;\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"SWIR 2.2\\u03BCm\n        - 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;\n        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;\n        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;\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"SWIR 1.6\\u03BCm\n        - 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;\n        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;\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Scene classification\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Aerosol optical\n        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;\n        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;\n        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;\n        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;\n        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;\n        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\n        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\n        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\n        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\n        aerosol (band 1)\\\",\\\"center_wavelength\\\":0.443,\\\"full_width_half_max\\\":0.027},{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (band 2)\\\",\\\"center_wavelength\\\":0.49,\\\"full_width_half_max\\\":0.098},{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (band 3)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.045},{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (band 4)\\\",\\\"center_wavelength\\\":0.665,\\\"full_width_half_max\\\":0.038},{\\\"name\\\":\\\"rededge1\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 1 (band 5)\\\",\\\"center_wavelength\\\":0.704,\\\"full_width_half_max\\\":0.019},{\\\"name\\\":\\\"rededge2\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 2 (band 6)\\\",\\\"center_wavelength\\\":0.74,\\\"full_width_half_max\\\":0.018},{\\\"name\\\":\\\"rededge3\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 3 (band 7)\\\",\\\"center_wavelength\\\":0.783,\\\"full_width_half_max\\\":0.028},{\\\"name\\\":\\\"nir\\\",\\\"common_name\\\":\\\"nir\\\",\\\"description\\\":\\\"NIR\n        1 (band 8)\\\",\\\"center_wavelength\\\":0.842,\\\"full_width_half_max\\\":0.145},{\\\"name\\\":\\\"nir08\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"NIR\n        2 (band 8A)\\\",\\\"center_wavelength\\\":0.865,\\\"full_width_half_max\\\":0.033},{\\\"name\\\":\\\"nir09\\\",\\\"common_name\\\":\\\"nir09\\\",\\\"description\\\":\\\"NIR\n        3 (band 9)\\\",\\\"center_wavelength\\\":0.945,\\\"full_width_half_max\\\":0.026},{\\\"name\\\":\\\"cirrus\\\",\\\"common_name\\\":\\\"cirrus\\\",\\\"description\\\":\\\"Cirrus\n        (band 10)\\\",\\\"center_wavelength\\\":1.3735,\\\"full_width_half_max\\\":0.075},{\\\"name\\\":\\\"swir16\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"SWIR\n        1 (band 11)\\\",\\\"center_wavelength\\\":1.61,\\\"full_width_half_max\\\":0.143},{\\\"name\\\":\\\"swir22\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"SWIR\n        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\n        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\n        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\n        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\n        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\n        Copernicus DEM is a Digital Surface Model (DSM) which represents the surface\n        of the Earth including buildings, infrastructure and vegetation. GLO-30 Public\n        provides limited worldwide coverage at 30 meters because a small subset of\n        tiles covering specific countries are not yet released to the public by the\n        Copernicus Programme.\\\",\\\"item_assets\\\":{\\\"data\\\":{\\\"type\\\":\\\"image/tiff;\n        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\n        [National Agriculture Imagery Program](https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/)\n        (NAIP) provides U.S.-wide, high-resolution aerial imagery, with four spectral\n        bands (R, G, B, IR).  NAIP is administered by the [Aerial Field Photography\n        Office](https://www.fsa.usda.gov/programs-and-services/aerial-photography/)\n        (AFPO) within the [US Department of Agriculture](https://www.usda.gov/) (USDA).\n        \\ Data are captured at least once every three years for each state.  This\n        dataset represents NAIP data from 2010-present, in [cloud-optimized GeoTIFF](https://www.cogeo.org/)\n        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\n        Domain\\\",\\\"type\\\":\\\"text/html\\\"},{\\\"rel\\\":\\\"cite-as\\\",\\\"href\\\":\\\"https://doi.org/10.5066/F7QN651G\\\",\\\"title\\\":\\\"NAIP\n        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:\n        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\n        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\n        84\\\",\\\"roles\\\":[\\\"processor\\\"],\\\"url\\\":\\\"https://element84.com\\\"}],\\\"summaries\\\":{\\\"gsd\\\":[0.6,1],\\\"eo:bands\\\":[{\\\"name\\\":\\\"Red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"visible\n        red\\\"},{\\\"name\\\":\\\"Green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"visible\n        green\\\"},{\\\"name\\\":\\\"Blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"visible\n        blue\\\"},{\\\"name\\\":\\\"NIR\\\",\\\"common_name\\\":\\\"nir\\\",\\\"description\\\":\\\"near-infrared\\\"}]},\\\"item_assets\\\":{\\\"image\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"RGBIR\n        COG tile\\\",\\\"eo:bands\\\":[{\\\"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\n        Metdata\\\"}},\\\"sci:doi\\\":\\\"10.5066/F7QN651G\\\",\\\"sci:publications\\\":[{\\\"doi\\\":\\\"10.14358/PERS.83.10.737\\\",\\\"citation\\\":\\\"Maxwell,\n        A. E., Warner, T. A., Vanderbilt, B. C., &amp; Ramezan, C. A. (2017). Land\n        cover classification and feature extraction from National Agriculture Imagery\n        Program (NAIP) orthoimagery: A Review. Photogrammetric Engineering &amp; Remote\n        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\n        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\n        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\n        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\n        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\n        Copernicus DEM is a Digital Surface Model (DSM) which represents the surface\n        of the Earth including buildings, infrastructure and vegetation. GLO-90 provides\n        worldwide coverage at 90 meters.\\\",\\\"item_assets\\\":{\\\"data\\\":{\\\"type\\\":\\\"image/tiff;\n        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\n        corrected global Landsat Collection 2 Level-2 data from the Thematic Mapper\n        (TM) onboard Landsat 4 and 5, the Enhanced Thematic Mapper Plus (ETM+) onboard\n        Landsat 7, and the Operational Land Imager (OLI) and Thermal Infrared Sensor\n        (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\n        4-5 TM Collection 2 Level-2\\\"},{\\\"rel\\\":\\\"cite-as\\\",\\\"href\\\":\\\"https://doi.org/10.5066/P9C7I13B\\\",\\\"title\\\":\\\"Landsat\n        7 ETM+ Collection 2 Level-2\\\"},{\\\"rel\\\":\\\"cite-as\\\",\\\"href\\\":\\\"https://doi.org/10.5066/P9OGBGM6\\\",\\\"title\\\":\\\"Landsat\n        8-9 OLI/TIRS Collection 2 Level-2\\\"},{\\\"rel\\\":\\\"license\\\",\\\"href\\\":\\\"https://www.usgs.gov/core-science-systems/hdds/data-policy\\\",\\\"title\\\":\\\"Public\n        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\n        image\\\",\\\"roles\\\":[\\\"thumbnail\\\"]},\\\"reduced_resolution_browse\\\":{\\\"type\\\":\\\"image/jpeg\\\",\\\"title\\\":\\\"Reduced\n        resolution browse image\\\",\\\"roles\\\":[\\\"overview\\\"]},\\\"mtl.json\\\":{\\\"type\\\":\\\"application/json\\\",\\\"title\\\":\\\"Product\n        Metadata File (json)\\\",\\\"description\\\":\\\"Collection 2 Level-2 Product Metadata\n        File (json)\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"mtl.txt\\\":{\\\"type\\\":\\\"text/plain\\\",\\\"title\\\":\\\"Product\n        Metadata File (txt)\\\",\\\"description\\\":\\\"Collection 2 Level-2 Product Metadata\n        File (txt)\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"mtl.xml\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"title\\\":\\\"Product\n        Metadata File (xml)\\\",\\\"description\\\":\\\"Collection 2 Level-2 Product Metadata\n        File (xml)\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"ang\\\":{\\\"type\\\":\\\"text/plain\\\",\\\"title\\\":\\\"Angle\n        Coefficients File\\\",\\\"description\\\":\\\"Collection 2 Level-1 Angle Coefficients\n        File\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"qa_pixel\\\":{\\\"type\\\":\\\"image/tiff; application=geotiff;\n        profile=cloud-optimized\\\",\\\"title\\\":\\\"Pixel Quality Assessment Band\\\",\\\"description\\\":\\\"Collection\n        2 Level-1 Pixel Quality Assessment Band\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":1,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":30,\\\"unit\\\":\\\"bit\n        index\\\"}],\\\"roles\\\":[\\\"cloud\\\",\\\"cloud-shadow\\\",\\\"snow-ice\\\",\\\"water-mask\\\"]},\\\"qa_radsat\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Radiometric Saturation\n        Quality Assessment Band\\\",\\\"description\\\":\\\"Collection 2 Level-1 Radiometric\n        Saturation Quality Assessment Band\\\",\\\"raster:bands\\\":[{\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":30,\\\"unit\\\":\\\"bit\n        index\\\"}],\\\"roles\\\":[\\\"saturation\\\"]},\\\"coastal\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Coastal/Aerosol\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Coastal/Aerosol Band Surface\n        Reflectance\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":30,\\\"scale\\\":0.0000275,\\\"offset\\\":-0.2}],\\\"roles\\\":[\\\"reflectance\\\"]},\\\"blue\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Blue Band\\\",\\\"description\\\":\\\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Green Band\\\",\\\"description\\\":\\\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Red Band\\\",\\\"description\\\":\\\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Near Infrared Band\n        0.8\\\",\\\"description\\\":\\\"Collection 2 Level-2 Near Infrared Band 0.8 Surface\n        Reflectance\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":30,\\\"scale\\\":0.0000275,\\\"offset\\\":-0.2}],\\\"roles\\\":[\\\"reflectance\\\"]},\\\"swir16\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Short-wave Infrared\n        Band 1.6\\\",\\\"description\\\":\\\"Collection 2 Level-2 Short-wave Infrared Band\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Short-wave Infrared\n        Band 2.2\\\",\\\"description\\\":\\\"Collection 2 Level-2 Short-wave Infrared Band\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Atmospheric Opacity\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Atmospheric Opacity Band Surface\n        Reflectance Product\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":-9999,\\\"data_type\\\":\\\"int16\\\",\\\"spatial_resolution\\\":30,\\\"scale\\\":0.001}],\\\"roles\\\":[\\\"data\\\"]},\\\"cloud_qa\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Cloud Quality Assessment\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Cloud Quality Assessment Band\n        Surface Reflectance Product\\\",\\\"raster:bands\\\":[{\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":30,\\\"unit\\\":\\\"bit\n        index\\\"}],\\\"roles\\\":[\\\"cloud\\\",\\\"cloud-shadow\\\",\\\"snow-ice\\\",\\\"water-mask\\\"]},\\\"qa_aerosol\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Aerosol Quality\n        Assessment Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Aerosol Quality Assessment\n        Band Surface Reflectance Product\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":1,\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":30,\\\"unit\\\":\\\"bit\n        index\\\"}],\\\"roles\\\":[\\\"data-mask\\\",\\\"water-mask\\\"]},\\\"lwir11\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Surface Temperature\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Thermal Infrared Band Surface\n        Temperature\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":30,\\\"unit\\\":\\\"kelvin\\\",\\\"scale\\\":0.00341802,\\\"offset\\\":149}],\\\"roles\\\":[\\\"temperature\\\"]},\\\"lwir\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Surface Temperature\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Thermal Infrared Band Surface\n        Temperature\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":30,\\\"unit\\\":\\\"kelvin\\\",\\\"scale\\\":0.00341802,\\\"offset\\\":149}],\\\"roles\\\":[\\\"temperature\\\"]},\\\"atran\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Atmospheric Transmittance\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Atmospheric Transmittance Band\n        Surface Temperature Product\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":-9999,\\\"data_type\\\":\\\"int16\\\",\\\"spatial_resolution\\\":30,\\\"scale\\\":0.0001}],\\\"roles\\\":[\\\"data\\\"]},\\\"cdist\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Cloud Distance\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Cloud Distance Band Surface\n        Temperature Product\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":-9999,\\\"data_type\\\":\\\"int16\\\",\\\"spatial_resolution\\\":30,\\\"unit\\\":\\\"kilometer\\\",\\\"scale\\\":0.01}],\\\"roles\\\":[\\\"data\\\"]},\\\"drad\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Downwelled Radiance\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Downwelled Radiance Band Surface\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Upwelled Radiance\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Upwelled Radiance Band Surface\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Thermal Radiance\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Thermal Radiance Band Surface\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Emissivity Band\\\",\\\"description\\\":\\\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Emissivity Standard\n        Deviation Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Emissivity Standard\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Surface Temperature\n        Quality Assessment Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Quality Assessment\n        Band Surface Temperature Product\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":-9999,\\\"data_type\\\":\\\"int16\\\",\\\"spatial_resolution\\\":30,\\\"unit\\\":\\\"kelvin\\\",\\\"scale\\\":0.01}],\\\"roles\\\":[\\\"data\\\"]}},\\\"title\\\":\\\"Landsat\n        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\n        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\n        blue (Thematic Mapper)\\\",\\\"center_wavelength\\\":0.49,\\\"full_width_half_max\\\":0.07},{\\\"name\\\":\\\"TM_B2\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Visible\n        green (Thematic Mapper)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.08},{\\\"name\\\":\\\"TM_B3\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Visible\n        red (Thematic Mapper)\\\",\\\"center_wavelength\\\":0.66,\\\"full_width_half_max\\\":0.06},{\\\"name\\\":\\\"TM_B4\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"Near\n        infrared (Thematic Mapper)\\\",\\\"center_wavelength\\\":0.83,\\\"full_width_half_max\\\":0.14},{\\\"name\\\":\\\"TM_B5\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"Short-wave\n        infrared (Thematic Mapper)\\\",\\\"center_wavelength\\\":1.65,\\\"full_width_half_max\\\":0.2},{\\\"name\\\":\\\"TM_B6\\\",\\\"common_name\\\":\\\"lwir\\\",\\\"description\\\":\\\"Long-wave\n        infrared (Thematic Mapper)\\\",\\\"center_wavelength\\\":11.45,\\\"full_width_half_max\\\":2.1},{\\\"name\\\":\\\"TM_B7\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"Short-wave\n        infrared (Thematic Mapper)\\\",\\\"center_wavelength\\\":2.22,\\\"full_width_half_max\\\":0.27},{\\\"name\\\":\\\"ETM_B1\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Visible\n        blue (Enhanced Thematic Mapper Plus)\\\",\\\"center_wavelength\\\":0.48,\\\"full_width_half_max\\\":0.07},{\\\"name\\\":\\\"ETM_B2\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Visible\n        green (Enhanced Thematic Mapper Plus)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.08},{\\\"name\\\":\\\"ETM_B3\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Visible\n        red (Enhanced Thematic Mapper Plus)\\\",\\\"center_wavelength\\\":0.66,\\\"full_width_half_max\\\":0.06},{\\\"name\\\":\\\"ETM_B4\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"Near\n        infrared (Enhanced Thematic Mapper Plus)\\\",\\\"center_wavelength\\\":0.84,\\\"full_width_half_max\\\":0.13},{\\\"name\\\":\\\"ETM_B5\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"Short-wave\n        infrared (Enhanced Thematic Mapper Plus)\\\",\\\"center_wavelength\\\":1.65,\\\"full_width_half_max\\\":0.2},{\\\"name\\\":\\\"ETM_B6\\\",\\\"common_name\\\":\\\"lwir\\\",\\\"description\\\":\\\"Long-wave\n        infrared (Enhanced Thematic Mapper Plus)\\\",\\\"center_wavelength\\\":11.34,\\\"full_width_half_max\\\":2.05},{\\\"name\\\":\\\"ETM_B7\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"Short-wave\n        infrared (Enhanced Thematic Mapper Plus)\\\",\\\"center_wavelength\\\":2.2,\\\"full_width_half_max\\\":0.28},{\\\"name\\\":\\\"OLI_B1\\\",\\\"common_name\\\":\\\"coastal\\\",\\\"description\\\":\\\"Coastal/Aerosol\n        (Operational Land Imager)\\\",\\\"center_wavelength\\\":0.44,\\\"full_width_half_max\\\":0.02},{\\\"name\\\":\\\"OLI_B2\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Visible\n        blue (Operational Land Imager)\\\",\\\"center_wavelength\\\":0.48,\\\"full_width_half_max\\\":0.06},{\\\"name\\\":\\\"OLI_B3\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Visible\n        green (Operational Land Imager)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.06},{\\\"name\\\":\\\"OLI_B4\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Visible\n        red (Operational Land Imager)\\\",\\\"center_wavelength\\\":0.65,\\\"full_width_half_max\\\":0.04},{\\\"name\\\":\\\"OLI_B5\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"Near\n        infrared (Operational Land Imager)\\\",\\\"center_wavelength\\\":0.87,\\\"full_width_half_max\\\":0.03},{\\\"name\\\":\\\"OLI_B6\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"Short-wave\n        infrared (Operational Land Imager)\\\",\\\"center_wavelength\\\":1.61,\\\"full_width_half_max\\\":0.09},{\\\"name\\\":\\\"OLI_B7\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"Short-wave\n        infrared (Operational Land Imager)\\\",\\\"center_wavelength\\\":2.2,\\\"full_width_half_max\\\":0.19},{\\\"name\\\":\\\"TIRS_B10\\\",\\\"common_name\\\":\\\"lwir11\\\",\\\"description\\\":\\\"Long-wave\n        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\n        Level-2A\\\",\\\"description\\\":\\\"Global Sentinel-2 data from the Multispectral\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Aerosol optical\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Blue (band 2) -\n        10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Coastal aerosol\n        (band 1) - 60m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"coastal\\\",\\\"common_name\\\":\\\"coastal\\\",\\\"description\\\":\\\"Coastal\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Green (band 3)\n        - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"NIR 1 (band 8)\n        - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"nir\\\",\\\"common_name\\\":\\\"nir\\\",\\\"description\\\":\\\"NIR\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"NIR 2 (band 8A)\n        - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"nir08\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"NIR\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"NIR 3 (band 9)\n        - 60m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"nir09\\\",\\\"common_name\\\":\\\"nir09\\\",\\\"description\\\":\\\"NIR\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Red (band 4) -\n        10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Red edge 1 (band\n        5) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"rededge1\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Red edge 2 (band\n        6) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"rededge2\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Red edge 3 (band\n        7) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"rededge3\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Scene classification\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"SWIR 1 (band 11)\n        - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"swir16\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"SWIR\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"SWIR 2 (band 12)\n        - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"swir22\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"SWIR\n        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\n        image\\\",\\\"roles\\\":[\\\"thumbnail\\\"]},\\\"tileinfo_metadata\\\":{\\\"type\\\":\\\"application/json\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"visual\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"True color image\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (band 4)\\\",\\\"center_wavelength\\\":0.665,\\\"full_width_half_max\\\":0.038},{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (band 3)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.045},{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (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;\n        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\n        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\n        (band 2) - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (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\n        aerosol (band 1) - 60m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"coastal\\\",\\\"common_name\\\":\\\"coastal\\\",\\\"description\\\":\\\"Coastal\n        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\n        (band 3) - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (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\n        1 (band 8) - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"nir\\\",\\\"common_name\\\":\\\"nir\\\",\\\"description\\\":\\\"NIR\n        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\n        2 (band 8A) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"nir08\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"NIR\n        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\n        3 (band 9) - 60m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"nir09\\\",\\\"common_name\\\":\\\"nir09\\\",\\\"description\\\":\\\"NIR\n        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\n        (band 4) - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (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\n        edge 1 (band 5) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"rededge1\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        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\n        edge 2 (band 6) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"rededge2\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        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\n        edge 3 (band 7) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"rededge3\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        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\n        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\n        1 (band 11) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"swir16\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"SWIR\n        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\n        2 (band 12) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"swir22\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"SWIR\n        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\n        color image\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (band 4)\\\",\\\"center_wavelength\\\":0.665,\\\"full_width_half_max\\\":0.038},{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (band 3)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.045},{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (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\n        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\n        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\n        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\n        aerosol (band 1)\\\",\\\"center_wavelength\\\":0.443,\\\"full_width_half_max\\\":0.027},{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (band 2)\\\",\\\"center_wavelength\\\":0.49,\\\"full_width_half_max\\\":0.098},{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (band 3)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.045},{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (band 4)\\\",\\\"center_wavelength\\\":0.665,\\\"full_width_half_max\\\":0.038},{\\\"name\\\":\\\"rededge1\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 1 (band 5)\\\",\\\"center_wavelength\\\":0.704,\\\"full_width_half_max\\\":0.019},{\\\"name\\\":\\\"rededge2\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 2 (band 6)\\\",\\\"center_wavelength\\\":0.74,\\\"full_width_half_max\\\":0.018},{\\\"name\\\":\\\"rededge3\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 3 (band 7)\\\",\\\"center_wavelength\\\":0.783,\\\"full_width_half_max\\\":0.028},{\\\"name\\\":\\\"nir\\\",\\\"common_name\\\":\\\"nir\\\",\\\"description\\\":\\\"NIR\n        1 (band 8)\\\",\\\"center_wavelength\\\":0.842,\\\"full_width_half_max\\\":0.145},{\\\"name\\\":\\\"nir08\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"NIR\n        2 (band 8A)\\\",\\\"center_wavelength\\\":0.865,\\\"full_width_half_max\\\":0.033},{\\\"name\\\":\\\"nir09\\\",\\\"common_name\\\":\\\"nir09\\\",\\\"description\\\":\\\"NIR\n        3 (band 9)\\\",\\\"center_wavelength\\\":0.945,\\\"full_width_half_max\\\":0.026},{\\\"name\\\":\\\"cirrus\\\",\\\"common_name\\\":\\\"cirrus\\\",\\\"description\\\":\\\"Cirrus\n        (band 10)\\\",\\\"center_wavelength\\\":1.3735,\\\"full_width_half_max\\\":0.075},{\\\"name\\\":\\\"swir16\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"SWIR\n        1 (band 11)\\\",\\\"center_wavelength\\\":1.61,\\\"full_width_half_max\\\":0.143},{\\\"name\\\":\\\"swir22\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"SWIR\n        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\n        Level-1C\\\",\\\"description\\\":\\\"Global Sentinel-2 data from the Multispectral\n        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\n        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\n        (band 2) - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (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\n        (band 10) - 60m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"cirrus\\\",\\\"common_name\\\":\\\"cirrus\\\",\\\"description\\\":\\\"Cirrus\n        (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\n        aerosol (band 1) - 60m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"coastal\\\",\\\"common_name\\\":\\\"coastal\\\",\\\"description\\\":\\\"Coastal\n        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\n        (band 3) - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (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\n        1 (band 8) - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"nir\\\",\\\"common_name\\\":\\\"nir\\\",\\\"description\\\":\\\"NIR\n        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\n        2 (band 8A) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"nir08\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"NIR\n        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\n        3 (band 9) - 60m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"nir09\\\",\\\"common_name\\\":\\\"nir09\\\",\\\"description\\\":\\\"NIR\n        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\n        (band 4) - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (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\n        edge 1 (band 5) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"rededge1\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        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\n        edge 2 (band 6) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"rededge2\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        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\n        edge 3 (band 7) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"rededge3\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        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\n        1 (band 11) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"swir16\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"SWIR\n        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\n        2 (band 12) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"swir22\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"SWIR\n        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\n        image\\\",\\\"roles\\\":[\\\"thumbnail\\\"]},\\\"tileinfo_metadata\\\":{\\\"type\\\":\\\"application/json\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"visual\\\":{\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"True\n        color image\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (band 4)\\\",\\\"center_wavelength\\\":0.665,\\\"full_width_half_max\\\":0.038},{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (band 3)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.045},{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (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\n        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\n        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\n        aerosol (band 1)\\\",\\\"center_wavelength\\\":0.443,\\\"full_width_half_max\\\":0.027},{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (band 2)\\\",\\\"center_wavelength\\\":0.49,\\\"full_width_half_max\\\":0.098},{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (band 3)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.045},{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (band 4)\\\",\\\"center_wavelength\\\":0.665,\\\"full_width_half_max\\\":0.038},{\\\"name\\\":\\\"rededge1\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 1 (band 5)\\\",\\\"center_wavelength\\\":0.704,\\\"full_width_half_max\\\":0.019},{\\\"name\\\":\\\"rededge2\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 2 (band 6)\\\",\\\"center_wavelength\\\":0.74,\\\"full_width_half_max\\\":0.018},{\\\"name\\\":\\\"rededge3\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 3 (band 7)\\\",\\\"center_wavelength\\\":0.783,\\\"full_width_half_max\\\":0.028},{\\\"name\\\":\\\"nir\\\",\\\"common_name\\\":\\\"nir\\\",\\\"description\\\":\\\"NIR\n        1 (band 8)\\\",\\\"center_wavelength\\\":0.842,\\\"full_width_half_max\\\":0.145},{\\\"name\\\":\\\"nir08\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"NIR\n        2 (band 8A)\\\",\\\"center_wavelength\\\":0.865,\\\"full_width_half_max\\\":0.033},{\\\"name\\\":\\\"nir09\\\",\\\"common_name\\\":\\\"nir09\\\",\\\"description\\\":\\\"NIR\n        3 (band 9)\\\",\\\"center_wavelength\\\":0.945,\\\"full_width_half_max\\\":0.026},{\\\"name\\\":\\\"cirrus\\\",\\\"common_name\\\":\\\"cirrus\\\",\\\"description\\\":\\\"Cirrus\n        (band 10)\\\",\\\"center_wavelength\\\":1.3735,\\\"full_width_half_max\\\":0.075},{\\\"name\\\":\\\"swir16\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"SWIR\n        1 (band 11)\\\",\\\"center_wavelength\\\":1.61,\\\"full_width_half_max\\\":0.143},{\\\"name\\\":\\\"swir22\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"SWIR\n        2 (band 12)\\\",\\\"center_wavelength\\\":2.19,\\\"full_width_half_max\\\":0.242}]}},{\\\"type\\\":\\\"Collection\\\",\\\"id\\\":\\\"sentinel-2-c1-l2a\\\",\\\"title\\\":\\\"Sentinel-2\n        Collection 1 Level-2A\\\",\\\"description\\\":\\\"Sentinel-2 Collection 1 Level-2A,\n        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\n        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;\n        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;\n        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;\n        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;\n        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;\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"SWIR 2.2\\u03BCm\n        - 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;\n        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;\n        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;\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"SWIR 1.6\\u03BCm\n        - 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;\n        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;\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Scene classification\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Aerosol optical\n        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;\n        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;\n        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;\n        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;\n        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;\n        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\n        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\n        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\n        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\n        aerosol (band 1)\\\",\\\"center_wavelength\\\":0.443,\\\"full_width_half_max\\\":0.027},{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (band 2)\\\",\\\"center_wavelength\\\":0.49,\\\"full_width_half_max\\\":0.098},{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (band 3)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.045},{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (band 4)\\\",\\\"center_wavelength\\\":0.665,\\\"full_width_half_max\\\":0.038},{\\\"name\\\":\\\"rededge1\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 1 (band 5)\\\",\\\"center_wavelength\\\":0.704,\\\"full_width_half_max\\\":0.019},{\\\"name\\\":\\\"rededge2\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 2 (band 6)\\\",\\\"center_wavelength\\\":0.74,\\\"full_width_half_max\\\":0.018},{\\\"name\\\":\\\"rededge3\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 3 (band 7)\\\",\\\"center_wavelength\\\":0.783,\\\"full_width_half_max\\\":0.028},{\\\"name\\\":\\\"nir\\\",\\\"common_name\\\":\\\"nir\\\",\\\"description\\\":\\\"NIR\n        1 (band 8)\\\",\\\"center_wavelength\\\":0.842,\\\"full_width_half_max\\\":0.145},{\\\"name\\\":\\\"nir08\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"NIR\n        2 (band 8A)\\\",\\\"center_wavelength\\\":0.865,\\\"full_width_half_max\\\":0.033},{\\\"name\\\":\\\"nir09\\\",\\\"common_name\\\":\\\"nir09\\\",\\\"description\\\":\\\"NIR\n        3 (band 9)\\\",\\\"center_wavelength\\\":0.945,\\\"full_width_half_max\\\":0.026},{\\\"name\\\":\\\"cirrus\\\",\\\"common_name\\\":\\\"cirrus\\\",\\\"description\\\":\\\"Cirrus\n        (band 10)\\\",\\\"center_wavelength\\\":1.3735,\\\"full_width_half_max\\\":0.075},{\\\"name\\\":\\\"swir16\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"SWIR\n        1 (band 11)\\\",\\\"center_wavelength\\\":1.61,\\\"full_width_half_max\\\":0.143},{\\\"name\\\":\\\"swir22\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"SWIR\n        2 (band 12)\\\",\\\"center_wavelength\\\":2.19,\\\"full_width_half_max\\\":0.242}]}},{\\\"id\\\":\\\"sentinel-1-grd\\\",\\\"type\\\":\\\"Collection\\\",\\\"title\\\":\\\"Sentinel-1\n        Level-1C Ground Range Detected (GRD)\\\",\\\"description\\\":\\\"Sentinel-1 is a pair\n        of Synthetic Aperture Radar (SAR) imaging satellites launched in 2014 and\n        2016 by the European Space Agency (ESA). Their 6 day revisit cycle and ability\n        to observe through clouds makes this dataset perfect for sea and land monitoring,\n        emergency response due to environmental disasters, and economic applications.\n        This dataset represents the global Sentinel-1 GRD archive, from beginning\n        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\n        Ground Range Detected (GRD) Technical Guide\\\"},{\\\"rel\\\":\\\"license\\\",\\\"href\\\":\\\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\\\",\\\"title\\\":\\\"Copernicus\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"HH\n        Data\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\"}]},\\\"hv\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"HV\n        Data\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\"}]},\\\"vh\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"VH\n        Data\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\"}]},\\\"vv\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"VV\n        Data\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\"}]},\\\"thumbnail\\\":{\\\"type\\\":\\\"image/png\\\",\\\"roles\\\":[\\\"thumbnail\\\"],\\\"title\\\":\\\"Thumbnail\n        Image\\\"},\\\"safe-manifest\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"SAFE\n        Manifest File\\\"},\\\"schema-noise-hh\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"HH\n        Noise Schema\\\"},\\\"schema-noise-hv\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"HV\n        Noise Schema\\\"},\\\"schema-noise-vh\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"VH\n        Noise Schema\\\"},\\\"schema-noise-vv\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"VV\n        Noise Schema\\\"},\\\"schema-product-hh\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"HH\n        Product Schema\\\"},\\\"schema-product-hv\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"HV\n        Product Schema\\\"},\\\"schema-product-vh\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"VH\n        Product Schema\\\"},\\\"schema-product-vv\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"VV\n        Product Schema\\\"},\\\"schema-calibration-hh\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"HH\n        Calibration Schema\\\"},\\\"schema-calibration-hv\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"HV\n        Calibration Schema\\\"},\\\"schema-calibration-vh\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"VH\n        Calibration Schema\\\"},\\\"schema-calibration-vv\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"VV\n        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}}\"\n    headers:\n      Connection:\n      - keep-alive\n      Content-Encoding:\n      - gzip\n      Content-Length:\n      - '8117'\n      Content-Type:\n      - application/json; charset=utf-8\n      Date:\n      - Thu, 31 Jul 2025 15:08:23 GMT\n      Via:\n      - 1.1 30ea845097208edbc19305c535a5be98.cloudfront.net (CloudFront)\n      X-Amz-Cf-Id:\n      - 5WiMFqCe5EWWuA41c4T9PP5bFLbu4uX-us0dXahoJxDolH7mv4nkLA==\n      X-Amz-Cf-Pop:\n      - DEN52-C1\n      X-Amzn-Trace-Id:\n      - Root=1-688b86e7-04fbfc107f63c564087db268;Parent=4635bf25c4fb3903;Sampled=0;Lineage=1:9e2884e9:0\n      X-Cache:\n      - Miss from cloudfront\n      access-control-allow-origin:\n      - '*'\n      etag:\n      - W/\"141dd-9fMv6YJnvxPn9adSQK466CnIbE0\"\n      x-amz-apigw-id:\n      - OlIEQGPUPHcEg1g=\n      x-amzn-Remapped-content-length:\n      - '82397'\n      x-amzn-RequestId:\n      - bacd871d-ea75-4d16-9781-b59f15c2c3a2\n      x-powered-by:\n      - Express\n    status:\n      code: 200\n      message: OK\nversion: 1\n"
  },
  {
    "path": "tests/cassettes/test_collection_search/TestCollectionSearch.test_client_side_datetime.yaml",
    "content": "interactions:\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    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\n  response:\n    body:\n      string: \"{\\\"collections\\\":[{\\\"type\\\":\\\"Collection\\\",\\\"id\\\":\\\"sentinel-2-pre-c1-l2a\\\",\\\"title\\\":\\\"Sentinel-2\n        Pre-Collection 1 Level-2A \\\",\\\"description\\\":\\\"Sentinel-2 Pre-Collection 1\n        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\n        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;\n        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;\n        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;\n        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;\n        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;\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"SWIR 2.2\\u03BCm\n        - 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;\n        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;\n        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;\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"SWIR 1.6\\u03BCm\n        - 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;\n        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;\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Scene classification\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Aerosol optical\n        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;\n        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;\n        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;\n        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;\n        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;\n        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\n        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\n        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\n        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\n        aerosol (band 1)\\\",\\\"center_wavelength\\\":0.443,\\\"full_width_half_max\\\":0.027},{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (band 2)\\\",\\\"center_wavelength\\\":0.49,\\\"full_width_half_max\\\":0.098},{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (band 3)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.045},{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (band 4)\\\",\\\"center_wavelength\\\":0.665,\\\"full_width_half_max\\\":0.038},{\\\"name\\\":\\\"rededge1\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 1 (band 5)\\\",\\\"center_wavelength\\\":0.704,\\\"full_width_half_max\\\":0.019},{\\\"name\\\":\\\"rededge2\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 2 (band 6)\\\",\\\"center_wavelength\\\":0.74,\\\"full_width_half_max\\\":0.018},{\\\"name\\\":\\\"rededge3\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 3 (band 7)\\\",\\\"center_wavelength\\\":0.783,\\\"full_width_half_max\\\":0.028},{\\\"name\\\":\\\"nir\\\",\\\"common_name\\\":\\\"nir\\\",\\\"description\\\":\\\"NIR\n        1 (band 8)\\\",\\\"center_wavelength\\\":0.842,\\\"full_width_half_max\\\":0.145},{\\\"name\\\":\\\"nir08\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"NIR\n        2 (band 8A)\\\",\\\"center_wavelength\\\":0.865,\\\"full_width_half_max\\\":0.033},{\\\"name\\\":\\\"nir09\\\",\\\"common_name\\\":\\\"nir09\\\",\\\"description\\\":\\\"NIR\n        3 (band 9)\\\",\\\"center_wavelength\\\":0.945,\\\"full_width_half_max\\\":0.026},{\\\"name\\\":\\\"cirrus\\\",\\\"common_name\\\":\\\"cirrus\\\",\\\"description\\\":\\\"Cirrus\n        (band 10)\\\",\\\"center_wavelength\\\":1.3735,\\\"full_width_half_max\\\":0.075},{\\\"name\\\":\\\"swir16\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"SWIR\n        1 (band 11)\\\",\\\"center_wavelength\\\":1.61,\\\"full_width_half_max\\\":0.143},{\\\"name\\\":\\\"swir22\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"SWIR\n        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\n        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\n        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\n        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\n        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\n        Copernicus DEM is a Digital Surface Model (DSM) which represents the surface\n        of the Earth including buildings, infrastructure and vegetation. GLO-30 Public\n        provides limited worldwide coverage at 30 meters because a small subset of\n        tiles covering specific countries are not yet released to the public by the\n        Copernicus Programme.\\\",\\\"item_assets\\\":{\\\"data\\\":{\\\"type\\\":\\\"image/tiff;\n        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\n        [National Agriculture Imagery Program](https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/)\n        (NAIP) provides U.S.-wide, high-resolution aerial imagery, with four spectral\n        bands (R, G, B, IR).  NAIP is administered by the [Aerial Field Photography\n        Office](https://www.fsa.usda.gov/programs-and-services/aerial-photography/)\n        (AFPO) within the [US Department of Agriculture](https://www.usda.gov/) (USDA).\n        \\ Data are captured at least once every three years for each state.  This\n        dataset represents NAIP data from 2010-present, in [cloud-optimized GeoTIFF](https://www.cogeo.org/)\n        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\n        Domain\\\",\\\"type\\\":\\\"text/html\\\"},{\\\"rel\\\":\\\"cite-as\\\",\\\"href\\\":\\\"https://doi.org/10.5066/F7QN651G\\\",\\\"title\\\":\\\"NAIP\n        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:\n        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\n        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\n        84\\\",\\\"roles\\\":[\\\"processor\\\"],\\\"url\\\":\\\"https://element84.com\\\"}],\\\"summaries\\\":{\\\"gsd\\\":[0.6,1],\\\"eo:bands\\\":[{\\\"name\\\":\\\"Red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"visible\n        red\\\"},{\\\"name\\\":\\\"Green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"visible\n        green\\\"},{\\\"name\\\":\\\"Blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"visible\n        blue\\\"},{\\\"name\\\":\\\"NIR\\\",\\\"common_name\\\":\\\"nir\\\",\\\"description\\\":\\\"near-infrared\\\"}]},\\\"item_assets\\\":{\\\"image\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"RGBIR\n        COG tile\\\",\\\"eo:bands\\\":[{\\\"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\n        Metdata\\\"}},\\\"sci:doi\\\":\\\"10.5066/F7QN651G\\\",\\\"sci:publications\\\":[{\\\"doi\\\":\\\"10.14358/PERS.83.10.737\\\",\\\"citation\\\":\\\"Maxwell,\n        A. E., Warner, T. A., Vanderbilt, B. C., &amp; Ramezan, C. A. (2017). Land\n        cover classification and feature extraction from National Agriculture Imagery\n        Program (NAIP) orthoimagery: A Review. Photogrammetric Engineering &amp; Remote\n        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\n        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\n        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\n        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\n        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\n        Copernicus DEM is a Digital Surface Model (DSM) which represents the surface\n        of the Earth including buildings, infrastructure and vegetation. GLO-90 provides\n        worldwide coverage at 90 meters.\\\",\\\"item_assets\\\":{\\\"data\\\":{\\\"type\\\":\\\"image/tiff;\n        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\n        corrected global Landsat Collection 2 Level-2 data from the Thematic Mapper\n        (TM) onboard Landsat 4 and 5, the Enhanced Thematic Mapper Plus (ETM+) onboard\n        Landsat 7, and the Operational Land Imager (OLI) and Thermal Infrared Sensor\n        (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\n        4-5 TM Collection 2 Level-2\\\"},{\\\"rel\\\":\\\"cite-as\\\",\\\"href\\\":\\\"https://doi.org/10.5066/P9C7I13B\\\",\\\"title\\\":\\\"Landsat\n        7 ETM+ Collection 2 Level-2\\\"},{\\\"rel\\\":\\\"cite-as\\\",\\\"href\\\":\\\"https://doi.org/10.5066/P9OGBGM6\\\",\\\"title\\\":\\\"Landsat\n        8-9 OLI/TIRS Collection 2 Level-2\\\"},{\\\"rel\\\":\\\"license\\\",\\\"href\\\":\\\"https://www.usgs.gov/core-science-systems/hdds/data-policy\\\",\\\"title\\\":\\\"Public\n        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\n        image\\\",\\\"roles\\\":[\\\"thumbnail\\\"]},\\\"reduced_resolution_browse\\\":{\\\"type\\\":\\\"image/jpeg\\\",\\\"title\\\":\\\"Reduced\n        resolution browse image\\\",\\\"roles\\\":[\\\"overview\\\"]},\\\"mtl.json\\\":{\\\"type\\\":\\\"application/json\\\",\\\"title\\\":\\\"Product\n        Metadata File (json)\\\",\\\"description\\\":\\\"Collection 2 Level-2 Product Metadata\n        File (json)\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"mtl.txt\\\":{\\\"type\\\":\\\"text/plain\\\",\\\"title\\\":\\\"Product\n        Metadata File (txt)\\\",\\\"description\\\":\\\"Collection 2 Level-2 Product Metadata\n        File (txt)\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"mtl.xml\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"title\\\":\\\"Product\n        Metadata File (xml)\\\",\\\"description\\\":\\\"Collection 2 Level-2 Product Metadata\n        File (xml)\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"ang\\\":{\\\"type\\\":\\\"text/plain\\\",\\\"title\\\":\\\"Angle\n        Coefficients File\\\",\\\"description\\\":\\\"Collection 2 Level-1 Angle Coefficients\n        File\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"qa_pixel\\\":{\\\"type\\\":\\\"image/tiff; application=geotiff;\n        profile=cloud-optimized\\\",\\\"title\\\":\\\"Pixel Quality Assessment Band\\\",\\\"description\\\":\\\"Collection\n        2 Level-1 Pixel Quality Assessment Band\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":1,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":30,\\\"unit\\\":\\\"bit\n        index\\\"}],\\\"roles\\\":[\\\"cloud\\\",\\\"cloud-shadow\\\",\\\"snow-ice\\\",\\\"water-mask\\\"]},\\\"qa_radsat\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Radiometric Saturation\n        Quality Assessment Band\\\",\\\"description\\\":\\\"Collection 2 Level-1 Radiometric\n        Saturation Quality Assessment Band\\\",\\\"raster:bands\\\":[{\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":30,\\\"unit\\\":\\\"bit\n        index\\\"}],\\\"roles\\\":[\\\"saturation\\\"]},\\\"coastal\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Coastal/Aerosol\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Coastal/Aerosol Band Surface\n        Reflectance\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":30,\\\"scale\\\":0.0000275,\\\"offset\\\":-0.2}],\\\"roles\\\":[\\\"reflectance\\\"]},\\\"blue\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Blue Band\\\",\\\"description\\\":\\\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Green Band\\\",\\\"description\\\":\\\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Red Band\\\",\\\"description\\\":\\\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Near Infrared Band\n        0.8\\\",\\\"description\\\":\\\"Collection 2 Level-2 Near Infrared Band 0.8 Surface\n        Reflectance\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":30,\\\"scale\\\":0.0000275,\\\"offset\\\":-0.2}],\\\"roles\\\":[\\\"reflectance\\\"]},\\\"swir16\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Short-wave Infrared\n        Band 1.6\\\",\\\"description\\\":\\\"Collection 2 Level-2 Short-wave Infrared Band\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Short-wave Infrared\n        Band 2.2\\\",\\\"description\\\":\\\"Collection 2 Level-2 Short-wave Infrared Band\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Atmospheric Opacity\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Atmospheric Opacity Band Surface\n        Reflectance Product\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":-9999,\\\"data_type\\\":\\\"int16\\\",\\\"spatial_resolution\\\":30,\\\"scale\\\":0.001}],\\\"roles\\\":[\\\"data\\\"]},\\\"cloud_qa\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Cloud Quality Assessment\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Cloud Quality Assessment Band\n        Surface Reflectance Product\\\",\\\"raster:bands\\\":[{\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":30,\\\"unit\\\":\\\"bit\n        index\\\"}],\\\"roles\\\":[\\\"cloud\\\",\\\"cloud-shadow\\\",\\\"snow-ice\\\",\\\"water-mask\\\"]},\\\"qa_aerosol\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Aerosol Quality\n        Assessment Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Aerosol Quality Assessment\n        Band Surface Reflectance Product\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":1,\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":30,\\\"unit\\\":\\\"bit\n        index\\\"}],\\\"roles\\\":[\\\"data-mask\\\",\\\"water-mask\\\"]},\\\"lwir11\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Surface Temperature\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Thermal Infrared Band Surface\n        Temperature\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":30,\\\"unit\\\":\\\"kelvin\\\",\\\"scale\\\":0.00341802,\\\"offset\\\":149}],\\\"roles\\\":[\\\"temperature\\\"]},\\\"lwir\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Surface Temperature\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Thermal Infrared Band Surface\n        Temperature\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":30,\\\"unit\\\":\\\"kelvin\\\",\\\"scale\\\":0.00341802,\\\"offset\\\":149}],\\\"roles\\\":[\\\"temperature\\\"]},\\\"atran\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Atmospheric Transmittance\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Atmospheric Transmittance Band\n        Surface Temperature Product\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":-9999,\\\"data_type\\\":\\\"int16\\\",\\\"spatial_resolution\\\":30,\\\"scale\\\":0.0001}],\\\"roles\\\":[\\\"data\\\"]},\\\"cdist\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Cloud Distance\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Cloud Distance Band Surface\n        Temperature Product\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":-9999,\\\"data_type\\\":\\\"int16\\\",\\\"spatial_resolution\\\":30,\\\"unit\\\":\\\"kilometer\\\",\\\"scale\\\":0.01}],\\\"roles\\\":[\\\"data\\\"]},\\\"drad\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Downwelled Radiance\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Downwelled Radiance Band Surface\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Upwelled Radiance\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Upwelled Radiance Band Surface\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Thermal Radiance\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Thermal Radiance Band Surface\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Emissivity Band\\\",\\\"description\\\":\\\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Emissivity Standard\n        Deviation Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Emissivity Standard\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Surface Temperature\n        Quality Assessment Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Quality Assessment\n        Band Surface Temperature Product\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":-9999,\\\"data_type\\\":\\\"int16\\\",\\\"spatial_resolution\\\":30,\\\"unit\\\":\\\"kelvin\\\",\\\"scale\\\":0.01}],\\\"roles\\\":[\\\"data\\\"]}},\\\"title\\\":\\\"Landsat\n        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\n        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\n        blue (Thematic Mapper)\\\",\\\"center_wavelength\\\":0.49,\\\"full_width_half_max\\\":0.07},{\\\"name\\\":\\\"TM_B2\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Visible\n        green (Thematic Mapper)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.08},{\\\"name\\\":\\\"TM_B3\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Visible\n        red (Thematic Mapper)\\\",\\\"center_wavelength\\\":0.66,\\\"full_width_half_max\\\":0.06},{\\\"name\\\":\\\"TM_B4\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"Near\n        infrared (Thematic Mapper)\\\",\\\"center_wavelength\\\":0.83,\\\"full_width_half_max\\\":0.14},{\\\"name\\\":\\\"TM_B5\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"Short-wave\n        infrared (Thematic Mapper)\\\",\\\"center_wavelength\\\":1.65,\\\"full_width_half_max\\\":0.2},{\\\"name\\\":\\\"TM_B6\\\",\\\"common_name\\\":\\\"lwir\\\",\\\"description\\\":\\\"Long-wave\n        infrared (Thematic Mapper)\\\",\\\"center_wavelength\\\":11.45,\\\"full_width_half_max\\\":2.1},{\\\"name\\\":\\\"TM_B7\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"Short-wave\n        infrared (Thematic Mapper)\\\",\\\"center_wavelength\\\":2.22,\\\"full_width_half_max\\\":0.27},{\\\"name\\\":\\\"ETM_B1\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Visible\n        blue (Enhanced Thematic Mapper Plus)\\\",\\\"center_wavelength\\\":0.48,\\\"full_width_half_max\\\":0.07},{\\\"name\\\":\\\"ETM_B2\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Visible\n        green (Enhanced Thematic Mapper Plus)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.08},{\\\"name\\\":\\\"ETM_B3\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Visible\n        red (Enhanced Thematic Mapper Plus)\\\",\\\"center_wavelength\\\":0.66,\\\"full_width_half_max\\\":0.06},{\\\"name\\\":\\\"ETM_B4\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"Near\n        infrared (Enhanced Thematic Mapper Plus)\\\",\\\"center_wavelength\\\":0.84,\\\"full_width_half_max\\\":0.13},{\\\"name\\\":\\\"ETM_B5\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"Short-wave\n        infrared (Enhanced Thematic Mapper Plus)\\\",\\\"center_wavelength\\\":1.65,\\\"full_width_half_max\\\":0.2},{\\\"name\\\":\\\"ETM_B6\\\",\\\"common_name\\\":\\\"lwir\\\",\\\"description\\\":\\\"Long-wave\n        infrared (Enhanced Thematic Mapper Plus)\\\",\\\"center_wavelength\\\":11.34,\\\"full_width_half_max\\\":2.05},{\\\"name\\\":\\\"ETM_B7\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"Short-wave\n        infrared (Enhanced Thematic Mapper Plus)\\\",\\\"center_wavelength\\\":2.2,\\\"full_width_half_max\\\":0.28},{\\\"name\\\":\\\"OLI_B1\\\",\\\"common_name\\\":\\\"coastal\\\",\\\"description\\\":\\\"Coastal/Aerosol\n        (Operational Land Imager)\\\",\\\"center_wavelength\\\":0.44,\\\"full_width_half_max\\\":0.02},{\\\"name\\\":\\\"OLI_B2\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Visible\n        blue (Operational Land Imager)\\\",\\\"center_wavelength\\\":0.48,\\\"full_width_half_max\\\":0.06},{\\\"name\\\":\\\"OLI_B3\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Visible\n        green (Operational Land Imager)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.06},{\\\"name\\\":\\\"OLI_B4\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Visible\n        red (Operational Land Imager)\\\",\\\"center_wavelength\\\":0.65,\\\"full_width_half_max\\\":0.04},{\\\"name\\\":\\\"OLI_B5\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"Near\n        infrared (Operational Land Imager)\\\",\\\"center_wavelength\\\":0.87,\\\"full_width_half_max\\\":0.03},{\\\"name\\\":\\\"OLI_B6\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"Short-wave\n        infrared (Operational Land Imager)\\\",\\\"center_wavelength\\\":1.61,\\\"full_width_half_max\\\":0.09},{\\\"name\\\":\\\"OLI_B7\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"Short-wave\n        infrared (Operational Land Imager)\\\",\\\"center_wavelength\\\":2.2,\\\"full_width_half_max\\\":0.19},{\\\"name\\\":\\\"TIRS_B10\\\",\\\"common_name\\\":\\\"lwir11\\\",\\\"description\\\":\\\"Long-wave\n        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\n        Level-2A\\\",\\\"description\\\":\\\"Global Sentinel-2 data from the Multispectral\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Aerosol optical\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Blue (band 2) -\n        10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Coastal aerosol\n        (band 1) - 60m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"coastal\\\",\\\"common_name\\\":\\\"coastal\\\",\\\"description\\\":\\\"Coastal\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Green (band 3)\n        - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"NIR 1 (band 8)\n        - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"nir\\\",\\\"common_name\\\":\\\"nir\\\",\\\"description\\\":\\\"NIR\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"NIR 2 (band 8A)\n        - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"nir08\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"NIR\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"NIR 3 (band 9)\n        - 60m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"nir09\\\",\\\"common_name\\\":\\\"nir09\\\",\\\"description\\\":\\\"NIR\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Red (band 4) -\n        10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Red edge 1 (band\n        5) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"rededge1\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Red edge 2 (band\n        6) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"rededge2\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Red edge 3 (band\n        7) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"rededge3\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Scene classification\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"SWIR 1 (band 11)\n        - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"swir16\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"SWIR\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"SWIR 2 (band 12)\n        - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"swir22\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"SWIR\n        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\n        image\\\",\\\"roles\\\":[\\\"thumbnail\\\"]},\\\"tileinfo_metadata\\\":{\\\"type\\\":\\\"application/json\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"visual\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"True color image\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (band 4)\\\",\\\"center_wavelength\\\":0.665,\\\"full_width_half_max\\\":0.038},{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (band 3)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.045},{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (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;\n        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\n        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\n        (band 2) - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (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\n        aerosol (band 1) - 60m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"coastal\\\",\\\"common_name\\\":\\\"coastal\\\",\\\"description\\\":\\\"Coastal\n        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\n        (band 3) - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (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\n        1 (band 8) - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"nir\\\",\\\"common_name\\\":\\\"nir\\\",\\\"description\\\":\\\"NIR\n        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\n        2 (band 8A) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"nir08\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"NIR\n        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\n        3 (band 9) - 60m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"nir09\\\",\\\"common_name\\\":\\\"nir09\\\",\\\"description\\\":\\\"NIR\n        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\n        (band 4) - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (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\n        edge 1 (band 5) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"rededge1\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        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\n        edge 2 (band 6) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"rededge2\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        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\n        edge 3 (band 7) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"rededge3\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        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\n        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\n        1 (band 11) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"swir16\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"SWIR\n        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\n        2 (band 12) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"swir22\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"SWIR\n        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\n        color image\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (band 4)\\\",\\\"center_wavelength\\\":0.665,\\\"full_width_half_max\\\":0.038},{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (band 3)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.045},{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (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\n        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\n        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\n        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\n        aerosol (band 1)\\\",\\\"center_wavelength\\\":0.443,\\\"full_width_half_max\\\":0.027},{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (band 2)\\\",\\\"center_wavelength\\\":0.49,\\\"full_width_half_max\\\":0.098},{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (band 3)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.045},{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (band 4)\\\",\\\"center_wavelength\\\":0.665,\\\"full_width_half_max\\\":0.038},{\\\"name\\\":\\\"rededge1\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 1 (band 5)\\\",\\\"center_wavelength\\\":0.704,\\\"full_width_half_max\\\":0.019},{\\\"name\\\":\\\"rededge2\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 2 (band 6)\\\",\\\"center_wavelength\\\":0.74,\\\"full_width_half_max\\\":0.018},{\\\"name\\\":\\\"rededge3\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 3 (band 7)\\\",\\\"center_wavelength\\\":0.783,\\\"full_width_half_max\\\":0.028},{\\\"name\\\":\\\"nir\\\",\\\"common_name\\\":\\\"nir\\\",\\\"description\\\":\\\"NIR\n        1 (band 8)\\\",\\\"center_wavelength\\\":0.842,\\\"full_width_half_max\\\":0.145},{\\\"name\\\":\\\"nir08\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"NIR\n        2 (band 8A)\\\",\\\"center_wavelength\\\":0.865,\\\"full_width_half_max\\\":0.033},{\\\"name\\\":\\\"nir09\\\",\\\"common_name\\\":\\\"nir09\\\",\\\"description\\\":\\\"NIR\n        3 (band 9)\\\",\\\"center_wavelength\\\":0.945,\\\"full_width_half_max\\\":0.026},{\\\"name\\\":\\\"cirrus\\\",\\\"common_name\\\":\\\"cirrus\\\",\\\"description\\\":\\\"Cirrus\n        (band 10)\\\",\\\"center_wavelength\\\":1.3735,\\\"full_width_half_max\\\":0.075},{\\\"name\\\":\\\"swir16\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"SWIR\n        1 (band 11)\\\",\\\"center_wavelength\\\":1.61,\\\"full_width_half_max\\\":0.143},{\\\"name\\\":\\\"swir22\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"SWIR\n        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\n        Level-1C\\\",\\\"description\\\":\\\"Global Sentinel-2 data from the Multispectral\n        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\n        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\n        (band 2) - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (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\n        (band 10) - 60m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"cirrus\\\",\\\"common_name\\\":\\\"cirrus\\\",\\\"description\\\":\\\"Cirrus\n        (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\n        aerosol (band 1) - 60m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"coastal\\\",\\\"common_name\\\":\\\"coastal\\\",\\\"description\\\":\\\"Coastal\n        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\n        (band 3) - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (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\n        1 (band 8) - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"nir\\\",\\\"common_name\\\":\\\"nir\\\",\\\"description\\\":\\\"NIR\n        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\n        2 (band 8A) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"nir08\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"NIR\n        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\n        3 (band 9) - 60m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"nir09\\\",\\\"common_name\\\":\\\"nir09\\\",\\\"description\\\":\\\"NIR\n        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\n        (band 4) - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (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\n        edge 1 (band 5) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"rededge1\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        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\n        edge 2 (band 6) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"rededge2\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        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\n        edge 3 (band 7) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"rededge3\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        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\n        1 (band 11) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"swir16\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"SWIR\n        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\n        2 (band 12) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"swir22\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"SWIR\n        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\n        image\\\",\\\"roles\\\":[\\\"thumbnail\\\"]},\\\"tileinfo_metadata\\\":{\\\"type\\\":\\\"application/json\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"visual\\\":{\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"True\n        color image\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (band 4)\\\",\\\"center_wavelength\\\":0.665,\\\"full_width_half_max\\\":0.038},{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (band 3)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.045},{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (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\n        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\n        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\n        aerosol (band 1)\\\",\\\"center_wavelength\\\":0.443,\\\"full_width_half_max\\\":0.027},{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (band 2)\\\",\\\"center_wavelength\\\":0.49,\\\"full_width_half_max\\\":0.098},{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (band 3)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.045},{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (band 4)\\\",\\\"center_wavelength\\\":0.665,\\\"full_width_half_max\\\":0.038},{\\\"name\\\":\\\"rededge1\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 1 (band 5)\\\",\\\"center_wavelength\\\":0.704,\\\"full_width_half_max\\\":0.019},{\\\"name\\\":\\\"rededge2\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 2 (band 6)\\\",\\\"center_wavelength\\\":0.74,\\\"full_width_half_max\\\":0.018},{\\\"name\\\":\\\"rededge3\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 3 (band 7)\\\",\\\"center_wavelength\\\":0.783,\\\"full_width_half_max\\\":0.028},{\\\"name\\\":\\\"nir\\\",\\\"common_name\\\":\\\"nir\\\",\\\"description\\\":\\\"NIR\n        1 (band 8)\\\",\\\"center_wavelength\\\":0.842,\\\"full_width_half_max\\\":0.145},{\\\"name\\\":\\\"nir08\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"NIR\n        2 (band 8A)\\\",\\\"center_wavelength\\\":0.865,\\\"full_width_half_max\\\":0.033},{\\\"name\\\":\\\"nir09\\\",\\\"common_name\\\":\\\"nir09\\\",\\\"description\\\":\\\"NIR\n        3 (band 9)\\\",\\\"center_wavelength\\\":0.945,\\\"full_width_half_max\\\":0.026},{\\\"name\\\":\\\"cirrus\\\",\\\"common_name\\\":\\\"cirrus\\\",\\\"description\\\":\\\"Cirrus\n        (band 10)\\\",\\\"center_wavelength\\\":1.3735,\\\"full_width_half_max\\\":0.075},{\\\"name\\\":\\\"swir16\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"SWIR\n        1 (band 11)\\\",\\\"center_wavelength\\\":1.61,\\\"full_width_half_max\\\":0.143},{\\\"name\\\":\\\"swir22\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"SWIR\n        2 (band 12)\\\",\\\"center_wavelength\\\":2.19,\\\"full_width_half_max\\\":0.242}]}},{\\\"type\\\":\\\"Collection\\\",\\\"id\\\":\\\"sentinel-2-c1-l2a\\\",\\\"title\\\":\\\"Sentinel-2\n        Collection 1 Level-2A\\\",\\\"description\\\":\\\"Sentinel-2 Collection 1 Level-2A,\n        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\n        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;\n        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;\n        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;\n        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;\n        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;\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"SWIR 2.2\\u03BCm\n        - 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;\n        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;\n        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;\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"SWIR 1.6\\u03BCm\n        - 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;\n        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;\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Scene classification\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Aerosol optical\n        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;\n        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;\n        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;\n        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;\n        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;\n        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\n        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\n        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\n        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\n        aerosol (band 1)\\\",\\\"center_wavelength\\\":0.443,\\\"full_width_half_max\\\":0.027},{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (band 2)\\\",\\\"center_wavelength\\\":0.49,\\\"full_width_half_max\\\":0.098},{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (band 3)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.045},{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (band 4)\\\",\\\"center_wavelength\\\":0.665,\\\"full_width_half_max\\\":0.038},{\\\"name\\\":\\\"rededge1\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 1 (band 5)\\\",\\\"center_wavelength\\\":0.704,\\\"full_width_half_max\\\":0.019},{\\\"name\\\":\\\"rededge2\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 2 (band 6)\\\",\\\"center_wavelength\\\":0.74,\\\"full_width_half_max\\\":0.018},{\\\"name\\\":\\\"rededge3\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 3 (band 7)\\\",\\\"center_wavelength\\\":0.783,\\\"full_width_half_max\\\":0.028},{\\\"name\\\":\\\"nir\\\",\\\"common_name\\\":\\\"nir\\\",\\\"description\\\":\\\"NIR\n        1 (band 8)\\\",\\\"center_wavelength\\\":0.842,\\\"full_width_half_max\\\":0.145},{\\\"name\\\":\\\"nir08\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"NIR\n        2 (band 8A)\\\",\\\"center_wavelength\\\":0.865,\\\"full_width_half_max\\\":0.033},{\\\"name\\\":\\\"nir09\\\",\\\"common_name\\\":\\\"nir09\\\",\\\"description\\\":\\\"NIR\n        3 (band 9)\\\",\\\"center_wavelength\\\":0.945,\\\"full_width_half_max\\\":0.026},{\\\"name\\\":\\\"cirrus\\\",\\\"common_name\\\":\\\"cirrus\\\",\\\"description\\\":\\\"Cirrus\n        (band 10)\\\",\\\"center_wavelength\\\":1.3735,\\\"full_width_half_max\\\":0.075},{\\\"name\\\":\\\"swir16\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"SWIR\n        1 (band 11)\\\",\\\"center_wavelength\\\":1.61,\\\"full_width_half_max\\\":0.143},{\\\"name\\\":\\\"swir22\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"SWIR\n        2 (band 12)\\\",\\\"center_wavelength\\\":2.19,\\\"full_width_half_max\\\":0.242}]}},{\\\"id\\\":\\\"sentinel-1-grd\\\",\\\"type\\\":\\\"Collection\\\",\\\"title\\\":\\\"Sentinel-1\n        Level-1C Ground Range Detected (GRD)\\\",\\\"description\\\":\\\"Sentinel-1 is a pair\n        of Synthetic Aperture Radar (SAR) imaging satellites launched in 2014 and\n        2016 by the European Space Agency (ESA). Their 6 day revisit cycle and ability\n        to observe through clouds makes this dataset perfect for sea and land monitoring,\n        emergency response due to environmental disasters, and economic applications.\n        This dataset represents the global Sentinel-1 GRD archive, from beginning\n        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\n        Ground Range Detected (GRD) Technical Guide\\\"},{\\\"rel\\\":\\\"license\\\",\\\"href\\\":\\\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\\\",\\\"title\\\":\\\"Copernicus\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"HH\n        Data\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\"}]},\\\"hv\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"HV\n        Data\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\"}]},\\\"vh\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"VH\n        Data\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\"}]},\\\"vv\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"VV\n        Data\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\"}]},\\\"thumbnail\\\":{\\\"type\\\":\\\"image/png\\\",\\\"roles\\\":[\\\"thumbnail\\\"],\\\"title\\\":\\\"Thumbnail\n        Image\\\"},\\\"safe-manifest\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"SAFE\n        Manifest File\\\"},\\\"schema-noise-hh\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"HH\n        Noise Schema\\\"},\\\"schema-noise-hv\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"HV\n        Noise Schema\\\"},\\\"schema-noise-vh\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"VH\n        Noise Schema\\\"},\\\"schema-noise-vv\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"VV\n        Noise Schema\\\"},\\\"schema-product-hh\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"HH\n        Product Schema\\\"},\\\"schema-product-hv\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"HV\n        Product Schema\\\"},\\\"schema-product-vh\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"VH\n        Product Schema\\\"},\\\"schema-product-vv\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"VV\n        Product Schema\\\"},\\\"schema-calibration-hh\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"HH\n        Calibration Schema\\\"},\\\"schema-calibration-hv\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"HV\n        Calibration Schema\\\"},\\\"schema-calibration-vh\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"VH\n        Calibration Schema\\\"},\\\"schema-calibration-vv\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"VV\n        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}}\"\n    headers:\n      Connection:\n      - keep-alive\n      Content-Encoding:\n      - gzip\n      Content-Length:\n      - '8117'\n      Content-Type:\n      - application/json; charset=utf-8\n      Date:\n      - Thu, 31 Jul 2025 15:08:23 GMT\n      Via:\n      - 1.1 39c272e966ab7a6f8a68d2222276a954.cloudfront.net (CloudFront)\n      X-Amz-Cf-Id:\n      - Vr_5btyGPAQS-xZ2WK1gFKVjCW9R4YNoh3Fxe83GJEtate5YPXOteQ==\n      X-Amz-Cf-Pop:\n      - DEN52-C1\n      X-Amzn-Trace-Id:\n      - Root=1-688b86e7-01b72d6e33f22c2e30ed0d90;Parent=03c4d8588451fc86;Sampled=0;Lineage=1:9e2884e9:0\n      X-Cache:\n      - Miss from cloudfront\n      access-control-allow-origin:\n      - '*'\n      etag:\n      - W/\"141dd-9fMv6YJnvxPn9adSQK466CnIbE0\"\n      x-amz-apigw-id:\n      - OlIERHudvHcEWMA=\n      x-amzn-Remapped-content-length:\n      - '82397'\n      x-amzn-RequestId:\n      - e59f00f5-66db-4131-aea1-5930205ab1ec\n      x-powered-by:\n      - Express\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    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\n  response:\n    body:\n      string: \"{\\\"collections\\\":[{\\\"type\\\":\\\"Collection\\\",\\\"id\\\":\\\"sentinel-2-pre-c1-l2a\\\",\\\"title\\\":\\\"Sentinel-2\n        Pre-Collection 1 Level-2A \\\",\\\"description\\\":\\\"Sentinel-2 Pre-Collection 1\n        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\n        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;\n        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;\n        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;\n        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;\n        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;\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"SWIR 2.2\\u03BCm\n        - 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;\n        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;\n        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;\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"SWIR 1.6\\u03BCm\n        - 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;\n        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;\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Scene classification\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Aerosol optical\n        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;\n        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;\n        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;\n        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;\n        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;\n        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\n        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\n        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\n        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\n        aerosol (band 1)\\\",\\\"center_wavelength\\\":0.443,\\\"full_width_half_max\\\":0.027},{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (band 2)\\\",\\\"center_wavelength\\\":0.49,\\\"full_width_half_max\\\":0.098},{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (band 3)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.045},{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (band 4)\\\",\\\"center_wavelength\\\":0.665,\\\"full_width_half_max\\\":0.038},{\\\"name\\\":\\\"rededge1\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 1 (band 5)\\\",\\\"center_wavelength\\\":0.704,\\\"full_width_half_max\\\":0.019},{\\\"name\\\":\\\"rededge2\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 2 (band 6)\\\",\\\"center_wavelength\\\":0.74,\\\"full_width_half_max\\\":0.018},{\\\"name\\\":\\\"rededge3\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 3 (band 7)\\\",\\\"center_wavelength\\\":0.783,\\\"full_width_half_max\\\":0.028},{\\\"name\\\":\\\"nir\\\",\\\"common_name\\\":\\\"nir\\\",\\\"description\\\":\\\"NIR\n        1 (band 8)\\\",\\\"center_wavelength\\\":0.842,\\\"full_width_half_max\\\":0.145},{\\\"name\\\":\\\"nir08\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"NIR\n        2 (band 8A)\\\",\\\"center_wavelength\\\":0.865,\\\"full_width_half_max\\\":0.033},{\\\"name\\\":\\\"nir09\\\",\\\"common_name\\\":\\\"nir09\\\",\\\"description\\\":\\\"NIR\n        3 (band 9)\\\",\\\"center_wavelength\\\":0.945,\\\"full_width_half_max\\\":0.026},{\\\"name\\\":\\\"cirrus\\\",\\\"common_name\\\":\\\"cirrus\\\",\\\"description\\\":\\\"Cirrus\n        (band 10)\\\",\\\"center_wavelength\\\":1.3735,\\\"full_width_half_max\\\":0.075},{\\\"name\\\":\\\"swir16\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"SWIR\n        1 (band 11)\\\",\\\"center_wavelength\\\":1.61,\\\"full_width_half_max\\\":0.143},{\\\"name\\\":\\\"swir22\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"SWIR\n        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\n        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\n        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\n        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\n        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\n        Copernicus DEM is a Digital Surface Model (DSM) which represents the surface\n        of the Earth including buildings, infrastructure and vegetation. GLO-30 Public\n        provides limited worldwide coverage at 30 meters because a small subset of\n        tiles covering specific countries are not yet released to the public by the\n        Copernicus Programme.\\\",\\\"item_assets\\\":{\\\"data\\\":{\\\"type\\\":\\\"image/tiff;\n        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\n        [National Agriculture Imagery Program](https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/)\n        (NAIP) provides U.S.-wide, high-resolution aerial imagery, with four spectral\n        bands (R, G, B, IR).  NAIP is administered by the [Aerial Field Photography\n        Office](https://www.fsa.usda.gov/programs-and-services/aerial-photography/)\n        (AFPO) within the [US Department of Agriculture](https://www.usda.gov/) (USDA).\n        \\ Data are captured at least once every three years for each state.  This\n        dataset represents NAIP data from 2010-present, in [cloud-optimized GeoTIFF](https://www.cogeo.org/)\n        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\n        Domain\\\",\\\"type\\\":\\\"text/html\\\"},{\\\"rel\\\":\\\"cite-as\\\",\\\"href\\\":\\\"https://doi.org/10.5066/F7QN651G\\\",\\\"title\\\":\\\"NAIP\n        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:\n        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\n        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\n        84\\\",\\\"roles\\\":[\\\"processor\\\"],\\\"url\\\":\\\"https://element84.com\\\"}],\\\"summaries\\\":{\\\"gsd\\\":[0.6,1],\\\"eo:bands\\\":[{\\\"name\\\":\\\"Red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"visible\n        red\\\"},{\\\"name\\\":\\\"Green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"visible\n        green\\\"},{\\\"name\\\":\\\"Blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"visible\n        blue\\\"},{\\\"name\\\":\\\"NIR\\\",\\\"common_name\\\":\\\"nir\\\",\\\"description\\\":\\\"near-infrared\\\"}]},\\\"item_assets\\\":{\\\"image\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"RGBIR\n        COG tile\\\",\\\"eo:bands\\\":[{\\\"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\n        Metdata\\\"}},\\\"sci:doi\\\":\\\"10.5066/F7QN651G\\\",\\\"sci:publications\\\":[{\\\"doi\\\":\\\"10.14358/PERS.83.10.737\\\",\\\"citation\\\":\\\"Maxwell,\n        A. E., Warner, T. A., Vanderbilt, B. C., &amp; Ramezan, C. A. (2017). Land\n        cover classification and feature extraction from National Agriculture Imagery\n        Program (NAIP) orthoimagery: A Review. Photogrammetric Engineering &amp; Remote\n        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\n        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\n        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\n        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\n        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\n        Copernicus DEM is a Digital Surface Model (DSM) which represents the surface\n        of the Earth including buildings, infrastructure and vegetation. GLO-90 provides\n        worldwide coverage at 90 meters.\\\",\\\"item_assets\\\":{\\\"data\\\":{\\\"type\\\":\\\"image/tiff;\n        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\n        corrected global Landsat Collection 2 Level-2 data from the Thematic Mapper\n        (TM) onboard Landsat 4 and 5, the Enhanced Thematic Mapper Plus (ETM+) onboard\n        Landsat 7, and the Operational Land Imager (OLI) and Thermal Infrared Sensor\n        (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\n        4-5 TM Collection 2 Level-2\\\"},{\\\"rel\\\":\\\"cite-as\\\",\\\"href\\\":\\\"https://doi.org/10.5066/P9C7I13B\\\",\\\"title\\\":\\\"Landsat\n        7 ETM+ Collection 2 Level-2\\\"},{\\\"rel\\\":\\\"cite-as\\\",\\\"href\\\":\\\"https://doi.org/10.5066/P9OGBGM6\\\",\\\"title\\\":\\\"Landsat\n        8-9 OLI/TIRS Collection 2 Level-2\\\"},{\\\"rel\\\":\\\"license\\\",\\\"href\\\":\\\"https://www.usgs.gov/core-science-systems/hdds/data-policy\\\",\\\"title\\\":\\\"Public\n        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\n        image\\\",\\\"roles\\\":[\\\"thumbnail\\\"]},\\\"reduced_resolution_browse\\\":{\\\"type\\\":\\\"image/jpeg\\\",\\\"title\\\":\\\"Reduced\n        resolution browse image\\\",\\\"roles\\\":[\\\"overview\\\"]},\\\"mtl.json\\\":{\\\"type\\\":\\\"application/json\\\",\\\"title\\\":\\\"Product\n        Metadata File (json)\\\",\\\"description\\\":\\\"Collection 2 Level-2 Product Metadata\n        File (json)\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"mtl.txt\\\":{\\\"type\\\":\\\"text/plain\\\",\\\"title\\\":\\\"Product\n        Metadata File (txt)\\\",\\\"description\\\":\\\"Collection 2 Level-2 Product Metadata\n        File (txt)\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"mtl.xml\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"title\\\":\\\"Product\n        Metadata File (xml)\\\",\\\"description\\\":\\\"Collection 2 Level-2 Product Metadata\n        File (xml)\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"ang\\\":{\\\"type\\\":\\\"text/plain\\\",\\\"title\\\":\\\"Angle\n        Coefficients File\\\",\\\"description\\\":\\\"Collection 2 Level-1 Angle Coefficients\n        File\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"qa_pixel\\\":{\\\"type\\\":\\\"image/tiff; application=geotiff;\n        profile=cloud-optimized\\\",\\\"title\\\":\\\"Pixel Quality Assessment Band\\\",\\\"description\\\":\\\"Collection\n        2 Level-1 Pixel Quality Assessment Band\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":1,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":30,\\\"unit\\\":\\\"bit\n        index\\\"}],\\\"roles\\\":[\\\"cloud\\\",\\\"cloud-shadow\\\",\\\"snow-ice\\\",\\\"water-mask\\\"]},\\\"qa_radsat\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Radiometric Saturation\n        Quality Assessment Band\\\",\\\"description\\\":\\\"Collection 2 Level-1 Radiometric\n        Saturation Quality Assessment Band\\\",\\\"raster:bands\\\":[{\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":30,\\\"unit\\\":\\\"bit\n        index\\\"}],\\\"roles\\\":[\\\"saturation\\\"]},\\\"coastal\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Coastal/Aerosol\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Coastal/Aerosol Band Surface\n        Reflectance\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":30,\\\"scale\\\":0.0000275,\\\"offset\\\":-0.2}],\\\"roles\\\":[\\\"reflectance\\\"]},\\\"blue\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Blue Band\\\",\\\"description\\\":\\\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Green Band\\\",\\\"description\\\":\\\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Red Band\\\",\\\"description\\\":\\\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Near Infrared Band\n        0.8\\\",\\\"description\\\":\\\"Collection 2 Level-2 Near Infrared Band 0.8 Surface\n        Reflectance\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":30,\\\"scale\\\":0.0000275,\\\"offset\\\":-0.2}],\\\"roles\\\":[\\\"reflectance\\\"]},\\\"swir16\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Short-wave Infrared\n        Band 1.6\\\",\\\"description\\\":\\\"Collection 2 Level-2 Short-wave Infrared Band\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Short-wave Infrared\n        Band 2.2\\\",\\\"description\\\":\\\"Collection 2 Level-2 Short-wave Infrared Band\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Atmospheric Opacity\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Atmospheric Opacity Band Surface\n        Reflectance Product\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":-9999,\\\"data_type\\\":\\\"int16\\\",\\\"spatial_resolution\\\":30,\\\"scale\\\":0.001}],\\\"roles\\\":[\\\"data\\\"]},\\\"cloud_qa\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Cloud Quality Assessment\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Cloud Quality Assessment Band\n        Surface Reflectance Product\\\",\\\"raster:bands\\\":[{\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":30,\\\"unit\\\":\\\"bit\n        index\\\"}],\\\"roles\\\":[\\\"cloud\\\",\\\"cloud-shadow\\\",\\\"snow-ice\\\",\\\"water-mask\\\"]},\\\"qa_aerosol\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Aerosol Quality\n        Assessment Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Aerosol Quality Assessment\n        Band Surface Reflectance Product\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":1,\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":30,\\\"unit\\\":\\\"bit\n        index\\\"}],\\\"roles\\\":[\\\"data-mask\\\",\\\"water-mask\\\"]},\\\"lwir11\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Surface Temperature\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Thermal Infrared Band Surface\n        Temperature\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":30,\\\"unit\\\":\\\"kelvin\\\",\\\"scale\\\":0.00341802,\\\"offset\\\":149}],\\\"roles\\\":[\\\"temperature\\\"]},\\\"lwir\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Surface Temperature\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Thermal Infrared Band Surface\n        Temperature\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":30,\\\"unit\\\":\\\"kelvin\\\",\\\"scale\\\":0.00341802,\\\"offset\\\":149}],\\\"roles\\\":[\\\"temperature\\\"]},\\\"atran\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Atmospheric Transmittance\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Atmospheric Transmittance Band\n        Surface Temperature Product\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":-9999,\\\"data_type\\\":\\\"int16\\\",\\\"spatial_resolution\\\":30,\\\"scale\\\":0.0001}],\\\"roles\\\":[\\\"data\\\"]},\\\"cdist\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Cloud Distance\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Cloud Distance Band Surface\n        Temperature Product\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":-9999,\\\"data_type\\\":\\\"int16\\\",\\\"spatial_resolution\\\":30,\\\"unit\\\":\\\"kilometer\\\",\\\"scale\\\":0.01}],\\\"roles\\\":[\\\"data\\\"]},\\\"drad\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Downwelled Radiance\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Downwelled Radiance Band Surface\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Upwelled Radiance\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Upwelled Radiance Band Surface\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Thermal Radiance\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Thermal Radiance Band Surface\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Emissivity Band\\\",\\\"description\\\":\\\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Emissivity Standard\n        Deviation Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Emissivity Standard\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Surface Temperature\n        Quality Assessment Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Quality Assessment\n        Band Surface Temperature Product\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":-9999,\\\"data_type\\\":\\\"int16\\\",\\\"spatial_resolution\\\":30,\\\"unit\\\":\\\"kelvin\\\",\\\"scale\\\":0.01}],\\\"roles\\\":[\\\"data\\\"]}},\\\"title\\\":\\\"Landsat\n        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\n        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\n        blue (Thematic Mapper)\\\",\\\"center_wavelength\\\":0.49,\\\"full_width_half_max\\\":0.07},{\\\"name\\\":\\\"TM_B2\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Visible\n        green (Thematic Mapper)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.08},{\\\"name\\\":\\\"TM_B3\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Visible\n        red (Thematic Mapper)\\\",\\\"center_wavelength\\\":0.66,\\\"full_width_half_max\\\":0.06},{\\\"name\\\":\\\"TM_B4\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"Near\n        infrared (Thematic Mapper)\\\",\\\"center_wavelength\\\":0.83,\\\"full_width_half_max\\\":0.14},{\\\"name\\\":\\\"TM_B5\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"Short-wave\n        infrared (Thematic Mapper)\\\",\\\"center_wavelength\\\":1.65,\\\"full_width_half_max\\\":0.2},{\\\"name\\\":\\\"TM_B6\\\",\\\"common_name\\\":\\\"lwir\\\",\\\"description\\\":\\\"Long-wave\n        infrared (Thematic Mapper)\\\",\\\"center_wavelength\\\":11.45,\\\"full_width_half_max\\\":2.1},{\\\"name\\\":\\\"TM_B7\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"Short-wave\n        infrared (Thematic Mapper)\\\",\\\"center_wavelength\\\":2.22,\\\"full_width_half_max\\\":0.27},{\\\"name\\\":\\\"ETM_B1\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Visible\n        blue (Enhanced Thematic Mapper Plus)\\\",\\\"center_wavelength\\\":0.48,\\\"full_width_half_max\\\":0.07},{\\\"name\\\":\\\"ETM_B2\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Visible\n        green (Enhanced Thematic Mapper Plus)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.08},{\\\"name\\\":\\\"ETM_B3\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Visible\n        red (Enhanced Thematic Mapper Plus)\\\",\\\"center_wavelength\\\":0.66,\\\"full_width_half_max\\\":0.06},{\\\"name\\\":\\\"ETM_B4\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"Near\n        infrared (Enhanced Thematic Mapper Plus)\\\",\\\"center_wavelength\\\":0.84,\\\"full_width_half_max\\\":0.13},{\\\"name\\\":\\\"ETM_B5\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"Short-wave\n        infrared (Enhanced Thematic Mapper Plus)\\\",\\\"center_wavelength\\\":1.65,\\\"full_width_half_max\\\":0.2},{\\\"name\\\":\\\"ETM_B6\\\",\\\"common_name\\\":\\\"lwir\\\",\\\"description\\\":\\\"Long-wave\n        infrared (Enhanced Thematic Mapper Plus)\\\",\\\"center_wavelength\\\":11.34,\\\"full_width_half_max\\\":2.05},{\\\"name\\\":\\\"ETM_B7\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"Short-wave\n        infrared (Enhanced Thematic Mapper Plus)\\\",\\\"center_wavelength\\\":2.2,\\\"full_width_half_max\\\":0.28},{\\\"name\\\":\\\"OLI_B1\\\",\\\"common_name\\\":\\\"coastal\\\",\\\"description\\\":\\\"Coastal/Aerosol\n        (Operational Land Imager)\\\",\\\"center_wavelength\\\":0.44,\\\"full_width_half_max\\\":0.02},{\\\"name\\\":\\\"OLI_B2\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Visible\n        blue (Operational Land Imager)\\\",\\\"center_wavelength\\\":0.48,\\\"full_width_half_max\\\":0.06},{\\\"name\\\":\\\"OLI_B3\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Visible\n        green (Operational Land Imager)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.06},{\\\"name\\\":\\\"OLI_B4\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Visible\n        red (Operational Land Imager)\\\",\\\"center_wavelength\\\":0.65,\\\"full_width_half_max\\\":0.04},{\\\"name\\\":\\\"OLI_B5\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"Near\n        infrared (Operational Land Imager)\\\",\\\"center_wavelength\\\":0.87,\\\"full_width_half_max\\\":0.03},{\\\"name\\\":\\\"OLI_B6\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"Short-wave\n        infrared (Operational Land Imager)\\\",\\\"center_wavelength\\\":1.61,\\\"full_width_half_max\\\":0.09},{\\\"name\\\":\\\"OLI_B7\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"Short-wave\n        infrared (Operational Land Imager)\\\",\\\"center_wavelength\\\":2.2,\\\"full_width_half_max\\\":0.19},{\\\"name\\\":\\\"TIRS_B10\\\",\\\"common_name\\\":\\\"lwir11\\\",\\\"description\\\":\\\"Long-wave\n        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\n        Level-2A\\\",\\\"description\\\":\\\"Global Sentinel-2 data from the Multispectral\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Aerosol optical\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Blue (band 2) -\n        10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Coastal aerosol\n        (band 1) - 60m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"coastal\\\",\\\"common_name\\\":\\\"coastal\\\",\\\"description\\\":\\\"Coastal\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Green (band 3)\n        - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"NIR 1 (band 8)\n        - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"nir\\\",\\\"common_name\\\":\\\"nir\\\",\\\"description\\\":\\\"NIR\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"NIR 2 (band 8A)\n        - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"nir08\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"NIR\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"NIR 3 (band 9)\n        - 60m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"nir09\\\",\\\"common_name\\\":\\\"nir09\\\",\\\"description\\\":\\\"NIR\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Red (band 4) -\n        10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Red edge 1 (band\n        5) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"rededge1\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Red edge 2 (band\n        6) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"rededge2\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Red edge 3 (band\n        7) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"rededge3\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Scene classification\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"SWIR 1 (band 11)\n        - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"swir16\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"SWIR\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"SWIR 2 (band 12)\n        - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"swir22\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"SWIR\n        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\n        image\\\",\\\"roles\\\":[\\\"thumbnail\\\"]},\\\"tileinfo_metadata\\\":{\\\"type\\\":\\\"application/json\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"visual\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"True color image\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (band 4)\\\",\\\"center_wavelength\\\":0.665,\\\"full_width_half_max\\\":0.038},{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (band 3)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.045},{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (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;\n        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\n        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\n        (band 2) - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (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\n        aerosol (band 1) - 60m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"coastal\\\",\\\"common_name\\\":\\\"coastal\\\",\\\"description\\\":\\\"Coastal\n        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\n        (band 3) - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (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\n        1 (band 8) - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"nir\\\",\\\"common_name\\\":\\\"nir\\\",\\\"description\\\":\\\"NIR\n        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\n        2 (band 8A) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"nir08\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"NIR\n        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\n        3 (band 9) - 60m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"nir09\\\",\\\"common_name\\\":\\\"nir09\\\",\\\"description\\\":\\\"NIR\n        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\n        (band 4) - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (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\n        edge 1 (band 5) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"rededge1\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        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\n        edge 2 (band 6) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"rededge2\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        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\n        edge 3 (band 7) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"rededge3\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        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\n        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\n        1 (band 11) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"swir16\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"SWIR\n        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\n        2 (band 12) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"swir22\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"SWIR\n        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\n        color image\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (band 4)\\\",\\\"center_wavelength\\\":0.665,\\\"full_width_half_max\\\":0.038},{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (band 3)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.045},{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (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\n        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\n        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\n        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\n        aerosol (band 1)\\\",\\\"center_wavelength\\\":0.443,\\\"full_width_half_max\\\":0.027},{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (band 2)\\\",\\\"center_wavelength\\\":0.49,\\\"full_width_half_max\\\":0.098},{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (band 3)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.045},{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (band 4)\\\",\\\"center_wavelength\\\":0.665,\\\"full_width_half_max\\\":0.038},{\\\"name\\\":\\\"rededge1\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 1 (band 5)\\\",\\\"center_wavelength\\\":0.704,\\\"full_width_half_max\\\":0.019},{\\\"name\\\":\\\"rededge2\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 2 (band 6)\\\",\\\"center_wavelength\\\":0.74,\\\"full_width_half_max\\\":0.018},{\\\"name\\\":\\\"rededge3\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 3 (band 7)\\\",\\\"center_wavelength\\\":0.783,\\\"full_width_half_max\\\":0.028},{\\\"name\\\":\\\"nir\\\",\\\"common_name\\\":\\\"nir\\\",\\\"description\\\":\\\"NIR\n        1 (band 8)\\\",\\\"center_wavelength\\\":0.842,\\\"full_width_half_max\\\":0.145},{\\\"name\\\":\\\"nir08\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"NIR\n        2 (band 8A)\\\",\\\"center_wavelength\\\":0.865,\\\"full_width_half_max\\\":0.033},{\\\"name\\\":\\\"nir09\\\",\\\"common_name\\\":\\\"nir09\\\",\\\"description\\\":\\\"NIR\n        3 (band 9)\\\",\\\"center_wavelength\\\":0.945,\\\"full_width_half_max\\\":0.026},{\\\"name\\\":\\\"cirrus\\\",\\\"common_name\\\":\\\"cirrus\\\",\\\"description\\\":\\\"Cirrus\n        (band 10)\\\",\\\"center_wavelength\\\":1.3735,\\\"full_width_half_max\\\":0.075},{\\\"name\\\":\\\"swir16\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"SWIR\n        1 (band 11)\\\",\\\"center_wavelength\\\":1.61,\\\"full_width_half_max\\\":0.143},{\\\"name\\\":\\\"swir22\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"SWIR\n        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\n        Level-1C\\\",\\\"description\\\":\\\"Global Sentinel-2 data from the Multispectral\n        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\n        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\n        (band 2) - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (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\n        (band 10) - 60m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"cirrus\\\",\\\"common_name\\\":\\\"cirrus\\\",\\\"description\\\":\\\"Cirrus\n        (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\n        aerosol (band 1) - 60m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"coastal\\\",\\\"common_name\\\":\\\"coastal\\\",\\\"description\\\":\\\"Coastal\n        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\n        (band 3) - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (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\n        1 (band 8) - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"nir\\\",\\\"common_name\\\":\\\"nir\\\",\\\"description\\\":\\\"NIR\n        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\n        2 (band 8A) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"nir08\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"NIR\n        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\n        3 (band 9) - 60m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"nir09\\\",\\\"common_name\\\":\\\"nir09\\\",\\\"description\\\":\\\"NIR\n        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\n        (band 4) - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (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\n        edge 1 (band 5) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"rededge1\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        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\n        edge 2 (band 6) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"rededge2\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        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\n        edge 3 (band 7) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"rededge3\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        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\n        1 (band 11) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"swir16\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"SWIR\n        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\n        2 (band 12) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"swir22\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"SWIR\n        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\n        image\\\",\\\"roles\\\":[\\\"thumbnail\\\"]},\\\"tileinfo_metadata\\\":{\\\"type\\\":\\\"application/json\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"visual\\\":{\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"True\n        color image\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (band 4)\\\",\\\"center_wavelength\\\":0.665,\\\"full_width_half_max\\\":0.038},{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (band 3)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.045},{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (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\n        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\n        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\n        aerosol (band 1)\\\",\\\"center_wavelength\\\":0.443,\\\"full_width_half_max\\\":0.027},{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (band 2)\\\",\\\"center_wavelength\\\":0.49,\\\"full_width_half_max\\\":0.098},{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (band 3)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.045},{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (band 4)\\\",\\\"center_wavelength\\\":0.665,\\\"full_width_half_max\\\":0.038},{\\\"name\\\":\\\"rededge1\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 1 (band 5)\\\",\\\"center_wavelength\\\":0.704,\\\"full_width_half_max\\\":0.019},{\\\"name\\\":\\\"rededge2\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 2 (band 6)\\\",\\\"center_wavelength\\\":0.74,\\\"full_width_half_max\\\":0.018},{\\\"name\\\":\\\"rededge3\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 3 (band 7)\\\",\\\"center_wavelength\\\":0.783,\\\"full_width_half_max\\\":0.028},{\\\"name\\\":\\\"nir\\\",\\\"common_name\\\":\\\"nir\\\",\\\"description\\\":\\\"NIR\n        1 (band 8)\\\",\\\"center_wavelength\\\":0.842,\\\"full_width_half_max\\\":0.145},{\\\"name\\\":\\\"nir08\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"NIR\n        2 (band 8A)\\\",\\\"center_wavelength\\\":0.865,\\\"full_width_half_max\\\":0.033},{\\\"name\\\":\\\"nir09\\\",\\\"common_name\\\":\\\"nir09\\\",\\\"description\\\":\\\"NIR\n        3 (band 9)\\\",\\\"center_wavelength\\\":0.945,\\\"full_width_half_max\\\":0.026},{\\\"name\\\":\\\"cirrus\\\",\\\"common_name\\\":\\\"cirrus\\\",\\\"description\\\":\\\"Cirrus\n        (band 10)\\\",\\\"center_wavelength\\\":1.3735,\\\"full_width_half_max\\\":0.075},{\\\"name\\\":\\\"swir16\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"SWIR\n        1 (band 11)\\\",\\\"center_wavelength\\\":1.61,\\\"full_width_half_max\\\":0.143},{\\\"name\\\":\\\"swir22\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"SWIR\n        2 (band 12)\\\",\\\"center_wavelength\\\":2.19,\\\"full_width_half_max\\\":0.242}]}},{\\\"type\\\":\\\"Collection\\\",\\\"id\\\":\\\"sentinel-2-c1-l2a\\\",\\\"title\\\":\\\"Sentinel-2\n        Collection 1 Level-2A\\\",\\\"description\\\":\\\"Sentinel-2 Collection 1 Level-2A,\n        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\n        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;\n        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;\n        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;\n        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;\n        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;\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"SWIR 2.2\\u03BCm\n        - 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;\n        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;\n        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;\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"SWIR 1.6\\u03BCm\n        - 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;\n        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;\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Scene classification\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Aerosol optical\n        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;\n        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;\n        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;\n        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;\n        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;\n        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\n        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\n        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\n        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\n        aerosol (band 1)\\\",\\\"center_wavelength\\\":0.443,\\\"full_width_half_max\\\":0.027},{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (band 2)\\\",\\\"center_wavelength\\\":0.49,\\\"full_width_half_max\\\":0.098},{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (band 3)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.045},{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (band 4)\\\",\\\"center_wavelength\\\":0.665,\\\"full_width_half_max\\\":0.038},{\\\"name\\\":\\\"rededge1\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 1 (band 5)\\\",\\\"center_wavelength\\\":0.704,\\\"full_width_half_max\\\":0.019},{\\\"name\\\":\\\"rededge2\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 2 (band 6)\\\",\\\"center_wavelength\\\":0.74,\\\"full_width_half_max\\\":0.018},{\\\"name\\\":\\\"rededge3\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 3 (band 7)\\\",\\\"center_wavelength\\\":0.783,\\\"full_width_half_max\\\":0.028},{\\\"name\\\":\\\"nir\\\",\\\"common_name\\\":\\\"nir\\\",\\\"description\\\":\\\"NIR\n        1 (band 8)\\\",\\\"center_wavelength\\\":0.842,\\\"full_width_half_max\\\":0.145},{\\\"name\\\":\\\"nir08\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"NIR\n        2 (band 8A)\\\",\\\"center_wavelength\\\":0.865,\\\"full_width_half_max\\\":0.033},{\\\"name\\\":\\\"nir09\\\",\\\"common_name\\\":\\\"nir09\\\",\\\"description\\\":\\\"NIR\n        3 (band 9)\\\",\\\"center_wavelength\\\":0.945,\\\"full_width_half_max\\\":0.026},{\\\"name\\\":\\\"cirrus\\\",\\\"common_name\\\":\\\"cirrus\\\",\\\"description\\\":\\\"Cirrus\n        (band 10)\\\",\\\"center_wavelength\\\":1.3735,\\\"full_width_half_max\\\":0.075},{\\\"name\\\":\\\"swir16\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"SWIR\n        1 (band 11)\\\",\\\"center_wavelength\\\":1.61,\\\"full_width_half_max\\\":0.143},{\\\"name\\\":\\\"swir22\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"SWIR\n        2 (band 12)\\\",\\\"center_wavelength\\\":2.19,\\\"full_width_half_max\\\":0.242}]}},{\\\"id\\\":\\\"sentinel-1-grd\\\",\\\"type\\\":\\\"Collection\\\",\\\"title\\\":\\\"Sentinel-1\n        Level-1C Ground Range Detected (GRD)\\\",\\\"description\\\":\\\"Sentinel-1 is a pair\n        of Synthetic Aperture Radar (SAR) imaging satellites launched in 2014 and\n        2016 by the European Space Agency (ESA). Their 6 day revisit cycle and ability\n        to observe through clouds makes this dataset perfect for sea and land monitoring,\n        emergency response due to environmental disasters, and economic applications.\n        This dataset represents the global Sentinel-1 GRD archive, from beginning\n        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\n        Ground Range Detected (GRD) Technical Guide\\\"},{\\\"rel\\\":\\\"license\\\",\\\"href\\\":\\\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\\\",\\\"title\\\":\\\"Copernicus\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"HH\n        Data\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\"}]},\\\"hv\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"HV\n        Data\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\"}]},\\\"vh\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"VH\n        Data\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\"}]},\\\"vv\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"VV\n        Data\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\"}]},\\\"thumbnail\\\":{\\\"type\\\":\\\"image/png\\\",\\\"roles\\\":[\\\"thumbnail\\\"],\\\"title\\\":\\\"Thumbnail\n        Image\\\"},\\\"safe-manifest\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"SAFE\n        Manifest File\\\"},\\\"schema-noise-hh\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"HH\n        Noise Schema\\\"},\\\"schema-noise-hv\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"HV\n        Noise Schema\\\"},\\\"schema-noise-vh\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"VH\n        Noise Schema\\\"},\\\"schema-noise-vv\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"VV\n        Noise Schema\\\"},\\\"schema-product-hh\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"HH\n        Product Schema\\\"},\\\"schema-product-hv\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"HV\n        Product Schema\\\"},\\\"schema-product-vh\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"VH\n        Product Schema\\\"},\\\"schema-product-vv\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"VV\n        Product Schema\\\"},\\\"schema-calibration-hh\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"HH\n        Calibration Schema\\\"},\\\"schema-calibration-hv\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"HV\n        Calibration Schema\\\"},\\\"schema-calibration-vh\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"VH\n        Calibration Schema\\\"},\\\"schema-calibration-vv\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"VV\n        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}}\"\n    headers:\n      Connection:\n      - keep-alive\n      Content-Encoding:\n      - gzip\n      Content-Length:\n      - '8117'\n      Content-Type:\n      - application/json; charset=utf-8\n      Date:\n      - Thu, 31 Jul 2025 15:08:23 GMT\n      Via:\n      - 1.1 584febef1233840787d98d1cd03f82c0.cloudfront.net (CloudFront)\n      X-Amz-Cf-Id:\n      - 9crF14K_4mwTFMM5SThP9QcNuzYrjFTdNT-MMz0a7lH-YyhV8MO-1w==\n      X-Amz-Cf-Pop:\n      - DEN52-C1\n      X-Amzn-Trace-Id:\n      - Root=1-688b86e7-0cc6532b30a145b56ee50ed7;Parent=2a725ae99e682f55;Sampled=0;Lineage=1:9e2884e9:0\n      X-Cache:\n      - Miss from cloudfront\n      access-control-allow-origin:\n      - '*'\n      etag:\n      - W/\"141dd-9fMv6YJnvxPn9adSQK466CnIbE0\"\n      x-amz-apigw-id:\n      - OlIESHFNvHcEawQ=\n      x-amzn-Remapped-content-length:\n      - '82397'\n      x-amzn-RequestId:\n      - c03e5dae-3318-48e0-b078-660023c3a12f\n      x-powered-by:\n      - Express\n    status:\n      code: 200\n      message: OK\nversion: 1\n"
  },
  {
    "path": "tests/cassettes/test_collection_search/TestCollectionSearch.test_client_side_q.yaml",
    "content": "interactions:\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://earth-search.aws.element84.com/v1/collections?limit=10&q=sentinel\n  response:\n    body:\n      string: \"{\\\"collections\\\":[{\\\"type\\\":\\\"Collection\\\",\\\"id\\\":\\\"sentinel-2-pre-c1-l2a\\\",\\\"title\\\":\\\"Sentinel-2\n        Pre-Collection 1 Level-2A \\\",\\\"description\\\":\\\"Sentinel-2 Pre-Collection 1\n        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\n        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;\n        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;\n        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;\n        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;\n        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;\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"SWIR 2.2\\u03BCm\n        - 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;\n        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;\n        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;\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"SWIR 1.6\\u03BCm\n        - 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;\n        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;\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Scene classification\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Aerosol optical\n        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;\n        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;\n        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;\n        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;\n        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;\n        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\n        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\n        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\n        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\n        aerosol (band 1)\\\",\\\"center_wavelength\\\":0.443,\\\"full_width_half_max\\\":0.027},{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (band 2)\\\",\\\"center_wavelength\\\":0.49,\\\"full_width_half_max\\\":0.098},{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (band 3)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.045},{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (band 4)\\\",\\\"center_wavelength\\\":0.665,\\\"full_width_half_max\\\":0.038},{\\\"name\\\":\\\"rededge1\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 1 (band 5)\\\",\\\"center_wavelength\\\":0.704,\\\"full_width_half_max\\\":0.019},{\\\"name\\\":\\\"rededge2\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 2 (band 6)\\\",\\\"center_wavelength\\\":0.74,\\\"full_width_half_max\\\":0.018},{\\\"name\\\":\\\"rededge3\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 3 (band 7)\\\",\\\"center_wavelength\\\":0.783,\\\"full_width_half_max\\\":0.028},{\\\"name\\\":\\\"nir\\\",\\\"common_name\\\":\\\"nir\\\",\\\"description\\\":\\\"NIR\n        1 (band 8)\\\",\\\"center_wavelength\\\":0.842,\\\"full_width_half_max\\\":0.145},{\\\"name\\\":\\\"nir08\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"NIR\n        2 (band 8A)\\\",\\\"center_wavelength\\\":0.865,\\\"full_width_half_max\\\":0.033},{\\\"name\\\":\\\"nir09\\\",\\\"common_name\\\":\\\"nir09\\\",\\\"description\\\":\\\"NIR\n        3 (band 9)\\\",\\\"center_wavelength\\\":0.945,\\\"full_width_half_max\\\":0.026},{\\\"name\\\":\\\"cirrus\\\",\\\"common_name\\\":\\\"cirrus\\\",\\\"description\\\":\\\"Cirrus\n        (band 10)\\\",\\\"center_wavelength\\\":1.3735,\\\"full_width_half_max\\\":0.075},{\\\"name\\\":\\\"swir16\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"SWIR\n        1 (band 11)\\\",\\\"center_wavelength\\\":1.61,\\\"full_width_half_max\\\":0.143},{\\\"name\\\":\\\"swir22\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"SWIR\n        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\n        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\n        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\n        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\n        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\n        Copernicus DEM is a Digital Surface Model (DSM) which represents the surface\n        of the Earth including buildings, infrastructure and vegetation. GLO-30 Public\n        provides limited worldwide coverage at 30 meters because a small subset of\n        tiles covering specific countries are not yet released to the public by the\n        Copernicus Programme.\\\",\\\"item_assets\\\":{\\\"data\\\":{\\\"type\\\":\\\"image/tiff;\n        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\n        [National Agriculture Imagery Program](https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/)\n        (NAIP) provides U.S.-wide, high-resolution aerial imagery, with four spectral\n        bands (R, G, B, IR).  NAIP is administered by the [Aerial Field Photography\n        Office](https://www.fsa.usda.gov/programs-and-services/aerial-photography/)\n        (AFPO) within the [US Department of Agriculture](https://www.usda.gov/) (USDA).\n        \\ Data are captured at least once every three years for each state.  This\n        dataset represents NAIP data from 2010-present, in [cloud-optimized GeoTIFF](https://www.cogeo.org/)\n        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\n        Domain\\\",\\\"type\\\":\\\"text/html\\\"},{\\\"rel\\\":\\\"cite-as\\\",\\\"href\\\":\\\"https://doi.org/10.5066/F7QN651G\\\",\\\"title\\\":\\\"NAIP\n        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:\n        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\n        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\n        84\\\",\\\"roles\\\":[\\\"processor\\\"],\\\"url\\\":\\\"https://element84.com\\\"}],\\\"summaries\\\":{\\\"gsd\\\":[0.6,1],\\\"eo:bands\\\":[{\\\"name\\\":\\\"Red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"visible\n        red\\\"},{\\\"name\\\":\\\"Green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"visible\n        green\\\"},{\\\"name\\\":\\\"Blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"visible\n        blue\\\"},{\\\"name\\\":\\\"NIR\\\",\\\"common_name\\\":\\\"nir\\\",\\\"description\\\":\\\"near-infrared\\\"}]},\\\"item_assets\\\":{\\\"image\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"RGBIR\n        COG tile\\\",\\\"eo:bands\\\":[{\\\"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\n        Metdata\\\"}},\\\"sci:doi\\\":\\\"10.5066/F7QN651G\\\",\\\"sci:publications\\\":[{\\\"doi\\\":\\\"10.14358/PERS.83.10.737\\\",\\\"citation\\\":\\\"Maxwell,\n        A. E., Warner, T. A., Vanderbilt, B. C., &amp; Ramezan, C. A. (2017). Land\n        cover classification and feature extraction from National Agriculture Imagery\n        Program (NAIP) orthoimagery: A Review. Photogrammetric Engineering &amp; Remote\n        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\n        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\n        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\n        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\n        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\n        Copernicus DEM is a Digital Surface Model (DSM) which represents the surface\n        of the Earth including buildings, infrastructure and vegetation. GLO-90 provides\n        worldwide coverage at 90 meters.\\\",\\\"item_assets\\\":{\\\"data\\\":{\\\"type\\\":\\\"image/tiff;\n        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\n        corrected global Landsat Collection 2 Level-2 data from the Thematic Mapper\n        (TM) onboard Landsat 4 and 5, the Enhanced Thematic Mapper Plus (ETM+) onboard\n        Landsat 7, and the Operational Land Imager (OLI) and Thermal Infrared Sensor\n        (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\n        4-5 TM Collection 2 Level-2\\\"},{\\\"rel\\\":\\\"cite-as\\\",\\\"href\\\":\\\"https://doi.org/10.5066/P9C7I13B\\\",\\\"title\\\":\\\"Landsat\n        7 ETM+ Collection 2 Level-2\\\"},{\\\"rel\\\":\\\"cite-as\\\",\\\"href\\\":\\\"https://doi.org/10.5066/P9OGBGM6\\\",\\\"title\\\":\\\"Landsat\n        8-9 OLI/TIRS Collection 2 Level-2\\\"},{\\\"rel\\\":\\\"license\\\",\\\"href\\\":\\\"https://www.usgs.gov/core-science-systems/hdds/data-policy\\\",\\\"title\\\":\\\"Public\n        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\n        image\\\",\\\"roles\\\":[\\\"thumbnail\\\"]},\\\"reduced_resolution_browse\\\":{\\\"type\\\":\\\"image/jpeg\\\",\\\"title\\\":\\\"Reduced\n        resolution browse image\\\",\\\"roles\\\":[\\\"overview\\\"]},\\\"mtl.json\\\":{\\\"type\\\":\\\"application/json\\\",\\\"title\\\":\\\"Product\n        Metadata File (json)\\\",\\\"description\\\":\\\"Collection 2 Level-2 Product Metadata\n        File (json)\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"mtl.txt\\\":{\\\"type\\\":\\\"text/plain\\\",\\\"title\\\":\\\"Product\n        Metadata File (txt)\\\",\\\"description\\\":\\\"Collection 2 Level-2 Product Metadata\n        File (txt)\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"mtl.xml\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"title\\\":\\\"Product\n        Metadata File (xml)\\\",\\\"description\\\":\\\"Collection 2 Level-2 Product Metadata\n        File (xml)\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"ang\\\":{\\\"type\\\":\\\"text/plain\\\",\\\"title\\\":\\\"Angle\n        Coefficients File\\\",\\\"description\\\":\\\"Collection 2 Level-1 Angle Coefficients\n        File\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"qa_pixel\\\":{\\\"type\\\":\\\"image/tiff; application=geotiff;\n        profile=cloud-optimized\\\",\\\"title\\\":\\\"Pixel Quality Assessment Band\\\",\\\"description\\\":\\\"Collection\n        2 Level-1 Pixel Quality Assessment Band\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":1,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":30,\\\"unit\\\":\\\"bit\n        index\\\"}],\\\"roles\\\":[\\\"cloud\\\",\\\"cloud-shadow\\\",\\\"snow-ice\\\",\\\"water-mask\\\"]},\\\"qa_radsat\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Radiometric Saturation\n        Quality Assessment Band\\\",\\\"description\\\":\\\"Collection 2 Level-1 Radiometric\n        Saturation Quality Assessment Band\\\",\\\"raster:bands\\\":[{\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":30,\\\"unit\\\":\\\"bit\n        index\\\"}],\\\"roles\\\":[\\\"saturation\\\"]},\\\"coastal\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Coastal/Aerosol\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Coastal/Aerosol Band Surface\n        Reflectance\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":30,\\\"scale\\\":0.0000275,\\\"offset\\\":-0.2}],\\\"roles\\\":[\\\"reflectance\\\"]},\\\"blue\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Blue Band\\\",\\\"description\\\":\\\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Green Band\\\",\\\"description\\\":\\\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Red Band\\\",\\\"description\\\":\\\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Near Infrared Band\n        0.8\\\",\\\"description\\\":\\\"Collection 2 Level-2 Near Infrared Band 0.8 Surface\n        Reflectance\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":30,\\\"scale\\\":0.0000275,\\\"offset\\\":-0.2}],\\\"roles\\\":[\\\"reflectance\\\"]},\\\"swir16\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Short-wave Infrared\n        Band 1.6\\\",\\\"description\\\":\\\"Collection 2 Level-2 Short-wave Infrared Band\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Short-wave Infrared\n        Band 2.2\\\",\\\"description\\\":\\\"Collection 2 Level-2 Short-wave Infrared Band\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Atmospheric Opacity\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Atmospheric Opacity Band Surface\n        Reflectance Product\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":-9999,\\\"data_type\\\":\\\"int16\\\",\\\"spatial_resolution\\\":30,\\\"scale\\\":0.001}],\\\"roles\\\":[\\\"data\\\"]},\\\"cloud_qa\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Cloud Quality Assessment\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Cloud Quality Assessment Band\n        Surface Reflectance Product\\\",\\\"raster:bands\\\":[{\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":30,\\\"unit\\\":\\\"bit\n        index\\\"}],\\\"roles\\\":[\\\"cloud\\\",\\\"cloud-shadow\\\",\\\"snow-ice\\\",\\\"water-mask\\\"]},\\\"qa_aerosol\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Aerosol Quality\n        Assessment Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Aerosol Quality Assessment\n        Band Surface Reflectance Product\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":1,\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":30,\\\"unit\\\":\\\"bit\n        index\\\"}],\\\"roles\\\":[\\\"data-mask\\\",\\\"water-mask\\\"]},\\\"lwir11\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Surface Temperature\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Thermal Infrared Band Surface\n        Temperature\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":30,\\\"unit\\\":\\\"kelvin\\\",\\\"scale\\\":0.00341802,\\\"offset\\\":149}],\\\"roles\\\":[\\\"temperature\\\"]},\\\"lwir\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Surface Temperature\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Thermal Infrared Band Surface\n        Temperature\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":30,\\\"unit\\\":\\\"kelvin\\\",\\\"scale\\\":0.00341802,\\\"offset\\\":149}],\\\"roles\\\":[\\\"temperature\\\"]},\\\"atran\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Atmospheric Transmittance\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Atmospheric Transmittance Band\n        Surface Temperature Product\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":-9999,\\\"data_type\\\":\\\"int16\\\",\\\"spatial_resolution\\\":30,\\\"scale\\\":0.0001}],\\\"roles\\\":[\\\"data\\\"]},\\\"cdist\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Cloud Distance\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Cloud Distance Band Surface\n        Temperature Product\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":-9999,\\\"data_type\\\":\\\"int16\\\",\\\"spatial_resolution\\\":30,\\\"unit\\\":\\\"kilometer\\\",\\\"scale\\\":0.01}],\\\"roles\\\":[\\\"data\\\"]},\\\"drad\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Downwelled Radiance\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Downwelled Radiance Band Surface\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Upwelled Radiance\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Upwelled Radiance Band Surface\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Thermal Radiance\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Thermal Radiance Band Surface\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Emissivity Band\\\",\\\"description\\\":\\\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Emissivity Standard\n        Deviation Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Emissivity Standard\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Surface Temperature\n        Quality Assessment Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Quality Assessment\n        Band Surface Temperature Product\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":-9999,\\\"data_type\\\":\\\"int16\\\",\\\"spatial_resolution\\\":30,\\\"unit\\\":\\\"kelvin\\\",\\\"scale\\\":0.01}],\\\"roles\\\":[\\\"data\\\"]}},\\\"title\\\":\\\"Landsat\n        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\n        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\n        blue (Thematic Mapper)\\\",\\\"center_wavelength\\\":0.49,\\\"full_width_half_max\\\":0.07},{\\\"name\\\":\\\"TM_B2\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Visible\n        green (Thematic Mapper)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.08},{\\\"name\\\":\\\"TM_B3\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Visible\n        red (Thematic Mapper)\\\",\\\"center_wavelength\\\":0.66,\\\"full_width_half_max\\\":0.06},{\\\"name\\\":\\\"TM_B4\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"Near\n        infrared (Thematic Mapper)\\\",\\\"center_wavelength\\\":0.83,\\\"full_width_half_max\\\":0.14},{\\\"name\\\":\\\"TM_B5\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"Short-wave\n        infrared (Thematic Mapper)\\\",\\\"center_wavelength\\\":1.65,\\\"full_width_half_max\\\":0.2},{\\\"name\\\":\\\"TM_B6\\\",\\\"common_name\\\":\\\"lwir\\\",\\\"description\\\":\\\"Long-wave\n        infrared (Thematic Mapper)\\\",\\\"center_wavelength\\\":11.45,\\\"full_width_half_max\\\":2.1},{\\\"name\\\":\\\"TM_B7\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"Short-wave\n        infrared (Thematic Mapper)\\\",\\\"center_wavelength\\\":2.22,\\\"full_width_half_max\\\":0.27},{\\\"name\\\":\\\"ETM_B1\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Visible\n        blue (Enhanced Thematic Mapper Plus)\\\",\\\"center_wavelength\\\":0.48,\\\"full_width_half_max\\\":0.07},{\\\"name\\\":\\\"ETM_B2\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Visible\n        green (Enhanced Thematic Mapper Plus)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.08},{\\\"name\\\":\\\"ETM_B3\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Visible\n        red (Enhanced Thematic Mapper Plus)\\\",\\\"center_wavelength\\\":0.66,\\\"full_width_half_max\\\":0.06},{\\\"name\\\":\\\"ETM_B4\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"Near\n        infrared (Enhanced Thematic Mapper Plus)\\\",\\\"center_wavelength\\\":0.84,\\\"full_width_half_max\\\":0.13},{\\\"name\\\":\\\"ETM_B5\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"Short-wave\n        infrared (Enhanced Thematic Mapper Plus)\\\",\\\"center_wavelength\\\":1.65,\\\"full_width_half_max\\\":0.2},{\\\"name\\\":\\\"ETM_B6\\\",\\\"common_name\\\":\\\"lwir\\\",\\\"description\\\":\\\"Long-wave\n        infrared (Enhanced Thematic Mapper Plus)\\\",\\\"center_wavelength\\\":11.34,\\\"full_width_half_max\\\":2.05},{\\\"name\\\":\\\"ETM_B7\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"Short-wave\n        infrared (Enhanced Thematic Mapper Plus)\\\",\\\"center_wavelength\\\":2.2,\\\"full_width_half_max\\\":0.28},{\\\"name\\\":\\\"OLI_B1\\\",\\\"common_name\\\":\\\"coastal\\\",\\\"description\\\":\\\"Coastal/Aerosol\n        (Operational Land Imager)\\\",\\\"center_wavelength\\\":0.44,\\\"full_width_half_max\\\":0.02},{\\\"name\\\":\\\"OLI_B2\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Visible\n        blue (Operational Land Imager)\\\",\\\"center_wavelength\\\":0.48,\\\"full_width_half_max\\\":0.06},{\\\"name\\\":\\\"OLI_B3\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Visible\n        green (Operational Land Imager)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.06},{\\\"name\\\":\\\"OLI_B4\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Visible\n        red (Operational Land Imager)\\\",\\\"center_wavelength\\\":0.65,\\\"full_width_half_max\\\":0.04},{\\\"name\\\":\\\"OLI_B5\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"Near\n        infrared (Operational Land Imager)\\\",\\\"center_wavelength\\\":0.87,\\\"full_width_half_max\\\":0.03},{\\\"name\\\":\\\"OLI_B6\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"Short-wave\n        infrared (Operational Land Imager)\\\",\\\"center_wavelength\\\":1.61,\\\"full_width_half_max\\\":0.09},{\\\"name\\\":\\\"OLI_B7\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"Short-wave\n        infrared (Operational Land Imager)\\\",\\\"center_wavelength\\\":2.2,\\\"full_width_half_max\\\":0.19},{\\\"name\\\":\\\"TIRS_B10\\\",\\\"common_name\\\":\\\"lwir11\\\",\\\"description\\\":\\\"Long-wave\n        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\n        Level-2A\\\",\\\"description\\\":\\\"Global Sentinel-2 data from the Multispectral\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Aerosol optical\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Blue (band 2) -\n        10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Coastal aerosol\n        (band 1) - 60m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"coastal\\\",\\\"common_name\\\":\\\"coastal\\\",\\\"description\\\":\\\"Coastal\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Green (band 3)\n        - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"NIR 1 (band 8)\n        - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"nir\\\",\\\"common_name\\\":\\\"nir\\\",\\\"description\\\":\\\"NIR\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"NIR 2 (band 8A)\n        - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"nir08\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"NIR\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"NIR 3 (band 9)\n        - 60m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"nir09\\\",\\\"common_name\\\":\\\"nir09\\\",\\\"description\\\":\\\"NIR\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Red (band 4) -\n        10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Red edge 1 (band\n        5) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"rededge1\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Red edge 2 (band\n        6) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"rededge2\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Red edge 3 (band\n        7) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"rededge3\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Scene classification\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"SWIR 1 (band 11)\n        - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"swir16\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"SWIR\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"SWIR 2 (band 12)\n        - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"swir22\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"SWIR\n        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\n        image\\\",\\\"roles\\\":[\\\"thumbnail\\\"]},\\\"tileinfo_metadata\\\":{\\\"type\\\":\\\"application/json\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"visual\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"True color image\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (band 4)\\\",\\\"center_wavelength\\\":0.665,\\\"full_width_half_max\\\":0.038},{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (band 3)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.045},{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (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;\n        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\n        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\n        (band 2) - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (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\n        aerosol (band 1) - 60m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"coastal\\\",\\\"common_name\\\":\\\"coastal\\\",\\\"description\\\":\\\"Coastal\n        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\n        (band 3) - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (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\n        1 (band 8) - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"nir\\\",\\\"common_name\\\":\\\"nir\\\",\\\"description\\\":\\\"NIR\n        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\n        2 (band 8A) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"nir08\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"NIR\n        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\n        3 (band 9) - 60m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"nir09\\\",\\\"common_name\\\":\\\"nir09\\\",\\\"description\\\":\\\"NIR\n        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\n        (band 4) - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (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\n        edge 1 (band 5) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"rededge1\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        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\n        edge 2 (band 6) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"rededge2\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        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\n        edge 3 (band 7) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"rededge3\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        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\n        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\n        1 (band 11) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"swir16\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"SWIR\n        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\n        2 (band 12) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"swir22\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"SWIR\n        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\n        color image\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (band 4)\\\",\\\"center_wavelength\\\":0.665,\\\"full_width_half_max\\\":0.038},{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (band 3)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.045},{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (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\n        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\n        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\n        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\n        aerosol (band 1)\\\",\\\"center_wavelength\\\":0.443,\\\"full_width_half_max\\\":0.027},{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (band 2)\\\",\\\"center_wavelength\\\":0.49,\\\"full_width_half_max\\\":0.098},{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (band 3)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.045},{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (band 4)\\\",\\\"center_wavelength\\\":0.665,\\\"full_width_half_max\\\":0.038},{\\\"name\\\":\\\"rededge1\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 1 (band 5)\\\",\\\"center_wavelength\\\":0.704,\\\"full_width_half_max\\\":0.019},{\\\"name\\\":\\\"rededge2\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 2 (band 6)\\\",\\\"center_wavelength\\\":0.74,\\\"full_width_half_max\\\":0.018},{\\\"name\\\":\\\"rededge3\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 3 (band 7)\\\",\\\"center_wavelength\\\":0.783,\\\"full_width_half_max\\\":0.028},{\\\"name\\\":\\\"nir\\\",\\\"common_name\\\":\\\"nir\\\",\\\"description\\\":\\\"NIR\n        1 (band 8)\\\",\\\"center_wavelength\\\":0.842,\\\"full_width_half_max\\\":0.145},{\\\"name\\\":\\\"nir08\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"NIR\n        2 (band 8A)\\\",\\\"center_wavelength\\\":0.865,\\\"full_width_half_max\\\":0.033},{\\\"name\\\":\\\"nir09\\\",\\\"common_name\\\":\\\"nir09\\\",\\\"description\\\":\\\"NIR\n        3 (band 9)\\\",\\\"center_wavelength\\\":0.945,\\\"full_width_half_max\\\":0.026},{\\\"name\\\":\\\"cirrus\\\",\\\"common_name\\\":\\\"cirrus\\\",\\\"description\\\":\\\"Cirrus\n        (band 10)\\\",\\\"center_wavelength\\\":1.3735,\\\"full_width_half_max\\\":0.075},{\\\"name\\\":\\\"swir16\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"SWIR\n        1 (band 11)\\\",\\\"center_wavelength\\\":1.61,\\\"full_width_half_max\\\":0.143},{\\\"name\\\":\\\"swir22\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"SWIR\n        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\n        Level-1C\\\",\\\"description\\\":\\\"Global Sentinel-2 data from the Multispectral\n        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\n        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\n        (band 2) - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (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\n        (band 10) - 60m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"cirrus\\\",\\\"common_name\\\":\\\"cirrus\\\",\\\"description\\\":\\\"Cirrus\n        (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\n        aerosol (band 1) - 60m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"coastal\\\",\\\"common_name\\\":\\\"coastal\\\",\\\"description\\\":\\\"Coastal\n        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\n        (band 3) - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (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\n        1 (band 8) - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"nir\\\",\\\"common_name\\\":\\\"nir\\\",\\\"description\\\":\\\"NIR\n        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\n        2 (band 8A) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"nir08\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"NIR\n        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\n        3 (band 9) - 60m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"nir09\\\",\\\"common_name\\\":\\\"nir09\\\",\\\"description\\\":\\\"NIR\n        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\n        (band 4) - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (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\n        edge 1 (band 5) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"rededge1\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        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\n        edge 2 (band 6) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"rededge2\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        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\n        edge 3 (band 7) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"rededge3\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        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\n        1 (band 11) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"swir16\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"SWIR\n        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\n        2 (band 12) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"swir22\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"SWIR\n        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\n        image\\\",\\\"roles\\\":[\\\"thumbnail\\\"]},\\\"tileinfo_metadata\\\":{\\\"type\\\":\\\"application/json\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"visual\\\":{\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"True\n        color image\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (band 4)\\\",\\\"center_wavelength\\\":0.665,\\\"full_width_half_max\\\":0.038},{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (band 3)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.045},{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (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\n        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\n        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\n        aerosol (band 1)\\\",\\\"center_wavelength\\\":0.443,\\\"full_width_half_max\\\":0.027},{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (band 2)\\\",\\\"center_wavelength\\\":0.49,\\\"full_width_half_max\\\":0.098},{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (band 3)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.045},{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (band 4)\\\",\\\"center_wavelength\\\":0.665,\\\"full_width_half_max\\\":0.038},{\\\"name\\\":\\\"rededge1\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 1 (band 5)\\\",\\\"center_wavelength\\\":0.704,\\\"full_width_half_max\\\":0.019},{\\\"name\\\":\\\"rededge2\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 2 (band 6)\\\",\\\"center_wavelength\\\":0.74,\\\"full_width_half_max\\\":0.018},{\\\"name\\\":\\\"rededge3\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 3 (band 7)\\\",\\\"center_wavelength\\\":0.783,\\\"full_width_half_max\\\":0.028},{\\\"name\\\":\\\"nir\\\",\\\"common_name\\\":\\\"nir\\\",\\\"description\\\":\\\"NIR\n        1 (band 8)\\\",\\\"center_wavelength\\\":0.842,\\\"full_width_half_max\\\":0.145},{\\\"name\\\":\\\"nir08\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"NIR\n        2 (band 8A)\\\",\\\"center_wavelength\\\":0.865,\\\"full_width_half_max\\\":0.033},{\\\"name\\\":\\\"nir09\\\",\\\"common_name\\\":\\\"nir09\\\",\\\"description\\\":\\\"NIR\n        3 (band 9)\\\",\\\"center_wavelength\\\":0.945,\\\"full_width_half_max\\\":0.026},{\\\"name\\\":\\\"cirrus\\\",\\\"common_name\\\":\\\"cirrus\\\",\\\"description\\\":\\\"Cirrus\n        (band 10)\\\",\\\"center_wavelength\\\":1.3735,\\\"full_width_half_max\\\":0.075},{\\\"name\\\":\\\"swir16\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"SWIR\n        1 (band 11)\\\",\\\"center_wavelength\\\":1.61,\\\"full_width_half_max\\\":0.143},{\\\"name\\\":\\\"swir22\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"SWIR\n        2 (band 12)\\\",\\\"center_wavelength\\\":2.19,\\\"full_width_half_max\\\":0.242}]}},{\\\"type\\\":\\\"Collection\\\",\\\"id\\\":\\\"sentinel-2-c1-l2a\\\",\\\"title\\\":\\\"Sentinel-2\n        Collection 1 Level-2A\\\",\\\"description\\\":\\\"Sentinel-2 Collection 1 Level-2A,\n        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\n        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;\n        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;\n        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;\n        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;\n        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;\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"SWIR 2.2\\u03BCm\n        - 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;\n        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;\n        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;\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"SWIR 1.6\\u03BCm\n        - 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;\n        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;\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Scene classification\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Aerosol optical\n        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;\n        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;\n        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;\n        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;\n        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;\n        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\n        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\n        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\n        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\n        aerosol (band 1)\\\",\\\"center_wavelength\\\":0.443,\\\"full_width_half_max\\\":0.027},{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (band 2)\\\",\\\"center_wavelength\\\":0.49,\\\"full_width_half_max\\\":0.098},{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (band 3)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.045},{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (band 4)\\\",\\\"center_wavelength\\\":0.665,\\\"full_width_half_max\\\":0.038},{\\\"name\\\":\\\"rededge1\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 1 (band 5)\\\",\\\"center_wavelength\\\":0.704,\\\"full_width_half_max\\\":0.019},{\\\"name\\\":\\\"rededge2\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 2 (band 6)\\\",\\\"center_wavelength\\\":0.74,\\\"full_width_half_max\\\":0.018},{\\\"name\\\":\\\"rededge3\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 3 (band 7)\\\",\\\"center_wavelength\\\":0.783,\\\"full_width_half_max\\\":0.028},{\\\"name\\\":\\\"nir\\\",\\\"common_name\\\":\\\"nir\\\",\\\"description\\\":\\\"NIR\n        1 (band 8)\\\",\\\"center_wavelength\\\":0.842,\\\"full_width_half_max\\\":0.145},{\\\"name\\\":\\\"nir08\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"NIR\n        2 (band 8A)\\\",\\\"center_wavelength\\\":0.865,\\\"full_width_half_max\\\":0.033},{\\\"name\\\":\\\"nir09\\\",\\\"common_name\\\":\\\"nir09\\\",\\\"description\\\":\\\"NIR\n        3 (band 9)\\\",\\\"center_wavelength\\\":0.945,\\\"full_width_half_max\\\":0.026},{\\\"name\\\":\\\"cirrus\\\",\\\"common_name\\\":\\\"cirrus\\\",\\\"description\\\":\\\"Cirrus\n        (band 10)\\\",\\\"center_wavelength\\\":1.3735,\\\"full_width_half_max\\\":0.075},{\\\"name\\\":\\\"swir16\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"SWIR\n        1 (band 11)\\\",\\\"center_wavelength\\\":1.61,\\\"full_width_half_max\\\":0.143},{\\\"name\\\":\\\"swir22\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"SWIR\n        2 (band 12)\\\",\\\"center_wavelength\\\":2.19,\\\"full_width_half_max\\\":0.242}]}},{\\\"id\\\":\\\"sentinel-1-grd\\\",\\\"type\\\":\\\"Collection\\\",\\\"title\\\":\\\"Sentinel-1\n        Level-1C Ground Range Detected (GRD)\\\",\\\"description\\\":\\\"Sentinel-1 is a pair\n        of Synthetic Aperture Radar (SAR) imaging satellites launched in 2014 and\n        2016 by the European Space Agency (ESA). Their 6 day revisit cycle and ability\n        to observe through clouds makes this dataset perfect for sea and land monitoring,\n        emergency response due to environmental disasters, and economic applications.\n        This dataset represents the global Sentinel-1 GRD archive, from beginning\n        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\n        Ground Range Detected (GRD) Technical Guide\\\"},{\\\"rel\\\":\\\"license\\\",\\\"href\\\":\\\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\\\",\\\"title\\\":\\\"Copernicus\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"HH\n        Data\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\"}]},\\\"hv\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"HV\n        Data\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\"}]},\\\"vh\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"VH\n        Data\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\"}]},\\\"vv\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"VV\n        Data\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\"}]},\\\"thumbnail\\\":{\\\"type\\\":\\\"image/png\\\",\\\"roles\\\":[\\\"thumbnail\\\"],\\\"title\\\":\\\"Thumbnail\n        Image\\\"},\\\"safe-manifest\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"SAFE\n        Manifest File\\\"},\\\"schema-noise-hh\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"HH\n        Noise Schema\\\"},\\\"schema-noise-hv\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"HV\n        Noise Schema\\\"},\\\"schema-noise-vh\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"VH\n        Noise Schema\\\"},\\\"schema-noise-vv\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"VV\n        Noise Schema\\\"},\\\"schema-product-hh\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"HH\n        Product Schema\\\"},\\\"schema-product-hv\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"HV\n        Product Schema\\\"},\\\"schema-product-vh\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"VH\n        Product Schema\\\"},\\\"schema-product-vv\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"VV\n        Product Schema\\\"},\\\"schema-calibration-hh\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"HH\n        Calibration Schema\\\"},\\\"schema-calibration-hv\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"HV\n        Calibration Schema\\\"},\\\"schema-calibration-vh\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"VH\n        Calibration Schema\\\"},\\\"schema-calibration-vv\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"VV\n        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}}\"\n    headers:\n      Connection:\n      - keep-alive\n      Content-Encoding:\n      - gzip\n      Content-Length:\n      - '8117'\n      Content-Type:\n      - application/json; charset=utf-8\n      Date:\n      - Thu, 31 Jul 2025 15:08:23 GMT\n      Via:\n      - 1.1 f923e65cfb5d73f11ea9a89d42fad5fc.cloudfront.net (CloudFront)\n      X-Amz-Cf-Id:\n      - xFGV4wD2a1Q4I73bxpcwC02Fq1_3ycu2RUFXn6FGmU9-pwRTOn3L_g==\n      X-Amz-Cf-Pop:\n      - DEN52-C1\n      X-Amzn-Trace-Id:\n      - Root=1-688b86e7-51d6bbcd70c108bc729aff78;Parent=467f64c1290ade17;Sampled=0;Lineage=1:9e2884e9:0\n      X-Cache:\n      - Miss from cloudfront\n      access-control-allow-origin:\n      - '*'\n      etag:\n      - W/\"141dd-9fMv6YJnvxPn9adSQK466CnIbE0\"\n      x-amz-apigw-id:\n      - OlIEMH6RPHcEHfg=\n      x-amzn-Remapped-content-length:\n      - '82397'\n      x-amzn-RequestId:\n      - a8564192-c60b-478e-922c-66365e62b00e\n      x-powered-by:\n      - Express\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://earth-search.aws.element84.com/v1/collections?limit=10&q=sentinel\n  response:\n    body:\n      string: \"{\\\"collections\\\":[{\\\"type\\\":\\\"Collection\\\",\\\"id\\\":\\\"sentinel-2-pre-c1-l2a\\\",\\\"title\\\":\\\"Sentinel-2\n        Pre-Collection 1 Level-2A \\\",\\\"description\\\":\\\"Sentinel-2 Pre-Collection 1\n        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\n        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;\n        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;\n        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;\n        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;\n        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;\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"SWIR 2.2\\u03BCm\n        - 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;\n        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;\n        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;\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"SWIR 1.6\\u03BCm\n        - 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;\n        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;\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Scene classification\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Aerosol optical\n        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;\n        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;\n        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;\n        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;\n        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;\n        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\n        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\n        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\n        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\n        aerosol (band 1)\\\",\\\"center_wavelength\\\":0.443,\\\"full_width_half_max\\\":0.027},{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (band 2)\\\",\\\"center_wavelength\\\":0.49,\\\"full_width_half_max\\\":0.098},{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (band 3)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.045},{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (band 4)\\\",\\\"center_wavelength\\\":0.665,\\\"full_width_half_max\\\":0.038},{\\\"name\\\":\\\"rededge1\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 1 (band 5)\\\",\\\"center_wavelength\\\":0.704,\\\"full_width_half_max\\\":0.019},{\\\"name\\\":\\\"rededge2\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 2 (band 6)\\\",\\\"center_wavelength\\\":0.74,\\\"full_width_half_max\\\":0.018},{\\\"name\\\":\\\"rededge3\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 3 (band 7)\\\",\\\"center_wavelength\\\":0.783,\\\"full_width_half_max\\\":0.028},{\\\"name\\\":\\\"nir\\\",\\\"common_name\\\":\\\"nir\\\",\\\"description\\\":\\\"NIR\n        1 (band 8)\\\",\\\"center_wavelength\\\":0.842,\\\"full_width_half_max\\\":0.145},{\\\"name\\\":\\\"nir08\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"NIR\n        2 (band 8A)\\\",\\\"center_wavelength\\\":0.865,\\\"full_width_half_max\\\":0.033},{\\\"name\\\":\\\"nir09\\\",\\\"common_name\\\":\\\"nir09\\\",\\\"description\\\":\\\"NIR\n        3 (band 9)\\\",\\\"center_wavelength\\\":0.945,\\\"full_width_half_max\\\":0.026},{\\\"name\\\":\\\"cirrus\\\",\\\"common_name\\\":\\\"cirrus\\\",\\\"description\\\":\\\"Cirrus\n        (band 10)\\\",\\\"center_wavelength\\\":1.3735,\\\"full_width_half_max\\\":0.075},{\\\"name\\\":\\\"swir16\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"SWIR\n        1 (band 11)\\\",\\\"center_wavelength\\\":1.61,\\\"full_width_half_max\\\":0.143},{\\\"name\\\":\\\"swir22\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"SWIR\n        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\n        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\n        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\n        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\n        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\n        Copernicus DEM is a Digital Surface Model (DSM) which represents the surface\n        of the Earth including buildings, infrastructure and vegetation. GLO-30 Public\n        provides limited worldwide coverage at 30 meters because a small subset of\n        tiles covering specific countries are not yet released to the public by the\n        Copernicus Programme.\\\",\\\"item_assets\\\":{\\\"data\\\":{\\\"type\\\":\\\"image/tiff;\n        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\n        [National Agriculture Imagery Program](https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/)\n        (NAIP) provides U.S.-wide, high-resolution aerial imagery, with four spectral\n        bands (R, G, B, IR).  NAIP is administered by the [Aerial Field Photography\n        Office](https://www.fsa.usda.gov/programs-and-services/aerial-photography/)\n        (AFPO) within the [US Department of Agriculture](https://www.usda.gov/) (USDA).\n        \\ Data are captured at least once every three years for each state.  This\n        dataset represents NAIP data from 2010-present, in [cloud-optimized GeoTIFF](https://www.cogeo.org/)\n        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\n        Domain\\\",\\\"type\\\":\\\"text/html\\\"},{\\\"rel\\\":\\\"cite-as\\\",\\\"href\\\":\\\"https://doi.org/10.5066/F7QN651G\\\",\\\"title\\\":\\\"NAIP\n        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:\n        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\n        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\n        84\\\",\\\"roles\\\":[\\\"processor\\\"],\\\"url\\\":\\\"https://element84.com\\\"}],\\\"summaries\\\":{\\\"gsd\\\":[0.6,1],\\\"eo:bands\\\":[{\\\"name\\\":\\\"Red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"visible\n        red\\\"},{\\\"name\\\":\\\"Green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"visible\n        green\\\"},{\\\"name\\\":\\\"Blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"visible\n        blue\\\"},{\\\"name\\\":\\\"NIR\\\",\\\"common_name\\\":\\\"nir\\\",\\\"description\\\":\\\"near-infrared\\\"}]},\\\"item_assets\\\":{\\\"image\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"RGBIR\n        COG tile\\\",\\\"eo:bands\\\":[{\\\"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\n        Metdata\\\"}},\\\"sci:doi\\\":\\\"10.5066/F7QN651G\\\",\\\"sci:publications\\\":[{\\\"doi\\\":\\\"10.14358/PERS.83.10.737\\\",\\\"citation\\\":\\\"Maxwell,\n        A. E., Warner, T. A., Vanderbilt, B. C., &amp; Ramezan, C. A. (2017). Land\n        cover classification and feature extraction from National Agriculture Imagery\n        Program (NAIP) orthoimagery: A Review. Photogrammetric Engineering &amp; Remote\n        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\n        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\n        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\n        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\n        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\n        Copernicus DEM is a Digital Surface Model (DSM) which represents the surface\n        of the Earth including buildings, infrastructure and vegetation. GLO-90 provides\n        worldwide coverage at 90 meters.\\\",\\\"item_assets\\\":{\\\"data\\\":{\\\"type\\\":\\\"image/tiff;\n        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\n        corrected global Landsat Collection 2 Level-2 data from the Thematic Mapper\n        (TM) onboard Landsat 4 and 5, the Enhanced Thematic Mapper Plus (ETM+) onboard\n        Landsat 7, and the Operational Land Imager (OLI) and Thermal Infrared Sensor\n        (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\n        4-5 TM Collection 2 Level-2\\\"},{\\\"rel\\\":\\\"cite-as\\\",\\\"href\\\":\\\"https://doi.org/10.5066/P9C7I13B\\\",\\\"title\\\":\\\"Landsat\n        7 ETM+ Collection 2 Level-2\\\"},{\\\"rel\\\":\\\"cite-as\\\",\\\"href\\\":\\\"https://doi.org/10.5066/P9OGBGM6\\\",\\\"title\\\":\\\"Landsat\n        8-9 OLI/TIRS Collection 2 Level-2\\\"},{\\\"rel\\\":\\\"license\\\",\\\"href\\\":\\\"https://www.usgs.gov/core-science-systems/hdds/data-policy\\\",\\\"title\\\":\\\"Public\n        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\n        image\\\",\\\"roles\\\":[\\\"thumbnail\\\"]},\\\"reduced_resolution_browse\\\":{\\\"type\\\":\\\"image/jpeg\\\",\\\"title\\\":\\\"Reduced\n        resolution browse image\\\",\\\"roles\\\":[\\\"overview\\\"]},\\\"mtl.json\\\":{\\\"type\\\":\\\"application/json\\\",\\\"title\\\":\\\"Product\n        Metadata File (json)\\\",\\\"description\\\":\\\"Collection 2 Level-2 Product Metadata\n        File (json)\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"mtl.txt\\\":{\\\"type\\\":\\\"text/plain\\\",\\\"title\\\":\\\"Product\n        Metadata File (txt)\\\",\\\"description\\\":\\\"Collection 2 Level-2 Product Metadata\n        File (txt)\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"mtl.xml\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"title\\\":\\\"Product\n        Metadata File (xml)\\\",\\\"description\\\":\\\"Collection 2 Level-2 Product Metadata\n        File (xml)\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"ang\\\":{\\\"type\\\":\\\"text/plain\\\",\\\"title\\\":\\\"Angle\n        Coefficients File\\\",\\\"description\\\":\\\"Collection 2 Level-1 Angle Coefficients\n        File\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"qa_pixel\\\":{\\\"type\\\":\\\"image/tiff; application=geotiff;\n        profile=cloud-optimized\\\",\\\"title\\\":\\\"Pixel Quality Assessment Band\\\",\\\"description\\\":\\\"Collection\n        2 Level-1 Pixel Quality Assessment Band\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":1,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":30,\\\"unit\\\":\\\"bit\n        index\\\"}],\\\"roles\\\":[\\\"cloud\\\",\\\"cloud-shadow\\\",\\\"snow-ice\\\",\\\"water-mask\\\"]},\\\"qa_radsat\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Radiometric Saturation\n        Quality Assessment Band\\\",\\\"description\\\":\\\"Collection 2 Level-1 Radiometric\n        Saturation Quality Assessment Band\\\",\\\"raster:bands\\\":[{\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":30,\\\"unit\\\":\\\"bit\n        index\\\"}],\\\"roles\\\":[\\\"saturation\\\"]},\\\"coastal\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Coastal/Aerosol\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Coastal/Aerosol Band Surface\n        Reflectance\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":30,\\\"scale\\\":0.0000275,\\\"offset\\\":-0.2}],\\\"roles\\\":[\\\"reflectance\\\"]},\\\"blue\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Blue Band\\\",\\\"description\\\":\\\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Green Band\\\",\\\"description\\\":\\\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Red Band\\\",\\\"description\\\":\\\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Near Infrared Band\n        0.8\\\",\\\"description\\\":\\\"Collection 2 Level-2 Near Infrared Band 0.8 Surface\n        Reflectance\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":30,\\\"scale\\\":0.0000275,\\\"offset\\\":-0.2}],\\\"roles\\\":[\\\"reflectance\\\"]},\\\"swir16\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Short-wave Infrared\n        Band 1.6\\\",\\\"description\\\":\\\"Collection 2 Level-2 Short-wave Infrared Band\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Short-wave Infrared\n        Band 2.2\\\",\\\"description\\\":\\\"Collection 2 Level-2 Short-wave Infrared Band\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Atmospheric Opacity\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Atmospheric Opacity Band Surface\n        Reflectance Product\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":-9999,\\\"data_type\\\":\\\"int16\\\",\\\"spatial_resolution\\\":30,\\\"scale\\\":0.001}],\\\"roles\\\":[\\\"data\\\"]},\\\"cloud_qa\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Cloud Quality Assessment\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Cloud Quality Assessment Band\n        Surface Reflectance Product\\\",\\\"raster:bands\\\":[{\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":30,\\\"unit\\\":\\\"bit\n        index\\\"}],\\\"roles\\\":[\\\"cloud\\\",\\\"cloud-shadow\\\",\\\"snow-ice\\\",\\\"water-mask\\\"]},\\\"qa_aerosol\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Aerosol Quality\n        Assessment Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Aerosol Quality Assessment\n        Band Surface Reflectance Product\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":1,\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":30,\\\"unit\\\":\\\"bit\n        index\\\"}],\\\"roles\\\":[\\\"data-mask\\\",\\\"water-mask\\\"]},\\\"lwir11\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Surface Temperature\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Thermal Infrared Band Surface\n        Temperature\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":30,\\\"unit\\\":\\\"kelvin\\\",\\\"scale\\\":0.00341802,\\\"offset\\\":149}],\\\"roles\\\":[\\\"temperature\\\"]},\\\"lwir\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Surface Temperature\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Thermal Infrared Band Surface\n        Temperature\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":30,\\\"unit\\\":\\\"kelvin\\\",\\\"scale\\\":0.00341802,\\\"offset\\\":149}],\\\"roles\\\":[\\\"temperature\\\"]},\\\"atran\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Atmospheric Transmittance\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Atmospheric Transmittance Band\n        Surface Temperature Product\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":-9999,\\\"data_type\\\":\\\"int16\\\",\\\"spatial_resolution\\\":30,\\\"scale\\\":0.0001}],\\\"roles\\\":[\\\"data\\\"]},\\\"cdist\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Cloud Distance\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Cloud Distance Band Surface\n        Temperature Product\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":-9999,\\\"data_type\\\":\\\"int16\\\",\\\"spatial_resolution\\\":30,\\\"unit\\\":\\\"kilometer\\\",\\\"scale\\\":0.01}],\\\"roles\\\":[\\\"data\\\"]},\\\"drad\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Downwelled Radiance\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Downwelled Radiance Band Surface\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Upwelled Radiance\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Upwelled Radiance Band Surface\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Thermal Radiance\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Thermal Radiance Band Surface\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Emissivity Band\\\",\\\"description\\\":\\\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Emissivity Standard\n        Deviation Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Emissivity Standard\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Surface Temperature\n        Quality Assessment Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Quality Assessment\n        Band Surface Temperature Product\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":-9999,\\\"data_type\\\":\\\"int16\\\",\\\"spatial_resolution\\\":30,\\\"unit\\\":\\\"kelvin\\\",\\\"scale\\\":0.01}],\\\"roles\\\":[\\\"data\\\"]}},\\\"title\\\":\\\"Landsat\n        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\n        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\n        blue (Thematic Mapper)\\\",\\\"center_wavelength\\\":0.49,\\\"full_width_half_max\\\":0.07},{\\\"name\\\":\\\"TM_B2\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Visible\n        green (Thematic Mapper)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.08},{\\\"name\\\":\\\"TM_B3\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Visible\n        red (Thematic Mapper)\\\",\\\"center_wavelength\\\":0.66,\\\"full_width_half_max\\\":0.06},{\\\"name\\\":\\\"TM_B4\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"Near\n        infrared (Thematic Mapper)\\\",\\\"center_wavelength\\\":0.83,\\\"full_width_half_max\\\":0.14},{\\\"name\\\":\\\"TM_B5\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"Short-wave\n        infrared (Thematic Mapper)\\\",\\\"center_wavelength\\\":1.65,\\\"full_width_half_max\\\":0.2},{\\\"name\\\":\\\"TM_B6\\\",\\\"common_name\\\":\\\"lwir\\\",\\\"description\\\":\\\"Long-wave\n        infrared (Thematic Mapper)\\\",\\\"center_wavelength\\\":11.45,\\\"full_width_half_max\\\":2.1},{\\\"name\\\":\\\"TM_B7\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"Short-wave\n        infrared (Thematic Mapper)\\\",\\\"center_wavelength\\\":2.22,\\\"full_width_half_max\\\":0.27},{\\\"name\\\":\\\"ETM_B1\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Visible\n        blue (Enhanced Thematic Mapper Plus)\\\",\\\"center_wavelength\\\":0.48,\\\"full_width_half_max\\\":0.07},{\\\"name\\\":\\\"ETM_B2\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Visible\n        green (Enhanced Thematic Mapper Plus)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.08},{\\\"name\\\":\\\"ETM_B3\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Visible\n        red (Enhanced Thematic Mapper Plus)\\\",\\\"center_wavelength\\\":0.66,\\\"full_width_half_max\\\":0.06},{\\\"name\\\":\\\"ETM_B4\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"Near\n        infrared (Enhanced Thematic Mapper Plus)\\\",\\\"center_wavelength\\\":0.84,\\\"full_width_half_max\\\":0.13},{\\\"name\\\":\\\"ETM_B5\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"Short-wave\n        infrared (Enhanced Thematic Mapper Plus)\\\",\\\"center_wavelength\\\":1.65,\\\"full_width_half_max\\\":0.2},{\\\"name\\\":\\\"ETM_B6\\\",\\\"common_name\\\":\\\"lwir\\\",\\\"description\\\":\\\"Long-wave\n        infrared (Enhanced Thematic Mapper Plus)\\\",\\\"center_wavelength\\\":11.34,\\\"full_width_half_max\\\":2.05},{\\\"name\\\":\\\"ETM_B7\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"Short-wave\n        infrared (Enhanced Thematic Mapper Plus)\\\",\\\"center_wavelength\\\":2.2,\\\"full_width_half_max\\\":0.28},{\\\"name\\\":\\\"OLI_B1\\\",\\\"common_name\\\":\\\"coastal\\\",\\\"description\\\":\\\"Coastal/Aerosol\n        (Operational Land Imager)\\\",\\\"center_wavelength\\\":0.44,\\\"full_width_half_max\\\":0.02},{\\\"name\\\":\\\"OLI_B2\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Visible\n        blue (Operational Land Imager)\\\",\\\"center_wavelength\\\":0.48,\\\"full_width_half_max\\\":0.06},{\\\"name\\\":\\\"OLI_B3\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Visible\n        green (Operational Land Imager)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.06},{\\\"name\\\":\\\"OLI_B4\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Visible\n        red (Operational Land Imager)\\\",\\\"center_wavelength\\\":0.65,\\\"full_width_half_max\\\":0.04},{\\\"name\\\":\\\"OLI_B5\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"Near\n        infrared (Operational Land Imager)\\\",\\\"center_wavelength\\\":0.87,\\\"full_width_half_max\\\":0.03},{\\\"name\\\":\\\"OLI_B6\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"Short-wave\n        infrared (Operational Land Imager)\\\",\\\"center_wavelength\\\":1.61,\\\"full_width_half_max\\\":0.09},{\\\"name\\\":\\\"OLI_B7\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"Short-wave\n        infrared (Operational Land Imager)\\\",\\\"center_wavelength\\\":2.2,\\\"full_width_half_max\\\":0.19},{\\\"name\\\":\\\"TIRS_B10\\\",\\\"common_name\\\":\\\"lwir11\\\",\\\"description\\\":\\\"Long-wave\n        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\n        Level-2A\\\",\\\"description\\\":\\\"Global Sentinel-2 data from the Multispectral\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Aerosol optical\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Blue (band 2) -\n        10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Coastal aerosol\n        (band 1) - 60m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"coastal\\\",\\\"common_name\\\":\\\"coastal\\\",\\\"description\\\":\\\"Coastal\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Green (band 3)\n        - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"NIR 1 (band 8)\n        - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"nir\\\",\\\"common_name\\\":\\\"nir\\\",\\\"description\\\":\\\"NIR\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"NIR 2 (band 8A)\n        - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"nir08\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"NIR\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"NIR 3 (band 9)\n        - 60m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"nir09\\\",\\\"common_name\\\":\\\"nir09\\\",\\\"description\\\":\\\"NIR\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Red (band 4) -\n        10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Red edge 1 (band\n        5) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"rededge1\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Red edge 2 (band\n        6) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"rededge2\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Red edge 3 (band\n        7) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"rededge3\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Scene classification\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"SWIR 1 (band 11)\n        - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"swir16\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"SWIR\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"SWIR 2 (band 12)\n        - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"swir22\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"SWIR\n        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\n        image\\\",\\\"roles\\\":[\\\"thumbnail\\\"]},\\\"tileinfo_metadata\\\":{\\\"type\\\":\\\"application/json\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"visual\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"True color image\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (band 4)\\\",\\\"center_wavelength\\\":0.665,\\\"full_width_half_max\\\":0.038},{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (band 3)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.045},{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (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;\n        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\n        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\n        (band 2) - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (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\n        aerosol (band 1) - 60m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"coastal\\\",\\\"common_name\\\":\\\"coastal\\\",\\\"description\\\":\\\"Coastal\n        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\n        (band 3) - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (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\n        1 (band 8) - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"nir\\\",\\\"common_name\\\":\\\"nir\\\",\\\"description\\\":\\\"NIR\n        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\n        2 (band 8A) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"nir08\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"NIR\n        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\n        3 (band 9) - 60m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"nir09\\\",\\\"common_name\\\":\\\"nir09\\\",\\\"description\\\":\\\"NIR\n        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\n        (band 4) - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (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\n        edge 1 (band 5) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"rededge1\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        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\n        edge 2 (band 6) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"rededge2\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        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\n        edge 3 (band 7) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"rededge3\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        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\n        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\n        1 (band 11) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"swir16\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"SWIR\n        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\n        2 (band 12) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"swir22\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"SWIR\n        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\n        color image\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (band 4)\\\",\\\"center_wavelength\\\":0.665,\\\"full_width_half_max\\\":0.038},{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (band 3)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.045},{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (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\n        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\n        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\n        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\n        aerosol (band 1)\\\",\\\"center_wavelength\\\":0.443,\\\"full_width_half_max\\\":0.027},{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (band 2)\\\",\\\"center_wavelength\\\":0.49,\\\"full_width_half_max\\\":0.098},{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (band 3)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.045},{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (band 4)\\\",\\\"center_wavelength\\\":0.665,\\\"full_width_half_max\\\":0.038},{\\\"name\\\":\\\"rededge1\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 1 (band 5)\\\",\\\"center_wavelength\\\":0.704,\\\"full_width_half_max\\\":0.019},{\\\"name\\\":\\\"rededge2\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 2 (band 6)\\\",\\\"center_wavelength\\\":0.74,\\\"full_width_half_max\\\":0.018},{\\\"name\\\":\\\"rededge3\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 3 (band 7)\\\",\\\"center_wavelength\\\":0.783,\\\"full_width_half_max\\\":0.028},{\\\"name\\\":\\\"nir\\\",\\\"common_name\\\":\\\"nir\\\",\\\"description\\\":\\\"NIR\n        1 (band 8)\\\",\\\"center_wavelength\\\":0.842,\\\"full_width_half_max\\\":0.145},{\\\"name\\\":\\\"nir08\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"NIR\n        2 (band 8A)\\\",\\\"center_wavelength\\\":0.865,\\\"full_width_half_max\\\":0.033},{\\\"name\\\":\\\"nir09\\\",\\\"common_name\\\":\\\"nir09\\\",\\\"description\\\":\\\"NIR\n        3 (band 9)\\\",\\\"center_wavelength\\\":0.945,\\\"full_width_half_max\\\":0.026},{\\\"name\\\":\\\"cirrus\\\",\\\"common_name\\\":\\\"cirrus\\\",\\\"description\\\":\\\"Cirrus\n        (band 10)\\\",\\\"center_wavelength\\\":1.3735,\\\"full_width_half_max\\\":0.075},{\\\"name\\\":\\\"swir16\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"SWIR\n        1 (band 11)\\\",\\\"center_wavelength\\\":1.61,\\\"full_width_half_max\\\":0.143},{\\\"name\\\":\\\"swir22\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"SWIR\n        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\n        Level-1C\\\",\\\"description\\\":\\\"Global Sentinel-2 data from the Multispectral\n        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\n        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\n        (band 2) - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (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\n        (band 10) - 60m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"cirrus\\\",\\\"common_name\\\":\\\"cirrus\\\",\\\"description\\\":\\\"Cirrus\n        (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\n        aerosol (band 1) - 60m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"coastal\\\",\\\"common_name\\\":\\\"coastal\\\",\\\"description\\\":\\\"Coastal\n        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\n        (band 3) - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (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\n        1 (band 8) - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"nir\\\",\\\"common_name\\\":\\\"nir\\\",\\\"description\\\":\\\"NIR\n        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\n        2 (band 8A) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"nir08\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"NIR\n        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\n        3 (band 9) - 60m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"nir09\\\",\\\"common_name\\\":\\\"nir09\\\",\\\"description\\\":\\\"NIR\n        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\n        (band 4) - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (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\n        edge 1 (band 5) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"rededge1\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        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\n        edge 2 (band 6) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"rededge2\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        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\n        edge 3 (band 7) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"rededge3\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        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\n        1 (band 11) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"swir16\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"SWIR\n        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\n        2 (band 12) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"swir22\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"SWIR\n        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\n        image\\\",\\\"roles\\\":[\\\"thumbnail\\\"]},\\\"tileinfo_metadata\\\":{\\\"type\\\":\\\"application/json\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"visual\\\":{\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"True\n        color image\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (band 4)\\\",\\\"center_wavelength\\\":0.665,\\\"full_width_half_max\\\":0.038},{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (band 3)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.045},{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (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\n        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\n        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\n        aerosol (band 1)\\\",\\\"center_wavelength\\\":0.443,\\\"full_width_half_max\\\":0.027},{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (band 2)\\\",\\\"center_wavelength\\\":0.49,\\\"full_width_half_max\\\":0.098},{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (band 3)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.045},{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (band 4)\\\",\\\"center_wavelength\\\":0.665,\\\"full_width_half_max\\\":0.038},{\\\"name\\\":\\\"rededge1\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 1 (band 5)\\\",\\\"center_wavelength\\\":0.704,\\\"full_width_half_max\\\":0.019},{\\\"name\\\":\\\"rededge2\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 2 (band 6)\\\",\\\"center_wavelength\\\":0.74,\\\"full_width_half_max\\\":0.018},{\\\"name\\\":\\\"rededge3\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 3 (band 7)\\\",\\\"center_wavelength\\\":0.783,\\\"full_width_half_max\\\":0.028},{\\\"name\\\":\\\"nir\\\",\\\"common_name\\\":\\\"nir\\\",\\\"description\\\":\\\"NIR\n        1 (band 8)\\\",\\\"center_wavelength\\\":0.842,\\\"full_width_half_max\\\":0.145},{\\\"name\\\":\\\"nir08\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"NIR\n        2 (band 8A)\\\",\\\"center_wavelength\\\":0.865,\\\"full_width_half_max\\\":0.033},{\\\"name\\\":\\\"nir09\\\",\\\"common_name\\\":\\\"nir09\\\",\\\"description\\\":\\\"NIR\n        3 (band 9)\\\",\\\"center_wavelength\\\":0.945,\\\"full_width_half_max\\\":0.026},{\\\"name\\\":\\\"cirrus\\\",\\\"common_name\\\":\\\"cirrus\\\",\\\"description\\\":\\\"Cirrus\n        (band 10)\\\",\\\"center_wavelength\\\":1.3735,\\\"full_width_half_max\\\":0.075},{\\\"name\\\":\\\"swir16\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"SWIR\n        1 (band 11)\\\",\\\"center_wavelength\\\":1.61,\\\"full_width_half_max\\\":0.143},{\\\"name\\\":\\\"swir22\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"SWIR\n        2 (band 12)\\\",\\\"center_wavelength\\\":2.19,\\\"full_width_half_max\\\":0.242}]}},{\\\"type\\\":\\\"Collection\\\",\\\"id\\\":\\\"sentinel-2-c1-l2a\\\",\\\"title\\\":\\\"Sentinel-2\n        Collection 1 Level-2A\\\",\\\"description\\\":\\\"Sentinel-2 Collection 1 Level-2A,\n        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\n        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;\n        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;\n        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;\n        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;\n        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;\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"SWIR 2.2\\u03BCm\n        - 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;\n        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;\n        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;\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"SWIR 1.6\\u03BCm\n        - 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;\n        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;\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Scene classification\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Aerosol optical\n        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;\n        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;\n        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;\n        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;\n        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;\n        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\n        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\n        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\n        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\n        aerosol (band 1)\\\",\\\"center_wavelength\\\":0.443,\\\"full_width_half_max\\\":0.027},{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (band 2)\\\",\\\"center_wavelength\\\":0.49,\\\"full_width_half_max\\\":0.098},{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (band 3)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.045},{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (band 4)\\\",\\\"center_wavelength\\\":0.665,\\\"full_width_half_max\\\":0.038},{\\\"name\\\":\\\"rededge1\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 1 (band 5)\\\",\\\"center_wavelength\\\":0.704,\\\"full_width_half_max\\\":0.019},{\\\"name\\\":\\\"rededge2\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 2 (band 6)\\\",\\\"center_wavelength\\\":0.74,\\\"full_width_half_max\\\":0.018},{\\\"name\\\":\\\"rededge3\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 3 (band 7)\\\",\\\"center_wavelength\\\":0.783,\\\"full_width_half_max\\\":0.028},{\\\"name\\\":\\\"nir\\\",\\\"common_name\\\":\\\"nir\\\",\\\"description\\\":\\\"NIR\n        1 (band 8)\\\",\\\"center_wavelength\\\":0.842,\\\"full_width_half_max\\\":0.145},{\\\"name\\\":\\\"nir08\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"NIR\n        2 (band 8A)\\\",\\\"center_wavelength\\\":0.865,\\\"full_width_half_max\\\":0.033},{\\\"name\\\":\\\"nir09\\\",\\\"common_name\\\":\\\"nir09\\\",\\\"description\\\":\\\"NIR\n        3 (band 9)\\\",\\\"center_wavelength\\\":0.945,\\\"full_width_half_max\\\":0.026},{\\\"name\\\":\\\"cirrus\\\",\\\"common_name\\\":\\\"cirrus\\\",\\\"description\\\":\\\"Cirrus\n        (band 10)\\\",\\\"center_wavelength\\\":1.3735,\\\"full_width_half_max\\\":0.075},{\\\"name\\\":\\\"swir16\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"SWIR\n        1 (band 11)\\\",\\\"center_wavelength\\\":1.61,\\\"full_width_half_max\\\":0.143},{\\\"name\\\":\\\"swir22\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"SWIR\n        2 (band 12)\\\",\\\"center_wavelength\\\":2.19,\\\"full_width_half_max\\\":0.242}]}},{\\\"id\\\":\\\"sentinel-1-grd\\\",\\\"type\\\":\\\"Collection\\\",\\\"title\\\":\\\"Sentinel-1\n        Level-1C Ground Range Detected (GRD)\\\",\\\"description\\\":\\\"Sentinel-1 is a pair\n        of Synthetic Aperture Radar (SAR) imaging satellites launched in 2014 and\n        2016 by the European Space Agency (ESA). Their 6 day revisit cycle and ability\n        to observe through clouds makes this dataset perfect for sea and land monitoring,\n        emergency response due to environmental disasters, and economic applications.\n        This dataset represents the global Sentinel-1 GRD archive, from beginning\n        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\n        Ground Range Detected (GRD) Technical Guide\\\"},{\\\"rel\\\":\\\"license\\\",\\\"href\\\":\\\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\\\",\\\"title\\\":\\\"Copernicus\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"HH\n        Data\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\"}]},\\\"hv\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"HV\n        Data\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\"}]},\\\"vh\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"VH\n        Data\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\"}]},\\\"vv\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"VV\n        Data\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\"}]},\\\"thumbnail\\\":{\\\"type\\\":\\\"image/png\\\",\\\"roles\\\":[\\\"thumbnail\\\"],\\\"title\\\":\\\"Thumbnail\n        Image\\\"},\\\"safe-manifest\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"SAFE\n        Manifest File\\\"},\\\"schema-noise-hh\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"HH\n        Noise Schema\\\"},\\\"schema-noise-hv\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"HV\n        Noise Schema\\\"},\\\"schema-noise-vh\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"VH\n        Noise Schema\\\"},\\\"schema-noise-vv\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"VV\n        Noise Schema\\\"},\\\"schema-product-hh\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"HH\n        Product Schema\\\"},\\\"schema-product-hv\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"HV\n        Product Schema\\\"},\\\"schema-product-vh\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"VH\n        Product Schema\\\"},\\\"schema-product-vv\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"VV\n        Product Schema\\\"},\\\"schema-calibration-hh\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"HH\n        Calibration Schema\\\"},\\\"schema-calibration-hv\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"HV\n        Calibration Schema\\\"},\\\"schema-calibration-vh\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"VH\n        Calibration Schema\\\"},\\\"schema-calibration-vv\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"VV\n        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}}\"\n    headers:\n      Connection:\n      - keep-alive\n      Content-Encoding:\n      - gzip\n      Content-Length:\n      - '8117'\n      Content-Type:\n      - application/json; charset=utf-8\n      Date:\n      - Thu, 31 Jul 2025 15:08:23 GMT\n      Via:\n      - 1.1 543364398a9b5ee1ed0d763a4bb2c14a.cloudfront.net (CloudFront)\n      X-Amz-Cf-Id:\n      - SPLG6LpHetr3AGEbEYAZG5p8-e5jGJQqvyH6G45CsSD-0Xb9ZY84xw==\n      X-Amz-Cf-Pop:\n      - DEN52-C1\n      X-Amzn-Trace-Id:\n      - Root=1-688b86e7-3de7961d5f5444666d507dc6;Parent=0722117c7d1bde71;Sampled=0;Lineage=1:9e2884e9:0\n      X-Cache:\n      - Miss from cloudfront\n      access-control-allow-origin:\n      - '*'\n      etag:\n      - W/\"141dd-9fMv6YJnvxPn9adSQK466CnIbE0\"\n      x-amz-apigw-id:\n      - OlIENEKKPHcEaGQ=\n      x-amzn-Remapped-content-length:\n      - '82397'\n      x-amzn-RequestId:\n      - 2770552f-4963-4085-ad26-f7d97893b0b3\n      x-powered-by:\n      - Express\n    status:\n      code: 200\n      message: OK\nversion: 1\n"
  },
  {
    "path": "tests/cassettes/test_collection_search/TestCollectionSearch.test_datetime_results.yaml",
    "content": "interactions:\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://emc.spacebel.be/collections?datetime=2024-01-01T00%3A00%3A01Z%2F2024-01-01T00%3A00%3A10Z\n  response:\n    body:\n      string: \"{\\n  \\\"collections\\\": [\\n    {\\n      \\\"extent\\\": {\\n        \\\"spatial\\\":\n        {\\\"bbox\\\": [[\\n          -180,\\n          -90,\\n          180,\\n          90\\n\n        \\       ]]},\\n        \\\"temporal\\\": {\\\"interval\\\": [[\\n          \\\"2021-10-09T00:00:00.000Z\\\",\\n\n        \\         null\\n        ]]}\\n      },\\n      \\\"stac_version\\\": \\\"1.0.0\\\",\\n\n        \\     \\\"keywords\\\": [\\n        \\\"FedEO\\\",\\n        \\\"SCIHUB\\\",\\n        \\\"DIF10\\\",\\n\n        \\       \\\"Sea Surface Topography\\\",\\n        \\\"EARTH SCIENCE > OCEANS > SEA\n        SURFACE TOPOGRAPHY\\\",\\n        \\\"Radar Altimeters\\\",\\n        \\\"Radiometers\\\",\\n\n        \\       \\\"Sentinel-6\\\",\\n        \\\"POSEIDON-4\\\",\\n        \\\"AMR-C\\\"\\n      ],\\n\n        \\     \\\"created\\\": \\\"2024-01-02T00:00:00.00Z\\\",\\n      \\\"description\\\": \\\"Copernicus\n        Sentinel-6 Michael Freilich is an Earth Observation satellite mission developed\n        to provide enhanced continuity to the very stable time series of mean sea\n        level measurements and ocean sea state that started in 1992, with the TOPEX/Poseidon\n        mission, then continued by the Jason-1, Jason-2 and Jason-3 satellite missions.\\\",\\n\n        \\     \\\"type\\\": \\\"Collection\\\",\\n      \\\"title\\\": \\\"Sentinel-6 Products\\\",\\n\n        \\     \\\"license\\\": \\\"various\\\",\\n      \\\"assets\\\": {\\n        \\\"search\\\":\n        {\\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\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Search client\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_069r3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        }\\n\n        \\     },\\n      \\\"links\\\": [\\n        {\\n          \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"root\\\",\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\": \\\"application/json\\\",\\n\n        \\         \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"title\\\":\n        \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/geo+json\\\",\\n          \\\"title\\\": \\\"Datasets\n        search for the series EOP:ESA:Sentinel-6\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"http://www.opengis.net/def/rel/ogc/1.0/queryables\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/EOP:ESA:SCIHUB:S6/queryables\\\",\\n          \\\"type\\\":\n        \\\"application/schema+json\\\",\\n          \\\"title\\\": \\\"Queryables for EOP:ESA:SCIHUB:S6\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"search\\\",\\n          \\\"href\\\":\n        \\\"https://dataspace.copernicus.eu\\\",\\n          \\\"title\\\": \\\"Copernicus Data\n        Space Ecosystem - Copernicus Data Space Ecosystem\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"search\\\",\\n          \\\"href\\\": \\\"https://fedeo.ceos.org/opensearch/description.xml?parentIdentifier=EOP:ESA:SCIHUB:S6\\\",\\n\n        \\         \\\"title\\\": \\\"FedEO Clearinghouse - FedEO Clearinghouse\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"search\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/series/items/EOP:ESA:SCIHUB:S6/api\\\",\\n\n        \\         \\\"type\\\": \\\"application/opensearchdescription+xml\\\",\\n          \\\"title\\\":\n        \\\"OpenSearch Description Document\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://sentinel.esa.int/web/sentinel/missions/sentinel-6\\\",\\n\n        \\         \\\"title\\\": \\\"ESA Sentinel-6 Online\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=text/turtle;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for ESA/ESRIN\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/Sentinel-6\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for Sentinel-6 platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/700b6e99-a527-5819-b283-4656c8832ea0\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for AMR-C instrument\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/5d1512a5-cb97-5e74-8778-35cd65c06936\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for POSEIDON-4 instrument\\\"\\n        }\\n\n        \\     ],\\n      \\\"id\\\": \\\"EOP:ESA:Sentinel-6\\\",\\n      \\\"updated\\\": \\\"2020-11-21T00:00:00.00Z\\\",\\n\n        \\     \\\"providers\\\": [\\n        {\\n          \\\"roles\\\": [\\\"producer\\\"],\\n\n        \\         \\\"name\\\": \\\"ESA/ESRIN\\\"\\n        },\\n        {\\n          \\\"roles\\\":\n        [\\\"host\\\"],\\n          \\\"name\\\": \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\":\n        \\\"https://emc.spacebel.be/readme.html\\\"\\n        }\\n      ],\\n      \\\"summaries\\\":\n        {\\n        \\\"instruments\\\": [\\n          \\\"AMR-C\\\",\\n          \\\"POSEIDON-4\\\"\\n\n        \\       ],\\n        \\\"platform\\\": [\\\"Sentinel-6\\\"]\\n      }\\n    },\\n    {\\n\n        \\     \\\"extent\\\": {\\n        \\\"spatial\\\": {\\\"bbox\\\": [[\\n          -180,\\n\n        \\         -90,\\n          180,\\n          90\\n        ]]},\\n        \\\"temporal\\\":\n        {\\\"interval\\\": [[\\n          \\\"2017-10-13T00:00:00.000Z\\\",\\n          null\\n\n        \\       ]]}\\n      },\\n      \\\"stac_version\\\": \\\"1.0.0\\\",\\n      \\\"keywords\\\":\n        [\\n        \\\"FedEO\\\",\\n        \\\"SCIHUB\\\",\\n        \\\"DIF10\\\",\\n        \\\"Air\n        Quality\\\",\\n        \\\"EARTH SCIENCE > ATMOSPHERE > AIR QUALITY\\\",\\n        \\\"Sentinel-5P\\\",\\n\n        \\       \\\"TROPOMI\\\"\\n      ],\\n      \\\"created\\\": \\\"2018-10-09T00:00:00.00Z\\\",\\n\n        \\     \\\"description\\\": \\\"The Sentinel-5P data offer for the Pre-Operations\n        Open Access Hub consists of Level-1B and Level-2 user products for the TROPOMI\n        instrument.\\\",\\n      \\\"type\\\": \\\"Collection\\\",\\n      \\\"title\\\": \\\"Sentinel-5P\n        Products\\\",\\n      \\\"license\\\": \\\"various\\\",\\n      \\\"assets\\\": {\\n        \\\"search\\\":\n        {\\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\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Search client\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_069r3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        }\\n\n        \\     },\\n      \\\"links\\\": [\\n        {\\n          \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"root\\\",\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\": \\\"application/json\\\",\\n\n        \\         \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"title\\\":\n        \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/geo+json\\\",\\n          \\\"title\\\": \\\"Datasets\n        search for the series EOP:ESA:Sentinel-5P\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"http://www.opengis.net/def/rel/ogc/1.0/queryables\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/EOP:ESA:SCIHUB:S5P/queryables\\\",\\n          \\\"type\\\":\n        \\\"application/schema+json\\\",\\n          \\\"title\\\": \\\"Queryables for EOP:ESA:SCIHUB:S5P\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"search\\\",\\n          \\\"href\\\":\n        \\\"https://dataspace.copernicus.eu\\\",\\n          \\\"title\\\": \\\"Copernicus Data\n        Space Ecosystem - Copernicus Data Space Ecosystem\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"search\\\",\\n          \\\"href\\\": \\\"https://fedeo.ceos.org/opensearch/description.xml?parentIdentifier=EOP:ESA:SCIHUB:S5P\\\",\\n\n        \\         \\\"title\\\": \\\"FedEO Clearinghouse - FedEO Clearinghouse\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"search\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/series/items/EOP:ESA:SCIHUB:S5P/api\\\",\\n\n        \\         \\\"type\\\": \\\"application/opensearchdescription+xml\\\",\\n          \\\"title\\\":\n        \\\"OpenSearch Description Document\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://sentinel.esa.int/web/sentinel/missions/sentinel-5P\\\",\\n\n        \\         \\\"title\\\": \\\"ESA Sentinel-5P Online\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://sentinels.copernicus.eu/web/sentinel/user-guides/sentinel-5p-tropomi\\\",\\n\n        \\         \\\"title\\\": \\\"Sentinel-5P TROPOMI User Guide \\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=text/turtle;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for ESA/ESRIN\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/Sentinel-5P\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for Sentinel-5P platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/09f91afd-c0d2-52a9-9b50-b895a60917fa\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for TROPOMI instrument\\\"\\n        }\\n\n        \\     ],\\n      \\\"id\\\": \\\"EOP:ESA:Sentinel-5P\\\",\\n      \\\"updated\\\": \\\"2017-04-30T00:00:00.00Z\\\",\\n\n        \\     \\\"stac_extensions\\\": [\\\"https://stac-extensions.github.io/processing/v1.2.0/schema.json\\\"],\\n\n        \\     \\\"providers\\\": [\\n        {\\n          \\\"roles\\\": [\\\"producer\\\"],\\n\n        \\         \\\"name\\\": \\\"ESA/ESRIN\\\"\\n        },\\n        {\\n          \\\"roles\\\":\n        [\\\"host\\\"],\\n          \\\"name\\\": \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\":\n        \\\"https://emc.spacebel.be/readme.html\\\"\\n        }\\n      ],\\n      \\\"summaries\\\":\n        {\\n        \\\"instruments\\\": [\\\"TROPOMI\\\"],\\n        \\\"processing:lineage\\\":\n        [\\\"The Sentinel-5 Precursor objectives are to provide operational space-borne\n        observations in support to the operational monitoring of Air Quality, Climate,\n        Ozone and Surface UV. It will provide measurements of Ozone, NO_2, SO_2, Formaldehyde,\n        Aerosol, Carbonmonoxide, Methane, Clouds.\\\"],\\n        \\\"platform\\\": [\\\"Sentinel-5P\\\"]\\n\n        \\     }\\n    },\\n    {\\n      \\\"extent\\\": {\\n        \\\"spatial\\\": {\\\"bbox\\\":\n        [[\\n          -180,\\n          -90,\\n          180,\\n          90\\n        ]]},\\n\n        \\       \\\"temporal\\\": {\\\"interval\\\": [[\\n          \\\"2016-01-01T00:00:00.000Z\\\",\\n\n        \\         null\\n        ]]}\\n      },\\n      \\\"stac_version\\\": \\\"1.0.0\\\",\\n\n        \\     \\\"keywords\\\": [\\n        \\\"MAJA\\\",\\n        \\\"GeoTiff\\\",\\n        \\\"Forestry\\\",\\n\n        \\       \\\"Forest Conservation/Protection\\\",\\n        \\\"Sentinel-2\\\",\\n        \\\"MSI\\\"\\n\n        \\     ],\\n      \\\"created\\\": \\\"2023-09-05T00:00:00.00Z\\\",\\n      \\\"description\\\":\n        \\\"False colour satellite data allows you to upgrade your forest surveys. It\n        provides you with a broader perspective of biotic and abiotic disturbances\n        in real-time. This enables you to make more informed decisions to safeguard\n        the forests. Forestry professionals can utilise false colour imagery to optimise\n        their forestry operations, such as planning and monitoring tree planting,\n        conducting inventory assessments, and identifying areas for habitat restoration.\\\",\\n\n        \\     \\\"type\\\": \\\"Collection\\\",\\n      \\\"title\\\": \\\"False Colour Composites\\\",\\n\n        \\     \\\"license\\\": \\\"various\\\",\\n      \\\"assets\\\": {\\n        \\\"search\\\":\n        {\\n          \\\"roles\\\": [\\\"search\\\"],\\n          \\\"href\\\": \\\"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=F-FCC\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Search client\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_069r3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-FCC\\\",\\n          \\\"type\\\":\n        \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-FCC?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-FCC?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        },\\n\n        \\       \\\"quicklook\\\": {\\n          \\\"roles\\\": [\\\"overview\\\"],\\n          \\\"href\\\":\n        \\\"https://eovoc.spacebel.be/images/fcc.png\\\",\\n          \\\"type\\\": \\\"image/png\\\",\\n\n        \\         \\\"title\\\": \\\"graphic overview\\\"\\n        }\\n      },\\n      \\\"links\\\":\n        [\\n        {\\n          \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-FCC\\\",\\n\n        \\         \\\"type\\\": \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"root\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\",\\n          \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n\n        \\         \\\"title\\\": \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"items\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/F-FCC/items?httpAccept=application/geo%2Bjson;profile=https://stacspec.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json\\\",\\n          \\\"title\\\": \\\"Datasets\n        search for the series F-FCC\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"http://www.opengis.net/def/rel/ogc/1.0/queryables\\\",\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-FCC/queryables\\\",\\n\n        \\         \\\"type\\\": \\\"application/schema+json\\\",\\n          \\\"title\\\": \\\"Queryables\n        for F-FCC\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"search\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/series/items/F-FCC/api\\\",\\n          \\\"type\\\":\n        \\\"application/opensearchdescription+xml\\\",\\n          \\\"title\\\": \\\"OpenSearch\n        Description Document\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"ordering\\\",\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/ordering?collection=F-FCC\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Order F-FCC Product\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\":\n        \\\"https://eovoc.spacebel.be/images/FC_Brochure_final.pdf\\\",\\n          \\\"type\\\":\n        \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"F-FCC Brochure - F-FCC Product\n        Description\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/rdf%2Bxml;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-FCC?httpAccept=text/turtle;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-FCC?httpAccept=text/turtle;profile=http://data.europa.eu/930/\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/Spacebel\n        SA\\\",\\n          \\\"title\\\": \\\"More collections for Spacebel SA\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/Sentinel-2\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for Sentinel-2 platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/s2-msi\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for MSI instrument\\\"\\n        }\\n\n        \\     ],\\n      \\\"id\\\": \\\"F-FCC\\\",\\n      \\\"updated\\\": \\\"2023-09-05T00:00:00.00Z\\\",\\n\n        \\     \\\"providers\\\": [\\n        {\\n          \\\"roles\\\": [\\\"producer\\\"],\\n\n        \\         \\\"name\\\": \\\"Spacebel SA\\\",\\n          \\\"url\\\": \\\"https://www.spacebel.com\\\"\\n\n        \\       },\\n        {\\n          \\\"roles\\\": [\\\"host\\\"],\\n          \\\"name\\\":\n        \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\": \\\"https://emc.spacebel.be/readme.html\\\"\\n\n        \\       }\\n      ],\\n      \\\"summaries\\\": {\\n        \\\"instruments\\\": [\\\"MSI\\\"],\\n\n        \\       \\\"platform\\\": [\\\"Sentinel-2\\\"]\\n      }\\n    },\\n    {\\n      \\\"extent\\\":\n        {\\n        \\\"spatial\\\": {\\\"bbox\\\": [[\\n          -180,\\n          -90,\\n          180,\\n\n        \\         90\\n        ]]},\\n        \\\"temporal\\\": {\\\"interval\\\": [[\\n          \\\"2016-06-22T00:00:00.000Z\\\",\\n\n        \\         null\\n        ]]}\\n      },\\n      \\\"stac_version\\\": \\\"1.0.0\\\",\\n\n        \\     \\\"keywords\\\": [\\n        \\\"World\\\",\\n        \\\"Planet\\\",\\n        \\\"Land\n        Surface\\\",\\n        \\\"Mapping and Cartography\\\",\\n        \\\"Natural Hazards\n        and Disaster Risk\\\",\\n        \\\"EARTH SCIENCE > LAND SURFACE\\\",\\n        \\\"EARTH\n        SCIENCE > HUMAN DIMENSIONS > NATURAL HAZARDS\\\",\\n        \\\"VIS (0.40 - 0.75\n        \\xB5m)\\\",\\n        \\\"NIR (0.75 - 1.30 \\xB5m)\\\",\\n        \\\"Sun-synchronous\\\",\\n\n        \\       \\\"Very High Resolution - VHR (0 - 5m)\\\",\\n        \\\"475 km (reference)\\\",\\n\n        \\       \\\"25 km\\\",\\n        \\\"Imaging Spectrometers/Radiometers\\\",\\n        \\\"PlanetScope\\\",\\n\n        \\       \\\"PlanetScope Camera\\\"\\n      ],\\n      \\\"created\\\": \\\"2019-08-09T00:00:00.00Z\\\",\\n\n        \\     \\\"description\\\": \\\"The PlanetScope Level 1B Basic Scene and Level 3B\n        Ortho Scene full archive products are available as part of Planet imagery\n        offer.  The Unrectified Asset: PlanetScope Basic Analytic Radiance (TOAR)\n        product is a Scaled Top of Atmosphere Radiance (at sensor) and sensor corrected\n        product, without correction for any geometric distortions inherent in the\n        imaging processes and is not mapped to a cartographic projection. The imagery\n        data is accompanied by Rational Polynomial Coefficients (RPCs) to enable orthorectification\n        by the user.  This kind of product is designed for users with advanced image\n        processing and geometric correction capabilities.     Basic Scene Product\n        Components and Format Product Components:\\\\t - Image File (GeoTIFF format)\n        - Metadata File (XML format) - Rational Polynomial Coefficients (XML format)\n        - Thumbnail File (GeoTIFF format) - Unusable Data Mask UDM File (GeoTIFF format)\n        - Usable Data Mask UDM2 File (GeoTIFF format) Bands: 4-band multispectral\n        image (blue, green, red, near-infrared) or 8-band (coastal-blue, blue, green\n        I, green, yellow, red, Rededge, near-infrared) Ground Sampling Distance:\\\\t\n        - Approximate, satellite altitude dependent - Dove-C: 3.0 m-4.1 m - Dove-R:\n        3.0 m-4.1 m - SuperDove: 3.7 m-4.2 m Accuracy: &lt;10 m RMSE    The Rectified\n        assets: The PlanetScope Ortho Scene product is radiometrically-, sensor- and\n        geometrically- corrected and is projected to a UTM/WGS84 cartographic map\n        projection. The geometric correction uses fine Digital Elevation Models (DEMs)\n        with a post spacing of between 30 and 90 metres.  Ortho Scene Product Components\n        and Format Product Components:\\\\t - Image File (GeoTIFF format) - Metadata\n        File (XML format) - Thumbnail File (GeoTIFF format) - Unusable Data Mask UDM\n        File (GeoTIFF format) - Usable Data Mask UDM2 File (GeoTIFF format) Bands:\n        3-band natural color (red, green, blue) or 4-band multispectral image (blue,\n        green, red, near-infrared) or 8-band (costal-blue, blue, green I, green, yellow,\n        red, RedEdge, near-infrared) Ground Sampling Distance:\\\\t - Approximate, satellite\n        altitude dependent - Dove-C: 3.0 m-4.1 m - Dove-R: 3.0 m-4.1 m  - SuperDove:\n        3.7 m-4.2 m Projection: UTM WGS84 Accuracy: &lt;10 m RMSE    PlanetScope Ortho\n        Scene product is available in the following:   PlanetScope Visual Ortho Scene\n        product is orthorectified and color-corrected (using a colour curve) 3-band\n        RGB Imagery. This correction attempts to optimise colours as seen by the human\n        eye providing images as they would look if viewed from the perspective of\n        the satellite  PlanetScope  Surface Reflectance product is orthorectified,\n        4-band BGRN or 8-band Coastal Blue, Blue, Green I, Green, Yellow, Red, RedEdge,\n        NIR Imagery with geometric, radiometric and  corrected for surface reflection.\n        This data is optimal for value-added image processing such as land cover classifications.\n        \\ PlanetScope Analytic Ortho Scene Surface Reflectance product is orthorectified,\n        4-band BGRN or 8-band Coastal Blue, Blue, Green I, Green, Yellow, Red, RedEdge,\n        NIR Imagery with geometric, radiometric and calibrated to top of atmosphere\n        radiance.  _$$Planet Explorer Catalogue$$ https://www.planet.com/explorer/\n        can be accessed (Planet registration requested) to discover and check the\n        data readiness. It is worth to mention that the data distribution is based\n        on Data Voucher, corresponding to maximum amount of square kilometers can\n        be ordered and downloaded by the project in a maximum period of 15 moths (this\n        duration cannot be extended) starting from the project proposal acceptance\n        date. Each Date Voucher includes PlanetScope tile view streaming access for\n        a total of 20,000 tiles per calendar month during the project period.  All\n        details about the data provision, data access conditions and quota assignment\n        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\n        available in Resources section.\\\",\\n      \\\"type\\\": \\\"Collection\\\",\\n      \\\"title\\\":\n        \\\"PlanetScope Full Archive\\\",\\n      \\\"license\\\": \\\"various\\\",\\n      \\\"assets\\\":\n        {\\n        \\\"metadata_ogc_17_069r3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/PlanetScope.Full.Archive\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        }\\n\n        \\     },\\n      \\\"links\\\": [\\n        {\\n          \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/PlanetScope.Full.Archive\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"root\\\",\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\": \\\"application/json\\\",\\n\n        \\         \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"title\\\":\n        \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://www.planet.com/products/#satellite-imagery\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Planet products\n        - Catalogue\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://earth.esa.int/eogateway/documents/20142/37627/Planet-combined-imagery-product-specs-2020.pdf?text=Combined-Imagery-Product-Spec.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"Planet Imagery\n        Product Specifications - Product Specifications\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://developers.planet.com/docs/apps/explorer/\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"Planet Explorer\n        User Guide - User Manual\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://www.planet.com/explorer/\\\",\\n          \\\"type\\\":\n        \\\"text/html\\\",\\n          \\\"title\\\": \\\"Planet Explorer Catalogue - Catalogue\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\":\n        \\\"https://earth.esa.int/eogateway/documents/20142/37627/Access-to-ESAs-Planet-Missions-Terms-of-Applicability.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"Planet Terms\n        of Applicability - Access Guide\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://esatellus.service-now.com/csp?id=esa_simple_request\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Get Help? - ESA\n        Earth Observation User Services Portal\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?httpAccept=application/rdf%2Bxml;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?httpAccept=text/turtle;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for ESA/ESRIN\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/PlanetScope\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for PlanetScope platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/94314806-9c68-521a-87e2-8cd838eb9de0\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for PlanetScope Camera instrument\\\"\\n\n        \\       }\\n      ],\\n      \\\"id\\\": \\\"PlanetScope.Full.Archive\\\",\\n      \\\"updated\\\":\n        \\\"2023-06-13T13:23:41Z\\\",\\n      \\\"providers\\\": [\\n        {\\n          \\\"roles\\\":\n        [\\\"producer\\\"],\\n          \\\"name\\\": \\\"ESA/ESRIN\\\",\\n          \\\"url\\\": \\\"http://www.esa.int\\\"\\n\n        \\       },\\n        {\\n          \\\"roles\\\": [\\\"host\\\"],\\n          \\\"name\\\":\n        \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\": \\\"https://emc.spacebel.be/readme.html\\\"\\n\n        \\       }\\n      ],\\n      \\\"summaries\\\": {\\n        \\\"instruments\\\": [\\\"PlanetScope\n        Camera\\\"],\\n        \\\"platform\\\": [\\\"PlanetScope\\\"]\\n      }\\n    },\\n    {\\n\n        \\     \\\"extent\\\": {\\n        \\\"spatial\\\": {\\\"bbox\\\": [[\\n          -10,\\n\n        \\         30,\\n          50,\\n          80\\n        ]]},\\n        \\\"temporal\\\":\n        {\\\"interval\\\": [[\\n          \\\"2019-02-01T00:00:00.000Z\\\",\\n          null\\n\n        \\       ]]}\\n      },\\n      \\\"stac_version\\\": \\\"1.0.0\\\",\\n      \\\"keywords\\\":\n        [\\n        \\\"Europe\\\",\\n        \\\"Zone of Exclusivity\\\",\\n        \\\"Agriculture\\\",\\n\n        \\       \\\"Soil Moisture\\\",\\n        \\\"Energy and Natural Resources\\\",\\n        \\\"Terrestrial\n        Hydrosphere\\\",\\n        \\\"EARTH SCIENCE > AGRICULTURE\\\",\\n        \\\"EARTH\n        SCIENCE > AGRICULTURE > SOILS > SOIL MOISTURE/WATER CONTENT\\\",\\n        \\\"EARTH\n        SCIENCE > HUMAN DIMENSIONS > ECONOMIC RESOURCES\\\",\\n        \\\"EARTH SCIENCE\n        > TERRESTRIAL HYDROSPHERE\\\",\\n        \\\"L-Band (19.4 - 76.9 cm)\\\",\\n        \\\"Sun-synchronous\\\",\\n\n        \\       \\\"High Resolution - HR (5 - 20 m)\\\",\\n        \\\"Medium Resolution\n        - MR (20 - 500 m)\\\",\\n        \\\"620 km\\\",\\n        \\\"14-66 km (beam dependent)\n        for stripmap 108-235 km (beam dependent) for topsar\\\",\\n        \\\"Imaging\n        Radars\\\",\\n        \\\"SAOCOM-1A\\\",\\n        \\\"SAOCOM-1B\\\",\\n        \\\"SAOCOM-SAR\\\"\\n\n        \\     ],\\n      \\\"created\\\": \\\"2021-10-27T00:00:00.00Z\\\",\\n      \\\"description\\\":\n        \\\"This collection provides access to the SAOCOM products acquired in the ASI\n        Zone of Exclusivity, that correspond mainly to the European territory plus\n        the international waters in front of North Africa and the Middle East, archived\n        and catalogued in the ASI/CONAE dissemination system.\\\",\\n      \\\"type\\\":\n        \\\"Collection\\\",\\n      \\\"title\\\": \\\"SAOCOM data products\\\",\\n      \\\"license\\\":\n        \\\"various\\\",\\n      \\\"assets\\\": {\\n        \\\"metadata_ogc_17_069r3\\\": {\\n\n        \\         \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/SAOCOM.data.products\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/SAOCOM.data.products?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/SAOCOM.data.products?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/SAOCOM.data.products?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/SAOCOM.data.products?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/SAOCOM.data.products?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/SAOCOM.data.products?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        }\\n\n        \\     },\\n      \\\"links\\\": [\\n        {\\n          \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/SAOCOM.data.products\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"root\\\",\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\": \\\"application/json\\\",\\n\n        \\         \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"title\\\":\n        \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://www.asi.it/en/earth-science/saocom/\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"ASI SAOCOM portal\n        - Web site\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"http://saocom.asi.it:8081/\\\",\\n          \\\"type\\\": \\\"text/html\\\",\\n\n        \\         \\\"title\\\": \\\"ASI SAOCOM Data Hub - Catalogue\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://www.asi.it/wp-content/uploads/2021/07/SAOCOM-membership-guide-1.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"Membership\n        guide - User Guide\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://catalogos.conae.gov.ar/catalogo/docs/SAOCOM/SAOCOM-1_SAR_Level-1_Product-Format_13Jan2020.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"Level1 Products\n        Format - Product Specification\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://esatellus.service-now.com/csp?id=esa_simple_request\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Get Help? - ESA\n        Earth Observation User Services Portal\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/SAOCOM.data.products?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/SAOCOM.data.products?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/SAOCOM.data.products?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/SAOCOM.data.products?httpAccept=application/rdf%2Bxml;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/SAOCOM.data.products?httpAccept=text/turtle;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for ESA/ESRIN\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/SAOCOM-1A\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for SAOCOM-1A platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/SAOCOM-1B\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for SAOCOM-1B platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/a0042d58-dc4b-5cca-ab2a-d849b4db3e73\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for SAOCOM-SAR instrument\\\"\\n        }\\n\n        \\     ],\\n      \\\"id\\\": \\\"SAOCOM.data.products\\\",\\n      \\\"updated\\\": \\\"2023-06-13T13:23:42Z\\\",\\n\n        \\     \\\"providers\\\": [\\n        {\\n          \\\"roles\\\": [\\\"producer\\\"],\\n\n        \\         \\\"name\\\": \\\"ESA/ESRIN\\\",\\n          \\\"url\\\": \\\"https://www.esa.int\\\"\\n\n        \\       },\\n        {\\n          \\\"roles\\\": [\\\"host\\\"],\\n          \\\"name\\\":\n        \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\": \\\"https://emc.spacebel.be/readme.html\\\"\\n\n        \\       }\\n      ],\\n      \\\"summaries\\\": {\\n        \\\"instruments\\\": [\\\"SAOCOM-SAR\\\"],\\n\n        \\       \\\"platform\\\": [\\n          \\\"SAOCOM-1A\\\",\\n          \\\"SAOCOM-1B\\\"\\n\n        \\       ]\\n      }\\n    },\\n    {\\n      \\\"extent\\\": {\\n        \\\"spatial\\\":\n        {\\\"bbox\\\": [[\\n          -180,\\n          -90,\\n          180,\\n          90\\n\n        \\       ]]},\\n        \\\"temporal\\\": {\\\"interval\\\": [[\\n          \\\"2020-07-09T00:00:00.000Z\\\",\\n\n        \\         null\\n        ]]}\\n      },\\n      \\\"stac_version\\\": \\\"1.0.0\\\",\\n\n        \\     \\\"keywords\\\": [\\n        \\\"Level 2C assisted wind fields assimilation\n        processing\\\",\\n        \\\"Atmosphere\\\",\\n        \\\"Atmospheric Indicators\\\",\\n\n        \\       \\\"Atmospheric Winds\\\",\\n        \\\"Climate\\\",\\n        \\\"EARTH SCIENCE\n        > ATMOSPHERE\\\",\\n        \\\"EARTH SCIENCE > ATMOSPHERE > ATMOSPHERIC WINDS\\\",\\n\n        \\       \\\"EARTH SCIENCE > CLIMATE INDICATORS\\\",\\n        \\\"UV (0.01 - 0.4\n        \\xB5m)\\\",\\n        \\\"Sun-synchronous\\\",\\n        \\\"Horizontal resolution at\n        observation scale for Rayleigh/Mie: 87/10 km 250-2000 m vertical resolution\\\",\\n\n        \\       \\\"ALD_U_N_2C\\\",\\n        \\\"320 km\\\",\\n        \\\"Lidar/Laser Sounders\\\",\\n\n        \\       \\\"Aeolus\\\",\\n        \\\"ALADIN\\\"\\n      ],\\n      \\\"created\\\": \\\"2023-02-17T00:00:00.00Z\\\",\\n\n        \\     \\\"description\\\": \\\"The Level 2C wind product of the Aeolus mission provides\n        ECMWF analysis horizontal wind vectors at the geolocations of assimilated\n        L2B HLOS wind components.  The L2C can therefore be described as an Aeolus-assisted\n        horizontal wind vector product. The L2C is a distinct product, however the\n        L2C and L2B share a common Earth Explorer file template, with the L2C being\n        a superset of the L2B.  The L2C consists of extra datasets appended to the\n        L2B product with information which are relevant to the data assimilation of\n        the L2B winds.\\\",\\n      \\\"type\\\": \\\"Collection\\\",\\n      \\\"title\\\": \\\"Aeolus\n        Level 2C assisted wind fields resulting from NWP Numerical Weather Prediction\n        assimilation processing\\\",\\n      \\\"license\\\": \\\"various\\\",\\n      \\\"assets\\\":\n        {\\n        \\\"metadata_ogc_17_069r3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/L2C_Wind_products\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/L2C_Wind_products?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/L2C_Wind_products?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/L2C_Wind_products?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/L2C_Wind_products?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/L2C_Wind_products?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/L2C_Wind_products?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        }\\n\n        \\     },\\n      \\\"links\\\": [\\n        {\\n          \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/L2C_Wind_products\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"root\\\",\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\": \\\"application/json\\\",\\n\n        \\         \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"title\\\":\n        \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://earth.esa.int/eogateway/documents/20142/37627/Aeolus-Level2-Algorithm-Theoretical-Basis-Document.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"Aeolus L2B\n        Algorithm Theoretical Baseline Document - Level 2B processor algorithm description\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\":\n        \\\"https://earth.esa.int/eogateway/documents/20142/37627/Aeolus-L2B-2C-Input-Output-DD-ICD.pdf/2321b6a0-27d0-b628-771e-fcca4928bc32\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"Aeolus L2B/2C\n        Processor Input/Output Data Definitions Interface Control Document - Level\n        2B/2C data definition\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://earth.esa.int/eogateway/documents/20142/37627/Aeolus-Sensor-and-Product-Description.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"Aeolus Sensor\n        and Product Description - Aeolus Sensor and Product Description\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://esatellus.service-now.com/csp?id=esa_simple_request\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Get Help? - ESA\n        Earth Observation User Services Portal\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/L2C_Wind_products?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/L2C_Wind_products?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/L2C_Wind_products?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/L2C_Wind_products?httpAccept=application/rdf%2Bxml;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/L2C_Wind_products?httpAccept=text/turtle;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for ESA/ESRIN\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/Aeolus\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for Aeolus platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/a032cde6-16e3-5940-988e-f6d79870d14c\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for ALADIN instrument\\\"\\n        }\\n\n        \\     ],\\n      \\\"id\\\": \\\"L2C_Wind_products\\\",\\n      \\\"updated\\\": \\\"2023-06-13T13:23:39Z\\\",\\n\n        \\     \\\"providers\\\": [\\n        {\\n          \\\"roles\\\": [\\\"producer\\\"],\\n\n        \\         \\\"name\\\": \\\"ESA/ESRIN\\\",\\n          \\\"url\\\": \\\"http://www.esa.int\\\"\\n\n        \\       },\\n        {\\n          \\\"roles\\\": [\\\"host\\\"],\\n          \\\"name\\\":\n        \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\": \\\"https://emc.spacebel.be/readme.html\\\"\\n\n        \\       }\\n      ],\\n      \\\"summaries\\\": {\\n        \\\"instruments\\\": [\\\"ALADIN\\\"],\\n\n        \\       \\\"platform\\\": [\\\"Aeolus\\\"]\\n      }\\n    },\\n    {\\n      \\\"extent\\\":\n        {\\n        \\\"spatial\\\": {\\\"bbox\\\": [[\\n          -180,\\n          -84,\\n          180,\\n\n        \\         84\\n        ]]},\\n        \\\"temporal\\\": {\\\"interval\\\": [[\\n          \\\"2013-11-13T00:00:00.000Z\\\",\\n\n        \\         null\\n        ]]}\\n      },\\n      \\\"stac_version\\\": \\\"1.0.0\\\",\\n\n        \\     \\\"keywords\\\": [\\n        \\\"World\\\",\\n        \\\"Planet\\\",\\n        \\\"Land\n        Surface\\\",\\n        \\\"Mapping and Cartography\\\",\\n        \\\"Natural Hazards\n        and Disaster Risk\\\",\\n        \\\"EARTH SCIENCE > LAND SURFACE\\\",\\n        \\\"EARTH\n        SCIENCE > HUMAN DIMENSIONS > NATURAL HAZARDS\\\",\\n        \\\"VIS (0.40 - 0.75\n        \\xB5m)\\\",\\n        \\\"NIR (0.75 - 1.30 \\xB5m)\\\",\\n        \\\"Sun-synchronous\\\",\\n\n        \\       \\\"Very High Resolution - VHR (0 - 5m)\\\",\\n        \\\"475-575 km\\\",\\n\n        \\       \\\"8 km at nadir for SkySat-1 to -2, 6.6 km at nadir for SkySat-3 to\n        -13\\\",\\n        \\\"Imaging Spectrometers/Radiometers\\\",\\n        \\\"SkySat\\\",\\n\n        \\       \\\"SkySat Camera\\\"\\n      ],\\n      \\\"created\\\": \\\"2019-08-09T00:00:00.00Z\\\",\\n\n        \\     \\\"description\\\": \\\"The SkySat Level 2B Basic Scene, Level 3B Ortho Scene\n        and Level 3B Consolidated full archive and new tasking products are available\n        as part of Planet imagery offer.  The SkySat Basic Scene product is uncalibrated\n        and in a raw digital number format, not corrected for any geometric distortions\n        inherent in the imaging process. Rational Polynomial Coefficients (RPCs) is\n        provided to enable orthorectification by the user.  Basic Scene Product Components\n        and Format  Processing levels\\\\t/\\\\t- Analytic (unorthorectified, radiometrically\n        corrected, multispectral BGRN); - Analytic DN (unorthorectified, multispectral\n        BGRN); - Panchromatic DN (unorthorectified, panchromatic)\\\\t// Product Components\n        and Format\\\\t/\\\\t- Image File (GeoTIFF format); - Metadata File (JSON format);\n        - Rational Polynomial Coefficients (Text File); - UDM File (GeoTIFF format)\\\\t//\n        Image configuration\\\\t/\\\\t- 4-band Analytic DN Image (Blue, Green, Red, NIR);\n        - 1-band Panchromatic DN Image (Pan)\\\\t// Ground Sampling Distance\\\\t/\\\\t3.7\n        m at nadir (average at reference altitude 475 km)\\\\t// Ground Sampling Distance\n        (nadir)\\\\t/\\\\t- Panchromatic 0.86m and Multispectral 1.0m for SkySat-1&amp;2;\n        - Panchromatic 0.65m and Multispectral 0.8m for SkySat-3 to 13 (0.72 m and\n        1.0m for data acquired before 30/06/2020)\\\\t// Accuracy\\\\t/\\\\t&lt;50 m RMSE\\\\t//\n        \\ The SkySat Ortho Scene is sensor- and geometrically-corrected (by using\n        DEMs with a post spacing of between 30 and 90 meters) and is projected to\n        a cartographic map projection; the accuracy of the product will vary from\n        region to region based on available GCPs. Different products are available:\n        \\ - The SkySat Visual Ortho Scene product is orthorectified, pansharpened,\n        and color-corrected (using a color curve) 3-band RGB Imagery - The SkySat\n        Pansharpened Multispectral Scene product is orthorectified, pansharpened 4-band\n        BGRN Imagery - The SkySat Analytic DN Ortho Scene product is orthorectified,\n        multispectral BGRN, uncalibrated, digital number imagery product. The product\n        has been processed to remove distortions caused by terrain; It eliminates\n        the perspective effect on the ground (not on buildings), restoring the geometry\n        of a vertical shot. Transformation to at-sensor radiance is not included -\n        The SkySat Panchromatic DN Ortho Scene product is orthorectified, panchromatic,\n        uncalibrated, digital number imagery product. It has a finer GSD than the\n        Analytic Product. Transformation to at-sensor radiance is not included. -\n        The SkySat Analytic Ortho Scene are calibrated multispectral imagery products\n        with radiometric corrections applied to correct for any sensor artifacts and\n        transformation to top-of-atmosphere radiance. - The SkySat Consolidated Product\n        are Ortho Collect product created by composing ~60 SkySat Ortho Scenes (Visual,\n        Pansharpened Multispectral, Analytic DN, Panchromatic DN) along an imaging\n        strip into segments.  Ortho Scene Product Components and Format  \\\\t/\\\\tVisual\n        Ortho\\\\t/\\\\tPansharpened Multispectral\\\\t/\\\\tAnalytic DN Ortho\\\\t/\\\\tPanchromatic\n        DN Ortho\\\\t/\\\\tAnalytic Ortho\\\\t// Product Components and Format\\\\t/\\\\tImage\n        File (GeoTIFF format); Metadata File (JSON format); Rational Polynomial Coefficients\n        (Text File); UDM File (GeoTIFF format)\\\\t/\\\\tImage File (GeoTIFF); Metadata\n        File (JSON format); Rational Polynomial Coefficients (Text File); UDM File\n        (GeoTIFF format)\\\\t/\\\\tImage File (GeoTIFF format); Metadata File (JSON format);\n        Rational Polynomial Coefficients (Text File); UDM File (GeoTIFF format);\\\\t/\\\\tImage\n        File (GeoTIFF format); Metadata File (JSON format); Rational Polynomial Coefficients\n        (Text File); UDM File (GeoTIFF format)\\\\t/\\\\tImage File (GeoTIFF format);\n        Metadata File (JSON format); Rational Polynomial Coefficients (Text File);\n        UDM File (GeoTIFF format)\\\\t// Image configuration\\\\t/\\\\t3-band Pansharpened\n        Image (PS Red, PS Green, PS Blue)\\\\t/\\\\t4-band Pansharpened Image (PS Blue,\n        PS Green, PS Red, PS NIR)\\\\t/\\\\t4-band Analytic DN Image (B, G, R, N)\\\\t/\\\\t1-band\n        Panchromatic Image\\\\t/\\\\t4-band Analytic Image (B, G, R, N)\\\\t// Ground Sampling\n        Distance\\\\t/\\\\t50 cm\\\\t/\\\\t50 cm\\\\t/\\\\t50 cm\\\\t/\\\\t50 cm\\\\t/\\\\t50 cm\\\\t//\n        Projection\\\\t/\\\\tUTM WGS84\\\\t/\\\\tUTM WGS84\\\\t/\\\\tUTM WGS84\\\\t/\\\\tUTM WGS84\\\\t/\\\\tUTM\n        WGS84\\\\t// Accuracy\\\\t/\\\\t&lt;10 m RMSE\\\\t/\\\\t&lt;10 m RMSE\\\\t/\\\\t&lt;10 m\n        RMSE\\\\t/\\\\t&lt;10 m RMSE\\\\t/\\\\tradiometric accuracy: +/- 5% Relative accuracy\n        at &lt; 10 degrees off-nadir angle\\\\t//  The products are available as part\n        of the Planet provision from RapidEye, Skysat and PlanetScope constellations.\n        SkySat collection has worldwide coverage: The Planet Explorer Catalogue can\n        be accessed (Planet registration requested) to discover and check the data\n        readiness.  All details about the data provision, data access conditions and\n        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\n        \\     \\\"type\\\": \\\"Collection\\\",\\n      \\\"title\\\": \\\"SkySat Full Archive and\n        New Tasking\\\",\\n      \\\"license\\\": \\\"various\\\",\\n      \\\"assets\\\": {\\n        \\\"metadata_ogc_17_069r3\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/SkySat.Full.Archive.and.New.Tasking\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/SkySat.Full.Archive.and.New.Tasking?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/SkySat.Full.Archive.and.New.Tasking?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/SkySat.Full.Archive.and.New.Tasking?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/SkySat.Full.Archive.and.New.Tasking?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/SkySat.Full.Archive.and.New.Tasking?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/SkySat.Full.Archive.and.New.Tasking?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        }\\n\n        \\     },\\n      \\\"links\\\": [\\n        {\\n          \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/SkySat.Full.Archive.and.New.Tasking\\\",\\n\n        \\         \\\"type\\\": \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"root\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\",\\n          \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n\n        \\         \\\"title\\\": \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\":\n        \\\"https://www.planet.com/products/#satellite-imagery\\\",\\n          \\\"type\\\":\n        \\\"text/html\\\",\\n          \\\"title\\\": \\\"Planet products - Web site\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://earth.esa.int/eogateway/documents/20142/37627/Planet-combined-imagery-product-specs-2020.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"Planet Imagery\n        Product Specifications - Product Specifications\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://developers.planet.com/docs/apps/explorer/\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"Planet Explorer\n        User Guide - User Manual\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://earth.esa.int/eogateway/documents/20142/37627/SkySat-tasking-request-form.pdf/075f845e-13bd-36e2-4743-3aeb2053c61c\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"SkySat Tasking\n        Request Form - Access guide\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\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\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"Planet Terms\n        of Applicability - Access guide\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://esatellus.service-now.com/csp?id=esa_simple_request\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Get Help? - ESA\n        Earth Observation User Services Portal\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/SkySat.Full.Archive.and.New.Tasking?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/SkySat.Full.Archive.and.New.Tasking?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/SkySat.Full.Archive.and.New.Tasking?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for ESA/ESRIN\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/SkySat\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for SkySat platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/429a0634-46aa-518a-ac92-b5bcec0315d4\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for SkySat Camera instrument\\\"\\n        }\\n\n        \\     ],\\n      \\\"id\\\": \\\"SkySat.Full.Archive.and.New.Tasking\\\",\\n      \\\"updated\\\":\n        \\\"2023-06-13T13:23:42Z\\\",\\n      \\\"providers\\\": [\\n        {\\n          \\\"roles\\\":\n        [\\\"producer\\\"],\\n          \\\"name\\\": \\\"ESA/ESRIN\\\",\\n          \\\"url\\\": \\\"https://www.esa.int\\\"\\n\n        \\       },\\n        {\\n          \\\"roles\\\": [\\\"host\\\"],\\n          \\\"name\\\":\n        \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\": \\\"https://emc.spacebel.be/readme.html\\\"\\n\n        \\       }\\n      ],\\n      \\\"summaries\\\": {\\n        \\\"instruments\\\": [\\\"SkySat\n        Camera\\\"],\\n        \\\"platform\\\": [\\\"SkySat\\\"]\\n      }\\n    },\\n    {\\n      \\\"extent\\\":\n        {\\n        \\\"spatial\\\": {\\\"bbox\\\": [[\\n          -180,\\n          -90,\\n          180,\\n\n        \\         90\\n        ]]},\\n        \\\"temporal\\\": {\\\"interval\\\": [[\\n          \\\"2009-08-01T00:00:00.000Z\\\",\\n\n        \\         null\\n        ]]}\\n      },\\n      \\\"stac_version\\\": \\\"1.0.0\\\",\\n\n        \\     \\\"keywords\\\": [\\n        \\\"World\\\",\\n        \\\"GEOSAT\\\",\\n        \\\"DIMAP\\\",\\n\n        \\       \\\"TIFF\\\",\\n        \\\"Vegetation\\\",\\n        \\\"Agriculture\\\",\\n        \\\"Forestry\\\",\\n\n        \\       \\\"EARTH SCIENCE > BIOSPHERE > VEGETATION\\\",\\n        \\\"EARTH SCIENCE\n        > AGRICULTURE\\\",\\n        \\\"EARTH SCIENCE > BIOSPHERE > ECOSYSTEMS > TERRESTRIAL\n        ECOSYSTEMS > FORESTS\\\",\\n        \\\"VIS (0.40 - 0.75 \\xC2\\xB5m)\\\",\\n        \\\"NIR\n        (0.75 - 1.30 \\xC2\\xB5m)\\\",\\n        \\\"Sun-synchronous\\\",\\n        \\\"Medium\n        Resolution - MR (20 - 500 m)\\\",\\n        \\\"663 km\\\",\\n        \\\"625 km\\\",\\n\n        \\       \\\"Cameras\\\",\\n        \\\"GEOSAT-1\\\",\\n        \\\"SLIM6\\\"\\n      ],\\n\n        \\     \\\"created\\\": \\\"2019-05-22T00:00:00.00Z\\\",\\n      \\\"description\\\": \\\"GEOSAT-1\n        full archive and new tasking products are available at 22 m resolution in\n        two processing levels.\\\\r\\\\rL1R (Basic Geopositioned): All 3 spectral channels\n        combined into a band-registered image. Geopositioned product based on sensor\n        model. Coefficients derived from satellite orientation parameters coming from\n        telemetry and appended to metadata\\\\rL1T (L1R orthorectified): Orthorectified\n        to sub-pixel accuracy (10 metres RMS error approximately) with respect to\n        Landsat ETM+ reference data and hole-filled seamless SRTM DEM data V3, 2006\n        (90 m)\\\\rGEOSAT-1 products are provided in DIMAP format. The image products\n        are delivered in the TIFF and GeoTIFF image formats by default. All products\n        can be provided in False Colours (R,G,NIR) or Natural Colours (R, G, Synthetic\n        Blue).\\\\r\\\\rAll details about the data provision, data access conditions and\n        quota assignment procedure are described into the Terms of Applicability available\n        in Resources section.\\\\r\\\\rThe list of available archived data can be retrieved\n        using the GEOSAT catalogue (https://catalogue.geosat.space/cscda/extcat/)\\\\rAll\n        details about the data provision, data access conditions and quota assignment\n        procedure are described into the Terms of Applicability available in Resources\n        section. \\\\r\\\\rThe list of available archived data can be retrieved using\n        the Deimos catalogue (http://www.deimos-imaging.com/catalogue).\\\",\\n      \\\"type\\\":\n        \\\"Collection\\\",\\n      \\\"title\\\": \\\"GEOSAT-1 full archive and tasking\\\",\\n\n        \\     \\\"license\\\": \\\"various\\\",\\n      \\\"assets\\\": {\\n        \\\"metadata_ogc_17_069r3\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/Geosat-1.Full.archive.and.tasking\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/Geosat-1.Full.archive.and.tasking?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/Geosat-1.Full.archive.and.tasking?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/Geosat-1.Full.archive.and.tasking?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/Geosat-1.Full.archive.and.tasking?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/Geosat-1.Full.archive.and.tasking?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/Geosat-1.Full.archive.and.tasking?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        }\\n\n        \\     },\\n      \\\"links\\\": [\\n        {\\n          \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/Geosat-1.Full.archive.and.tasking\\\",\\n\n        \\         \\\"type\\\": \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"root\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\",\\n          \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n\n        \\         \\\"title\\\": \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/Geosat-1.Full.archive.and.tasking?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/Geosat-1.Full.archive.and.tasking?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/Geosat-1.Full.archive.and.tasking?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for ESA/ESRIN\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/GEOSAT-1\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for GEOSAT-1 platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/5cc6eaab-0ddc-572f-a1b7-afa52ea5333d\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for SLIM6 instrument\\\"\\n        }\\n\n        \\     ],\\n      \\\"id\\\": \\\"Geosat-1.Full.archive.and.tasking\\\",\\n      \\\"updated\\\":\n        \\\"2023-06-13T13:23:40Z\\\",\\n      \\\"providers\\\": [\\n        {\\n          \\\"roles\\\":\n        [\\\"producer\\\"],\\n          \\\"name\\\": \\\"ESA/ESRIN\\\",\\n          \\\"url\\\": \\\"https://earth.esa.int\\\"\\n\n        \\       },\\n        {\\n          \\\"roles\\\": [\\\"host\\\"],\\n          \\\"name\\\":\n        \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\": \\\"https://emc.spacebel.be/readme.html\\\"\\n\n        \\       }\\n      ],\\n      \\\"summaries\\\": {\\n        \\\"instruments\\\": [\\\"SLIM6\\\"],\\n\n        \\       \\\"platform\\\": [\\\"GEOSAT-1\\\"]\\n      }\\n    },\\n    {\\n      \\\"extent\\\":\n        {\\n        \\\"spatial\\\": {\\\"bbox\\\": [[\\n          -180,\\n          -90,\\n          180,\\n\n        \\         90\\n        ]]},\\n        \\\"temporal\\\": {\\\"interval\\\": [[\\n          \\\"2016-06-01T00:00:00.000Z\\\",\\n\n        \\         null\\n        ]]}\\n      },\\n      \\\"stac_version\\\": \\\"1.0.0\\\",\\n\n        \\     \\\"keywords\\\": [\\n        \\\"World\\\",\\n        \\\"GNSS\\\",\\n        \\\"AIS\\\",\\n\n        \\       \\\"ADS-B\\\",\\n        \\\"Atmosphere\\\",\\n        \\\"Ionosphere and Magnetosphere\n        Dynamics\\\",\\n        \\\"Weather Events\\\",\\n        \\\"Oceans\\\",\\n        \\\"EARTH\n        SCIENCE > ATMOSPHERE\\\",\\n        \\\"EARTH SCIENCE > SUN-EARTH INTERACTIONS\n        > IONOSPHERE/MAGNETOSPHERE DYNAMICS\\\",\\n        \\\"EARTH SCIENCE > ATMOSPHERE\n        > WEATHER EVENTS\\\",\\n        \\\"EARTH SCIENCE > OCEANS\\\",\\n        \\\"Sun-synchronous\\\",\\n\n        \\       \\\"500 km\\\",\\n        \\\"Imaging Spectrometers/Radiometers\\\",\\n        \\\"Spire\\\",\\n\n        \\       \\\"AIRSAFE\\\",\\n        \\\"SENSE\\\",\\n        \\\"STRATOS\\\"\\n      ],\\n\n        \\     \\\"created\\\": \\\"2020-09-04T00:00:00.00Z\\\",\\n      \\\"description\\\": \\\"The\n        data collected by Spire from it&apos;s 110 satellites launched into Low Earth\n        Orbit (LEO) has a diverse range of applications, from analysis of global trade\n        patterns and commodity flows to aircraft routing to weather forecasting. The\n        data also provides interesting research opportunities on topics as varied\n        as ocean currents and GNSS-based planetary boundary layer height.  The following\n        products can be requested:  ADS-B Data Stream Global ADS-B satellite data\n        observed by Spire satellites and processed through the ground stations network.\n        Historical ADS-B data older than 6 months can be delivered as data cuts containing\n        CSV file(s) accessible through a Web Service or Cloud storage solutions. Live\n        ADS-B data is available through a streaming API, and recent historical data\n        can be accessed through a REST API. Data is distributed as a monthly subscription:\n        historical data can be requested starting from 3 December 2008, the time period\n        for live data starts from a user-defined date and continues for 30 days.  AIS\n        AIS messages include satellite AIS (S-AIS) as observed by Spire satellites\n        and terrestrial AIS (T-AIS) from third party sensor stations (up to 40 million\n        messages per day). Historical AIS data are delivered as a cvs file with availability\n        back to June 2016 or via Historical API from December 2018; live AIS data\n        are pushed to end users via TCP or through Messages API. Data is distributed\n        as a monthly subscription, from a user-defined date and continues for a 30\n        day period.  GNSS-Radio Occultation GNSS Radio Occultation (GNSS-RO) measurements\n        are collected globally on a continuous basis, generating profiles of the Earth\\\\u2019s\n        atmosphere. Derived Level 1 and Level 2 products include both atmospheric\n        and ionospheric products. Historical data for most of the GNSS-RO products\n        are available from December 2018 to the present. Near real-time (within 90\n        minutes or less latency from collection to delivery) GNSS-RO profiles are\n        also available upon request.  GNSS Reflectometry GNSS Reflectometry (GNSS-R)\n        is a technique to measure Earth\\\\u2019s surface properties using reflections\n        of GNSS signals in the form of a bistatic radar. Spire collects two types\n        of GNSS-R data: conventional, near-nadir incidence LHCP reflections collected\n        by the Spire GNSS-R satellites (e.g., Spire GNSS-R \\\\u201cBatch-1\\\\u201d satellites)\n        and grazing angle (i.e., low elevation angle) RHCP reflections collected by\n        the Spire GNSS-RO satellites. Derived Level 1 and Level 2 products are available,\n        as well as some special Level 0 raw intermediate frequency (IF) data. Historical\n        grazing angle GNSS-R data are available from May 2019 to the present, while\n        conventional GNSS-R data are available from December 2020 to the present.\n        \\ Name: Automatic Identification System (AIS) Description: The automatic identification\n        system (AIS) is an automatic tracking system that uses transponders on ships\n        and is used by vessel traffic services. Spire data includes satellite AIS\n        (S-AIS) as observed by Spire satellites and terrestrial AIS (T-AIS) from third\n        party sensor stations. Data format and content: .parquet.gz files The AIS\n        files contain time-series data on received AIS messages, both the raw NMEA\n        message and added post-processing data for each message. Application: Supply\n        chain analysis, commodity trading, identification of illegal fishing or dark\n        targets, ship route and fuel use optimization, analysis of global trade patterns,\n        anti-piracy, autonomous vessel software, ocean currents.  Name: Automatic\n        Dependent Surveillance-Broadcast (ADS-B) Description: Spire AirSafe ADS-B\n        products give  access to satellite and terrestrial ADS-B data from captured\n        aircrafts. Data format and content: .csv.gz files The decompressed csv file\n        contains a list of hexadecimal representations of ADS-B messages associated\n        with the timestamp they were received on the satellite. Application: Fleet\n        management, ICAO regulatory compliance, route optimization, predictive maintenance,\n        global airspace, domain awareness.  Name: Global Navigation Satellite System\n        Radio Occultation (GNSS-RO) Description: GNSS atmospheric radio occultation\n        (GNSS-RO) relies on the detection of a change in a radio signal as it passes\n        through a planet&apos;s atmosphere, i.e. as it is refracted by the atmosphere.\n        This data set contains precise orbit determination (POD) solutions, satellite\n        attitude information, high-rate occultation observations, excess phase, and\n        derived atmospheric dry temperature profiles. Data format and content: podObs*.rnx\n        This file contains raw pseudorange, carrier phase, Doppler frequency, and\n        signal-to-noise measurements for each observed GPS signal from a single Spire\n        satellite which allow to estimate the positions and velocities of each Spire\n        satellite and also used to derive ionospheric total electron content data.\n        leoOrb*.sp3 This file contains the estimated position, velocity and receiver\n        clock error of a given Spire satellite after processing of the POD observation\n        file leoAtt*.log It contains 1 Hz rate quaternion information measured from\n        a single Spire satellite describing the satellite orientation. opnGns*ro.bin,\n        opnGns*rst.bin these files contain raw measurements from the occulting GNSS\n        satellite (one for each signal frequency) and raw phase data from one or more\n        reference GNSS satellites. atmPhs* The file contains occultation excess phase\n        delay. Also contains SNR values, ransmitter and receiver positions and open\n        loop model information. atmPrf*.nc The file contains profiles of atmospheric\n        dry pressure, dry temperature and neutral refractivity as a function of altitude\n        produced from full processing of one occultation event. bfrPrf*.bufr The file\n        contains derived profiles of dry pressure, dry temperature, refractivity and\n        bending angle for each occultation. Application:\\\\tAtmospheric profiles of\n        pressure, dry temperature, bending angle, and refractivity used in numerical\n        weather prediction data assimilation and climate change studies.  Name: Raw\n        IF samples from GNSS-RO satellites Description: Raw intermediate frequency\n        (IF) sampled data (I/Q) from the GNSS receiver front-end of GNSS-RO satellites.\n        Data format and content: rocRIF*.zip Binary raw IF data and associated ancillary\n        data (e.g., POD data) in a zip archive per collection event. Application:\n        GNSS-RO studies, GNSS RFI and jamming monitoring, research.  Name: Raw IF\n        samples from GNSS-R satellites Description: Raw intermediate frequency (IF)\n        sampled data (I/Q) from the GNSS receiver front-end of conventional GNSS-R\n        satellites. Data format and content: gbrRIF*.zip Binary raw IF data and associated\n        ancillary data (e.g., POD data) in a zip archive per collection event. Application:\n        GNSS-R studies, GNSS RFI and jamming monitoring, research, etc.  Name: Grazing\n        angle GNSS-R observations Description: During grazing angle GNSS-R events,\n        signal reflection at two frequencies is observed through the limb-facing antenna\n        and is trackedusing an open-loop tracking technique thatrelies on a model\n        topredict the propagationdelay and Doppler of thereflected signal. Simultaneous\n        open-looptracking of the signaldirectly along theline-of-sight from thetransmitter\n        to thereceiver is alsoperformed to provideadditional data that maybenecessary\n        for signalcalibration. The mainoutput of the open-looptracking are in-phase\n        (I)and quadrature (Q)accumulation samples(nominally at 50 Hz),which represent\n        the residual Doppler (phase) from the model. Data format and content: grzObs*.nc\n        L1A filecontains rawopen loopcarrier phasemeasurementsat 50 Hzsampling forgrazingangleGNSS-Rreflectionscaptured\n        in the GNSS-RO RHC Pantennas, (bothdirect andreflectedsignals) on GNSS-RO\n        satellites. Application: Sea surface and sea ice height extent, and classification.\n        \\ Name: Georeferenced grazing angle GNSS-R observations Description: The low-levelobservations\n        of the high-rate grazing angle GNSS-R observationsbut withthegeoreferenced\n        bistatic radar parameters of the satellite receiver,specular reflection, and\n        GNSS transmitter included. Data format and content: grzRfl*.nc L1B file contains\n        the georeferenced grazing angle GNSS-R data collected by Spire GNSS-RO satellites,\n        including the low-level observables and bistatic radar geometries (e.g., receiver,\n        specular reflection, and the transmitter locations). Application: Sea surface\n        and sea ice height extent, and classification  Name: GNSS-R calibrated bistatic\n        radar reflectivities Description: Higher level product used to derive land-surface\n        reflectivity. Data format and content: gbrRfl*.nc L1A along-track calibrated\n        relative power between reflected and direct signals (e.g., bistatic radar\n        reflectivities) measured by Spire conventional GNSS-R satellites. Application:\n        GNSS-R studies, soil moisture, ocean wind, and sea ice applications  Name:\n        GNSS-R calibrated bistatic radar cross-sections Description: Higher level\n        product used to derive ocean surface roughness products. Data format and content:\n        gbrRCS*.nc L1B along-track calibrated and normalized bistatic radar cross-sections\n        measured by Spire conventional GNSS-R satellites. Application: GNSS-R studies,\n        ocean wind and sea ice applications  Name: Combined Surface Soil Moisture\n        Description: Combined CYGNSS and SMAP soil moisture data are provided as a\n        combined surface soil moisture (COMB-SSM) product in two data level formats:\n        L2U1 and L3U1. 6 x 6 km grid cell. L-band measurements of surface soil moisture\n        benefit from better vegetation penetration in comparison to traditional C-band\n        measurements. Data format and content: COMB-SSM.nc This file contains the\n        combined data product containing measurements from both CYGNSS and SMAP reported\n        on a 6 km global Equi7Grid grid. Application: Agriculture, crop insurance,\n        farming solutions, climatology, terrain awareness, peatlands and wetlands\n        monitoring etc.  Name: Ionosphere total electron content Description: Spire\n        routinely collects and processes a large volume of total electron content\n        (TEC) data, representing the line-of-sight integration of electron density\n        between a Spire satellite and a GNSS satellite. Each file contains line-of-sight\n        ionospheric total electron content (TEC) estimates derived for a \\\\u2018single\n        viewing arc\\\\u2019 contained in the POD observation file. Viewing arcs are\n        at least 10 minutes in duration. Data format and content: podTec*.nc This\n        file contains the line-of-sight total electron content with associated orbital\n        information. Application: Space weather research, tsunamigenic earthquakes,\n        weather applications, space situational awareness (SSA), autonomous vehicles\n        etc  Name: Ionosphere scintillation Description: The scintillation index for\n        each GNSS frequency is computed onboard the spacecraft. This index provides\n        a measure of the fluctuations of the GNSS signal over the course of 10 seconds\n        caused by propagation of the radio signals through electron density irregularities\n        in the ionosphere. After the raw indices are downlinked to the ground, they\n        are packaged along with associated metadata such as orbit position to create\n        the final scintillation data product. Data format and content: scnLv1*.nc\n        This file contains on-board computed scintillation data (S4 only) with associated\n        orbital information Application: Space weather research, solar events, TIDs,\n        weather applications positioning and navigation, communications etc.  Name:\n        Electron density profile Description: Electron density profiles are retrieved\n        as a function of altitude. Electron density profiles are processed from podTec\n        netcdf files, which span a sufficient elevation angle range. A standard Abel\n        inversion algorithm is applied to retrieve the profiles. Data format and content:\n        ionPrf*.nc This file contains electron density profile retrieved from podTec\n        files spanning appropriate elevation angle range Application: Space weather\n        research, solar events, TIDs, weather applications positioning and navigation,\n        communications.  The products are available as part of the Spire provision\n        with worldwide coverage.  All details about the data provision, data access\n        conditions and quota assignment procedure are described in the Terms of Applicability\n        (https://earth.esa.int/eogateway/documents/20142/37627/SPIRE-Terms-Of-Applicability.pdf/0dd8b3e8-05fe-3312-6471-a417c6503639).\\\",\\n\n        \\     \\\"type\\\": \\\"Collection\\\",\\n      \\\"title\\\": \\\"Spire live and historical\n        data\\\",\\n      \\\"license\\\": \\\"various\\\",\\n      \\\"assets\\\": {\\n        \\\"metadata_ogc_17_069r3\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/Spire.live.and.historical.data\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/Spire.live.and.historical.data?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/Spire.live.and.historical.data?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/Spire.live.and.historical.data?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/Spire.live.and.historical.data?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/Spire.live.and.historical.data?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/Spire.live.and.historical.data?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        }\\n\n        \\     },\\n      \\\"links\\\": [\\n        {\\n          \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/Spire.live.and.historical.data\\\",\\n\n        \\         \\\"type\\\": \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"root\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\",\\n          \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n\n        \\         \\\"title\\\": \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\":\n        \\\"https://earth.esa.int/eogateway/documents/20142/37627/Spire-Product-Guide.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"Spire Product\n        Guide - Product Description\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://earth.esa.int/eogateway/documents/20142/37627/SPIRE-Terms-Of-Applicability.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"Spire Terms\n        of Applicability - Access Guide\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://esatellus.service-now.com/csp?id=esa_simple_request\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Get Help? - ESA\n        Earth Observation User Services Portal\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/Spire.live.and.historical.data?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/Spire.live.and.historical.data?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/Spire.live.and.historical.data?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for ESA/ESRIN\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/Spire\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for Spire platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/1c3bd49f-bdc9-5c33-a273-2f0f7a5b3f88\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for STRATOS instrument\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/e5735a20-bdb8-5cff-b385-c16c84c855f4\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for SENSE instrument\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/11f58510-1770-53a7-9b13-5a5564b4e9c2\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for AIRSAFE instrument\\\"\\n        }\\n\n        \\     ],\\n      \\\"id\\\": \\\"Spire.live.and.historical.data\\\",\\n      \\\"updated\\\":\n        \\\"2023-06-13T13:23:42Z\\\",\\n      \\\"providers\\\": [\\n        {\\n          \\\"roles\\\":\n        [\\\"producer\\\"],\\n          \\\"name\\\": \\\"ESA/ESRIN\\\",\\n          \\\"url\\\": \\\"http://www.esa.int\\\"\\n\n        \\       },\\n        {\\n          \\\"roles\\\": [\\\"host\\\"],\\n          \\\"name\\\":\n        \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\": \\\"https://emc.spacebel.be/readme.html\\\"\\n\n        \\       }\\n      ],\\n      \\\"summaries\\\": {\\n        \\\"instruments\\\": [\\n\n        \\         \\\"STRATOS\\\",\\n          \\\"SENSE\\\",\\n          \\\"AIRSAFE\\\"\\n        ],\\n\n        \\       \\\"platform\\\": [\\\"Spire\\\"]\\n      }\\n    },\\n    {\\n      \\\"extent\\\":\n        {\\n        \\\"spatial\\\": {\\\"bbox\\\": [[\\n          -180,\\n          -90,\\n          180,\\n\n        \\         90\\n        ]]},\\n        \\\"temporal\\\": {\\\"interval\\\": [[\\n          \\\"2012-10-01T00:00:00.000Z\\\",\\n\n        \\         null\\n        ]]}\\n      },\\n      \\\"stac_version\\\": \\\"1.0.0\\\",\\n\n        \\     \\\"keywords\\\": [\\n        \\\"World\\\",\\n        \\\"Multispectral\\\",\\n        \\\"Panchromatic\\\",\\n\n        \\       \\\"Pansharpened\\\",\\n        \\\"Pleiades\\\",\\n        \\\"Agriculture\\\",\\n\n        \\       \\\"Afforestation/Reforestation\\\",\\n        \\\"Crops and Yields\\\",\\n\n        \\       \\\"Forest Fires\\\",\\n        \\\"Landscape\\\",\\n        \\\"Topography\\\",\\n\n        \\       \\\"Weather Events\\\",\\n        \\\"EARTH SCIENCE > AGRICULTURE\\\",\\n        \\\"EARTH\n        SCIENCE > AGRICULTURE > FOREST SCIENCE > AFFORESTATION/REFORESTATION\\\",\\n\n        \\       \\\"EARTH SCIENCE > AGRICULTURE > AGRICULTURAL PLANT SCIENCE > CROP/PLANT\n        YIELDS\\\",\\n        \\\"EARTH SCIENCE > AGRICULTURE > FOREST SCIENCE > FOREST\n        FIRE SCIENCE\\\",\\n        \\\"EARTH SCIENCE > LAND SURFACE > LANDSCAPE\\\",\\n        \\\"EARTH\n        SCIENCE > LAND SURFACE > TOPOGRAPHY\\\",\\n        \\\"EARTH SCIENCE > ATMOSPHERE\n        > WEATHER EVENTS\\\",\\n        \\\"VIS (0.40 - 0.75 \\xB5m)\\\",\\n        \\\"NIR (0.75\n        - 1.30 \\xB5m)\\\",\\n        \\\"SWIR (1.3 - 3.0 \\xB5m)\\\",\\n        \\\"Sun-synchronous\\\",\\n\n        \\       \\\"Very High Resolution - VHR (0 - 5m)\\\",\\n        \\\"High Resolution\n        - HR (5 - 20 m)\\\",\\n        \\\"832 km for SPOT-1 to 5, 694 km for SPOT-6 and\n        7\\\",\\n        \\\"60 km\\\",\\n        \\\"Cameras\\\",\\n        \\\"SPOT 6\\\",\\n        \\\"SPOT\n        7\\\",\\n        \\\"NAOMI\\\"\\n      ],\\n      \\\"created\\\": \\\"2019-07-16T00:00:00.00Z\\\",\\n\n        \\     \\\"description\\\": \\\"The SPOT 6 and 7 satellites ensure data continuity\n        with the no longer operational SPOT 5 satellite and provide an archive of\n        very high resolution optical acquisition as well as the possibility to task\n        the satellites for new acquisitions. Following the completion of the SPOT\n        7 mission in March 2023, new acquisition tasking is only available for the\n        SPOT 6 satellite.  The ortho-products are automatically generated by the SPOT\n        6 and 7 ground segment, based on SRTM database or Reference3D when available.\n        The projection available for SPOT 6 and 7 ortho-products is UTM, datum WGS84.\n        \\ Bands combinations: - Pansharpened: colour image at 1.5 m resolution - Bundle:\n        1.5 m panchromatic image and 6 m multispectral image  Geometric processing\n        levels: - Primary: The Primary product is the processing level closest to\n        the natural image acquired by the sensor. This product restores perfect collection\n        conditions: the sensor is placed in rectilinear geometry, and the image is\n        clear of all radiometric distortion. - Standard Ortho: The Ortho product is\n        a georeferenced image in Earth geometry, corrected from acquisition and terrain\n        off-nadir effects. - Tailored ortho: Aside from the Standard Ortho product,\n        when different specifications are needed, a custom orthorectification, with\n        a more precise 3D model provided by the client or acquired for the purpose,\n        can be provided on demand.\\\",\\n      \\\"type\\\": \\\"Collection\\\",\\n      \\\"title\\\":\n        \\\"SPOT 6 &amp; 7 full archive and tasking\\\",\\n      \\\"license\\\": \\\"various\\\",\\n\n        \\     \\\"assets\\\": {\\n        \\\"metadata_ogc_17_069r3\\\": {\\n          \\\"roles\\\":\n        [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        }\\n\n        \\     },\\n      \\\"links\\\": [\\n        {\\n          \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"root\\\",\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\": \\\"application/json\\\",\\n\n        \\         \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"title\\\":\n        \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://www.intelligence-airbusds.com/satellite-data/\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"SPOT-6 to 7 products\n        description - Other\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"http://www.intelligence-airbusds.com/spotmaps/\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"SPOTMaps technical\n        information - Other\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://earth.esa.int/eogateway/documents/20142/1586698/SPOTMaps2.5.kmz\\\",\\n\n        \\         \\\"title\\\": \\\"SPOTMaps 2.5 geographical coverage - Other\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://earth.esa.int/eogateway/documents/20142/37627/SPOT-6-7-imagery-user-guide.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"SPOT 6&7\n        Imagery User Guide - Product Specification\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://www.intelligence-airbusds.com/imagery/constellation/pleiades-neo/how-to-order/\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"OneAtlas guides\n        - Data Access Information\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://www.intelligence-airbusds.com/en/4871-geostore-ordering\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"GeoStore Catalogue\n        - Catalogue\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://oneatlas.airbus.com/\\\",\\n          \\\"type\\\":\n        \\\"text/html\\\",\\n          \\\"title\\\": \\\"OneAtlas Living Library - Catalogue\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\":\n        \\\"https://earth.esa.int/eogateway/documents/20142/37627/SPOT-Pleiades-data-terms-of-applicability.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"SPOT and\n        Pleiades Terms of Applicability - Access Guide\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://esatellus.service-now.com/csp?id=esa_simple_request\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Get Help? - ESA\n        Earth Observation User Services Portal\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1?httpAccept=application/rdf%2Bxml;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\\\",\\n\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1?httpAccept=text/turtle;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1?httpAccept=text/turtle;profile=http://data.europa.eu/930/\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for ESA/ESRIN\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/SPOT%206\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for SPOT 6 platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/SPOT%207\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for SPOT 7 platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/ec73a747-76a7-56f1-a011-0465a3ed4a87\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for NAOMI instrument\\\"\\n        }\\n\n        \\     ],\\n      \\\"id\\\": \\\"SPOT67fullarchiveandtasking1\\\",\\n      \\\"updated\\\":\n        \\\"2023-06-13T13:23:42Z\\\",\\n      \\\"providers\\\": [\\n        {\\n          \\\"roles\\\":\n        [\\\"producer\\\"],\\n          \\\"name\\\": \\\"ESA/ESRIN\\\",\\n          \\\"url\\\": \\\"https://www.esa.int\\\"\\n\n        \\       },\\n        {\\n          \\\"roles\\\": [\\\"host\\\"],\\n          \\\"name\\\":\n        \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\": \\\"https://emc.spacebel.be/readme.html\\\"\\n\n        \\       }\\n      ],\\n      \\\"summaries\\\": {\\n        \\\"instruments\\\": [\\\"NAOMI\\\"],\\n\n        \\       \\\"platform\\\": [\\n          \\\"SPOT 6\\\",\\n          \\\"SPOT 7\\\"\\n        ]\\n\n        \\     }\\n    }\\n  ],\\n  \\\"numberReturned\\\": 10,\\n  \\\"links\\\": [\\n    {\\n      \\\"rel\\\":\n        \\\"self\\\",\\n      \\\"href\\\": \\\"https://emc.spacebel.be/collections?datetime=2024-01-01T00%3A00%3A01Z%2F2024-01-01T00%3A00%3A10Z\\\",\\n\n        \\     \\\"type\\\": \\\"application/json\\\",\\n      \\\"title\\\": \\\"This document\\\"\\n\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\n        \\     \\\"type\\\": \\\"application/json\\\",\\n      \\\"title\\\": \\\"Next results\\\"\\n\n        \\   },\\n    {\\n      \\\"rel\\\": \\\"http://www.opengis.net/def/rel/ogc/1.0/queryables\\\",\\n\n        \\     \\\"href\\\": \\\"https://emc.spacebel.be/collections/queryables\\\",\\n      \\\"type\\\":\n        \\\"application/schema+json\\\",\\n      \\\"title\\\": \\\"Queryables for collection\n        search\\\"\\n    }\\n  ],\\n  \\\"numberMatched\\\": 1025\\n}\"\n    headers:\n      Access-Control-Allow-Headers:\n      - X-PINGOTHER, Content-Type, Authorization, Accept\n      Access-Control-Allow-Methods:\n      - POST,GET,PUT,HEAD,OPTIONS,DELETE\n      Access-Control-Allow-Origin:\n      - '*'\n      Cache-Control:\n      - no-cache, no-store, max-age=0, must-revalidate\n      Connection:\n      - keep-alive\n      Content-Type:\n      - application/json;charset=UTF-8\n      Date:\n      - Thu, 31 Jul 2025 15:08:09 GMT\n      Expires:\n      - '0'\n      Pragma:\n      - no-cache\n      Server:\n      - openresty\n      Strict-Transport-Security:\n      - max-age=31536000 ; includeSubDomains\n      Transfer-Encoding:\n      - chunked\n      X-Content-Type-Options:\n      - nosniff\n      X-Frame-Options:\n      - DENY\n      X-Served-By:\n      - emc.spacebel.be\n      X-XSS-Protection:\n      - 1; mode=block\n    status:\n      code: 200\n      message: ''\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://emc.spacebel.be/collections?datetime=2024-01-01T00%3A00%3A01Z%2F2024-01-01T00%3A00%3A10Z&startRecord=11\n  response:\n    body:\n      string: \"{\\n  \\\"collections\\\": [\\n    {\\n      \\\"extent\\\": {\\n        \\\"spatial\\\":\n        {\\\"bbox\\\": [[\\n          -180,\\n          -90,\\n          180,\\n          90\\n\n        \\       ]]},\\n        \\\"temporal\\\": {\\\"interval\\\": [[\\n          \\\"2020-04-20T00:00:00.000Z\\\",\\n\n        \\         null\\n        ]]}\\n      },\\n      \\\"stac_version\\\": \\\"1.0.0\\\",\\n\n        \\     \\\"keywords\\\": [\\n        \\\"global\\\",\\n        \\\"tropics\\\",\\n        \\\"polar\n        regions\\\",\\n        \\\"atmospheric winds\\\",\\n        \\\"atmospheric dynamic\\\",\\n\n        \\       \\\"troposphere\\\",\\n        \\\"stratosphere\\\",\\n        \\\"air quality\\\",\\n\n        \\       \\\"mie\\\",\\n        \\\"rayleigh\\\",\\n        \\\"clouds\\\",\\n        \\\"aerosols\\\",\\n\n        \\       \\\"wind profiles\\\",\\n        \\\"weather\\\",\\n        \\\"climate\\\",\\n        \\\"weather\n        forecast\\\",\\n        \\\"Atmospheric Winds\\\",\\n        \\\"Atmospheric Indicators\\\",\\n\n        \\       \\\"EARTH SCIENCE > ATMOSPHERE > ATMOSPHERIC WINDS\\\",\\n        \\\"UV\n        (0.01 - 0.4 \\xB5m)\\\",\\n        \\\"Sun-synchronous\\\",\\n        \\\"Horizontal\n        resolution at measurement scale: 3 km; Horizontal resolution at observation\n        scale for Rayleigh/Mie: 87/10 km\\\",\\n        \\\"250-2000 m vertical resolution\\\",\\n\n        \\       \\\"ALD_U_N_1B\\\",\\n        \\\"320 km\\\",\\n        \\\"Lidar/Laser Sounders\\\",\\n\n        \\       \\\"Aeolus\\\",\\n        \\\"ALADIN\\\"\\n      ],\\n      \\\"created\\\": \\\"2020-04-30T00:00:00.00Z\\\",\\n\n        \\     \\\"description\\\": \\\"The Level 1B wind product of the Aeolus mission contains\n        the preliminary HLOS (horizontal line-of-sight) wind observations for Rayleigh\n        and Mie receivers, which are generated in Near Real Time. Standard atmospheric\n        correction (Rayleigh channel), receiver response and bias correction is applied.\n        The product is generated within 3 hours after data acquisition.\\\",\\n      \\\"type\\\":\n        \\\"Collection\\\",\\n      \\\"title\\\": \\\"Aeolus preliminary HLOS (horizontal line-of-sight)\n        wind observations for Rayleigh and Mie receivers\\\",\\n      \\\"license\\\": \\\"various\\\",\\n\n        \\     \\\"assets\\\": {\\n        \\\"metadata_ogc_17_069r3\\\": {\\n          \\\"roles\\\":\n        [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/L1B_Wind_Products\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/L1B_Wind_Products?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/L1B_Wind_Products?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/L1B_Wind_Products?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/L1B_Wind_Products?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/L1B_Wind_Products?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/L1B_Wind_Products?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        }\\n\n        \\     },\\n      \\\"links\\\": [\\n        {\\n          \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/L1B_Wind_Products\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"root\\\",\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\": \\\"application/json\\\",\\n\n        \\         \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"title\\\":\n        \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://earth.esa.int/eogateway/documents/20142/37627/Aeolus-Sensor-and-Product-Description.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"Aeolus Sensor\n        and Product Description - Aeolus Sensor and Product Description\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://esatellus.service-now.com/csp?id=esa_simple_request\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Get Help? - ESA\n        Earth Observation User Services Portal\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/L1B_Wind_Products?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/L1B_Wind_Products?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/L1B_Wind_Products?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/L1B_Wind_Products?httpAccept=application/rdf%2Bxml;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/L1B_Wind_Products?httpAccept=text/turtle;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for ESA/ESRIN\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/Aeolus\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for Aeolus platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/a032cde6-16e3-5940-988e-f6d79870d14c\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for ALADIN instrument\\\"\\n        }\\n\n        \\     ],\\n      \\\"id\\\": \\\"L1B_Wind_Products\\\",\\n      \\\"updated\\\": \\\"2023-06-15T11:50:19Z\\\",\\n\n        \\     \\\"providers\\\": [\\n        {\\n          \\\"roles\\\": [\\\"producer\\\"],\\n\n        \\         \\\"name\\\": \\\"ESA/ESRIN\\\",\\n          \\\"url\\\": \\\"http://www.esa.int\\\"\\n\n        \\       },\\n        {\\n          \\\"roles\\\": [\\\"host\\\"],\\n          \\\"name\\\":\n        \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\": \\\"https://emc.spacebel.be/readme.html\\\"\\n\n        \\       }\\n      ],\\n      \\\"summaries\\\": {\\n        \\\"instruments\\\": [\\\"ALADIN\\\"],\\n\n        \\       \\\"platform\\\": [\\\"Aeolus\\\"]\\n      }\\n    },\\n    {\\n      \\\"extent\\\":\n        {\\n        \\\"spatial\\\": {\\\"bbox\\\": [[\\n          -180,\\n          -90,\\n          180,\\n\n        \\         90\\n        ]]},\\n        \\\"temporal\\\": {\\\"interval\\\": [[\\n          \\\"2010-04-08T00:00:00.000Z\\\",\\n\n        \\         null\\n        ]]}\\n      },\\n      \\\"stac_version\\\": \\\"1.0.0\\\",\\n\n        \\     \\\"sci:doi\\\": \\\"10.5270/CR2-120cf4c\\\",\\n      \\\"keywords\\\": [\\n        \\\"World\\\",\\n\n        \\       \\\"DIF10\\\",\\n        \\\"Ice Product\\\",\\n        \\\"ice-sheet elevation\\\",\\n\n        \\       \\\"sea-ice freeboard\\\",\\n        \\\"altimeter\\\",\\n        \\\"Oceans\\\",\\n\n        \\       \\\"EARTH SCIENCE > OCEANS\\\",\\n        \\\"Snow and Ice\\\",\\n        \\\"EARTH\n        SCIENCE > CRYOSPHERE > SNOW/ICE\\\",\\n        \\\"EARTH SCIENCE > TERRESTRIAL\n        HYDROSPHERE > SNOW/ICE\\\",\\n        \\\"Inclined, non-sun-synchronous\\\",\\n        \\\"FDM\\\",\\n\n        \\       \\\"LRM\\\",\\n        \\\"SAR\\\",\\n        \\\"SARIn\\\",\\n        \\\"GRD\\\",\\n\n        \\       \\\"GOP\\\",\\n        \\\"IOP\\\",\\n        \\\"Radar Altimeters\\\",\\n        \\\"CryoSat-2\\\",\\n\n        \\       \\\"SIRAL\\\"\\n      ],\\n      \\\"created\\\": \\\"2019-06-04T00:00:00.000Z\\\",\\n\n        \\     \\\"description\\\": \\\"CryoSat's primary payload is the SAR/Interferometric\n        Radar Altimeter (SIRAL) (https://earth.esa.int/eogateway/instruments/siral)\n        which has extended capabilities to meet the measurement requirements for ice-sheet\n        elevation and sea-ice freeboard.  CryoSat also carries three star trackers\n        for measuring the orientation of the baseline. In addition, a radio receiver\n        called Doppler Orbit and Radio Positioning Integration by Satellite (DORIS)\n        and a small laser retroreflector ensures that CryoSat's position will be accurately\n        tracked.  More detailed information on CryoSat instruments is available on\n        the CryoSat mission page.  The following CryoSat datasets are available and\n        distributed to registered users:  Level 1B and L2 Ice products: FDM, LRM,\n        SAR and SARIn Consolidated Level 2 (GDR): (LRM+SAR+SARIN) consolidated ice\n        products over an orbit Intermediate Level 2 Ice products: LRM, SAR and SARIn\n        L1b and L2 Ocean Products: GOP and IOP CryoTEMPO EOLIS Point Products CryoTEMPO\n        EOLIS Gridded Products  Detailed information concerning each of the above\n        datasets is available in the CryoSat Products Overview (https://earth.esa.int/eogateway/missions/cryosat/products)\n        and in the news item: CryoSat Ocean Products now open to scientific community\n        (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).\n        \\ CryoSat Level 1B altimetric products contain time and geo-location information\n        as well as SIRAL measurements in engineering units. Calibration corrections\n        are included and have been applied to the window delay computations. In Offline\n        products, geophysical corrections are computed from Analysis Auxiliary Data\n        Files (ADFs), whereas in FDM products corrections are computed for Forecast\n        ADFs. All corrections are included in the data products and therefore the\n        range can be calculated by taking into account the surface type.  The Offline\n        Level 2 LRM, SAR and SARIn ice altimetric products are generated 30 days after\n        data acquisition and are principally dedicated to glaciologists working on\n        sea-ice and land-ice areas. The Level 2 FDM products are near-real time ocean\n        products, generated 2-3 hours after data acquisition, and fulfill the needs\n        of some ocean operational services. Level 2 products contain the time of measurement,\n        the geo-location and the height of the surface.  IOP and GOP are outputs of\n        the CryoSat Ocean Processor. These products are dedicated to the study of\n        ocean surfaces, and provided specifically for the needs of the oceanographic\n        community. IOP are generated 2-3 days after data sensing acquisition and use\n        the DORIS Preliminary Orbit. GOP are typically generated 30 days after data\n        sensing acquisition and use the DORIS Precise Orbit. Geophysical corrections\n        are computed from the Analysis ADFs, however following the oceanographic convention\n        the corrections are available but not directly applied to the range (as for\n        FDM).  The CryoSat ThEMatic PrOducts (Cryo-TEMPO) projects aim to deliver\n        a new  paradigm of simplified, harmonized, and agile CryoSat-2 products, that\n        are  easily accessible to new communities of non-altimeter experts and end\n        users. The Cryo-TEMPO datasets include dedicated products over five thematic\n        areas, covering Sea Ice, Land Ice, Polar Ocean, Coastal Ocean and Inland Water,\n        together with a novel SWATH product (CryoTEMPO-EOLIS) that exploits CryoSat's\n        SARIn mode over ice sheet margins. The standard Cryo-TEMPO products include\n        fully-traceable uncertainties and use rapidly evolving, state-of-the-art processing\n        dedicated to each thematic area. Throughout the project, the  products will\n        be constantly evolved, and validated by a group of Thematic Users, thus ensuring\n        optimal relevance and impact for the intended target  communities. More information\n        on the Cryo-TEMPO products can be found on the Project Website (http://cryosat.mssl.ucl.ac.uk/tempo/index.html).\n        The CryoTEMPO-EOLIS swath product exploits CryoSat's SARIn mode and the novel\n        Swath processing technique to deliver increased spatial and temporal coverage\n        of time-dependent elevation over land ice, a critical metric for tracking\n        ice mass trends in support to a wide variety of end-users. The CryoTEMPO-EOLIS\n        swath product exploits CryoSat's SARIn mode and the novel Swath processing\n        technique to deliver increased spatial and temporal coverage of time-dependent\n        elevation over land ice, a critical metric for tracking ice mass trends in\n        support to a wide variety of end-users.The dataset consists of systematic\n        reprocessing of the entire CryoSat archive to generate new L2-Swath products,\n        increasing data sampling by 1 to 2 orders of magnitude compared with the operational\n        L2 ESA product. In addition, the EOLIS dataset is joined with the ESA L2 Point-Of-Closest-Approach\n        to generate monthly DEM (Digital Elevation Model) products. This dataset will\n        further the ability of the community to analyse and understand trends across\n        the Greenland Ice Sheet margin, Antarctica and several mountain glaciers and\n        ice caps around the world.\\\",\\n      \\\"type\\\": \\\"Collection\\\",\\n      \\\"title\\\":\n        \\\"CryoSat products\\\",\\n      \\\"license\\\": \\\"various\\\",\\n      \\\"assets\\\":\n        {\\n        \\\"search\\\": {\\n          \\\"roles\\\": [\\\"search\\\"],\\n          \\\"href\\\":\n        \\\"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=CryoSat.products\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Search client\\\"\\n\n        \\       },\\n        \\\"offering_2\\\": {\\n          \\\"roles\\\": [\\\"http://www.opengis.net/spec/owc-geojson/1.0/req/wms#GetMap\\\"],\\n\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\n        \\         \\\"title\\\": \\\"GetMap\\\",\\n          \\\"type\\\": \\\"image/png\\\"\\n        },\\n\n        \\       \\\"offering_1\\\": {\\n          \\\"roles\\\": [\\\"http://www.opengis.net/spec/owc-geojson/1.0/req/wms#GetCapabilities\\\"],\\n\n        \\         \\\"href\\\": \\\"https://eovoc.spacebel.be/geoserver/wms?service=WMS&version=1.1.1&request=GetCapabilities\\\",\\n\n        \\         \\\"title\\\": \\\"GetCapabilities\\\",\\n          \\\"type\\\": \\\"application/xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_069r3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/CryoSat.products\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/CryoSat.products?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/CryoSat.products?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/CryoSat.products?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/CryoSat.products?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/CryoSat.products?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/CryoSat.products?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        }\\n\n        \\     },\\n      \\\"links\\\": [\\n        {\\n          \\\"rel\\\": \\\"cite-as\\\",\\n\n        \\         \\\"href\\\": \\\"https://doi.org/10.5270/CR2-120cf4c\\\",\\n          \\\"type\\\":\n        \\\"text/html\\\",\\n          \\\"title\\\": \\\"Landing page\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/CryoSat.products\\\",\\n\n        \\         \\\"type\\\": \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"root\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\",\\n          \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n\n        \\         \\\"title\\\": \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"items\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/CryoSat.products/items?httpAccept=application/geo%2Bjson;profile=https://stacspec.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json\\\",\\n          \\\"title\\\": \\\"Datasets\n        search for the series CryoSat.products\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"http://www.opengis.net/def/rel/ogc/1.0/queryables\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/CryoSat.products/queryables\\\",\\n          \\\"type\\\":\n        \\\"application/schema+json\\\",\\n          \\\"title\\\": \\\"Queryables for CryoSat.products\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"search\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/series/items/CryoSat.products/api\\\",\\n\n        \\         \\\"type\\\": \\\"application/opensearchdescription+xml\\\",\\n          \\\"title\\\":\n        \\\"OpenSearch Description Document\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://esatellus.service-now.com/csp?id=esa_simple_request\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Get Help? - ESA\n        Earth Observation User Services Portal\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/CryoSat.products?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/CryoSat.products?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/CryoSat.products?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/CryoSat.products?httpAccept=application/rdf%2Bxml;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/CryoSat.products?httpAccept=text/turtle;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/CryoSat.products?httpAccept=text/turtle;profile=http://data.europa.eu/930/\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"wms:transparent\\\": true,\\n          \\\"rel\\\": \\\"wms\\\",\\n          \\\"wms:dimensions\\\":\n        {\\\"version\\\": \\\"1.1.1\\\"},\\n          \\\"href\\\": \\\"https://eovoc.spacebel.be/geoserver/wms\\\",\\n\n        \\         \\\"type\\\": \\\"image/png\\\",\\n          \\\"title\\\": \\\"CryoSat.products\\\",\\n\n        \\         \\\"wms:layers\\\": [\\\"Density:CryoSat.products\\\"],\\n          \\\"wms:styles\\\":\n        [\\\"Magma\\\"]\\n        },\\n        {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\\\",\\n          \\\"title\\\":\n        \\\"More collections for ESA/ESRIN\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/CryoSat-2\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for CryoSat-2 platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/ba530a28-c2ba-5a34-b71e-678d316e936f\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for SIRAL instrument\\\"\\n        }\\n\n        \\     ],\\n      \\\"id\\\": \\\"CryoSat.products\\\",\\n      \\\"updated\\\": \\\"2023-11-09T11:03:42Z\\\",\\n\n        \\     \\\"stac_extensions\\\": [\\n        \\\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\\\",\\n\n        \\       \\\"https://stac-extensions.github.io/web-map-links/v1.2.0/schema.json\\\"\\n\n        \\     ],\\n      \\\"providers\\\": [\\n        {\\n          \\\"roles\\\": [\\\"producer\\\"],\\n\n        \\         \\\"name\\\": \\\"ESA/ESRIN\\\",\\n          \\\"url\\\": \\\"http://www.esa.int\\\"\\n\n        \\       },\\n        {\\n          \\\"roles\\\": [\\\"host\\\"],\\n          \\\"name\\\":\n        \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\": \\\"https://emc.spacebel.be/readme.html\\\"\\n\n        \\       }\\n      ],\\n      \\\"summaries\\\": {\\n        \\\"instruments\\\": [\\\"SIRAL\\\"],\\n\n        \\       \\\"platform\\\": [\\\"CryoSat-2\\\"]\\n      }\\n    },\\n    {\\n      \\\"extent\\\":\n        {\\n        \\\"spatial\\\": {\\\"bbox\\\": [[\\n          -180,\\n          -84,\\n          180,\\n\n        \\         84\\n        ]]},\\n        \\\"temporal\\\": {\\\"interval\\\": [[\\n          \\\"2016-02-29T00:00:00.000Z\\\",\\n\n        \\         null\\n        ]]}\\n      },\\n      \\\"stac_version\\\": \\\"1.0.0\\\",\\n\n        \\     \\\"keywords\\\": [\\n        \\\"DIF10\\\",\\n        \\\"Land Surface\\\",\\n        \\\"EARTH\n        SCIENCE > LAND SURFACE\\\",\\n        \\\"Mapping and Cartography\\\",\\n        \\\"Natural\n        Hazards and Disaster Risk\\\",\\n        \\\"EARTH SCIENCE > HUMAN DIMENSIONS >\n        NATURAL HAZARDS\\\",\\n        \\\"Sun-synchronous\\\",\\n        \\\"VIS (0.40 - 0.75\n        \\xB5m)\\\",\\n        \\\"NIR (0.75 - 1.30 \\xB5m)\\\",\\n        \\\"Very High Resolution\n        - VHR (0 - 5m)\\\",\\n        \\\"SSC_DEF_SC, SSC_DEF_CO\\\",\\n        \\\"475-575\n        km\\\",\\n        \\\"8 km at nadir for SkySat-1 to -2, 6.6 km at nadir for SkySat-3\n        to -13\\\",\\n        \\\"Imaging Spectrometers/Radiometers\\\",\\n        \\\"SkySat\\\",\\n\n        \\       \\\"SkySat Camera\\\"\\n      ],\\n      \\\"created\\\": \\\"2022-06-23T00:00:00.000Z\\\",\\n\n        \\     \\\"description\\\": \\\"The SkySat ESA archive collection consists of SkySat\n        products requested by ESA supported projects over their areas of interest\n        around the world and that ESA collected over the years. The dataset regularly\n        grows as ESA collects new SkySat products.  Two different product types are\n        offered, Ground Sampling Distance at nadir up to 65 cm for PAN and up to 0.8m\n        for MS  EO-SIP Product Type Product description Content SSC_DEF_SC Basic and\n        Ortho scene  * Level 1B 4-bands Analytic /DN Basic scene  * Level 1B 4-bands\n        Panchromatic /DN Basic scene  * Level 1A 1-band Panchromatic DN Pre Sup resolution\n        Basic scene  * Level 3B 3-bands Visual Ortho Scene  * Level 3B 4-bands Pansharpened\n        Multispectral Ortho Scene  * Level 3B 4-bands Analytic/DN/SR Ortho Scene  *\n        Level 3B 1-band Panchromatic /DN Ortho Scene SSC_DEF_CO Ortho Collect  * Visual\n        3-band Pansharpened Image  * Multispectral 4-band Pansharpened Image  * Multispectral\n        4-band Analytic/DN/SR Image (B, G, R,N)  * 1-band Panchromatic Image  The\n        Basic Scene product is uncalibrated, not radiometrically corrected for atmosphere\n        or for any geometric distortions inherent in the imaging process \\\\u2022Analytic\n        - unorthorectified, radiometrically corrected, multispectral BGRN \\\\u2022Analytic\n        DN - unorthorectified, multispectral BGRN \\\\u2022Panchromatic - unorthorectified,\n        radiometrically corrected, panchromatic (PAN) \\\\u2022Panchromatic DN - unorthorectified,\n        panchromatic (PAN) \\\\u2022L1A Panchromatic DN - unorthorectified, pre-super\n        resolution, panchromatic (PAN)   The Ortho Scene product is sensor and geometrically\n        corrected, and is projected to a cartographic map projection.  \\\\u2022Visual\n        - orthorectified, pansharpened, and color-corrected (using a color curve)\n        3-band RGB Imagery \\\\u2022Pansharpened Multispectral - orthorectified, pansharpened\n        4-band BGRN Imagery \\\\u2022Analytic SR - orthorectified, multispectral BGRN.\n        Atmospherically corrected Surface Reflectance product. \\\\u2022Analytic - orthorectified,\n        multispectral BGRN. Radiometric corrections applied to correct for any sensor\n        artifacts and transformation to top-of-atmosphere radiance \\\\u2022Analytic\n        DN - orthorectified, multispectral BGRN, uncalibrated digital number imagery\n        product Radiometric corrections applied to correct for any sensor artifacts\n        \\\\u2022Panchromatic - orthorectified, radiometrically correct, panchromatic\n        (PAN) \\\\u2022Panchromatic DN - orthorectified, panchromatic (PAN), uncalibrated\n        digital number imagery product   The Ortho Collect product is created by composing\n        SkySat Ortho Scenes along an imaging strip. The product may contain artifacts\n        resulting from the composing process, particular offsets in areas of stitched\n        source scenes.  Spatial coverage: Check the spatial coverage of the collection\n        on a _$$map$$ https://tpm-ds.eo.esa.int/smcat/SkySat/ available on the Third\n        Party Missions Dissemination Service.\\\",\\n      \\\"type\\\": \\\"Collection\\\",\\n\n        \\     \\\"title\\\": \\\"Skysat ESA archive\\\",\\n      \\\"license\\\": \\\"various\\\",\\n\n        \\     \\\"assets\\\": {\\n        \\\"search\\\": {\\n          \\\"roles\\\": [\\\"search\\\"],\\n\n        \\         \\\"href\\\": \\\"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=SkySatESAarchive\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Search client\\\"\\n\n        \\       },\\n        \\\"offering_2\\\": {\\n          \\\"roles\\\": [\\\"http://www.opengis.net/spec/owc-geojson/1.0/req/wms#GetMap\\\"],\\n\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\n        \\         \\\"title\\\": \\\"GetMap\\\",\\n          \\\"type\\\": \\\"image/png\\\"\\n        },\\n\n        \\       \\\"offering_1\\\": {\\n          \\\"roles\\\": [\\\"http://www.opengis.net/spec/owc-geojson/1.0/req/wms#GetCapabilities\\\"],\\n\n        \\         \\\"href\\\": \\\"https://eovoc.spacebel.be/geoserver/wms?service=WMS&version=1.1.1&request=GetCapabilities\\\",\\n\n        \\         \\\"title\\\": \\\"GetCapabilities\\\",\\n          \\\"type\\\": \\\"application/xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_069r3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/SkySatESAarchive\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/SkySatESAarchive?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/SkySatESAarchive?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/SkySatESAarchive?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/SkySatESAarchive?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/SkySatESAarchive?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/SkySatESAarchive?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        }\\n\n        \\     },\\n      \\\"links\\\": [\\n        {\\n          \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/SkySatESAarchive\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"root\\\",\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\": \\\"application/json\\\",\\n\n        \\         \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"title\\\":\n        \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"items\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/SkySatESAarchive/items?httpAccept=application/geo%2Bjson;profile=https://stacspec.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json\\\",\\n          \\\"title\\\": \\\"Datasets\n        search for the series SkySatESAarchive\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"http://www.opengis.net/def/rel/ogc/1.0/queryables\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/SkySatESAarchive/queryables\\\",\\n          \\\"type\\\":\n        \\\"application/schema+json\\\",\\n          \\\"title\\\": \\\"Queryables for SkySatESAarchive\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"search\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/series/items/SkySatESAarchive/api\\\",\\n\n        \\         \\\"type\\\": \\\"application/opensearchdescription+xml\\\",\\n          \\\"title\\\":\n        \\\"OpenSearch Description Document\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://www.planet.com/products/#satellite-imagery\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Planet products\n        - Catalogue\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://assets.planet.com/docs/Planet_Combined_Imagery_Product_Specs_letter_screen.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"Planet Imagery\n        Product Specifications - Product Specifications\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://esatellus.service-now.com/csp?id=esa_simple_request\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Get Help? - ESA\n        Earth Observation User Services Portal\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/SkySatESAarchive?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/SkySatESAarchive?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/SkySatESAarchive?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/SkySatESAarchive?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/SkySatESAarchive?httpAccept=application/rdf%2Bxml;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/SkySatESAarchive?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\\\",\\n\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/SkySatESAarchive?httpAccept=text/turtle;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/SkySatESAarchive?httpAccept=text/turtle;profile=http://data.europa.eu/930/\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"wms:transparent\\\": true,\\n          \\\"rel\\\": \\\"wms\\\",\\n          \\\"wms:dimensions\\\":\n        {\\\"version\\\": \\\"1.1.1\\\"},\\n          \\\"href\\\": \\\"https://eovoc.spacebel.be/geoserver/wms\\\",\\n\n        \\         \\\"type\\\": \\\"image/png\\\",\\n          \\\"title\\\": \\\"SkySatESAarchive\\\",\\n\n        \\         \\\"wms:layers\\\": [\\\"Density:SkySatESAarchive\\\"],\\n          \\\"wms:styles\\\":\n        [\\\"Turbo\\\"]\\n        },\\n        {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\\\",\\n          \\\"title\\\":\n        \\\"More collections for ESA/ESRIN\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/SkySat\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for SkySat platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/429a0634-46aa-518a-ac92-b5bcec0315d4\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for SkySat Camera instrument\\\"\\n        }\\n\n        \\     ],\\n      \\\"id\\\": \\\"SkySatESAarchive\\\",\\n      \\\"updated\\\": \\\"2023-11-09T17:22:55Z\\\",\\n\n        \\     \\\"stac_extensions\\\": [\\\"https://stac-extensions.github.io/web-map-links/v1.2.0/schema.json\\\"],\\n\n        \\     \\\"providers\\\": [\\n        {\\n          \\\"roles\\\": [\\\"producer\\\"],\\n\n        \\         \\\"name\\\": \\\"ESA/ESRIN\\\",\\n          \\\"url\\\": \\\"http://www.esa.int\\\"\\n\n        \\       },\\n        {\\n          \\\"roles\\\": [\\\"host\\\"],\\n          \\\"name\\\":\n        \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\": \\\"https://emc.spacebel.be/readme.html\\\"\\n\n        \\       }\\n      ],\\n      \\\"summaries\\\": {\\n        \\\"instruments\\\": [\\\"SkySat\n        Camera\\\"],\\n        \\\"platform\\\": [\\\"SkySat\\\"]\\n      }\\n    },\\n    {\\n      \\\"extent\\\":\n        {\\n        \\\"spatial\\\": {\\\"bbox\\\": [[\\n          -180,\\n          -84,\\n          180,\\n\n        \\         84\\n        ]]},\\n        \\\"temporal\\\": {\\\"interval\\\": [[\\n          \\\"2009-02-22T00:00:00.000Z\\\",\\n\n        \\         null\\n        ]]}\\n      },\\n      \\\"stac_version\\\": \\\"1.0.0\\\",\\n\n        \\     \\\"keywords\\\": [\\n        \\\"World\\\",\\n        \\\"DIF10\\\",\\n        \\\"Multispectral\\\",\\n\n        \\       \\\"Planet\\\",\\n        \\\"Land Surface\\\",\\n        \\\"EARTH SCIENCE >\n        LAND SURFACE\\\",\\n        \\\"Mapping and Cartography\\\",\\n        \\\"Natural Hazards\n        and Disaster Risk\\\",\\n        \\\"EARTH SCIENCE > HUMAN DIMENSIONS > NATURAL\n        HAZARDS\\\",\\n        \\\"Sun-synchronous\\\",\\n        \\\"VIS (0.40 - 0.75 \\xB5m)\\\",\\n\n        \\       \\\"NIR (0.75 - 1.30 \\xB5m)\\\",\\n        \\\"High Resolution - HR (5 -\n        20 m)\\\",\\n        \\\"MSI_IMG_3A\\\",\\n        \\\"MSI_IMG_1B\\\",\\n        \\\"630\n        km\\\",\\n        \\\"77 km\\\",\\n        \\\"Imaging Spectrometers/Radiometers\\\",\\n\n        \\       \\\"RapidEye\\\",\\n        \\\"MSI\\\"\\n      ],\\n      \\\"created\\\": \\\"2019-05-23T00:00:00.000Z\\\",\\n\n        \\     \\\"description\\\": \\\"The RapidEye ESA archive is a subset of the RapidEye\n        Full archive that ESA collected over the years. The dataset regularly grows\n        as ESA collects new RapidEye products. Spatial coverage: Check the spatial\n        coverage of the collection on a _$$map$$ https://tpm-ds.eo.esa.int/socat/RapidEye\n        available on the Third Party Missions Dissemination Service.\\\",\\n      \\\"type\\\":\n        \\\"Collection\\\",\\n      \\\"title\\\": \\\"RapidEye ESA archive\\\",\\n      \\\"license\\\":\n        \\\"various\\\",\\n      \\\"assets\\\": {\\n        \\\"search\\\": {\\n          \\\"roles\\\":\n        [\\\"search\\\"],\\n          \\\"href\\\": \\\"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=RapidEye.ESA.archive\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Search client\\\"\\n\n        \\       },\\n        \\\"offering_2\\\": {\\n          \\\"roles\\\": [\\\"http://www.opengis.net/spec/owc-geojson/1.0/req/wms#GetMap\\\"],\\n\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\n        \\         \\\"title\\\": \\\"GetMap\\\",\\n          \\\"type\\\": \\\"image/png\\\"\\n        },\\n\n        \\       \\\"offering_1\\\": {\\n          \\\"roles\\\": [\\\"http://www.opengis.net/spec/owc-geojson/1.0/req/wms#GetCapabilities\\\"],\\n\n        \\         \\\"href\\\": \\\"https://eovoc.spacebel.be/geoserver/wms?service=WMS&version=1.1.1&request=GetCapabilities\\\",\\n\n        \\         \\\"title\\\": \\\"GetCapabilities\\\",\\n          \\\"type\\\": \\\"application/xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_069r3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/RapidEye.ESA.archive\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/RapidEye.ESA.archive?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/RapidEye.ESA.archive?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/RapidEye.ESA.archive?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/RapidEye.ESA.archive?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/RapidEye.ESA.archive?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/RapidEye.ESA.archive?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        }\\n\n        \\     },\\n      \\\"links\\\": [\\n        {\\n          \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/RapidEye.ESA.archive\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"root\\\",\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\": \\\"application/json\\\",\\n\n        \\         \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"title\\\":\n        \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/geo+json\\\",\\n          \\\"title\\\": \\\"Datasets\n        search for the series RapidEye.ESA.archive\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"http://www.opengis.net/def/rel/ogc/1.0/queryables\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/RapidEye.ESA.archive/queryables\\\",\\n\n        \\         \\\"type\\\": \\\"application/schema+json\\\",\\n          \\\"title\\\": \\\"Queryables\n        for RapidEye.ESA.archive\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"search\\\",\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/series/items/RapidEye.ESA.archive/api\\\",\\n\n        \\         \\\"type\\\": \\\"application/opensearchdescription+xml\\\",\\n          \\\"title\\\":\n        \\\"OpenSearch Description Document\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://www.planet.com/products/#satellite-imagery\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Planet products\n        - Catalogue\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://earth.esa.int/eogateway/documents/20142/37627/Planet-combined-imagery-product-specs-2020.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"RapidEye\n        Satellite Image Product Specifications - Product Specifications\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://esatellus.service-now.com/csp?id=esa_simple_request\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Get Help ? - ESA\n        Earth Observation User Services Portal\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/RapidEye.ESA.archive?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/RapidEye.ESA.archive?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/RapidEye.ESA.archive?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/RapidEye.ESA.archive?httpAccept=application/rdf%2Bxml;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/RapidEye.ESA.archive?httpAccept=text/turtle;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"wms:transparent\\\": true,\\n          \\\"rel\\\": \\\"wms\\\",\\n          \\\"wms:dimensions\\\":\n        {\\\"version\\\": \\\"1.1.1\\\"},\\n          \\\"href\\\": \\\"https://eovoc.spacebel.be/geoserver/wms\\\",\\n\n        \\         \\\"type\\\": \\\"image/png\\\",\\n          \\\"title\\\": \\\"RapidEye.ESA.archive\\\",\\n\n        \\         \\\"wms:layers\\\": [\\\"Density:RapidEye.ESA.archive\\\"],\\n          \\\"wms:styles\\\":\n        [\\\"Magma\\\"]\\n        },\\n        {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\\\",\\n          \\\"title\\\":\n        \\\"More collections for ESA/ESRIN\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/RapidEye\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for RapidEye platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/4b332a30-7c95-5fb1-bf55-fb4b10c1565f\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for MSI instrument\\\"\\n        }\\n\n        \\     ],\\n      \\\"id\\\": \\\"RapidEye.ESA.archive\\\",\\n      \\\"updated\\\": \\\"2023-11-10T08:02:35Z\\\",\\n\n        \\     \\\"stac_extensions\\\": [\\\"https://stac-extensions.github.io/web-map-links/v1.2.0/schema.json\\\"],\\n\n        \\     \\\"providers\\\": [\\n        {\\n          \\\"roles\\\": [\\\"producer\\\"],\\n\n        \\         \\\"name\\\": \\\"ESA/ESRIN\\\",\\n          \\\"url\\\": \\\"http://www.esa.int\\\"\\n\n        \\       },\\n        {\\n          \\\"roles\\\": [\\\"host\\\"],\\n          \\\"name\\\":\n        \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\": \\\"https://emc.spacebel.be/readme.html\\\"\\n\n        \\       }\\n      ],\\n      \\\"summaries\\\": {\\n        \\\"instruments\\\": [\\\"MSI\\\"],\\n\n        \\       \\\"platform\\\": [\\\"RapidEye\\\"]\\n      }\\n    },\\n    {\\n      \\\"extent\\\":\n        {\\n        \\\"spatial\\\": {\\\"bbox\\\": [[\\n          -20,\\n          -35,\\n          35,\\n\n        \\         75\\n        ]]},\\n        \\\"temporal\\\": {\\\"interval\\\": [[\\n          \\\"2015-01-01T00:00:00.000Z\\\",\\n\n        \\         null\\n        ]]}\\n      },\\n      \\\"stac_version\\\": \\\"1.0.0\\\",\\n\n        \\     \\\"keywords\\\": [\\n        \\\"Europe\\\",\\n        \\\"DIF10\\\",\\n        \\\"orthorectified\\\",\\n\n        \\       \\\"corrected\\\",\\n        \\\"geometrically corrected\\\",\\n        \\\"USGS\\\",\\n\n        \\       \\\"Surface Radiative Properties\\\",\\n        \\\"EARTH SCIENCE > LAND\n        SURFACE > SURFACE RADIATIVE PROPERTIES\\\",\\n        \\\"Vegetation\\\",\\n        \\\"EARTH\n        SCIENCE > BIOSPHERE > VEGETATION\\\",\\n        \\\"Land Use and Land Cover\\\",\\n\n        \\       \\\"EARTH SCIENCE > LAND SURFACE > LAND USE/LAND COVER\\\",\\n        \\\"Agriculture\\\",\\n\n        \\       \\\"EARTH SCIENCE > AGRICULTURE\\\",\\n        \\\"Forestry\\\",\\n        \\\"EARTH\n        SCIENCE > BIOSPHERE > ECOSYSTEMS > TERRESTRIAL ECOSYSTEMS > FORESTS\\\",\\n        \\\"Sun-synchronous\\\",\\n\n        \\       \\\"VIS (0.40 - 0.75 \\xB5m)\\\",\\n        \\\"NIR (0.75 - 1.30 \\xB5m)\\\",\\n\n        \\       \\\"SWIR (1.3 - 3.0 \\xB5m)\\\",\\n        \\\"TIR (6.0 - 15.0 \\xB5nm)\\\",\\n\n        \\       \\\"DPAS 5.0\\\",\\n        \\\"Medium Resolution - MR (20 - 500 m)\\\",\\n\n        \\       \\\"OAT_GEO_1P\\\",\\n        \\\"OAT_GTC_1P\\\",\\n        \\\"OAT_SP__2P\\\",\\n\n        \\       \\\"OAT_SR__2P\\\",\\n        \\\"705 km\\\",\\n        \\\"185 km\\\",\\n        \\\"Imaging\n        Spectrometers/Radiometers\\\",\\n        \\\"Landsat-8\\\",\\n        \\\"OLI\\\",\\n        \\\"TIRS\\\"\\n\n        \\     ],\\n      \\\"created\\\": \\\"2022-01-14T00:00:00.000Z\\\",\\n      \\\"description\\\":\n        \\\"This dataset contains the European Coverage of Landsat 8 Collection 2 data,\n        both Level 1 and Level 2, since the beginning of the mission. Landsat 8 Collection\n        2 is the result of reprocessing effort on the archive and on fresh products\n        with significant improvement with respect to Collection 1 on data quality,\n        obtained by means of advancements in data processing, algorithm development.\n        The primary characteristic is a relevant improvement in the absolute geolocation\n        accuracy (now re-baselined to the European Space Agency Copernicus Sentinel-2\n        Global Reference Image, GRI) but includes also updated digital elevation modelling\n        sources, improved Radiometric Calibration (even correction for the TIRS striping\n        effect), enhanced Quality Assessment Bands, updated and consistent metadata\n        files, usage of Cloud Optimized Georeferenced (COG) Tagged Image File Format.\n        \\ Landsat 8 level 1 products combine data from the 2 Landsat instruments,\n        OLI and TIRS. The level 1 products generated can be either L1TP or L1GT: \\\\u2022\n        L1TP - Level 1 Precision Terrain (Corrected) (L1T) products: Radiometrically\n        calibrated and orthorectified using ground control points (GCPs) and digital\n        elevation model (DEM) data to correct for relief displacement. The highest\n        quality Level-1 products suitable for pixel-level time series analysis. GCPs\n        used for L1TP correction are derived from the Global Land Survey 2000 (GLS2000)\n        data set. \\\\u2022 L1GT - Level 1 Systematic Terrain (Corrected) (L1GT) products:\n        L1GT data products consist of L0 product data with systematic radiometric,\n        geometric and terrain corrections applied and resampled for registration to\n        a cartographic projection, referenced to the WGS84, G873, or current version.\n        The dissemination server contains three different classes of Level1 products\n        \\\\u2022 Real Time (RT): Newly acquired Landsat 8 OLI/TIRS data are processed\n        upon downlink but use an initial TIRS line-of-sight model parameters; the\n        data is made available in less than 12 hours (4-6 hours typically). Once the\n        data have been reprocessed with the refined TIRS parameters, the products\n        are transitioned to either Tier 1 or Tier 2 and removed from the Real-Time\n        tier (in 14-16 days). \\\\u2022 Tier 1 (T1): Landsat scenes with the highest\n        available data quality are placed into Tier 1 and are considered suitable\n        for time-series analysis. Tier 1 includes Level-1 Precision and Terrain (L1TP)\n        corrected data that have well-characterized radiometry and are inter-calibrated\n        across the different Landsat instruments. The georegistration of Tier 1 scenes\n        is consistent and within prescribed image-to-image tolerances of \\u2266 12-meter\n        radial root mean square error (RMSE). \\\\u2022 Tier 2 (T2): Landsat scenes\n        not meeting Tier 1 criteria during processing are assigned to Tier 2. Tier\n        2 scenes adhere to the same radiometric standard as Tier 1 scenes, but do\n        not meet the Tier 1 geometry specification due to less accurate orbital information\n        (specific to older Landsat sensors), significant cloud cover, insufficient\n        ground control, or other factors. This includes Systematic Terrain (L1GT)\n        and Systematic (L1GS) processed data.  Landsat 8 level 2 products are generated\n        from L1GT and L1TP Level 1 products that meet the <76 degrees Solar Zenith\n        Angle constraint and include the required auxiliary data inputs to generate\n        a scientifically viable product. The data are available a couple of days after\n        the Level1 T1/T2. The level 2 products generated can be L2SP or L2SR: \\\\u2022\n        L2SP - Level 2 Science Products (L2SP) products: include Surface Reflectance\n        (SR), Surface Temperature (ST), ST intermediate bands, an angle coefficients\n        file, and Quality Assessment (QA) Bands. \\\\u2022 L2SR - Level 2 Surface Reflectance\n        (L2SR) products: include Surface Reflectance (SR), an angle coefficients file,\n        and Quality Assessment (QA) Bands; it is generated if ST could not be generated\n        \\ Two different categories of Level 1 products are offered: LC with Optical,\n        Thermal and Quality Map images, LO with Optical and Quality Map images (Thermal\n        not available). For the Level 2 data, only LC combined products are generated\\\",\\n\n        \\     \\\"type\\\": \\\"Collection\\\",\\n      \\\"title\\\": \\\"Landsat 8 Collection 2\n        European Coverage\\\",\\n      \\\"license\\\": \\\"various\\\",\\n      \\\"assets\\\": {\\n\n        \\       \\\"search\\\": {\\n          \\\"roles\\\": [\\\"search\\\"],\\n          \\\"href\\\":\n        \\\"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=Landsat8.Collection2.European.Coverage\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Search client\\\"\\n\n        \\       },\\n        \\\"offering_2\\\": {\\n          \\\"roles\\\": [\\\"http://www.opengis.net/spec/owc-geojson/1.0/req/wms#GetMap\\\"],\\n\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\n        \\         \\\"title\\\": \\\"GetMap\\\",\\n          \\\"type\\\": \\\"image/png\\\"\\n        },\\n\n        \\       \\\"offering_1\\\": {\\n          \\\"roles\\\": [\\\"http://www.opengis.net/spec/owc-geojson/1.0/req/wms#GetCapabilities\\\"],\\n\n        \\         \\\"href\\\": \\\"https://eovoc.spacebel.be/geoserver/wms?service=WMS&version=1.1.1&request=GetCapabilities\\\",\\n\n        \\         \\\"title\\\": \\\"GetCapabilities\\\",\\n          \\\"type\\\": \\\"application/xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_069r3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        }\\n\n        \\     },\\n      \\\"links\\\": [\\n        {\\n          \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage\\\",\\n\n        \\         \\\"type\\\": \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"root\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\",\\n          \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n\n        \\         \\\"title\\\": \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"items\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage/items?httpAccept=application/geo%2Bjson;profile=https://stacspec.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json\\\",\\n          \\\"title\\\": \\\"Datasets\n        search for the series Landsat8.Collection2.European.Coverage\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"http://www.opengis.net/def/rel/ogc/1.0/queryables\\\",\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage/queryables\\\",\\n\n        \\         \\\"type\\\": \\\"application/schema+json\\\",\\n          \\\"title\\\": \\\"Queryables\n        for Landsat8.Collection2.European.Coverage\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"search\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/series/items/Landsat8.Collection2.European.Coverage/api\\\",\\n\n        \\         \\\"type\\\": \\\"application/opensearchdescription+xml\\\",\\n          \\\"title\\\":\n        \\\"OpenSearch Description Document\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://earth.esa.int/eogateway/documents/20142/0/Landsat-Collection-1-vs-Collection-2-Summary.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"Landsat Collection1\n        vs Collection 2 - Product description\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"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\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"Landsat 8-9\n        OLI-TIRS Collection 2 Level 1 Data Format Control Book (DFCB) - Product specification\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\":\n        \\\"https://earth.esa.int/eogateway/documents/20142/0/Landsat-8-9-OLI-TIRS-Collection-2-Level-2-Data-Format-Control-Book-DFCB.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"Landsat 8-9\n        OLI-TIRS Collection 2 Level 2 Data Format Control Book (DFCB) - Product specification\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\":\n        \\\"https://www.usgs.gov/landsat-missions/landsat-collection-2\\\",\\n          \\\"type\\\":\n        \\\"text/html\\\",\\n          \\\"title\\\": \\\"USGS Landsat Collection 2 web page\n        - web portal\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://esatellus.service-now.com/csp?id=esa_simple_request\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Get Help? - ESA\n        Earth Observation User Services Portal\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage?httpAccept=text/turtle;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"wms:transparent\\\": true,\\n          \\\"rel\\\": \\\"wms\\\",\\n          \\\"wms:dimensions\\\":\n        {\\\"version\\\": \\\"1.1.1\\\"},\\n          \\\"href\\\": \\\"https://eovoc.spacebel.be/geoserver/wms\\\",\\n\n        \\         \\\"type\\\": \\\"image/png\\\",\\n          \\\"title\\\": \\\"Landsat8.Collection2.European.Coverage\\\",\\n\n        \\         \\\"wms:layers\\\": [\\\"Density:Landsat8.Collection2.European.Coverage\\\"],\\n\n        \\         \\\"wms:styles\\\": [\\\"Turbo\\\"]\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for ESA/ESRIN\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/Landsat-8\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for Landsat-8 platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/6bfc7afc-547a-57cd-818c-6d90e3e589ab\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for OLI instrument\\\"\\n        }\\n\n        \\     ],\\n      \\\"id\\\": \\\"Landsat8.Collection2.European.Coverage\\\",\\n      \\\"updated\\\":\n        \\\"2023-11-10T08:38:42Z\\\",\\n      \\\"stac_extensions\\\": [\\\"https://stac-extensions.github.io/web-map-links/v1.2.0/schema.json\\\"],\\n\n        \\     \\\"providers\\\": [\\n        {\\n          \\\"roles\\\": [\\\"producer\\\"],\\n\n        \\         \\\"name\\\": \\\"ESA/ESRIN\\\",\\n          \\\"url\\\": \\\"http://www.esa.int\\\"\\n\n        \\       },\\n        {\\n          \\\"roles\\\": [\\\"host\\\"],\\n          \\\"name\\\":\n        \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\": \\\"https://emc.spacebel.be/readme.html\\\"\\n\n        \\       }\\n      ],\\n      \\\"summaries\\\": {\\n        \\\"instruments\\\": [\\\"OLI\\\"],\\n\n        \\       \\\"platform\\\": [\\\"Landsat-8\\\"]\\n      }\\n    },\\n    {\\n      \\\"extent\\\":\n        {\\n        \\\"spatial\\\": {\\\"bbox\\\": [[\\n          -180,\\n          -90,\\n          180,\\n\n        \\         90\\n        ]]},\\n        \\\"temporal\\\": {\\\"interval\\\": [[\\n          \\\"2007-01-23T10:16:34Z\\\",\\n\n        \\         null\\n        ]]}\\n      },\\n      \\\"stac_version\\\": \\\"1.0.0\\\",\\n\n        \\     \\\"keywords\\\": [\\n        \\\"DIF10\\\",\\n        \\\"MetOp-A\\\",\\n        \\\"MetOp-B\\\",\\n\n        \\       \\\"MetOp-C\\\",\\n        \\\"COT\\\",\\n        \\\"Cloud Optical Thickness\\\",\\n\n        \\       \\\"AC-SAF\\\",\\n        \\\"GOME.TC.AGG\\\",\\n        \\\"urn:eop:DLR:EOWEB:GOME.TC.AGG\\\",\\n\n        \\       \\\"FEDEO\\\",\\n        \\\"Atmospheric conditions\\\",\\n        \\\"EARTH SCIENCE>ATMOSPHERE>CLOUDS>CLOUD\n        MICROPHYSICS>CLOUD OPTICAL DEPTH/THICKNESS\\\",\\n        \\\"METOP-A\\\",\\n        \\\"METOP-B\\\",\\n\n        \\       \\\"METOP-C\\\",\\n        \\\"GOME-2\\\",\\n        \\\"Metop-A\\\",\\n        \\\"Metop-B\\\",\\n\n        \\       \\\"Metop-C\\\"\\n      ],\\n      \\\"description\\\": \\\"The Global Ozone Monitoring\n        Experiment-2 (GOME-2) instrument continues the long-term monitoring of atmospheric\n        trace gas constituents started with GOME / ERS-2 and SCIAMACHY / Envisat.\n        Currently, there are three GOME-2 instruments operating on board EUMETSAT's\n        Meteorological Operational satellites MetOp-A, -B and -C, launched in October\n        2006, September 2012, and November 2018, respectively. GOME-2 can measure\n        a range of atmospheric trace constituents, with the emphasis on global ozone\n        distributions. Furthermore, cloud properties and intensities of ultraviolet\n        radiation are retrieved. These data are crucial for monitoring the atmospheric\n        composition and the detection of pollutants. DLR generates operational GOME-2\n        / MetOp level 2 products in the framework of EUMETSAT's Satellite Application\n        Facility on Atmospheric Chemistry Monitoring (AC-SAF). GOME-2 near-real-time\n        products are available already two hours after sensing.\\\\t\\\\tOCRA (Optical\n        Cloud Recognition Algorithm) and ROCINN (Retrieval of Cloud Information using\n        Neural Networks) are used for retrieving the following geophysical cloud properties\n        from GOME and GOME-2 data: cloud fraction (cloud cover), cloud-top pressure\n        (cloud-top height), and cloud optical thickness (cloud-top albedo). OCRA is\n        an optical sensor cloud detection algorithm that uses the PMD devices on GOME\n        / GOME-2 to deliver cloud fractions for GOME / GOME-2 scenes. ROCINN takes\n        the OCRA cloud fraction as input and uses a neural network training scheme\n        to invert GOME / GOME-2 reflectivities in and around the O2-A band. VLIDORT\n        [Spurr (2006)] templates of reflectances based on full polarization scattering\n        of light are used to train the neural network. ROCINN retrieves cloud-top\n        pressure and cloud-top albedo. The cloud optical thickness is computed using\n        libRadtran [Mayer and Kylling (2005)] radiative transfer simulations taking\n        as input the cloud-top albedo retrieved with ROCINN. For more details please\n        refer to relevant peer-review papers listed on the GOME and GOME-2 documentation\n        pages: https://atmos.eoc.dlr.de/app/docs/\\\",\\n      \\\"type\\\": \\\"Collection\\\",\\n\n        \\     \\\"title\\\": \\\"METOP GOME-2 - Cloud Optical Thickness (COT) - Global\\\",\\n\n        \\     \\\"license\\\": \\\"various\\\",\\n      \\\"assets\\\": {\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/810631f4-c311-44f2-9ced-c2260df2bc06?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/810631f4-c311-44f2-9ced-c2260df2bc06?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"enclosure_3\\\": {\\n          \\\"roles\\\": [\\\"data\\\"],\\n\n        \\         \\\"href\\\": \\\"https://geoservice.dlr.de/eoc/atmosphere/wms?\\\",\\n          \\\"type\\\":\n        \\\"application/x-binary\\\",\\n          \\\"title\\\": \\\"METOP-C_GOME-2_L2C_P1D_COT\n        - MetOp-C GOME-2 L2C Daily COT\\\"\\n        },\\n        \\\"enclosure_4\\\": {\\n\n        \\         \\\"roles\\\": [\\\"data\\\"],\\n          \\\"href\\\": \\\"https://geoservice.dlr.de/eoc/atmosphere/wms?\\\",\\n\n        \\         \\\"type\\\": \\\"application/x-binary\\\",\\n          \\\"title\\\": \\\"METOP_GOME-2_L2C_P1D_COMB_COT\n        - MetOp GOME-2 L2C Daily COT Combined\\\"\\n        },\\n        \\\"enclosure_1\\\":\n        {\\n          \\\"roles\\\": [\\\"data\\\"],\\n          \\\"href\\\": \\\"ftp://acsaf.eoc.dlr.de/\\\",\\n\n        \\         \\\"type\\\": \\\"application/x-binary\\\",\\n          \\\"title\\\": \\\"DLR-ATMOS\n        FTP-server - For data access via FTP, please register at https://acsaf.org/registration_form.html\n        or contact helpdesk@acsaf.org.\\\"\\n        },\\n        \\\"search\\\": {\\n          \\\"roles\\\":\n        [\\\"search\\\"],\\n          \\\"href\\\": \\\"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Search client\\\"\\n\n        \\       },\\n        \\\"enclosure_2\\\": {\\n          \\\"roles\\\": [\\\"data\\\"],\\n\n        \\         \\\"href\\\": \\\"https://geoservice.dlr.de/eoc/atmosphere/wms?\\\",\\n          \\\"type\\\":\n        \\\"application/x-binary\\\",\\n          \\\"title\\\": \\\"METOP-B_GOME-2_L2C_P1D_COT\n        - MetOp-B GOME-2 L2C Daily COT\\\"\\n        },\\n        \\\"metadata_ogc_17_069r3\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/810631f4-c311-44f2-9ced-c2260df2bc06\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139_2\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/810631f4-c311-44f2-9ced-c2260df2bc06?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/810631f4-c311-44f2-9ced-c2260df2bc06?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"enclosure_7\\\": {\\n          \\\"roles\\\": [\\\"data\\\"],\\n\n        \\         \\\"href\\\": \\\"https://geoservice.dlr.de/eoc/atmosphere/wcs?\\\",\\n          \\\"type\\\":\n        \\\"application/x-binary\\\",\\n          \\\"title\\\": \\\"METOP_GOME-2_L2C_P1D_COMB_COT\n        - MetOp GOME-2 L2C Daily COT Combined\\\"\\n        },\\n        \\\"metadata_ogc_17_084r1\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/810631f4-c311-44f2-9ced-c2260df2bc06?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/810631f4-c311-44f2-9ced-c2260df2bc06?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        },\\n\n        \\       \\\"enclosure_5\\\": {\\n          \\\"roles\\\": [\\\"data\\\"],\\n          \\\"href\\\":\n        \\\"https://geoservice.dlr.de/eoc/atmosphere/wcs?\\\",\\n          \\\"type\\\": \\\"application/x-binary\\\",\\n\n        \\         \\\"title\\\": \\\"METOP-B_GOME-2_L2C_P1D_COT - MetOp-B GOME-2 L2C Daily\n        COT\\\"\\n        },\\n        \\\"quicklook\\\": {\\n          \\\"roles\\\": [\\\"overview\\\"],\\n\n        \\         \\\"href\\\": \\\"https://geoservice.dlr.de/catalogue/srv/api/records/810631f4-c311-44f2-9ced-c2260df2bc06/attachments/metop_gome2_cot_ql.jpg\\\",\\n\n        \\         \\\"type\\\": \\\"image/jpeg\\\",\\n          \\\"title\\\": \\\"graphic overview\\\"\\n\n        \\       },\\n        \\\"enclosure_6\\\": {\\n          \\\"roles\\\": [\\\"data\\\"],\\n\n        \\         \\\"href\\\": \\\"https://geoservice.dlr.de/eoc/atmosphere/wcs?\\\",\\n          \\\"type\\\":\n        \\\"application/x-binary\\\",\\n          \\\"title\\\": \\\"METOP-C_GOME-2_L2C_P1D_COT\n        - MetOp-C GOME-2 L2C Daily COT\\\"\\n        }\\n      },\\n      \\\"links\\\": [\\n\n        \\       {\\n          \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/810631f4-c311-44f2-9ced-c2260df2bc06\\\",\\n\n        \\         \\\"type\\\": \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"root\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\",\\n          \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n\n        \\         \\\"title\\\": \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"search\\\",\\n          \\\"href\\\":\n        \\\"https://eoweb.dlr.de/egp/main?service=geoservice.dlr.de%2Feoc%2Fatmosphere%2Fwms%26type=wms%26layer=METOP-B_GOME-2_L2C_P1D_COT\\\",\\n\n        \\         \\\"title\\\": \\\"METOP-B_GOME-2_L2C_P1D_COT - EGP: MetOp-B GOME-2 L2C\n        Daily COT\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"search\\\",\\n          \\\"href\\\":\n        \\\"https://eoweb.dlr.de/egp/main?service=geoservice.dlr.de%2Feoc%2Fatmosphere%2Fwms%26type=wms%26layer=METOP-C_GOME-2_L2C_P1D_COT\\\",\\n\n        \\         \\\"title\\\": \\\"METOP-C_GOME-2_L2C_P1D_COT - EGP: MetOp-C GOME-2 L2C\n        Daily COT\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"search\\\",\\n          \\\"href\\\":\n        \\\"https://eoweb.dlr.de/egp/main?service=geoservice.dlr.de%2Feoc%2Fatmosphere%2Fwms%26type=wms%26layer=METOP_GOME-2_L2C_P1D_COMB_COT\\\",\\n\n        \\         \\\"title\\\": \\\"METOP_GOME-2_L2C_P1D_COMB_COT - EGP: MetOp GOME-2 L2C\n        Daily COT Combined\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"related\\\",\\n\n        \\         \\\"href\\\": \\\"https://eoweb.dlr.de/egp/main?ecswCollection=urn%3Aeop%3ADLR%3AEOWEB%3AGOME.TC.AGG\\\",\\n\n        \\         \\\"title\\\": \\\"METOP GOME-2 - Cloud Optical Thickness (COT) - Global\n        - EOWEB GeoPortal Collection\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"icon\\\",\\n          \\\"href\\\": \\\"https://geoservice.dlr.de/catalogue/srv/api/records/810631f4-c311-44f2-9ced-c2260df2bc06/attachments/metop_gome2_cot_ql_s.jpg\\\",\\n\n        \\         \\\"type\\\": \\\"image/jpeg\\\",\\n          \\\"title\\\": \\\"graphic overview\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\":\n        \\\"https://geoservice.dlr.de/web/maps/metop:gome2.tc.daily\\\",\\n          \\\"title\\\":\n        \\\"EOC Geoservice Map Context - EOC Geoservice Map Context (metop:gome2.tc.daily)\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\":\n        \\\"https://atmos.eoc.dlr.de/app/missions/gome2\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://geoservice.dlr.de/eoc/atmosphere/wms?SERVICE=WMS&REQUEST=GetCapabilities\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\":\n        \\\"https://geoservice.dlr.de/eoc/atmosphere/wcs?SERVICE=WCS&REQUEST=GetCapabilities\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/810631f4-c311-44f2-9ced-c2260df2bc06?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/810631f4-c311-44f2-9ced-c2260df2bc06?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/810631f4-c311-44f2-9ced-c2260df2bc06?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/DE@DLR\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for DE/DLR\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/Metop-A\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for Metop-A platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/Metop-B\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for Metop-B platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/Metop-C\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for Metop-C platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/eaa1390e-6453-5b90-9ed2-90c3f5096d83\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for GOME-2 instrument\\\"\\n        }\\n\n        \\     ],\\n      \\\"id\\\": \\\"810631f4-c311-44f2-9ced-c2260df2bc06\\\",\\n      \\\"updated\\\":\n        \\\"2024-06-20T13:07:23Z\\\",\\n      \\\"stac_extensions\\\": [\\\"https://stac-extensions.github.io/processing/v1.2.0/schema.json\\\"],\\n\n        \\     \\\"providers\\\": [\\n        {\\n          \\\"roles\\\": [\\\"producer\\\"],\\n\n        \\         \\\"name\\\": \\\"DE/DLR\\\"\\n        },\\n        {\\n          \\\"roles\\\":\n        [\\\"host\\\"],\\n          \\\"name\\\": \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\":\n        \\\"https://emc.spacebel.be/readme.html\\\"\\n        }\\n      ],\\n      \\\"summaries\\\":\n        {\\n        \\\"instruments\\\": [\\\"GOME-2\\\"],\\n        \\\"processing:lineage\\\":\n        [\\\"Please refer to relevant peer-review papers listed on the GOME and GOME-2\n        documentation pages for more details on cloud optical thickness retrieval:\n        https://atmos.eoc.dlr.de/app/docs/\\\"],\\n        \\\"platform\\\": [\\n          \\\"Metop-A\\\",\\n\n        \\         \\\"Metop-B\\\",\\n          \\\"Metop-C\\\"\\n        ]\\n      }\\n    },\\n\n        \\   {\\n      \\\"extent\\\": {\\n        \\\"spatial\\\": {\\\"bbox\\\": [[\\n          -180,\\n\n        \\         -90,\\n          180,\\n          90\\n        ]]},\\n        \\\"temporal\\\":\n        {\\\"interval\\\": [[\\n          \\\"2007-01-23T10:16:34Z\\\",\\n          null\\n        ]]}\\n\n        \\     },\\n      \\\"stac_version\\\": \\\"1.0.0\\\",\\n      \\\"keywords\\\": [\\n        \\\"DIF10\\\",\\n\n        \\       \\\"MetOp-A\\\",\\n        \\\"MetOp-B\\\",\\n        \\\"MetOp-C\\\",\\n        \\\"NO2\\\",\\n\n        \\       \\\"Nitrogen Dioxide\\\",\\n        \\\"AC-SAF\\\",\\n        \\\"GOME.TC.AGG\\\",\\n\n        \\       \\\"urn:eop:DLR:EOWEB:GOME.TC.AGG\\\",\\n        \\\"FEDEO\\\",\\n        \\\"Atmospheric\n        conditions\\\",\\n        \\\"EARTH SCIENCE>ATMOSPHERE>ATMOSPHERIC CHEMISTRY>NITROGEN\n        COMPOUNDS>NITROGEN DIOXIDE\\\",\\n        \\\"METOP-A\\\",\\n        \\\"METOP-B\\\",\\n\n        \\       \\\"METOP-C\\\",\\n        \\\"GOME-2\\\",\\n        \\\"Metop-A\\\",\\n        \\\"Metop-B\\\",\\n\n        \\       \\\"Metop-C\\\"\\n      ],\\n      \\\"description\\\": \\\"The Global Ozone Monitoring\n        Experiment-2 (GOME-2) instrument continues the long-term monitoring of atmospheric\n        trace gas constituents started with GOME / ERS-2 and SCIAMACHY / Envisat.\n        Currently, there are three GOME-2 instruments operating on board EUMETSAT's\n        Meteorological Operational satellites MetOp-A, -B, and -C, launched in October\n        2006, September 2012, and November 2018, respectively. GOME-2 can measure\n        a range of atmospheric trace constituents, with the emphasis on global ozone\n        distributions. Furthermore, cloud properties and intensities of ultraviolet\n        radiation are retrieved. These data are crucial for monitoring the atmospheric\n        composition and the detection of pollutants. DLR generates operational GOME-2\n        / MetOp level 2 products in the framework of EUMETSAT's Satellite Application\n        Facility on Atmospheric Chemistry Monitoring (AC-SAF). GOME-2 near-real-time\n        products are available already two hours after sensing.\\\\t\\\\t\\\\tThe operational\n        NO2 total column products are generated using the algorithm GDP (GOME Data\n        Processor) version 4.x integrated into the UPAS (Universal Processor for UV\n        / VIS Atmospheric Spectrometers) processor for generating level 2 trace gas\n        and cloud products.\\\\t\\\\t\\\\tThe total NO2 column is retrieved from GOME solar\n        back-scattered measurements in the visible wavelength region (425-450 nm),\n        using the Differential Optical Absorption Spectroscopy (DOAS) method.\\\\t\\\\t\\\\tFor\n        more details please refer to relevant peer-review papers listed on the GOME\n        and GOME-2 documentation pages: https://atmos.eoc.dlr.de/app/docs/\\\",\\n      \\\"type\\\":\n        \\\"Collection\\\",\\n      \\\"title\\\": \\\"METOP GOME-2 - Nitrogen Dioxide (NO2)\n        - Global\\\",\\n      \\\"license\\\": \\\"various\\\",\\n      \\\"assets\\\": {\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/bf8dbf94-ff16-42bf-a957-0e8f80813aff?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/bf8dbf94-ff16-42bf-a957-0e8f80813aff?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"enclosure_3\\\": {\\n          \\\"roles\\\": [\\\"data\\\"],\\n\n        \\         \\\"href\\\": \\\"https://geoservice.dlr.de/eoc/atmosphere/wms?\\\",\\n          \\\"type\\\":\n        \\\"application/x-binary\\\",\\n          \\\"title\\\": \\\"METOP-C_GOME-2_L2C_P1D_NO2\n        - MetOp-C GOME-2 L2C Daily NO2\\\"\\n        },\\n        \\\"enclosure_4\\\": {\\n\n        \\         \\\"roles\\\": [\\\"data\\\"],\\n          \\\"href\\\": \\\"https://geoservice.dlr.de/eoc/atmosphere/wms?\\\",\\n\n        \\         \\\"type\\\": \\\"application/x-binary\\\",\\n          \\\"title\\\": \\\"METOP_GOME-2_L2C_P1D_COMB_NO2\n        - MetOp GOME-2 L2C Daily NO2 Combined\\\"\\n        },\\n        \\\"enclosure_1\\\":\n        {\\n          \\\"roles\\\": [\\\"data\\\"],\\n          \\\"href\\\": \\\"ftp://acsaf.eoc.dlr.de/\\\",\\n\n        \\         \\\"type\\\": \\\"application/x-binary\\\",\\n          \\\"title\\\": \\\"DLR-ATMOS\n        FTP-server - For data access via FTP, please register at https://acsaf.org/registration_form.html\n        or contact helpdesk@acsaf.org.\\\"\\n        },\\n        \\\"search\\\": {\\n          \\\"roles\\\":\n        [\\\"search\\\"],\\n          \\\"href\\\": \\\"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Search client\\\"\\n\n        \\       },\\n        \\\"enclosure_2\\\": {\\n          \\\"roles\\\": [\\\"data\\\"],\\n\n        \\         \\\"href\\\": \\\"https://geoservice.dlr.de/eoc/atmosphere/wms?\\\",\\n          \\\"type\\\":\n        \\\"application/x-binary\\\",\\n          \\\"title\\\": \\\"METOP-B_GOME-2_L2C_P1D_NO2\n        - MetOp-B GOME-2 L2C Daily NO2\\\"\\n        },\\n        \\\"metadata_ogc_17_069r3\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/bf8dbf94-ff16-42bf-a957-0e8f80813aff\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139_2\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/bf8dbf94-ff16-42bf-a957-0e8f80813aff?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/bf8dbf94-ff16-42bf-a957-0e8f80813aff?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"enclosure_7\\\": {\\n          \\\"roles\\\": [\\\"data\\\"],\\n\n        \\         \\\"href\\\": \\\"https://geoservice.dlr.de/eoc/atmosphere/wcs?\\\",\\n          \\\"type\\\":\n        \\\"application/x-binary\\\",\\n          \\\"title\\\": \\\"METOP_GOME-2_L2C_P1D_COMB_NO2\n        - MetOp GOME-2 L2C Daily NO2 Combined\\\"\\n        },\\n        \\\"metadata_ogc_17_084r1\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/bf8dbf94-ff16-42bf-a957-0e8f80813aff?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/bf8dbf94-ff16-42bf-a957-0e8f80813aff?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        },\\n\n        \\       \\\"enclosure_5\\\": {\\n          \\\"roles\\\": [\\\"data\\\"],\\n          \\\"href\\\":\n        \\\"https://geoservice.dlr.de/eoc/atmosphere/wcs?\\\",\\n          \\\"type\\\": \\\"application/x-binary\\\",\\n\n        \\         \\\"title\\\": \\\"METOP-B_GOME-2_L2C_P1D_NO2 - MetOp-B GOME-2 L2C Daily\n        NO2\\\"\\n        },\\n        \\\"quicklook\\\": {\\n          \\\"roles\\\": [\\\"overview\\\"],\\n\n        \\         \\\"href\\\": \\\"https://geoservice.dlr.de/catalogue/srv/api/records/bf8dbf94-ff16-42bf-a957-0e8f80813aff/attachments/metop_gome2_no2_ql.jpg\\\",\\n\n        \\         \\\"type\\\": \\\"image/jpeg\\\",\\n          \\\"title\\\": \\\"graphic overview\\\"\\n\n        \\       },\\n        \\\"enclosure_6\\\": {\\n          \\\"roles\\\": [\\\"data\\\"],\\n\n        \\         \\\"href\\\": \\\"https://geoservice.dlr.de/eoc/atmosphere/wcs?\\\",\\n          \\\"type\\\":\n        \\\"application/x-binary\\\",\\n          \\\"title\\\": \\\"METOP-C_GOME-2_L2C_P1D_NO2\n        - MetOp-C GOME-2 L2C Daily NO2\\\"\\n        }\\n      },\\n      \\\"links\\\": [\\n\n        \\       {\\n          \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/bf8dbf94-ff16-42bf-a957-0e8f80813aff\\\",\\n\n        \\         \\\"type\\\": \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"root\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\",\\n          \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n\n        \\         \\\"title\\\": \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"search\\\",\\n          \\\"href\\\":\n        \\\"https://eoweb.dlr.de/egp/main?service=geoservice.dlr.de%2Feoc%2Fatmosphere%2Fwms%26type=wms%26layer=METOP-B_GOME-2_L2C_P1D_NO2\\\",\\n\n        \\         \\\"title\\\": \\\"METOP-B_GOME-2_L2C_P1D_NO2 - EGP: MetOp-B GOME-2 L2C\n        Daily NO2\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"search\\\",\\n          \\\"href\\\":\n        \\\"https://eoweb.dlr.de/egp/main?service=geoservice.dlr.de%2Feoc%2Fatmosphere%2Fwms%26type=wms%26layer=METOP-C_GOME-2_L2C_P1D_NO2\\\",\\n\n        \\         \\\"title\\\": \\\"METOP-C_GOME-2_L2C_P1D_NO2 - EGP: MetOp-C GOME-2 L2C\n        Daily NO2\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"search\\\",\\n          \\\"href\\\":\n        \\\"https://eoweb.dlr.de/egp/main?service=geoservice.dlr.de%2Feoc%2Fatmosphere%2Fwms%26type=wms%26layer=METOP_GOME-2_L2C_P1D_COMB_NO2\\\",\\n\n        \\         \\\"title\\\": \\\"METOP_GOME-2_L2C_P1D_COMB_NO2 - EGP: MetOp GOME-2 L2C\n        Daily NO2 Combined\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"related\\\",\\n\n        \\         \\\"href\\\": \\\"https://eoweb.dlr.de/egp/main?ecswCollection=urn%3Aeop%3ADLR%3AEOWEB%3AGOME.TC.AGG\\\",\\n\n        \\         \\\"title\\\": \\\"METOP GOME-2 - Nitrogen Dioxide (NO2) - Global - EOWEB\n        GeoPortal Collection\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"icon\\\",\\n\n        \\         \\\"href\\\": \\\"https://geoservice.dlr.de/catalogue/srv/api/records/bf8dbf94-ff16-42bf-a957-0e8f80813aff/attachments/metop_gome2_no2_ql_s.jpg\\\",\\n\n        \\         \\\"type\\\": \\\"image/jpeg\\\",\\n          \\\"title\\\": \\\"graphic overview\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\":\n        \\\"https://geoservice.dlr.de/web/maps/metop:gome2.tc.daily\\\",\\n          \\\"title\\\":\n        \\\"EOC Geoservice Map Context - EOC Geoservice Map Context (metop:gome2.tc.daily)\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\":\n        \\\"https://atmos.eoc.dlr.de/app/missions/gome2\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://geoservice.dlr.de/eoc/atmosphere/wms?SERVICE=WMS&REQUEST=GetCapabilities\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\":\n        \\\"https://geoservice.dlr.de/eoc/atmosphere/wcs?SERVICE=WCS&REQUEST=GetCapabilities\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/bf8dbf94-ff16-42bf-a957-0e8f80813aff?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/bf8dbf94-ff16-42bf-a957-0e8f80813aff?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/bf8dbf94-ff16-42bf-a957-0e8f80813aff?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/DE@DLR\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for DE/DLR\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/Metop-A\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for Metop-A platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/Metop-B\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for Metop-B platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/Metop-C\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for Metop-C platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/eaa1390e-6453-5b90-9ed2-90c3f5096d83\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for GOME-2 instrument\\\"\\n        }\\n\n        \\     ],\\n      \\\"id\\\": \\\"bf8dbf94-ff16-42bf-a957-0e8f80813aff\\\",\\n      \\\"updated\\\":\n        \\\"2024-06-20T13:07:52Z\\\",\\n      \\\"stac_extensions\\\": [\\\"https://stac-extensions.github.io/processing/v1.2.0/schema.json\\\"],\\n\n        \\     \\\"providers\\\": [\\n        {\\n          \\\"roles\\\": [\\\"producer\\\"],\\n\n        \\         \\\"name\\\": \\\"DE/DLR\\\"\\n        },\\n        {\\n          \\\"roles\\\":\n        [\\\"host\\\"],\\n          \\\"name\\\": \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\":\n        \\\"https://emc.spacebel.be/readme.html\\\"\\n        }\\n      ],\\n      \\\"summaries\\\":\n        {\\n        \\\"instruments\\\": [\\\"GOME-2\\\"],\\n        \\\"processing:lineage\\\":\n        [\\\"Please refer to relevant peer-review papers listed on the GOME and GOME-2\n        documentation pages for more details on nitrogen dioxide retrieval: https://atmos.eoc.dlr.de/app/docs/\\\"],\\n\n        \\       \\\"platform\\\": [\\n          \\\"Metop-A\\\",\\n          \\\"Metop-B\\\",\\n\n        \\         \\\"Metop-C\\\"\\n        ]\\n      }\\n    },\\n    {\\n      \\\"extent\\\":\n        {\\n        \\\"spatial\\\": {\\\"bbox\\\": [[\\n          -180,\\n          -90,\\n          180,\\n\n        \\         90\\n        ]]},\\n        \\\"temporal\\\": {\\\"interval\\\": [[\\n          \\\"2007-01-23T10:16:34Z\\\",\\n\n        \\         null\\n        ]]}\\n      },\\n      \\\"stac_version\\\": \\\"1.0.0\\\",\\n\n        \\     \\\"keywords\\\": [\\n        \\\"DIF10\\\",\\n        \\\"MetOp-A\\\",\\n        \\\"MetOp-B\\\",\\n\n        \\       \\\"MetOp-C\\\",\\n        \\\"HCHO\\\",\\n        \\\"Formaldehyde\\\",\\n        \\\"AC-SAF\\\",\\n\n        \\       \\\"GOME.TC.AGG\\\",\\n        \\\"urn:eop:DLR:EOWEB:GOME.TC.AGG\\\",\\n        \\\"FEDEO\\\",\\n\n        \\       \\\"Atmospheric conditions\\\",\\n        \\\"EARTH SCIENCE>ATMOSPHERE>ATMOSPHERIC\n        CHEMISTRY>CARBON AND HYDROCARBON COMPOUNDS>FORMALDEHYDE\\\",\\n        \\\"METOP-A\\\",\\n\n        \\       \\\"METOP-B\\\",\\n        \\\"METOP-C\\\",\\n        \\\"GOME-2\\\",\\n        \\\"Metop-A\\\",\\n\n        \\       \\\"Metop-B\\\",\\n        \\\"Metop-C\\\"\\n      ],\\n      \\\"description\\\":\n        \\\"The Global Ozone Monitoring Experiment-2 (GOME-2) instrument continues the\n        long-term monitoring of atmospheric trace gas constituents started with GOME\n        / ERS-2 and SCIAMACHY / Envisat. Currently, there are three GOME-2 instruments\n        operating on board EUMETSAT's Meteorological Operational satellites MetOp-A,\n        -B, and -C, launched in October 2006, September 2012, and November 2018, respectively.\n        GOME-2 can measure a range of atmospheric trace constituents, with the emphasis\n        on global ozone distributions. Furthermore, cloud properties and intensities\n        of ultraviolet radiation are retrieved. These data are crucial for monitoring\n        the atmospheric composition and the detection of pollutants. DLR generates\n        operational GOME-2 / MetOp level 2 products in the framework of EUMETSAT's\n        Satellite Application Facility on Atmospheric Chemistry Monitoring (AC-SAF).\n        GOME-2 near-real-time products are available already two hours after sensing.\\\\t\\\\t\\\\tThe\n        operational HCHO total column products are generated using the algorithm GDP\n        (GOME Data Processor) version 4.x integrated into the UPAS (Universal Processor\n        for UV / VIS Atmospheric Spectrometers) processor for generating level 2 trace\n        gas and cloud products.\\\\t\\\\t\\\\tFor more details please refer to relevant\n        peer-review papers listed on the GOME and GOME-2 documentation pages: https://atmos.eoc.dlr.de/app/docs/\\\",\\n\n        \\     \\\"type\\\": \\\"Collection\\\",\\n      \\\"title\\\": \\\"METOP GOME-2 - Formaldehyde\n        (HCHO) - Global\\\",\\n      \\\"license\\\": \\\"various\\\",\\n      \\\"assets\\\": {\\n\n        \\       \\\"metadata_iso_19139\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/3dd6bbdd-5dca-411e-b251-cdc325d703c4?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/3dd6bbdd-5dca-411e-b251-cdc325d703c4?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"enclosure_3\\\": {\\n          \\\"roles\\\": [\\\"data\\\"],\\n\n        \\         \\\"href\\\": \\\"https://geoservice.dlr.de/eoc/atmosphere/wms?\\\",\\n          \\\"type\\\":\n        \\\"application/x-binary\\\",\\n          \\\"title\\\": \\\"METOP-C_GOME-2_L2C_P1D_HCHO\n        - MetOp-C GOME-2 L2C Daily HCHO\\\"\\n        },\\n        \\\"enclosure_4\\\": {\\n\n        \\         \\\"roles\\\": [\\\"data\\\"],\\n          \\\"href\\\": \\\"https://geoservice.dlr.de/eoc/atmosphere/wms?\\\",\\n\n        \\         \\\"type\\\": \\\"application/x-binary\\\",\\n          \\\"title\\\": \\\"METOP_GOME-2_L2C_P1D_COMB_HCHO\n        - MetOp GOME-2 L2C Daily HCHO Combined\\\"\\n        },\\n        \\\"enclosure_1\\\":\n        {\\n          \\\"roles\\\": [\\\"data\\\"],\\n          \\\"href\\\": \\\"ftp://acsaf.eoc.dlr.de/\\\",\\n\n        \\         \\\"type\\\": \\\"application/x-binary\\\",\\n          \\\"title\\\": \\\"DLR-ATMOS\n        FTP-server - For data access via FTP, please register at https://acsaf.org/registration_form.html\n        or contact helpdesk@acsaf.org.\\\"\\n        },\\n        \\\"search\\\": {\\n          \\\"roles\\\":\n        [\\\"search\\\"],\\n          \\\"href\\\": \\\"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Search client\\\"\\n\n        \\       },\\n        \\\"enclosure_2\\\": {\\n          \\\"roles\\\": [\\\"data\\\"],\\n\n        \\         \\\"href\\\": \\\"https://geoservice.dlr.de/eoc/atmosphere/wms?\\\",\\n          \\\"type\\\":\n        \\\"application/x-binary\\\",\\n          \\\"title\\\": \\\"METOP-B_GOME-2_L2C_P1D_HCHO\n        - MetOp-B GOME-2 L2C Daily HCHO\\\"\\n        },\\n        \\\"metadata_ogc_17_069r3\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/3dd6bbdd-5dca-411e-b251-cdc325d703c4\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139_2\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/3dd6bbdd-5dca-411e-b251-cdc325d703c4?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/3dd6bbdd-5dca-411e-b251-cdc325d703c4?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"enclosure_7\\\": {\\n          \\\"roles\\\": [\\\"data\\\"],\\n\n        \\         \\\"href\\\": \\\"https://geoservice.dlr.de/eoc/atmosphere/wcs?\\\",\\n          \\\"type\\\":\n        \\\"application/x-binary\\\",\\n          \\\"title\\\": \\\"METOP_GOME-2_L2C_P1D_COMB_HCHO\n        - MetOp GOME-2 L2C Daily HCHO Combined\\\"\\n        },\\n        \\\"metadata_ogc_17_084r1\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/3dd6bbdd-5dca-411e-b251-cdc325d703c4?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/3dd6bbdd-5dca-411e-b251-cdc325d703c4?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        },\\n\n        \\       \\\"enclosure_5\\\": {\\n          \\\"roles\\\": [\\\"data\\\"],\\n          \\\"href\\\":\n        \\\"https://geoservice.dlr.de/eoc/atmosphere/wcs?\\\",\\n          \\\"type\\\": \\\"application/x-binary\\\",\\n\n        \\         \\\"title\\\": \\\"METOP-B_GOME-2_L2C_P1D_HCHO - MetOp-B GOME-2 L2C Daily\n        HCHO\\\"\\n        },\\n        \\\"quicklook\\\": {\\n          \\\"roles\\\": [\\\"overview\\\"],\\n\n        \\         \\\"href\\\": \\\"https://geoservice.dlr.de/catalogue/srv/api/records/3dd6bbdd-5dca-411e-b251-cdc325d703c4/attachments/metop_gome2_hcho_ql.jpg\\\",\\n\n        \\         \\\"type\\\": \\\"image/jpeg\\\",\\n          \\\"title\\\": \\\"graphic overview\\\"\\n\n        \\       },\\n        \\\"enclosure_6\\\": {\\n          \\\"roles\\\": [\\\"data\\\"],\\n\n        \\         \\\"href\\\": \\\"https://geoservice.dlr.de/eoc/atmosphere/wcs?\\\",\\n          \\\"type\\\":\n        \\\"application/x-binary\\\",\\n          \\\"title\\\": \\\"METOP-C_GOME-2_L2C_P1D_HCHO\n        - MetOp-C GOME-2 L2C Daily HCHO\\\"\\n        }\\n      },\\n      \\\"links\\\": [\\n\n        \\       {\\n          \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/3dd6bbdd-5dca-411e-b251-cdc325d703c4\\\",\\n\n        \\         \\\"type\\\": \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"root\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\",\\n          \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n\n        \\         \\\"title\\\": \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"search\\\",\\n          \\\"href\\\":\n        \\\"https://eoweb.dlr.de/egp/main?service=geoservice.dlr.de%2Feoc%2Fatmosphere%2Fwms%26type=wms%26layer=METOP-B_GOME-2_L2C_P1D_HCHO\\\",\\n\n        \\         \\\"title\\\": \\\"METOP-B_GOME-2_L2C_P1D_HCHO - EGP: MetOp-B GOME-2 L2C\n        Daily HCHO\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"search\\\",\\n          \\\"href\\\":\n        \\\"https://eoweb.dlr.de/egp/main?service=geoservice.dlr.de%2Feoc%2Fatmosphere%2Fwms%26type=wms%26layer=METOP-C_GOME-2_L2C_P1D_HCHO\\\",\\n\n        \\         \\\"title\\\": \\\"METOP-C_GOME-2_L2C_P1D_HCHO - EGP: MetOp-C GOME-2 L2C\n        Daily HCHO\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"search\\\",\\n          \\\"href\\\":\n        \\\"https://eoweb.dlr.de/egp/main?service=geoservice.dlr.de%2Feoc%2Fatmosphere%2Fwms%26type=wms%26layer=METOP_GOME-2_L2C_P1D_COMB_HCHO\\\",\\n\n        \\         \\\"title\\\": \\\"METOP_GOME-2_L2C_P1D_COMB_HCHO - EGP: MetOp GOME-2\n        L2C Daily HCHO Combined\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"related\\\",\\n\n        \\         \\\"href\\\": \\\"https://eoweb.dlr.de/egp/main?ecswCollection=urn%3Aeop%3ADLR%3AEOWEB%3AGOME.TC.AGG\\\",\\n\n        \\         \\\"title\\\": \\\"METOP GOME-2 - Formaldehyde (HCHO) - Global - EOWEB\n        GeoPortal Collection\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"icon\\\",\\n\n        \\         \\\"href\\\": \\\"https://geoservice.dlr.de/catalogue/srv/api/records/3dd6bbdd-5dca-411e-b251-cdc325d703c4/attachments/metop_gome2_hcho_ql_s.jpg\\\",\\n\n        \\         \\\"type\\\": \\\"image/jpeg\\\",\\n          \\\"title\\\": \\\"graphic overview\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\":\n        \\\"https://geoservice.dlr.de/web/maps/metop:gome2.tc.daily\\\",\\n          \\\"title\\\":\n        \\\"EOC Geoservice Map Context - EOC Geoservice Map Context (metop:gome2.tc.daily)\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\":\n        \\\"https://atmos.eoc.dlr.de/app/missions/gome2\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://geoservice.dlr.de/eoc/atmosphere/wms?SERVICE=WMS&REQUEST=GetCapabilities\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\":\n        \\\"https://geoservice.dlr.de/eoc/atmosphere/wcs?SERVICE=WCS&REQUEST=GetCapabilities\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/3dd6bbdd-5dca-411e-b251-cdc325d703c4?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/3dd6bbdd-5dca-411e-b251-cdc325d703c4?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/3dd6bbdd-5dca-411e-b251-cdc325d703c4?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/DE@DLR\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for DE/DLR\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/Metop-A\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for Metop-A platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/Metop-B\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for Metop-B platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/Metop-C\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for Metop-C platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/eaa1390e-6453-5b90-9ed2-90c3f5096d83\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for GOME-2 instrument\\\"\\n        }\\n\n        \\     ],\\n      \\\"id\\\": \\\"3dd6bbdd-5dca-411e-b251-cdc325d703c4\\\",\\n      \\\"updated\\\":\n        \\\"2024-06-20T13:07:47Z\\\",\\n      \\\"stac_extensions\\\": [\\\"https://stac-extensions.github.io/processing/v1.2.0/schema.json\\\"],\\n\n        \\     \\\"providers\\\": [\\n        {\\n          \\\"roles\\\": [\\\"producer\\\"],\\n\n        \\         \\\"name\\\": \\\"DE/DLR\\\"\\n        },\\n        {\\n          \\\"roles\\\":\n        [\\\"host\\\"],\\n          \\\"name\\\": \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\":\n        \\\"https://emc.spacebel.be/readme.html\\\"\\n        }\\n      ],\\n      \\\"summaries\\\":\n        {\\n        \\\"instruments\\\": [\\\"GOME-2\\\"],\\n        \\\"processing:lineage\\\":\n        [\\\"Please refer to relevant peer-review papers listed on the GOME and GOME-2\n        documentation pages for more details on formaldehyde retrieval: https://atmos.eoc.dlr.de/app/docs/\\\"],\\n\n        \\       \\\"platform\\\": [\\n          \\\"Metop-A\\\",\\n          \\\"Metop-B\\\",\\n\n        \\         \\\"Metop-C\\\"\\n        ]\\n      }\\n    },\\n    {\\n      \\\"extent\\\":\n        {\\n        \\\"spatial\\\": {\\\"bbox\\\": [[\\n          -180,\\n          -90,\\n          180,\\n\n        \\         90\\n        ]]},\\n        \\\"temporal\\\": {\\\"interval\\\": [[\\n          \\\"2022-04-27T00:00:00Z\\\",\\n\n        \\         null\\n        ]]}\\n      },\\n      \\\"stac_version\\\": \\\"1.0.0\\\",\\n\n        \\     \\\"keywords\\\": [\\n        \\\"DIF10\\\",\\n        \\\"Orthoimagery\\\",\\n        \\\"DLR\\\",\\n\n        \\       \\\"EOC\\\",\\n        \\\"hyperspectral sensing\\\",\\n        \\\"quicklooks\\\",\\n\n        \\       \\\"Level 0\\\",\\n        \\\"FEDEO\\\",\\n        \\\"urn:eop:DLR:EOWEB:ENMAP.HSI.L0\\\",\\n\n        \\       \\\"visible wavelengths\\\",\\n        \\\"infrared wavelengths\\\",\\n        \\\"EARTH\n        SCIENCE>SPECTRAL/ENGINEERING>VISIBLE WAVELENGTHS\\\",\\n        \\\"EARTH SCIENCE>SPECTRAL/ENGINEERING>INFRARED\n        WAVELENGTHS\\\",\\n        \\\"EnMAP\\\",\\n        \\\"HSI\\\",\\n        \\\"Global\\\"\\n\n        \\     ],\\n      \\\"description\\\": \\\"The EnMAP HSI L0 Quicklooks collection\n        contains the VNIR and SWIR quicklook images as well as the quality masks for\n        haze, cloud, or snow; based on the latest atmospheric correction methodology\n        of the land processor. It allows users to get an overview which L0 data has\n        been acquired and archived since the operational start of the EnMAP mission\n        and which data is potentially available for on-demand processing into higher\n        level products with specific processing parameters via the EOWEB-GeoPortal.\n        The database is constantly updated with newly acquired L0 data.                            The\n        Environmental Mapping and Analysis Program (EnMAP) is a German hyperspectral\n        satellite mission that monitors and characterizes Earth\\\\u2019s environment\n        on a global scale. EnMAP delivers accurate data that provides information\n        on the status and evolution of terrestrial and aquatic ecosystems, supporting\n        environmental monitoring, management, and decision-making.                                For\n        more information, please see the mission website: https://www.enmap.org/mission/\\\",\\n\n        \\     \\\"sci:citation\\\": \\\"DOI: 10.15489/rlyibn8gjc58\\\",\\n      \\\"type\\\": \\\"Collection\\\",\\n\n        \\     \\\"title\\\": \\\"EnMAP HSI - Level 0 / Quicklook Images - Global\\\",\\n      \\\"license\\\":\n        \\\"various\\\",\\n      \\\"assets\\\": {\\n        \\\"metadata_iso_19139\\\": {\\n          \\\"roles\\\":\n        [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/a13994c5-8d10-4627-90b8-60077ab5de40?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/a13994c5-8d10-4627-90b8-60077ab5de40?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"enclosure_3\\\": {\\n          \\\"roles\\\": [\\\"data\\\"],\\n\n        \\         \\\"href\\\": \\\"https://geoservice.dlr.de/eoc/imagery/wms?\\\",\\n          \\\"type\\\":\n        \\\"application/x-binary\\\",\\n          \\\"title\\\": \\\"ENMAP_HSI_L0_QL_QUALITY_SNOW\n        - EnMAP HSI L0 Quicklooks Quality Snow\\\"\\n        },\\n        \\\"enclosure_4\\\":\n        {\\n          \\\"roles\\\": [\\\"data\\\"],\\n          \\\"href\\\": \\\"https://geoservice.dlr.de/eoc/imagery/wms?\\\",\\n\n        \\         \\\"type\\\": \\\"application/x-binary\\\",\\n          \\\"title\\\": \\\"ENMAP_HSI_L0_QL_QUALITY_HAZE\n        - EnMAP HSI L0 Quicklooks Quality Haze\\\"\\n        },\\n        \\\"enclosure_1\\\":\n        {\\n          \\\"roles\\\": [\\\"data\\\"],\\n          \\\"href\\\": \\\"https://geoservice.dlr.de/eoc/imagery/wms?\\\",\\n\n        \\         \\\"type\\\": \\\"application/x-binary\\\",\\n          \\\"title\\\": \\\"ENMAP_HSI_L0_QL_VNIR\n        - EnMAP HSI L0 Quicklooks VNIR\\\"\\n        },\\n        \\\"enclosure_2\\\": {\\n\n        \\         \\\"roles\\\": [\\\"data\\\"],\\n          \\\"href\\\": \\\"https://geoservice.dlr.de/eoc/imagery/wms?\\\",\\n\n        \\         \\\"type\\\": \\\"application/x-binary\\\",\\n          \\\"title\\\": \\\"ENMAP_HSI_L0_QL_SWIR\n        - EnMAP HSI L0 Quicklooks SWIR\\\"\\n        },\\n        \\\"metadata_ogc_17_069r3\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/a13994c5-8d10-4627-90b8-60077ab5de40\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139_2\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/a13994c5-8d10-4627-90b8-60077ab5de40?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"enclosure_9\\\": {\\n          \\\"roles\\\": [\\\"data\\\"],\\n\n        \\         \\\"href\\\": \\\"https://download.geoservice.dlr.de/ENMAP/files/\\\",\\n\n        \\         \\\"type\\\": \\\"application/x-binary\\\",\\n          \\\"title\\\": \\\"HTTP\n        download EnMAP HSI - Level 0 Quicklook Images - Global\\\"\\n        },\\n        \\\"metadata_iso_19115_3\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/a13994c5-8d10-4627-90b8-60077ab5de40?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"enclosure_7\\\": {\\n          \\\"roles\\\": [\\\"data\\\"],\\n\n        \\         \\\"href\\\": \\\"https://geoservice.dlr.de/eoc/imagery/wms?\\\",\\n          \\\"type\\\":\n        \\\"application/x-binary\\\",\\n          \\\"title\\\": \\\"ENMAP_HSI_L0_QL_QUALITY_CLASSES\n        - EnMAP HSI L0 Quicklooks Quality Classes\\\"\\n        },\\n        \\\"enclosure_8\\\":\n        {\\n          \\\"roles\\\": [\\\"data\\\"],\\n          \\\"href\\\": \\\"https://geoservice.dlr.de/eoc/imagery/wms?\\\",\\n\n        \\         \\\"type\\\": \\\"application/x-binary\\\",\\n          \\\"title\\\": \\\"ENMAP_HSI_L0_QL_QUALITY_CIRRUS\n        - EnMAP HSI L0 Quicklooks Quality Cirrus\\\"\\n        },\\n        \\\"metadata_ogc_17_084r1\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/a13994c5-8d10-4627-90b8-60077ab5de40?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/a13994c5-8d10-4627-90b8-60077ab5de40?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        },\\n\n        \\       \\\"enclosure_5\\\": {\\n          \\\"roles\\\": [\\\"data\\\"],\\n          \\\"href\\\":\n        \\\"https://geoservice.dlr.de/eoc/imagery/wms?\\\",\\n          \\\"type\\\": \\\"application/x-binary\\\",\\n\n        \\         \\\"title\\\": \\\"ENMAP_HSI_L0_QL_QUALITY_CLOUDSHADOW - EnMAP HSI L0\n        Quicklooks Quality Cloudshadow\\\"\\n        },\\n        \\\"quicklook\\\": {\\n          \\\"roles\\\":\n        [\\\"overview\\\"],\\n          \\\"href\\\": \\\"https://geoservice.dlr.de/catalogue/srv/api/records/a13994c5-8d10-4627-90b8-60077ab5de40/attachments/ENMAP_HSI_L0_ql.jpg\\\",\\n\n        \\         \\\"type\\\": \\\"image/jpeg\\\",\\n          \\\"title\\\": \\\"graphic overview\\\"\\n\n        \\       },\\n        \\\"enclosure_6\\\": {\\n          \\\"roles\\\": [\\\"data\\\"],\\n\n        \\         \\\"href\\\": \\\"https://geoservice.dlr.de/eoc/imagery/wms?\\\",\\n          \\\"type\\\":\n        \\\"application/x-binary\\\",\\n          \\\"title\\\": \\\"ENMAP_HSI_L0_QL_QUALITY_CLOUD\n        - EnMAP HSI L0 Quicklooks Quality Cloud\\\"\\n        }\\n      },\\n      \\\"links\\\":\n        [\\n        {\\n          \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/a13994c5-8d10-4627-90b8-60077ab5de40\\\",\\n\n        \\         \\\"type\\\": \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"root\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\",\\n          \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n\n        \\         \\\"title\\\": \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n\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\n        \\         \\\"type\\\": \\\"image/jpeg\\\",\\n          \\\"title\\\": \\\"graphic overview\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\":\n        \\\"https://geoservice.dlr.de/eoc/imagery/wms?SERVICE=WMS%26REQUEST=GetCapabilities\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/a13994c5-8d10-4627-90b8-60077ab5de40?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/a13994c5-8d10-4627-90b8-60077ab5de40?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/a13994c5-8d10-4627-90b8-60077ab5de40?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/DE@DLR\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for DE/DLR\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/EnMAP\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for EnMAP platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/249b8467-308b-55f9-8b74-198a335780e0\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for HSI instrument\\\"\\n        }\\n\n        \\     ],\\n      \\\"id\\\": \\\"a13994c5-8d10-4627-90b8-60077ab5de40\\\",\\n      \\\"updated\\\":\n        \\\"2024-08-12T07:07:07Z\\\",\\n      \\\"stac_extensions\\\": [\\n        \\\"https://stac-extensions.github.io/processing/v1.2.0/schema.json\\\",\\n\n        \\       \\\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\\\"\\n\n        \\     ],\\n      \\\"providers\\\": [\\n        {\\n          \\\"roles\\\": [\\\"producer\\\"],\\n\n        \\         \\\"name\\\": \\\"DE/DLR\\\"\\n        },\\n        {\\n          \\\"roles\\\":\n        [\\\"host\\\"],\\n          \\\"name\\\": \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\":\n        \\\"https://emc.spacebel.be/readme.html\\\"\\n        }\\n      ],\\n      \\\"summaries\\\":\n        {\\n        \\\"instruments\\\": [\\\"HSI\\\"],\\n        \\\"processing:lineage\\\": [\\\"Input\n        data: Raw EnMAP HSI satellite data\\\"],\\n        \\\"platform\\\": [\\\"EnMAP\\\"]\\n\n        \\     }\\n    },\\n    {\\n      \\\"extent\\\": {\\n        \\\"spatial\\\": {\\\"bbox\\\":\n        [[\\n          -180,\\n          -90,\\n          180,\\n          90\\n        ]]},\\n\n        \\       \\\"temporal\\\": {\\\"interval\\\": [[\\n          \\\"2018-05-01T00:00:00.000Z\\\",\\n\n        \\         null\\n        ]]}\\n      },\\n      \\\"stac_version\\\": \\\"1.0.0\\\",\\n\n        \\     \\\"keywords\\\": [\\n        \\\"Oceans\\\",\\n        \\\"EARTH SCIENCE > OCEANS\\\",\\n\n        \\       \\\"Marine Environment Monitoring\\\",\\n        \\\"EARTH SCIENCE > OCEANS\n        > MARINE ENVIRONMENT MONITORING\\\",\\n        \\\"Ocean Circulation\\\",\\n        \\\"EARTH\n        SCIENCE > OCEANS > OCEAN CIRCULATION\\\",\\n        \\\"Sun-synchronous\\\",\\n        \\\"L-Band\n        (19.4 - 76.9 cm)\\\",\\n        \\\"305\\\",\\n        \\\"758 km\\\",\\n        \\\"1000\n        km\\\",\\n        \\\"Interferometric Radiometers\\\",\\n        \\\"SMOS\\\",\\n        \\\"MIRAS\\\"\\n\n        \\     ],\\n      \\\"created\\\": \\\"2019-05-31T00:00:00.000Z\\\",\\n      \\\"description\\\":\n        \\\"SMOS L3WS products are daily composite maps of the collected SMOS L2 swath\n        wind products for a specific day, provided with the same grid than the Level\n        2 wind data (SMOS L2WS NRT) but separated into ascending and descending passes.\\\\r\\\\n\\\\r\\\\nThis\n        product is available the day after sensing from Ifremer, in NetCDF format.\\\\r\\\\n\\\\r\\\\nBefore\n        using this dataset, please check the read-me-first note available in the Resources\n        section below.\\\",\\n      \\\"type\\\": \\\"Collection\\\",\\n      \\\"title\\\": \\\"SMOS\n        L3 Daily Wind Speed\\\",\\n      \\\"version\\\": \\\"4.0\\\",\\n      \\\"license\\\": \\\"various\\\",\\n\n        \\     \\\"assets\\\": {\\n        \\\"search\\\": {\\n          \\\"roles\\\": [\\\"search\\\"],\\n\n        \\         \\\"href\\\": \\\"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=L3SW_Open\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Search client\\\"\\n\n        \\       },\\n        \\\"enclosure\\\": {\\n          \\\"roles\\\": [\\\"data\\\"],\\n          \\\"href\\\":\n        \\\"https://smos-diss.eo.esa.int/oads/meta/L2_SWS_Open/index/\\\",\\n          \\\"type\\\":\n        \\\"text/html\\\",\\n          \\\"title\\\": \\\"OADS repository - OADS repository\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_069r3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/L3SW_Open\\\",\\n          \\\"type\\\":\n        \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/L3SW_Open?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/L3SW_Open?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/L3SW_Open?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/L3SW_Open?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/L3SW_Open?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/L3SW_Open?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        }\\n\n        \\     },\\n      \\\"links\\\": [\\n        {\\n          \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/L3SW_Open\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"root\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n\n        \\         \\\"type\\\": \\\"application/json\\\",\\n          \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"parent\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be\\\",\\n          \\\"title\\\": \\\"collections\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"search\\\",\\n\n        \\         \\\"href\\\": \\\"https://eocat.esa.int/eo-catalogue/collections/series/items/L3SW_Open/api\\\",\\n\n        \\         \\\"type\\\": \\\"application/opensearchdescription+xml\\\",\\n          \\\"title\\\":\n        \\\"OpenSearch Description Document\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://earth.esa.int/eogateway/documents/20142/37627/SMOS-Wind-Products-Description.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"SMOS Wind\n        Products Description Document (PDD) - Product Specifications\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://earth.esa.int/eogateway/documents/20142/37627/SMOS-WIND-DS-ATBD.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"SMOS Wind\n        Products\\_ATBD - Algorithm Theoretical Basis Document (ATBD)\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://earth.esa.int/documents/d/guest/smos-wind-data-service-read-me-first-note-pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"Read-me-first\n        note for the release of SMOS Wind\\_data\\_products - Release Note\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\": \\\"http://www.smosstorm.org/\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"SMOS Wind Data\n        Service at Ifremer - External resources\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://earth.esa.int/eogateway/search?category=tools+and+toolboxes&mission=smos&tools_type=analysis%2Cprocessing%2Cvisualisation\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"SMOS Software Tools\n        - Software Tools\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://esatellus.service-now.com/csp?id=esa_simple_request\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Get Help? - ESA\n        Earth Observation User Services Portal\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/L3SW_Open?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/L3SW_Open?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/L3SW_Open?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/L3SW_Open?httpAccept=application/rdf%2Bxml;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/L3SW_Open?httpAccept=text/turtle;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/L3SW_Open?httpAccept=text/turtle;profile=http://data.europa.eu/930/\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for ESA/ESRIN\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/SMOS\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for SMOS platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/5cda1e1d-7fb8-59c0-8a37-eaceff0ce027\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for MIRAS instrument\\\"\\n        }\\n\n        \\     ],\\n      \\\"id\\\": \\\"L3SW_Open\\\",\\n      \\\"updated\\\": \\\"2024-07-24T12:23:19Z\\\",\\n\n        \\     \\\"stac_extensions\\\": [\\\"https://stac-extensions.github.io/version/v1.2.0/schema.json\\\"],\\n\n        \\     \\\"providers\\\": [\\n        {\\n          \\\"roles\\\": [\\\"producer\\\"],\\n\n        \\         \\\"name\\\": \\\"ESA/ESRIN\\\",\\n          \\\"url\\\": \\\"https://earth.esa.int\\\"\\n\n        \\       },\\n        {\\n          \\\"roles\\\": [\\\"host\\\"],\\n          \\\"name\\\":\n        \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\": \\\"https://emc.spacebel.be/readme.html\\\"\\n\n        \\       }\\n      ],\\n      \\\"summaries\\\": {\\n        \\\"instruments\\\": [\\\"MIRAS\\\"],\\n\n        \\       \\\"platform\\\": [\\\"SMOS\\\"]\\n      }\\n    }\\n  ],\\n  \\\"numberReturned\\\":\n        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\n        \\     \\\"type\\\": \\\"application/json\\\",\\n      \\\"title\\\": \\\"This document\\\"\\n\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\n        \\     \\\"type\\\": \\\"application/json\\\",\\n      \\\"title\\\": \\\"Next results\\\"\\n\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\n        \\     \\\"type\\\": \\\"application/json\\\",\\n      \\\"title\\\": \\\"Previous results\\\"\\n\n        \\   },\\n    {\\n      \\\"rel\\\": \\\"http://www.opengis.net/def/rel/ogc/1.0/queryables\\\",\\n\n        \\     \\\"href\\\": \\\"https://emc.spacebel.be/collections/queryables\\\",\\n      \\\"type\\\":\n        \\\"application/schema+json\\\",\\n      \\\"title\\\": \\\"Queryables for collection\n        search\\\"\\n    }\\n  ],\\n  \\\"numberMatched\\\": 1025\\n}\"\n    headers:\n      Access-Control-Allow-Headers:\n      - X-PINGOTHER, Content-Type, Authorization, Accept\n      Access-Control-Allow-Methods:\n      - POST,GET,PUT,HEAD,OPTIONS,DELETE\n      Access-Control-Allow-Origin:\n      - '*'\n      Cache-Control:\n      - no-cache, no-store, max-age=0, must-revalidate\n      Connection:\n      - keep-alive\n      Content-Type:\n      - application/json;charset=UTF-8\n      Date:\n      - Thu, 31 Jul 2025 15:08:11 GMT\n      Expires:\n      - '0'\n      Pragma:\n      - no-cache\n      Server:\n      - openresty\n      Strict-Transport-Security:\n      - max-age=31536000 ; includeSubDomains\n      Transfer-Encoding:\n      - chunked\n      X-Content-Type-Options:\n      - nosniff\n      X-Frame-Options:\n      - DENY\n      X-Served-By:\n      - emc.spacebel.be\n      X-XSS-Protection:\n      - 1; mode=block\n    status:\n      code: 200\n      message: ''\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://emc.spacebel.be/collections?datetime=2024-01-01T00%3A00%3A01Z%2F2024-01-01T00%3A00%3A10Z\n  response:\n    body:\n      string: \"{\\n  \\\"collections\\\": [\\n    {\\n      \\\"extent\\\": {\\n        \\\"spatial\\\":\n        {\\\"bbox\\\": [[\\n          -180,\\n          -90,\\n          180,\\n          90\\n\n        \\       ]]},\\n        \\\"temporal\\\": {\\\"interval\\\": [[\\n          \\\"2021-10-09T00:00:00.000Z\\\",\\n\n        \\         null\\n        ]]}\\n      },\\n      \\\"stac_version\\\": \\\"1.0.0\\\",\\n\n        \\     \\\"keywords\\\": [\\n        \\\"FedEO\\\",\\n        \\\"SCIHUB\\\",\\n        \\\"DIF10\\\",\\n\n        \\       \\\"Sea Surface Topography\\\",\\n        \\\"EARTH SCIENCE > OCEANS > SEA\n        SURFACE TOPOGRAPHY\\\",\\n        \\\"Radar Altimeters\\\",\\n        \\\"Radiometers\\\",\\n\n        \\       \\\"Sentinel-6\\\",\\n        \\\"POSEIDON-4\\\",\\n        \\\"AMR-C\\\"\\n      ],\\n\n        \\     \\\"created\\\": \\\"2024-01-02T00:00:00.00Z\\\",\\n      \\\"description\\\": \\\"Copernicus\n        Sentinel-6 Michael Freilich is an Earth Observation satellite mission developed\n        to provide enhanced continuity to the very stable time series of mean sea\n        level measurements and ocean sea state that started in 1992, with the TOPEX/Poseidon\n        mission, then continued by the Jason-1, Jason-2 and Jason-3 satellite missions.\\\",\\n\n        \\     \\\"type\\\": \\\"Collection\\\",\\n      \\\"title\\\": \\\"Sentinel-6 Products\\\",\\n\n        \\     \\\"license\\\": \\\"various\\\",\\n      \\\"assets\\\": {\\n        \\\"search\\\":\n        {\\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\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Search client\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_069r3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        }\\n\n        \\     },\\n      \\\"links\\\": [\\n        {\\n          \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"root\\\",\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\": \\\"application/json\\\",\\n\n        \\         \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"title\\\":\n        \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/geo+json\\\",\\n          \\\"title\\\": \\\"Datasets\n        search for the series EOP:ESA:Sentinel-6\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"http://www.opengis.net/def/rel/ogc/1.0/queryables\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/EOP:ESA:SCIHUB:S6/queryables\\\",\\n          \\\"type\\\":\n        \\\"application/schema+json\\\",\\n          \\\"title\\\": \\\"Queryables for EOP:ESA:SCIHUB:S6\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"search\\\",\\n          \\\"href\\\":\n        \\\"https://dataspace.copernicus.eu\\\",\\n          \\\"title\\\": \\\"Copernicus Data\n        Space Ecosystem - Copernicus Data Space Ecosystem\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"search\\\",\\n          \\\"href\\\": \\\"https://fedeo.ceos.org/opensearch/description.xml?parentIdentifier=EOP:ESA:SCIHUB:S6\\\",\\n\n        \\         \\\"title\\\": \\\"FedEO Clearinghouse - FedEO Clearinghouse\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"search\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/series/items/EOP:ESA:SCIHUB:S6/api\\\",\\n\n        \\         \\\"type\\\": \\\"application/opensearchdescription+xml\\\",\\n          \\\"title\\\":\n        \\\"OpenSearch Description Document\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://sentinel.esa.int/web/sentinel/missions/sentinel-6\\\",\\n\n        \\         \\\"title\\\": \\\"ESA Sentinel-6 Online\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=text/turtle;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for ESA/ESRIN\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/Sentinel-6\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for Sentinel-6 platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/700b6e99-a527-5819-b283-4656c8832ea0\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for AMR-C instrument\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/5d1512a5-cb97-5e74-8778-35cd65c06936\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for POSEIDON-4 instrument\\\"\\n        }\\n\n        \\     ],\\n      \\\"id\\\": \\\"EOP:ESA:Sentinel-6\\\",\\n      \\\"updated\\\": \\\"2020-11-21T00:00:00.00Z\\\",\\n\n        \\     \\\"providers\\\": [\\n        {\\n          \\\"roles\\\": [\\\"producer\\\"],\\n\n        \\         \\\"name\\\": \\\"ESA/ESRIN\\\"\\n        },\\n        {\\n          \\\"roles\\\":\n        [\\\"host\\\"],\\n          \\\"name\\\": \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\":\n        \\\"https://emc.spacebel.be/readme.html\\\"\\n        }\\n      ],\\n      \\\"summaries\\\":\n        {\\n        \\\"instruments\\\": [\\n          \\\"AMR-C\\\",\\n          \\\"POSEIDON-4\\\"\\n\n        \\       ],\\n        \\\"platform\\\": [\\\"Sentinel-6\\\"]\\n      }\\n    },\\n    {\\n\n        \\     \\\"extent\\\": {\\n        \\\"spatial\\\": {\\\"bbox\\\": [[\\n          -180,\\n\n        \\         -90,\\n          180,\\n          90\\n        ]]},\\n        \\\"temporal\\\":\n        {\\\"interval\\\": [[\\n          \\\"2017-10-13T00:00:00.000Z\\\",\\n          null\\n\n        \\       ]]}\\n      },\\n      \\\"stac_version\\\": \\\"1.0.0\\\",\\n      \\\"keywords\\\":\n        [\\n        \\\"FedEO\\\",\\n        \\\"SCIHUB\\\",\\n        \\\"DIF10\\\",\\n        \\\"Air\n        Quality\\\",\\n        \\\"EARTH SCIENCE > ATMOSPHERE > AIR QUALITY\\\",\\n        \\\"Sentinel-5P\\\",\\n\n        \\       \\\"TROPOMI\\\"\\n      ],\\n      \\\"created\\\": \\\"2018-10-09T00:00:00.00Z\\\",\\n\n        \\     \\\"description\\\": \\\"The Sentinel-5P data offer for the Pre-Operations\n        Open Access Hub consists of Level-1B and Level-2 user products for the TROPOMI\n        instrument.\\\",\\n      \\\"type\\\": \\\"Collection\\\",\\n      \\\"title\\\": \\\"Sentinel-5P\n        Products\\\",\\n      \\\"license\\\": \\\"various\\\",\\n      \\\"assets\\\": {\\n        \\\"search\\\":\n        {\\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\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Search client\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_069r3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        }\\n\n        \\     },\\n      \\\"links\\\": [\\n        {\\n          \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"root\\\",\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\": \\\"application/json\\\",\\n\n        \\         \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"title\\\":\n        \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/geo+json\\\",\\n          \\\"title\\\": \\\"Datasets\n        search for the series EOP:ESA:Sentinel-5P\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"http://www.opengis.net/def/rel/ogc/1.0/queryables\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/EOP:ESA:SCIHUB:S5P/queryables\\\",\\n          \\\"type\\\":\n        \\\"application/schema+json\\\",\\n          \\\"title\\\": \\\"Queryables for EOP:ESA:SCIHUB:S5P\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"search\\\",\\n          \\\"href\\\":\n        \\\"https://dataspace.copernicus.eu\\\",\\n          \\\"title\\\": \\\"Copernicus Data\n        Space Ecosystem - Copernicus Data Space Ecosystem\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"search\\\",\\n          \\\"href\\\": \\\"https://fedeo.ceos.org/opensearch/description.xml?parentIdentifier=EOP:ESA:SCIHUB:S5P\\\",\\n\n        \\         \\\"title\\\": \\\"FedEO Clearinghouse - FedEO Clearinghouse\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"search\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/series/items/EOP:ESA:SCIHUB:S5P/api\\\",\\n\n        \\         \\\"type\\\": \\\"application/opensearchdescription+xml\\\",\\n          \\\"title\\\":\n        \\\"OpenSearch Description Document\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://sentinel.esa.int/web/sentinel/missions/sentinel-5P\\\",\\n\n        \\         \\\"title\\\": \\\"ESA Sentinel-5P Online\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://sentinels.copernicus.eu/web/sentinel/user-guides/sentinel-5p-tropomi\\\",\\n\n        \\         \\\"title\\\": \\\"Sentinel-5P TROPOMI User Guide \\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=text/turtle;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for ESA/ESRIN\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/Sentinel-5P\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for Sentinel-5P platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/09f91afd-c0d2-52a9-9b50-b895a60917fa\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for TROPOMI instrument\\\"\\n        }\\n\n        \\     ],\\n      \\\"id\\\": \\\"EOP:ESA:Sentinel-5P\\\",\\n      \\\"updated\\\": \\\"2017-04-30T00:00:00.00Z\\\",\\n\n        \\     \\\"stac_extensions\\\": [\\\"https://stac-extensions.github.io/processing/v1.2.0/schema.json\\\"],\\n\n        \\     \\\"providers\\\": [\\n        {\\n          \\\"roles\\\": [\\\"producer\\\"],\\n\n        \\         \\\"name\\\": \\\"ESA/ESRIN\\\"\\n        },\\n        {\\n          \\\"roles\\\":\n        [\\\"host\\\"],\\n          \\\"name\\\": \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\":\n        \\\"https://emc.spacebel.be/readme.html\\\"\\n        }\\n      ],\\n      \\\"summaries\\\":\n        {\\n        \\\"instruments\\\": [\\\"TROPOMI\\\"],\\n        \\\"processing:lineage\\\":\n        [\\\"The Sentinel-5 Precursor objectives are to provide operational space-borne\n        observations in support to the operational monitoring of Air Quality, Climate,\n        Ozone and Surface UV. It will provide measurements of Ozone, NO_2, SO_2, Formaldehyde,\n        Aerosol, Carbonmonoxide, Methane, Clouds.\\\"],\\n        \\\"platform\\\": [\\\"Sentinel-5P\\\"]\\n\n        \\     }\\n    },\\n    {\\n      \\\"extent\\\": {\\n        \\\"spatial\\\": {\\\"bbox\\\":\n        [[\\n          -180,\\n          -90,\\n          180,\\n          90\\n        ]]},\\n\n        \\       \\\"temporal\\\": {\\\"interval\\\": [[\\n          \\\"2016-01-01T00:00:00.000Z\\\",\\n\n        \\         null\\n        ]]}\\n      },\\n      \\\"stac_version\\\": \\\"1.0.0\\\",\\n\n        \\     \\\"keywords\\\": [\\n        \\\"MAJA\\\",\\n        \\\"GeoTiff\\\",\\n        \\\"Forestry\\\",\\n\n        \\       \\\"Forest Conservation/Protection\\\",\\n        \\\"Sentinel-2\\\",\\n        \\\"MSI\\\"\\n\n        \\     ],\\n      \\\"created\\\": \\\"2023-09-05T00:00:00.00Z\\\",\\n      \\\"description\\\":\n        \\\"False colour satellite data allows you to upgrade your forest surveys. It\n        provides you with a broader perspective of biotic and abiotic disturbances\n        in real-time. This enables you to make more informed decisions to safeguard\n        the forests. Forestry professionals can utilise false colour imagery to optimise\n        their forestry operations, such as planning and monitoring tree planting,\n        conducting inventory assessments, and identifying areas for habitat restoration.\\\",\\n\n        \\     \\\"type\\\": \\\"Collection\\\",\\n      \\\"title\\\": \\\"False Colour Composites\\\",\\n\n        \\     \\\"license\\\": \\\"various\\\",\\n      \\\"assets\\\": {\\n        \\\"search\\\":\n        {\\n          \\\"roles\\\": [\\\"search\\\"],\\n          \\\"href\\\": \\\"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=F-FCC\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Search client\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_069r3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-FCC\\\",\\n          \\\"type\\\":\n        \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-FCC?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-FCC?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        },\\n\n        \\       \\\"quicklook\\\": {\\n          \\\"roles\\\": [\\\"overview\\\"],\\n          \\\"href\\\":\n        \\\"https://eovoc.spacebel.be/images/fcc.png\\\",\\n          \\\"type\\\": \\\"image/png\\\",\\n\n        \\         \\\"title\\\": \\\"graphic overview\\\"\\n        }\\n      },\\n      \\\"links\\\":\n        [\\n        {\\n          \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-FCC\\\",\\n\n        \\         \\\"type\\\": \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"root\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\",\\n          \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n\n        \\         \\\"title\\\": \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"items\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/F-FCC/items?httpAccept=application/geo%2Bjson;profile=https://stacspec.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json\\\",\\n          \\\"title\\\": \\\"Datasets\n        search for the series F-FCC\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"http://www.opengis.net/def/rel/ogc/1.0/queryables\\\",\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-FCC/queryables\\\",\\n\n        \\         \\\"type\\\": \\\"application/schema+json\\\",\\n          \\\"title\\\": \\\"Queryables\n        for F-FCC\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"search\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/series/items/F-FCC/api\\\",\\n          \\\"type\\\":\n        \\\"application/opensearchdescription+xml\\\",\\n          \\\"title\\\": \\\"OpenSearch\n        Description Document\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"ordering\\\",\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/ordering?collection=F-FCC\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Order F-FCC Product\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\":\n        \\\"https://eovoc.spacebel.be/images/FC_Brochure_final.pdf\\\",\\n          \\\"type\\\":\n        \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"F-FCC Brochure - F-FCC Product\n        Description\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/rdf%2Bxml;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-FCC?httpAccept=text/turtle;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-FCC?httpAccept=text/turtle;profile=http://data.europa.eu/930/\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/Spacebel\n        SA\\\",\\n          \\\"title\\\": \\\"More collections for Spacebel SA\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/Sentinel-2\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for Sentinel-2 platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/s2-msi\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for MSI instrument\\\"\\n        }\\n\n        \\     ],\\n      \\\"id\\\": \\\"F-FCC\\\",\\n      \\\"updated\\\": \\\"2023-09-05T00:00:00.00Z\\\",\\n\n        \\     \\\"providers\\\": [\\n        {\\n          \\\"roles\\\": [\\\"producer\\\"],\\n\n        \\         \\\"name\\\": \\\"Spacebel SA\\\",\\n          \\\"url\\\": \\\"https://www.spacebel.com\\\"\\n\n        \\       },\\n        {\\n          \\\"roles\\\": [\\\"host\\\"],\\n          \\\"name\\\":\n        \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\": \\\"https://emc.spacebel.be/readme.html\\\"\\n\n        \\       }\\n      ],\\n      \\\"summaries\\\": {\\n        \\\"instruments\\\": [\\\"MSI\\\"],\\n\n        \\       \\\"platform\\\": [\\\"Sentinel-2\\\"]\\n      }\\n    },\\n    {\\n      \\\"extent\\\":\n        {\\n        \\\"spatial\\\": {\\\"bbox\\\": [[\\n          -180,\\n          -90,\\n          180,\\n\n        \\         90\\n        ]]},\\n        \\\"temporal\\\": {\\\"interval\\\": [[\\n          \\\"2016-06-22T00:00:00.000Z\\\",\\n\n        \\         null\\n        ]]}\\n      },\\n      \\\"stac_version\\\": \\\"1.0.0\\\",\\n\n        \\     \\\"keywords\\\": [\\n        \\\"World\\\",\\n        \\\"Planet\\\",\\n        \\\"Land\n        Surface\\\",\\n        \\\"Mapping and Cartography\\\",\\n        \\\"Natural Hazards\n        and Disaster Risk\\\",\\n        \\\"EARTH SCIENCE > LAND SURFACE\\\",\\n        \\\"EARTH\n        SCIENCE > HUMAN DIMENSIONS > NATURAL HAZARDS\\\",\\n        \\\"VIS (0.40 - 0.75\n        \\xB5m)\\\",\\n        \\\"NIR (0.75 - 1.30 \\xB5m)\\\",\\n        \\\"Sun-synchronous\\\",\\n\n        \\       \\\"Very High Resolution - VHR (0 - 5m)\\\",\\n        \\\"475 km (reference)\\\",\\n\n        \\       \\\"25 km\\\",\\n        \\\"Imaging Spectrometers/Radiometers\\\",\\n        \\\"PlanetScope\\\",\\n\n        \\       \\\"PlanetScope Camera\\\"\\n      ],\\n      \\\"created\\\": \\\"2019-08-09T00:00:00.00Z\\\",\\n\n        \\     \\\"description\\\": \\\"The PlanetScope Level 1B Basic Scene and Level 3B\n        Ortho Scene full archive products are available as part of Planet imagery\n        offer.  The Unrectified Asset: PlanetScope Basic Analytic Radiance (TOAR)\n        product is a Scaled Top of Atmosphere Radiance (at sensor) and sensor corrected\n        product, without correction for any geometric distortions inherent in the\n        imaging processes and is not mapped to a cartographic projection. The imagery\n        data is accompanied by Rational Polynomial Coefficients (RPCs) to enable orthorectification\n        by the user.  This kind of product is designed for users with advanced image\n        processing and geometric correction capabilities.     Basic Scene Product\n        Components and Format Product Components:\\\\t - Image File (GeoTIFF format)\n        - Metadata File (XML format) - Rational Polynomial Coefficients (XML format)\n        - Thumbnail File (GeoTIFF format) - Unusable Data Mask UDM File (GeoTIFF format)\n        - Usable Data Mask UDM2 File (GeoTIFF format) Bands: 4-band multispectral\n        image (blue, green, red, near-infrared) or 8-band (coastal-blue, blue, green\n        I, green, yellow, red, Rededge, near-infrared) Ground Sampling Distance:\\\\t\n        - Approximate, satellite altitude dependent - Dove-C: 3.0 m-4.1 m - Dove-R:\n        3.0 m-4.1 m - SuperDove: 3.7 m-4.2 m Accuracy: &lt;10 m RMSE    The Rectified\n        assets: The PlanetScope Ortho Scene product is radiometrically-, sensor- and\n        geometrically- corrected and is projected to a UTM/WGS84 cartographic map\n        projection. The geometric correction uses fine Digital Elevation Models (DEMs)\n        with a post spacing of between 30 and 90 metres.  Ortho Scene Product Components\n        and Format Product Components:\\\\t - Image File (GeoTIFF format) - Metadata\n        File (XML format) - Thumbnail File (GeoTIFF format) - Unusable Data Mask UDM\n        File (GeoTIFF format) - Usable Data Mask UDM2 File (GeoTIFF format) Bands:\n        3-band natural color (red, green, blue) or 4-band multispectral image (blue,\n        green, red, near-infrared) or 8-band (costal-blue, blue, green I, green, yellow,\n        red, RedEdge, near-infrared) Ground Sampling Distance:\\\\t - Approximate, satellite\n        altitude dependent - Dove-C: 3.0 m-4.1 m - Dove-R: 3.0 m-4.1 m  - SuperDove:\n        3.7 m-4.2 m Projection: UTM WGS84 Accuracy: &lt;10 m RMSE    PlanetScope Ortho\n        Scene product is available in the following:   PlanetScope Visual Ortho Scene\n        product is orthorectified and color-corrected (using a colour curve) 3-band\n        RGB Imagery. This correction attempts to optimise colours as seen by the human\n        eye providing images as they would look if viewed from the perspective of\n        the satellite  PlanetScope  Surface Reflectance product is orthorectified,\n        4-band BGRN or 8-band Coastal Blue, Blue, Green I, Green, Yellow, Red, RedEdge,\n        NIR Imagery with geometric, radiometric and  corrected for surface reflection.\n        This data is optimal for value-added image processing such as land cover classifications.\n        \\ PlanetScope Analytic Ortho Scene Surface Reflectance product is orthorectified,\n        4-band BGRN or 8-band Coastal Blue, Blue, Green I, Green, Yellow, Red, RedEdge,\n        NIR Imagery with geometric, radiometric and calibrated to top of atmosphere\n        radiance.  _$$Planet Explorer Catalogue$$ https://www.planet.com/explorer/\n        can be accessed (Planet registration requested) to discover and check the\n        data readiness. It is worth to mention that the data distribution is based\n        on Data Voucher, corresponding to maximum amount of square kilometers can\n        be ordered and downloaded by the project in a maximum period of 15 moths (this\n        duration cannot be extended) starting from the project proposal acceptance\n        date. Each Date Voucher includes PlanetScope tile view streaming access for\n        a total of 20,000 tiles per calendar month during the project period.  All\n        details about the data provision, data access conditions and quota assignment\n        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\n        available in Resources section.\\\",\\n      \\\"type\\\": \\\"Collection\\\",\\n      \\\"title\\\":\n        \\\"PlanetScope Full Archive\\\",\\n      \\\"license\\\": \\\"various\\\",\\n      \\\"assets\\\":\n        {\\n        \\\"metadata_ogc_17_069r3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/PlanetScope.Full.Archive\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        }\\n\n        \\     },\\n      \\\"links\\\": [\\n        {\\n          \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/PlanetScope.Full.Archive\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"root\\\",\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\": \\\"application/json\\\",\\n\n        \\         \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"title\\\":\n        \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://www.planet.com/products/#satellite-imagery\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Planet products\n        - Catalogue\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://earth.esa.int/eogateway/documents/20142/37627/Planet-combined-imagery-product-specs-2020.pdf?text=Combined-Imagery-Product-Spec.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"Planet Imagery\n        Product Specifications - Product Specifications\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://developers.planet.com/docs/apps/explorer/\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"Planet Explorer\n        User Guide - User Manual\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://www.planet.com/explorer/\\\",\\n          \\\"type\\\":\n        \\\"text/html\\\",\\n          \\\"title\\\": \\\"Planet Explorer Catalogue - Catalogue\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\":\n        \\\"https://earth.esa.int/eogateway/documents/20142/37627/Access-to-ESAs-Planet-Missions-Terms-of-Applicability.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"Planet Terms\n        of Applicability - Access Guide\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://esatellus.service-now.com/csp?id=esa_simple_request\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Get Help? - ESA\n        Earth Observation User Services Portal\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?httpAccept=application/rdf%2Bxml;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?httpAccept=text/turtle;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for ESA/ESRIN\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/PlanetScope\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for PlanetScope platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/94314806-9c68-521a-87e2-8cd838eb9de0\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for PlanetScope Camera instrument\\\"\\n\n        \\       }\\n      ],\\n      \\\"id\\\": \\\"PlanetScope.Full.Archive\\\",\\n      \\\"updated\\\":\n        \\\"2023-06-13T13:23:41Z\\\",\\n      \\\"providers\\\": [\\n        {\\n          \\\"roles\\\":\n        [\\\"producer\\\"],\\n          \\\"name\\\": \\\"ESA/ESRIN\\\",\\n          \\\"url\\\": \\\"http://www.esa.int\\\"\\n\n        \\       },\\n        {\\n          \\\"roles\\\": [\\\"host\\\"],\\n          \\\"name\\\":\n        \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\": \\\"https://emc.spacebel.be/readme.html\\\"\\n\n        \\       }\\n      ],\\n      \\\"summaries\\\": {\\n        \\\"instruments\\\": [\\\"PlanetScope\n        Camera\\\"],\\n        \\\"platform\\\": [\\\"PlanetScope\\\"]\\n      }\\n    },\\n    {\\n\n        \\     \\\"extent\\\": {\\n        \\\"spatial\\\": {\\\"bbox\\\": [[\\n          -10,\\n\n        \\         30,\\n          50,\\n          80\\n        ]]},\\n        \\\"temporal\\\":\n        {\\\"interval\\\": [[\\n          \\\"2019-02-01T00:00:00.000Z\\\",\\n          null\\n\n        \\       ]]}\\n      },\\n      \\\"stac_version\\\": \\\"1.0.0\\\",\\n      \\\"keywords\\\":\n        [\\n        \\\"Europe\\\",\\n        \\\"Zone of Exclusivity\\\",\\n        \\\"Agriculture\\\",\\n\n        \\       \\\"Soil Moisture\\\",\\n        \\\"Energy and Natural Resources\\\",\\n        \\\"Terrestrial\n        Hydrosphere\\\",\\n        \\\"EARTH SCIENCE > AGRICULTURE\\\",\\n        \\\"EARTH\n        SCIENCE > AGRICULTURE > SOILS > SOIL MOISTURE/WATER CONTENT\\\",\\n        \\\"EARTH\n        SCIENCE > HUMAN DIMENSIONS > ECONOMIC RESOURCES\\\",\\n        \\\"EARTH SCIENCE\n        > TERRESTRIAL HYDROSPHERE\\\",\\n        \\\"L-Band (19.4 - 76.9 cm)\\\",\\n        \\\"Sun-synchronous\\\",\\n\n        \\       \\\"High Resolution - HR (5 - 20 m)\\\",\\n        \\\"Medium Resolution\n        - MR (20 - 500 m)\\\",\\n        \\\"620 km\\\",\\n        \\\"14-66 km (beam dependent)\n        for stripmap 108-235 km (beam dependent) for topsar\\\",\\n        \\\"Imaging\n        Radars\\\",\\n        \\\"SAOCOM-1A\\\",\\n        \\\"SAOCOM-1B\\\",\\n        \\\"SAOCOM-SAR\\\"\\n\n        \\     ],\\n      \\\"created\\\": \\\"2021-10-27T00:00:00.00Z\\\",\\n      \\\"description\\\":\n        \\\"This collection provides access to the SAOCOM products acquired in the ASI\n        Zone of Exclusivity, that correspond mainly to the European territory plus\n        the international waters in front of North Africa and the Middle East, archived\n        and catalogued in the ASI/CONAE dissemination system.\\\",\\n      \\\"type\\\":\n        \\\"Collection\\\",\\n      \\\"title\\\": \\\"SAOCOM data products\\\",\\n      \\\"license\\\":\n        \\\"various\\\",\\n      \\\"assets\\\": {\\n        \\\"metadata_ogc_17_069r3\\\": {\\n\n        \\         \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/SAOCOM.data.products\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/SAOCOM.data.products?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/SAOCOM.data.products?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/SAOCOM.data.products?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/SAOCOM.data.products?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/SAOCOM.data.products?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/SAOCOM.data.products?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        }\\n\n        \\     },\\n      \\\"links\\\": [\\n        {\\n          \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/SAOCOM.data.products\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"root\\\",\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\": \\\"application/json\\\",\\n\n        \\         \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"title\\\":\n        \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://www.asi.it/en/earth-science/saocom/\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"ASI SAOCOM portal\n        - Web site\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"http://saocom.asi.it:8081/\\\",\\n          \\\"type\\\": \\\"text/html\\\",\\n\n        \\         \\\"title\\\": \\\"ASI SAOCOM Data Hub - Catalogue\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://www.asi.it/wp-content/uploads/2021/07/SAOCOM-membership-guide-1.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"Membership\n        guide - User Guide\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://catalogos.conae.gov.ar/catalogo/docs/SAOCOM/SAOCOM-1_SAR_Level-1_Product-Format_13Jan2020.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"Level1 Products\n        Format - Product Specification\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://esatellus.service-now.com/csp?id=esa_simple_request\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Get Help? - ESA\n        Earth Observation User Services Portal\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/SAOCOM.data.products?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/SAOCOM.data.products?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/SAOCOM.data.products?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/SAOCOM.data.products?httpAccept=application/rdf%2Bxml;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/SAOCOM.data.products?httpAccept=text/turtle;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for ESA/ESRIN\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/SAOCOM-1A\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for SAOCOM-1A platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/SAOCOM-1B\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for SAOCOM-1B platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/a0042d58-dc4b-5cca-ab2a-d849b4db3e73\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for SAOCOM-SAR instrument\\\"\\n        }\\n\n        \\     ],\\n      \\\"id\\\": \\\"SAOCOM.data.products\\\",\\n      \\\"updated\\\": \\\"2023-06-13T13:23:42Z\\\",\\n\n        \\     \\\"providers\\\": [\\n        {\\n          \\\"roles\\\": [\\\"producer\\\"],\\n\n        \\         \\\"name\\\": \\\"ESA/ESRIN\\\",\\n          \\\"url\\\": \\\"https://www.esa.int\\\"\\n\n        \\       },\\n        {\\n          \\\"roles\\\": [\\\"host\\\"],\\n          \\\"name\\\":\n        \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\": \\\"https://emc.spacebel.be/readme.html\\\"\\n\n        \\       }\\n      ],\\n      \\\"summaries\\\": {\\n        \\\"instruments\\\": [\\\"SAOCOM-SAR\\\"],\\n\n        \\       \\\"platform\\\": [\\n          \\\"SAOCOM-1A\\\",\\n          \\\"SAOCOM-1B\\\"\\n\n        \\       ]\\n      }\\n    },\\n    {\\n      \\\"extent\\\": {\\n        \\\"spatial\\\":\n        {\\\"bbox\\\": [[\\n          -180,\\n          -90,\\n          180,\\n          90\\n\n        \\       ]]},\\n        \\\"temporal\\\": {\\\"interval\\\": [[\\n          \\\"2020-07-09T00:00:00.000Z\\\",\\n\n        \\         null\\n        ]]}\\n      },\\n      \\\"stac_version\\\": \\\"1.0.0\\\",\\n\n        \\     \\\"keywords\\\": [\\n        \\\"Level 2C assisted wind fields assimilation\n        processing\\\",\\n        \\\"Atmosphere\\\",\\n        \\\"Atmospheric Indicators\\\",\\n\n        \\       \\\"Atmospheric Winds\\\",\\n        \\\"Climate\\\",\\n        \\\"EARTH SCIENCE\n        > ATMOSPHERE\\\",\\n        \\\"EARTH SCIENCE > ATMOSPHERE > ATMOSPHERIC WINDS\\\",\\n\n        \\       \\\"EARTH SCIENCE > CLIMATE INDICATORS\\\",\\n        \\\"UV (0.01 - 0.4\n        \\xB5m)\\\",\\n        \\\"Sun-synchronous\\\",\\n        \\\"Horizontal resolution at\n        observation scale for Rayleigh/Mie: 87/10 km 250-2000 m vertical resolution\\\",\\n\n        \\       \\\"ALD_U_N_2C\\\",\\n        \\\"320 km\\\",\\n        \\\"Lidar/Laser Sounders\\\",\\n\n        \\       \\\"Aeolus\\\",\\n        \\\"ALADIN\\\"\\n      ],\\n      \\\"created\\\": \\\"2023-02-17T00:00:00.00Z\\\",\\n\n        \\     \\\"description\\\": \\\"The Level 2C wind product of the Aeolus mission provides\n        ECMWF analysis horizontal wind vectors at the geolocations of assimilated\n        L2B HLOS wind components.  The L2C can therefore be described as an Aeolus-assisted\n        horizontal wind vector product. The L2C is a distinct product, however the\n        L2C and L2B share a common Earth Explorer file template, with the L2C being\n        a superset of the L2B.  The L2C consists of extra datasets appended to the\n        L2B product with information which are relevant to the data assimilation of\n        the L2B winds.\\\",\\n      \\\"type\\\": \\\"Collection\\\",\\n      \\\"title\\\": \\\"Aeolus\n        Level 2C assisted wind fields resulting from NWP Numerical Weather Prediction\n        assimilation processing\\\",\\n      \\\"license\\\": \\\"various\\\",\\n      \\\"assets\\\":\n        {\\n        \\\"metadata_ogc_17_069r3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/L2C_Wind_products\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/L2C_Wind_products?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/L2C_Wind_products?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/L2C_Wind_products?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/L2C_Wind_products?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/L2C_Wind_products?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/L2C_Wind_products?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        }\\n\n        \\     },\\n      \\\"links\\\": [\\n        {\\n          \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/L2C_Wind_products\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"root\\\",\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\": \\\"application/json\\\",\\n\n        \\         \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"title\\\":\n        \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://earth.esa.int/eogateway/documents/20142/37627/Aeolus-Level2-Algorithm-Theoretical-Basis-Document.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"Aeolus L2B\n        Algorithm Theoretical Baseline Document - Level 2B processor algorithm description\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\":\n        \\\"https://earth.esa.int/eogateway/documents/20142/37627/Aeolus-L2B-2C-Input-Output-DD-ICD.pdf/2321b6a0-27d0-b628-771e-fcca4928bc32\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"Aeolus L2B/2C\n        Processor Input/Output Data Definitions Interface Control Document - Level\n        2B/2C data definition\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://earth.esa.int/eogateway/documents/20142/37627/Aeolus-Sensor-and-Product-Description.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"Aeolus Sensor\n        and Product Description - Aeolus Sensor and Product Description\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://esatellus.service-now.com/csp?id=esa_simple_request\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Get Help? - ESA\n        Earth Observation User Services Portal\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/L2C_Wind_products?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/L2C_Wind_products?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/L2C_Wind_products?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/L2C_Wind_products?httpAccept=application/rdf%2Bxml;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/L2C_Wind_products?httpAccept=text/turtle;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for ESA/ESRIN\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/Aeolus\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for Aeolus platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/a032cde6-16e3-5940-988e-f6d79870d14c\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for ALADIN instrument\\\"\\n        }\\n\n        \\     ],\\n      \\\"id\\\": \\\"L2C_Wind_products\\\",\\n      \\\"updated\\\": \\\"2023-06-13T13:23:39Z\\\",\\n\n        \\     \\\"providers\\\": [\\n        {\\n          \\\"roles\\\": [\\\"producer\\\"],\\n\n        \\         \\\"name\\\": \\\"ESA/ESRIN\\\",\\n          \\\"url\\\": \\\"http://www.esa.int\\\"\\n\n        \\       },\\n        {\\n          \\\"roles\\\": [\\\"host\\\"],\\n          \\\"name\\\":\n        \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\": \\\"https://emc.spacebel.be/readme.html\\\"\\n\n        \\       }\\n      ],\\n      \\\"summaries\\\": {\\n        \\\"instruments\\\": [\\\"ALADIN\\\"],\\n\n        \\       \\\"platform\\\": [\\\"Aeolus\\\"]\\n      }\\n    },\\n    {\\n      \\\"extent\\\":\n        {\\n        \\\"spatial\\\": {\\\"bbox\\\": [[\\n          -180,\\n          -84,\\n          180,\\n\n        \\         84\\n        ]]},\\n        \\\"temporal\\\": {\\\"interval\\\": [[\\n          \\\"2013-11-13T00:00:00.000Z\\\",\\n\n        \\         null\\n        ]]}\\n      },\\n      \\\"stac_version\\\": \\\"1.0.0\\\",\\n\n        \\     \\\"keywords\\\": [\\n        \\\"World\\\",\\n        \\\"Planet\\\",\\n        \\\"Land\n        Surface\\\",\\n        \\\"Mapping and Cartography\\\",\\n        \\\"Natural Hazards\n        and Disaster Risk\\\",\\n        \\\"EARTH SCIENCE > LAND SURFACE\\\",\\n        \\\"EARTH\n        SCIENCE > HUMAN DIMENSIONS > NATURAL HAZARDS\\\",\\n        \\\"VIS (0.40 - 0.75\n        \\xB5m)\\\",\\n        \\\"NIR (0.75 - 1.30 \\xB5m)\\\",\\n        \\\"Sun-synchronous\\\",\\n\n        \\       \\\"Very High Resolution - VHR (0 - 5m)\\\",\\n        \\\"475-575 km\\\",\\n\n        \\       \\\"8 km at nadir for SkySat-1 to -2, 6.6 km at nadir for SkySat-3 to\n        -13\\\",\\n        \\\"Imaging Spectrometers/Radiometers\\\",\\n        \\\"SkySat\\\",\\n\n        \\       \\\"SkySat Camera\\\"\\n      ],\\n      \\\"created\\\": \\\"2019-08-09T00:00:00.00Z\\\",\\n\n        \\     \\\"description\\\": \\\"The SkySat Level 2B Basic Scene, Level 3B Ortho Scene\n        and Level 3B Consolidated full archive and new tasking products are available\n        as part of Planet imagery offer.  The SkySat Basic Scene product is uncalibrated\n        and in a raw digital number format, not corrected for any geometric distortions\n        inherent in the imaging process. Rational Polynomial Coefficients (RPCs) is\n        provided to enable orthorectification by the user.  Basic Scene Product Components\n        and Format  Processing levels\\\\t/\\\\t- Analytic (unorthorectified, radiometrically\n        corrected, multispectral BGRN); - Analytic DN (unorthorectified, multispectral\n        BGRN); - Panchromatic DN (unorthorectified, panchromatic)\\\\t// Product Components\n        and Format\\\\t/\\\\t- Image File (GeoTIFF format); - Metadata File (JSON format);\n        - Rational Polynomial Coefficients (Text File); - UDM File (GeoTIFF format)\\\\t//\n        Image configuration\\\\t/\\\\t- 4-band Analytic DN Image (Blue, Green, Red, NIR);\n        - 1-band Panchromatic DN Image (Pan)\\\\t// Ground Sampling Distance\\\\t/\\\\t3.7\n        m at nadir (average at reference altitude 475 km)\\\\t// Ground Sampling Distance\n        (nadir)\\\\t/\\\\t- Panchromatic 0.86m and Multispectral 1.0m for SkySat-1&amp;2;\n        - Panchromatic 0.65m and Multispectral 0.8m for SkySat-3 to 13 (0.72 m and\n        1.0m for data acquired before 30/06/2020)\\\\t// Accuracy\\\\t/\\\\t&lt;50 m RMSE\\\\t//\n        \\ The SkySat Ortho Scene is sensor- and geometrically-corrected (by using\n        DEMs with a post spacing of between 30 and 90 meters) and is projected to\n        a cartographic map projection; the accuracy of the product will vary from\n        region to region based on available GCPs. Different products are available:\n        \\ - The SkySat Visual Ortho Scene product is orthorectified, pansharpened,\n        and color-corrected (using a color curve) 3-band RGB Imagery - The SkySat\n        Pansharpened Multispectral Scene product is orthorectified, pansharpened 4-band\n        BGRN Imagery - The SkySat Analytic DN Ortho Scene product is orthorectified,\n        multispectral BGRN, uncalibrated, digital number imagery product. The product\n        has been processed to remove distortions caused by terrain; It eliminates\n        the perspective effect on the ground (not on buildings), restoring the geometry\n        of a vertical shot. Transformation to at-sensor radiance is not included -\n        The SkySat Panchromatic DN Ortho Scene product is orthorectified, panchromatic,\n        uncalibrated, digital number imagery product. It has a finer GSD than the\n        Analytic Product. Transformation to at-sensor radiance is not included. -\n        The SkySat Analytic Ortho Scene are calibrated multispectral imagery products\n        with radiometric corrections applied to correct for any sensor artifacts and\n        transformation to top-of-atmosphere radiance. - The SkySat Consolidated Product\n        are Ortho Collect product created by composing ~60 SkySat Ortho Scenes (Visual,\n        Pansharpened Multispectral, Analytic DN, Panchromatic DN) along an imaging\n        strip into segments.  Ortho Scene Product Components and Format  \\\\t/\\\\tVisual\n        Ortho\\\\t/\\\\tPansharpened Multispectral\\\\t/\\\\tAnalytic DN Ortho\\\\t/\\\\tPanchromatic\n        DN Ortho\\\\t/\\\\tAnalytic Ortho\\\\t// Product Components and Format\\\\t/\\\\tImage\n        File (GeoTIFF format); Metadata File (JSON format); Rational Polynomial Coefficients\n        (Text File); UDM File (GeoTIFF format)\\\\t/\\\\tImage File (GeoTIFF); Metadata\n        File (JSON format); Rational Polynomial Coefficients (Text File); UDM File\n        (GeoTIFF format)\\\\t/\\\\tImage File (GeoTIFF format); Metadata File (JSON format);\n        Rational Polynomial Coefficients (Text File); UDM File (GeoTIFF format);\\\\t/\\\\tImage\n        File (GeoTIFF format); Metadata File (JSON format); Rational Polynomial Coefficients\n        (Text File); UDM File (GeoTIFF format)\\\\t/\\\\tImage File (GeoTIFF format);\n        Metadata File (JSON format); Rational Polynomial Coefficients (Text File);\n        UDM File (GeoTIFF format)\\\\t// Image configuration\\\\t/\\\\t3-band Pansharpened\n        Image (PS Red, PS Green, PS Blue)\\\\t/\\\\t4-band Pansharpened Image (PS Blue,\n        PS Green, PS Red, PS NIR)\\\\t/\\\\t4-band Analytic DN Image (B, G, R, N)\\\\t/\\\\t1-band\n        Panchromatic Image\\\\t/\\\\t4-band Analytic Image (B, G, R, N)\\\\t// Ground Sampling\n        Distance\\\\t/\\\\t50 cm\\\\t/\\\\t50 cm\\\\t/\\\\t50 cm\\\\t/\\\\t50 cm\\\\t/\\\\t50 cm\\\\t//\n        Projection\\\\t/\\\\tUTM WGS84\\\\t/\\\\tUTM WGS84\\\\t/\\\\tUTM WGS84\\\\t/\\\\tUTM WGS84\\\\t/\\\\tUTM\n        WGS84\\\\t// Accuracy\\\\t/\\\\t&lt;10 m RMSE\\\\t/\\\\t&lt;10 m RMSE\\\\t/\\\\t&lt;10 m\n        RMSE\\\\t/\\\\t&lt;10 m RMSE\\\\t/\\\\tradiometric accuracy: +/- 5% Relative accuracy\n        at &lt; 10 degrees off-nadir angle\\\\t//  The products are available as part\n        of the Planet provision from RapidEye, Skysat and PlanetScope constellations.\n        SkySat collection has worldwide coverage: The Planet Explorer Catalogue can\n        be accessed (Planet registration requested) to discover and check the data\n        readiness.  All details about the data provision, data access conditions and\n        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\n        \\     \\\"type\\\": \\\"Collection\\\",\\n      \\\"title\\\": \\\"SkySat Full Archive and\n        New Tasking\\\",\\n      \\\"license\\\": \\\"various\\\",\\n      \\\"assets\\\": {\\n        \\\"metadata_ogc_17_069r3\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/SkySat.Full.Archive.and.New.Tasking\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/SkySat.Full.Archive.and.New.Tasking?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/SkySat.Full.Archive.and.New.Tasking?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/SkySat.Full.Archive.and.New.Tasking?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/SkySat.Full.Archive.and.New.Tasking?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/SkySat.Full.Archive.and.New.Tasking?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/SkySat.Full.Archive.and.New.Tasking?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        }\\n\n        \\     },\\n      \\\"links\\\": [\\n        {\\n          \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/SkySat.Full.Archive.and.New.Tasking\\\",\\n\n        \\         \\\"type\\\": \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"root\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\",\\n          \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n\n        \\         \\\"title\\\": \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\":\n        \\\"https://www.planet.com/products/#satellite-imagery\\\",\\n          \\\"type\\\":\n        \\\"text/html\\\",\\n          \\\"title\\\": \\\"Planet products - Web site\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://earth.esa.int/eogateway/documents/20142/37627/Planet-combined-imagery-product-specs-2020.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"Planet Imagery\n        Product Specifications - Product Specifications\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://developers.planet.com/docs/apps/explorer/\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"Planet Explorer\n        User Guide - User Manual\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://earth.esa.int/eogateway/documents/20142/37627/SkySat-tasking-request-form.pdf/075f845e-13bd-36e2-4743-3aeb2053c61c\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"SkySat Tasking\n        Request Form - Access guide\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\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\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"Planet Terms\n        of Applicability - Access guide\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://esatellus.service-now.com/csp?id=esa_simple_request\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Get Help? - ESA\n        Earth Observation User Services Portal\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/SkySat.Full.Archive.and.New.Tasking?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/SkySat.Full.Archive.and.New.Tasking?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/SkySat.Full.Archive.and.New.Tasking?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for ESA/ESRIN\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/SkySat\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for SkySat platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/429a0634-46aa-518a-ac92-b5bcec0315d4\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for SkySat Camera instrument\\\"\\n        }\\n\n        \\     ],\\n      \\\"id\\\": \\\"SkySat.Full.Archive.and.New.Tasking\\\",\\n      \\\"updated\\\":\n        \\\"2023-06-13T13:23:42Z\\\",\\n      \\\"providers\\\": [\\n        {\\n          \\\"roles\\\":\n        [\\\"producer\\\"],\\n          \\\"name\\\": \\\"ESA/ESRIN\\\",\\n          \\\"url\\\": \\\"https://www.esa.int\\\"\\n\n        \\       },\\n        {\\n          \\\"roles\\\": [\\\"host\\\"],\\n          \\\"name\\\":\n        \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\": \\\"https://emc.spacebel.be/readme.html\\\"\\n\n        \\       }\\n      ],\\n      \\\"summaries\\\": {\\n        \\\"instruments\\\": [\\\"SkySat\n        Camera\\\"],\\n        \\\"platform\\\": [\\\"SkySat\\\"]\\n      }\\n    },\\n    {\\n      \\\"extent\\\":\n        {\\n        \\\"spatial\\\": {\\\"bbox\\\": [[\\n          -180,\\n          -90,\\n          180,\\n\n        \\         90\\n        ]]},\\n        \\\"temporal\\\": {\\\"interval\\\": [[\\n          \\\"2009-08-01T00:00:00.000Z\\\",\\n\n        \\         null\\n        ]]}\\n      },\\n      \\\"stac_version\\\": \\\"1.0.0\\\",\\n\n        \\     \\\"keywords\\\": [\\n        \\\"World\\\",\\n        \\\"GEOSAT\\\",\\n        \\\"DIMAP\\\",\\n\n        \\       \\\"TIFF\\\",\\n        \\\"Vegetation\\\",\\n        \\\"Agriculture\\\",\\n        \\\"Forestry\\\",\\n\n        \\       \\\"EARTH SCIENCE > BIOSPHERE > VEGETATION\\\",\\n        \\\"EARTH SCIENCE\n        > AGRICULTURE\\\",\\n        \\\"EARTH SCIENCE > BIOSPHERE > ECOSYSTEMS > TERRESTRIAL\n        ECOSYSTEMS > FORESTS\\\",\\n        \\\"VIS (0.40 - 0.75 \\xC2\\xB5m)\\\",\\n        \\\"NIR\n        (0.75 - 1.30 \\xC2\\xB5m)\\\",\\n        \\\"Sun-synchronous\\\",\\n        \\\"Medium\n        Resolution - MR (20 - 500 m)\\\",\\n        \\\"663 km\\\",\\n        \\\"625 km\\\",\\n\n        \\       \\\"Cameras\\\",\\n        \\\"GEOSAT-1\\\",\\n        \\\"SLIM6\\\"\\n      ],\\n\n        \\     \\\"created\\\": \\\"2019-05-22T00:00:00.00Z\\\",\\n      \\\"description\\\": \\\"GEOSAT-1\n        full archive and new tasking products are available at 22 m resolution in\n        two processing levels.\\\\r\\\\rL1R (Basic Geopositioned): All 3 spectral channels\n        combined into a band-registered image. Geopositioned product based on sensor\n        model. Coefficients derived from satellite orientation parameters coming from\n        telemetry and appended to metadata\\\\rL1T (L1R orthorectified): Orthorectified\n        to sub-pixel accuracy (10 metres RMS error approximately) with respect to\n        Landsat ETM+ reference data and hole-filled seamless SRTM DEM data V3, 2006\n        (90 m)\\\\rGEOSAT-1 products are provided in DIMAP format. The image products\n        are delivered in the TIFF and GeoTIFF image formats by default. All products\n        can be provided in False Colours (R,G,NIR) or Natural Colours (R, G, Synthetic\n        Blue).\\\\r\\\\rAll details about the data provision, data access conditions and\n        quota assignment procedure are described into the Terms of Applicability available\n        in Resources section.\\\\r\\\\rThe list of available archived data can be retrieved\n        using the GEOSAT catalogue (https://catalogue.geosat.space/cscda/extcat/)\\\\rAll\n        details about the data provision, data access conditions and quota assignment\n        procedure are described into the Terms of Applicability available in Resources\n        section. \\\\r\\\\rThe list of available archived data can be retrieved using\n        the Deimos catalogue (http://www.deimos-imaging.com/catalogue).\\\",\\n      \\\"type\\\":\n        \\\"Collection\\\",\\n      \\\"title\\\": \\\"GEOSAT-1 full archive and tasking\\\",\\n\n        \\     \\\"license\\\": \\\"various\\\",\\n      \\\"assets\\\": {\\n        \\\"metadata_ogc_17_069r3\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/Geosat-1.Full.archive.and.tasking\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/Geosat-1.Full.archive.and.tasking?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/Geosat-1.Full.archive.and.tasking?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/Geosat-1.Full.archive.and.tasking?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/Geosat-1.Full.archive.and.tasking?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/Geosat-1.Full.archive.and.tasking?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/Geosat-1.Full.archive.and.tasking?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        }\\n\n        \\     },\\n      \\\"links\\\": [\\n        {\\n          \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/Geosat-1.Full.archive.and.tasking\\\",\\n\n        \\         \\\"type\\\": \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"root\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\",\\n          \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n\n        \\         \\\"title\\\": \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/Geosat-1.Full.archive.and.tasking?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/Geosat-1.Full.archive.and.tasking?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/Geosat-1.Full.archive.and.tasking?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for ESA/ESRIN\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/GEOSAT-1\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for GEOSAT-1 platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/5cc6eaab-0ddc-572f-a1b7-afa52ea5333d\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for SLIM6 instrument\\\"\\n        }\\n\n        \\     ],\\n      \\\"id\\\": \\\"Geosat-1.Full.archive.and.tasking\\\",\\n      \\\"updated\\\":\n        \\\"2023-06-13T13:23:40Z\\\",\\n      \\\"providers\\\": [\\n        {\\n          \\\"roles\\\":\n        [\\\"producer\\\"],\\n          \\\"name\\\": \\\"ESA/ESRIN\\\",\\n          \\\"url\\\": \\\"https://earth.esa.int\\\"\\n\n        \\       },\\n        {\\n          \\\"roles\\\": [\\\"host\\\"],\\n          \\\"name\\\":\n        \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\": \\\"https://emc.spacebel.be/readme.html\\\"\\n\n        \\       }\\n      ],\\n      \\\"summaries\\\": {\\n        \\\"instruments\\\": [\\\"SLIM6\\\"],\\n\n        \\       \\\"platform\\\": [\\\"GEOSAT-1\\\"]\\n      }\\n    },\\n    {\\n      \\\"extent\\\":\n        {\\n        \\\"spatial\\\": {\\\"bbox\\\": [[\\n          -180,\\n          -90,\\n          180,\\n\n        \\         90\\n        ]]},\\n        \\\"temporal\\\": {\\\"interval\\\": [[\\n          \\\"2016-06-01T00:00:00.000Z\\\",\\n\n        \\         null\\n        ]]}\\n      },\\n      \\\"stac_version\\\": \\\"1.0.0\\\",\\n\n        \\     \\\"keywords\\\": [\\n        \\\"World\\\",\\n        \\\"GNSS\\\",\\n        \\\"AIS\\\",\\n\n        \\       \\\"ADS-B\\\",\\n        \\\"Atmosphere\\\",\\n        \\\"Ionosphere and Magnetosphere\n        Dynamics\\\",\\n        \\\"Weather Events\\\",\\n        \\\"Oceans\\\",\\n        \\\"EARTH\n        SCIENCE > ATMOSPHERE\\\",\\n        \\\"EARTH SCIENCE > SUN-EARTH INTERACTIONS\n        > IONOSPHERE/MAGNETOSPHERE DYNAMICS\\\",\\n        \\\"EARTH SCIENCE > ATMOSPHERE\n        > WEATHER EVENTS\\\",\\n        \\\"EARTH SCIENCE > OCEANS\\\",\\n        \\\"Sun-synchronous\\\",\\n\n        \\       \\\"500 km\\\",\\n        \\\"Imaging Spectrometers/Radiometers\\\",\\n        \\\"Spire\\\",\\n\n        \\       \\\"AIRSAFE\\\",\\n        \\\"SENSE\\\",\\n        \\\"STRATOS\\\"\\n      ],\\n\n        \\     \\\"created\\\": \\\"2020-09-04T00:00:00.00Z\\\",\\n      \\\"description\\\": \\\"The\n        data collected by Spire from it&apos;s 110 satellites launched into Low Earth\n        Orbit (LEO) has a diverse range of applications, from analysis of global trade\n        patterns and commodity flows to aircraft routing to weather forecasting. The\n        data also provides interesting research opportunities on topics as varied\n        as ocean currents and GNSS-based planetary boundary layer height.  The following\n        products can be requested:  ADS-B Data Stream Global ADS-B satellite data\n        observed by Spire satellites and processed through the ground stations network.\n        Historical ADS-B data older than 6 months can be delivered as data cuts containing\n        CSV file(s) accessible through a Web Service or Cloud storage solutions. Live\n        ADS-B data is available through a streaming API, and recent historical data\n        can be accessed through a REST API. Data is distributed as a monthly subscription:\n        historical data can be requested starting from 3 December 2008, the time period\n        for live data starts from a user-defined date and continues for 30 days.  AIS\n        AIS messages include satellite AIS (S-AIS) as observed by Spire satellites\n        and terrestrial AIS (T-AIS) from third party sensor stations (up to 40 million\n        messages per day). Historical AIS data are delivered as a cvs file with availability\n        back to June 2016 or via Historical API from December 2018; live AIS data\n        are pushed to end users via TCP or through Messages API. Data is distributed\n        as a monthly subscription, from a user-defined date and continues for a 30\n        day period.  GNSS-Radio Occultation GNSS Radio Occultation (GNSS-RO) measurements\n        are collected globally on a continuous basis, generating profiles of the Earth\\\\u2019s\n        atmosphere. Derived Level 1 and Level 2 products include both atmospheric\n        and ionospheric products. Historical data for most of the GNSS-RO products\n        are available from December 2018 to the present. Near real-time (within 90\n        minutes or less latency from collection to delivery) GNSS-RO profiles are\n        also available upon request.  GNSS Reflectometry GNSS Reflectometry (GNSS-R)\n        is a technique to measure Earth\\\\u2019s surface properties using reflections\n        of GNSS signals in the form of a bistatic radar. Spire collects two types\n        of GNSS-R data: conventional, near-nadir incidence LHCP reflections collected\n        by the Spire GNSS-R satellites (e.g., Spire GNSS-R \\\\u201cBatch-1\\\\u201d satellites)\n        and grazing angle (i.e., low elevation angle) RHCP reflections collected by\n        the Spire GNSS-RO satellites. Derived Level 1 and Level 2 products are available,\n        as well as some special Level 0 raw intermediate frequency (IF) data. Historical\n        grazing angle GNSS-R data are available from May 2019 to the present, while\n        conventional GNSS-R data are available from December 2020 to the present.\n        \\ Name: Automatic Identification System (AIS) Description: The automatic identification\n        system (AIS) is an automatic tracking system that uses transponders on ships\n        and is used by vessel traffic services. Spire data includes satellite AIS\n        (S-AIS) as observed by Spire satellites and terrestrial AIS (T-AIS) from third\n        party sensor stations. Data format and content: .parquet.gz files The AIS\n        files contain time-series data on received AIS messages, both the raw NMEA\n        message and added post-processing data for each message. Application: Supply\n        chain analysis, commodity trading, identification of illegal fishing or dark\n        targets, ship route and fuel use optimization, analysis of global trade patterns,\n        anti-piracy, autonomous vessel software, ocean currents.  Name: Automatic\n        Dependent Surveillance-Broadcast (ADS-B) Description: Spire AirSafe ADS-B\n        products give  access to satellite and terrestrial ADS-B data from captured\n        aircrafts. Data format and content: .csv.gz files The decompressed csv file\n        contains a list of hexadecimal representations of ADS-B messages associated\n        with the timestamp they were received on the satellite. Application: Fleet\n        management, ICAO regulatory compliance, route optimization, predictive maintenance,\n        global airspace, domain awareness.  Name: Global Navigation Satellite System\n        Radio Occultation (GNSS-RO) Description: GNSS atmospheric radio occultation\n        (GNSS-RO) relies on the detection of a change in a radio signal as it passes\n        through a planet&apos;s atmosphere, i.e. as it is refracted by the atmosphere.\n        This data set contains precise orbit determination (POD) solutions, satellite\n        attitude information, high-rate occultation observations, excess phase, and\n        derived atmospheric dry temperature profiles. Data format and content: podObs*.rnx\n        This file contains raw pseudorange, carrier phase, Doppler frequency, and\n        signal-to-noise measurements for each observed GPS signal from a single Spire\n        satellite which allow to estimate the positions and velocities of each Spire\n        satellite and also used to derive ionospheric total electron content data.\n        leoOrb*.sp3 This file contains the estimated position, velocity and receiver\n        clock error of a given Spire satellite after processing of the POD observation\n        file leoAtt*.log It contains 1 Hz rate quaternion information measured from\n        a single Spire satellite describing the satellite orientation. opnGns*ro.bin,\n        opnGns*rst.bin these files contain raw measurements from the occulting GNSS\n        satellite (one for each signal frequency) and raw phase data from one or more\n        reference GNSS satellites. atmPhs* The file contains occultation excess phase\n        delay. Also contains SNR values, ransmitter and receiver positions and open\n        loop model information. atmPrf*.nc The file contains profiles of atmospheric\n        dry pressure, dry temperature and neutral refractivity as a function of altitude\n        produced from full processing of one occultation event. bfrPrf*.bufr The file\n        contains derived profiles of dry pressure, dry temperature, refractivity and\n        bending angle for each occultation. Application:\\\\tAtmospheric profiles of\n        pressure, dry temperature, bending angle, and refractivity used in numerical\n        weather prediction data assimilation and climate change studies.  Name: Raw\n        IF samples from GNSS-RO satellites Description: Raw intermediate frequency\n        (IF) sampled data (I/Q) from the GNSS receiver front-end of GNSS-RO satellites.\n        Data format and content: rocRIF*.zip Binary raw IF data and associated ancillary\n        data (e.g., POD data) in a zip archive per collection event. Application:\n        GNSS-RO studies, GNSS RFI and jamming monitoring, research.  Name: Raw IF\n        samples from GNSS-R satellites Description: Raw intermediate frequency (IF)\n        sampled data (I/Q) from the GNSS receiver front-end of conventional GNSS-R\n        satellites. Data format and content: gbrRIF*.zip Binary raw IF data and associated\n        ancillary data (e.g., POD data) in a zip archive per collection event. Application:\n        GNSS-R studies, GNSS RFI and jamming monitoring, research, etc.  Name: Grazing\n        angle GNSS-R observations Description: During grazing angle GNSS-R events,\n        signal reflection at two frequencies is observed through the limb-facing antenna\n        and is trackedusing an open-loop tracking technique thatrelies on a model\n        topredict the propagationdelay and Doppler of thereflected signal. Simultaneous\n        open-looptracking of the signaldirectly along theline-of-sight from thetransmitter\n        to thereceiver is alsoperformed to provideadditional data that maybenecessary\n        for signalcalibration. The mainoutput of the open-looptracking are in-phase\n        (I)and quadrature (Q)accumulation samples(nominally at 50 Hz),which represent\n        the residual Doppler (phase) from the model. Data format and content: grzObs*.nc\n        L1A filecontains rawopen loopcarrier phasemeasurementsat 50 Hzsampling forgrazingangleGNSS-Rreflectionscaptured\n        in the GNSS-RO RHC Pantennas, (bothdirect andreflectedsignals) on GNSS-RO\n        satellites. Application: Sea surface and sea ice height extent, and classification.\n        \\ Name: Georeferenced grazing angle GNSS-R observations Description: The low-levelobservations\n        of the high-rate grazing angle GNSS-R observationsbut withthegeoreferenced\n        bistatic radar parameters of the satellite receiver,specular reflection, and\n        GNSS transmitter included. Data format and content: grzRfl*.nc L1B file contains\n        the georeferenced grazing angle GNSS-R data collected by Spire GNSS-RO satellites,\n        including the low-level observables and bistatic radar geometries (e.g., receiver,\n        specular reflection, and the transmitter locations). Application: Sea surface\n        and sea ice height extent, and classification  Name: GNSS-R calibrated bistatic\n        radar reflectivities Description: Higher level product used to derive land-surface\n        reflectivity. Data format and content: gbrRfl*.nc L1A along-track calibrated\n        relative power between reflected and direct signals (e.g., bistatic radar\n        reflectivities) measured by Spire conventional GNSS-R satellites. Application:\n        GNSS-R studies, soil moisture, ocean wind, and sea ice applications  Name:\n        GNSS-R calibrated bistatic radar cross-sections Description: Higher level\n        product used to derive ocean surface roughness products. Data format and content:\n        gbrRCS*.nc L1B along-track calibrated and normalized bistatic radar cross-sections\n        measured by Spire conventional GNSS-R satellites. Application: GNSS-R studies,\n        ocean wind and sea ice applications  Name: Combined Surface Soil Moisture\n        Description: Combined CYGNSS and SMAP soil moisture data are provided as a\n        combined surface soil moisture (COMB-SSM) product in two data level formats:\n        L2U1 and L3U1. 6 x 6 km grid cell. L-band measurements of surface soil moisture\n        benefit from better vegetation penetration in comparison to traditional C-band\n        measurements. Data format and content: COMB-SSM.nc This file contains the\n        combined data product containing measurements from both CYGNSS and SMAP reported\n        on a 6 km global Equi7Grid grid. Application: Agriculture, crop insurance,\n        farming solutions, climatology, terrain awareness, peatlands and wetlands\n        monitoring etc.  Name: Ionosphere total electron content Description: Spire\n        routinely collects and processes a large volume of total electron content\n        (TEC) data, representing the line-of-sight integration of electron density\n        between a Spire satellite and a GNSS satellite. Each file contains line-of-sight\n        ionospheric total electron content (TEC) estimates derived for a \\\\u2018single\n        viewing arc\\\\u2019 contained in the POD observation file. Viewing arcs are\n        at least 10 minutes in duration. Data format and content: podTec*.nc This\n        file contains the line-of-sight total electron content with associated orbital\n        information. Application: Space weather research, tsunamigenic earthquakes,\n        weather applications, space situational awareness (SSA), autonomous vehicles\n        etc  Name: Ionosphere scintillation Description: The scintillation index for\n        each GNSS frequency is computed onboard the spacecraft. This index provides\n        a measure of the fluctuations of the GNSS signal over the course of 10 seconds\n        caused by propagation of the radio signals through electron density irregularities\n        in the ionosphere. After the raw indices are downlinked to the ground, they\n        are packaged along with associated metadata such as orbit position to create\n        the final scintillation data product. Data format and content: scnLv1*.nc\n        This file contains on-board computed scintillation data (S4 only) with associated\n        orbital information Application: Space weather research, solar events, TIDs,\n        weather applications positioning and navigation, communications etc.  Name:\n        Electron density profile Description: Electron density profiles are retrieved\n        as a function of altitude. Electron density profiles are processed from podTec\n        netcdf files, which span a sufficient elevation angle range. A standard Abel\n        inversion algorithm is applied to retrieve the profiles. Data format and content:\n        ionPrf*.nc This file contains electron density profile retrieved from podTec\n        files spanning appropriate elevation angle range Application: Space weather\n        research, solar events, TIDs, weather applications positioning and navigation,\n        communications.  The products are available as part of the Spire provision\n        with worldwide coverage.  All details about the data provision, data access\n        conditions and quota assignment procedure are described in the Terms of Applicability\n        (https://earth.esa.int/eogateway/documents/20142/37627/SPIRE-Terms-Of-Applicability.pdf/0dd8b3e8-05fe-3312-6471-a417c6503639).\\\",\\n\n        \\     \\\"type\\\": \\\"Collection\\\",\\n      \\\"title\\\": \\\"Spire live and historical\n        data\\\",\\n      \\\"license\\\": \\\"various\\\",\\n      \\\"assets\\\": {\\n        \\\"metadata_ogc_17_069r3\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/Spire.live.and.historical.data\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/Spire.live.and.historical.data?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/Spire.live.and.historical.data?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/Spire.live.and.historical.data?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/Spire.live.and.historical.data?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/Spire.live.and.historical.data?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/Spire.live.and.historical.data?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        }\\n\n        \\     },\\n      \\\"links\\\": [\\n        {\\n          \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/Spire.live.and.historical.data\\\",\\n\n        \\         \\\"type\\\": \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"root\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\",\\n          \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n\n        \\         \\\"title\\\": \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\":\n        \\\"https://earth.esa.int/eogateway/documents/20142/37627/Spire-Product-Guide.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"Spire Product\n        Guide - Product Description\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://earth.esa.int/eogateway/documents/20142/37627/SPIRE-Terms-Of-Applicability.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"Spire Terms\n        of Applicability - Access Guide\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://esatellus.service-now.com/csp?id=esa_simple_request\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Get Help? - ESA\n        Earth Observation User Services Portal\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/Spire.live.and.historical.data?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/Spire.live.and.historical.data?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/Spire.live.and.historical.data?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for ESA/ESRIN\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/Spire\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for Spire platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/1c3bd49f-bdc9-5c33-a273-2f0f7a5b3f88\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for STRATOS instrument\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/e5735a20-bdb8-5cff-b385-c16c84c855f4\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for SENSE instrument\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/11f58510-1770-53a7-9b13-5a5564b4e9c2\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for AIRSAFE instrument\\\"\\n        }\\n\n        \\     ],\\n      \\\"id\\\": \\\"Spire.live.and.historical.data\\\",\\n      \\\"updated\\\":\n        \\\"2023-06-13T13:23:42Z\\\",\\n      \\\"providers\\\": [\\n        {\\n          \\\"roles\\\":\n        [\\\"producer\\\"],\\n          \\\"name\\\": \\\"ESA/ESRIN\\\",\\n          \\\"url\\\": \\\"http://www.esa.int\\\"\\n\n        \\       },\\n        {\\n          \\\"roles\\\": [\\\"host\\\"],\\n          \\\"name\\\":\n        \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\": \\\"https://emc.spacebel.be/readme.html\\\"\\n\n        \\       }\\n      ],\\n      \\\"summaries\\\": {\\n        \\\"instruments\\\": [\\n\n        \\         \\\"STRATOS\\\",\\n          \\\"SENSE\\\",\\n          \\\"AIRSAFE\\\"\\n        ],\\n\n        \\       \\\"platform\\\": [\\\"Spire\\\"]\\n      }\\n    },\\n    {\\n      \\\"extent\\\":\n        {\\n        \\\"spatial\\\": {\\\"bbox\\\": [[\\n          -180,\\n          -90,\\n          180,\\n\n        \\         90\\n        ]]},\\n        \\\"temporal\\\": {\\\"interval\\\": [[\\n          \\\"2012-10-01T00:00:00.000Z\\\",\\n\n        \\         null\\n        ]]}\\n      },\\n      \\\"stac_version\\\": \\\"1.0.0\\\",\\n\n        \\     \\\"keywords\\\": [\\n        \\\"World\\\",\\n        \\\"Multispectral\\\",\\n        \\\"Panchromatic\\\",\\n\n        \\       \\\"Pansharpened\\\",\\n        \\\"Pleiades\\\",\\n        \\\"Agriculture\\\",\\n\n        \\       \\\"Afforestation/Reforestation\\\",\\n        \\\"Crops and Yields\\\",\\n\n        \\       \\\"Forest Fires\\\",\\n        \\\"Landscape\\\",\\n        \\\"Topography\\\",\\n\n        \\       \\\"Weather Events\\\",\\n        \\\"EARTH SCIENCE > AGRICULTURE\\\",\\n        \\\"EARTH\n        SCIENCE > AGRICULTURE > FOREST SCIENCE > AFFORESTATION/REFORESTATION\\\",\\n\n        \\       \\\"EARTH SCIENCE > AGRICULTURE > AGRICULTURAL PLANT SCIENCE > CROP/PLANT\n        YIELDS\\\",\\n        \\\"EARTH SCIENCE > AGRICULTURE > FOREST SCIENCE > FOREST\n        FIRE SCIENCE\\\",\\n        \\\"EARTH SCIENCE > LAND SURFACE > LANDSCAPE\\\",\\n        \\\"EARTH\n        SCIENCE > LAND SURFACE > TOPOGRAPHY\\\",\\n        \\\"EARTH SCIENCE > ATMOSPHERE\n        > WEATHER EVENTS\\\",\\n        \\\"VIS (0.40 - 0.75 \\xB5m)\\\",\\n        \\\"NIR (0.75\n        - 1.30 \\xB5m)\\\",\\n        \\\"SWIR (1.3 - 3.0 \\xB5m)\\\",\\n        \\\"Sun-synchronous\\\",\\n\n        \\       \\\"Very High Resolution - VHR (0 - 5m)\\\",\\n        \\\"High Resolution\n        - HR (5 - 20 m)\\\",\\n        \\\"832 km for SPOT-1 to 5, 694 km for SPOT-6 and\n        7\\\",\\n        \\\"60 km\\\",\\n        \\\"Cameras\\\",\\n        \\\"SPOT 6\\\",\\n        \\\"SPOT\n        7\\\",\\n        \\\"NAOMI\\\"\\n      ],\\n      \\\"created\\\": \\\"2019-07-16T00:00:00.00Z\\\",\\n\n        \\     \\\"description\\\": \\\"The SPOT 6 and 7 satellites ensure data continuity\n        with the no longer operational SPOT 5 satellite and provide an archive of\n        very high resolution optical acquisition as well as the possibility to task\n        the satellites for new acquisitions. Following the completion of the SPOT\n        7 mission in March 2023, new acquisition tasking is only available for the\n        SPOT 6 satellite.  The ortho-products are automatically generated by the SPOT\n        6 and 7 ground segment, based on SRTM database or Reference3D when available.\n        The projection available for SPOT 6 and 7 ortho-products is UTM, datum WGS84.\n        \\ Bands combinations: - Pansharpened: colour image at 1.5 m resolution - Bundle:\n        1.5 m panchromatic image and 6 m multispectral image  Geometric processing\n        levels: - Primary: The Primary product is the processing level closest to\n        the natural image acquired by the sensor. This product restores perfect collection\n        conditions: the sensor is placed in rectilinear geometry, and the image is\n        clear of all radiometric distortion. - Standard Ortho: The Ortho product is\n        a georeferenced image in Earth geometry, corrected from acquisition and terrain\n        off-nadir effects. - Tailored ortho: Aside from the Standard Ortho product,\n        when different specifications are needed, a custom orthorectification, with\n        a more precise 3D model provided by the client or acquired for the purpose,\n        can be provided on demand.\\\",\\n      \\\"type\\\": \\\"Collection\\\",\\n      \\\"title\\\":\n        \\\"SPOT 6 &amp; 7 full archive and tasking\\\",\\n      \\\"license\\\": \\\"various\\\",\\n\n        \\     \\\"assets\\\": {\\n        \\\"metadata_ogc_17_069r3\\\": {\\n          \\\"roles\\\":\n        [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        }\\n\n        \\     },\\n      \\\"links\\\": [\\n        {\\n          \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"root\\\",\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\": \\\"application/json\\\",\\n\n        \\         \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"title\\\":\n        \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://www.intelligence-airbusds.com/satellite-data/\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"SPOT-6 to 7 products\n        description - Other\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"http://www.intelligence-airbusds.com/spotmaps/\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"SPOTMaps technical\n        information - Other\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://earth.esa.int/eogateway/documents/20142/1586698/SPOTMaps2.5.kmz\\\",\\n\n        \\         \\\"title\\\": \\\"SPOTMaps 2.5 geographical coverage - Other\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://earth.esa.int/eogateway/documents/20142/37627/SPOT-6-7-imagery-user-guide.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"SPOT 6&7\n        Imagery User Guide - Product Specification\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://www.intelligence-airbusds.com/imagery/constellation/pleiades-neo/how-to-order/\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"OneAtlas guides\n        - Data Access Information\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://www.intelligence-airbusds.com/en/4871-geostore-ordering\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"GeoStore Catalogue\n        - Catalogue\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://oneatlas.airbus.com/\\\",\\n          \\\"type\\\":\n        \\\"text/html\\\",\\n          \\\"title\\\": \\\"OneAtlas Living Library - Catalogue\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\":\n        \\\"https://earth.esa.int/eogateway/documents/20142/37627/SPOT-Pleiades-data-terms-of-applicability.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"SPOT and\n        Pleiades Terms of Applicability - Access Guide\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://esatellus.service-now.com/csp?id=esa_simple_request\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Get Help? - ESA\n        Earth Observation User Services Portal\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1?httpAccept=application/rdf%2Bxml;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\\\",\\n\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1?httpAccept=text/turtle;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1?httpAccept=text/turtle;profile=http://data.europa.eu/930/\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for ESA/ESRIN\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/SPOT%206\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for SPOT 6 platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/SPOT%207\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for SPOT 7 platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/ec73a747-76a7-56f1-a011-0465a3ed4a87\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for NAOMI instrument\\\"\\n        }\\n\n        \\     ],\\n      \\\"id\\\": \\\"SPOT67fullarchiveandtasking1\\\",\\n      \\\"updated\\\":\n        \\\"2023-06-13T13:23:42Z\\\",\\n      \\\"providers\\\": [\\n        {\\n          \\\"roles\\\":\n        [\\\"producer\\\"],\\n          \\\"name\\\": \\\"ESA/ESRIN\\\",\\n          \\\"url\\\": \\\"https://www.esa.int\\\"\\n\n        \\       },\\n        {\\n          \\\"roles\\\": [\\\"host\\\"],\\n          \\\"name\\\":\n        \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\": \\\"https://emc.spacebel.be/readme.html\\\"\\n\n        \\       }\\n      ],\\n      \\\"summaries\\\": {\\n        \\\"instruments\\\": [\\\"NAOMI\\\"],\\n\n        \\       \\\"platform\\\": [\\n          \\\"SPOT 6\\\",\\n          \\\"SPOT 7\\\"\\n        ]\\n\n        \\     }\\n    }\\n  ],\\n  \\\"numberReturned\\\": 10,\\n  \\\"links\\\": [\\n    {\\n      \\\"rel\\\":\n        \\\"self\\\",\\n      \\\"href\\\": \\\"https://emc.spacebel.be/collections?datetime=2024-01-01T00%3A00%3A01Z%2F2024-01-01T00%3A00%3A10Z\\\",\\n\n        \\     \\\"type\\\": \\\"application/json\\\",\\n      \\\"title\\\": \\\"This document\\\"\\n\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\n        \\     \\\"type\\\": \\\"application/json\\\",\\n      \\\"title\\\": \\\"Next results\\\"\\n\n        \\   },\\n    {\\n      \\\"rel\\\": \\\"http://www.opengis.net/def/rel/ogc/1.0/queryables\\\",\\n\n        \\     \\\"href\\\": \\\"https://emc.spacebel.be/collections/queryables\\\",\\n      \\\"type\\\":\n        \\\"application/schema+json\\\",\\n      \\\"title\\\": \\\"Queryables for collection\n        search\\\"\\n    }\\n  ],\\n  \\\"numberMatched\\\": 1025\\n}\"\n    headers:\n      Access-Control-Allow-Headers:\n      - X-PINGOTHER, Content-Type, Authorization, Accept\n      Access-Control-Allow-Methods:\n      - POST,GET,PUT,HEAD,OPTIONS,DELETE\n      Access-Control-Allow-Origin:\n      - '*'\n      Cache-Control:\n      - no-cache, no-store, max-age=0, must-revalidate\n      Connection:\n      - keep-alive\n      Content-Type:\n      - application/json;charset=UTF-8\n      Date:\n      - Thu, 31 Jul 2025 15:08:12 GMT\n      Expires:\n      - '0'\n      Pragma:\n      - no-cache\n      Server:\n      - openresty\n      Strict-Transport-Security:\n      - max-age=31536000 ; includeSubDomains\n      Transfer-Encoding:\n      - chunked\n      X-Content-Type-Options:\n      - nosniff\n      X-Frame-Options:\n      - DENY\n      X-Served-By:\n      - emc.spacebel.be\n      X-XSS-Protection:\n      - 1; mode=block\n    status:\n      code: 200\n      message: ''\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://emc.spacebel.be/collections?datetime=2024-01-01T00%3A00%3A01Z%2F2024-01-01T00%3A00%3A10Z&startRecord=11\n  response:\n    body:\n      string: \"{\\n  \\\"collections\\\": [\\n    {\\n      \\\"extent\\\": {\\n        \\\"spatial\\\":\n        {\\\"bbox\\\": [[\\n          -180,\\n          -90,\\n          180,\\n          90\\n\n        \\       ]]},\\n        \\\"temporal\\\": {\\\"interval\\\": [[\\n          \\\"2020-04-20T00:00:00.000Z\\\",\\n\n        \\         null\\n        ]]}\\n      },\\n      \\\"stac_version\\\": \\\"1.0.0\\\",\\n\n        \\     \\\"keywords\\\": [\\n        \\\"global\\\",\\n        \\\"tropics\\\",\\n        \\\"polar\n        regions\\\",\\n        \\\"atmospheric winds\\\",\\n        \\\"atmospheric dynamic\\\",\\n\n        \\       \\\"troposphere\\\",\\n        \\\"stratosphere\\\",\\n        \\\"air quality\\\",\\n\n        \\       \\\"mie\\\",\\n        \\\"rayleigh\\\",\\n        \\\"clouds\\\",\\n        \\\"aerosols\\\",\\n\n        \\       \\\"wind profiles\\\",\\n        \\\"weather\\\",\\n        \\\"climate\\\",\\n        \\\"weather\n        forecast\\\",\\n        \\\"Atmospheric Winds\\\",\\n        \\\"Atmospheric Indicators\\\",\\n\n        \\       \\\"EARTH SCIENCE > ATMOSPHERE > ATMOSPHERIC WINDS\\\",\\n        \\\"UV\n        (0.01 - 0.4 \\xB5m)\\\",\\n        \\\"Sun-synchronous\\\",\\n        \\\"Horizontal\n        resolution at measurement scale: 3 km; Horizontal resolution at observation\n        scale for Rayleigh/Mie: 87/10 km\\\",\\n        \\\"250-2000 m vertical resolution\\\",\\n\n        \\       \\\"ALD_U_N_1B\\\",\\n        \\\"320 km\\\",\\n        \\\"Lidar/Laser Sounders\\\",\\n\n        \\       \\\"Aeolus\\\",\\n        \\\"ALADIN\\\"\\n      ],\\n      \\\"created\\\": \\\"2020-04-30T00:00:00.00Z\\\",\\n\n        \\     \\\"description\\\": \\\"The Level 1B wind product of the Aeolus mission contains\n        the preliminary HLOS (horizontal line-of-sight) wind observations for Rayleigh\n        and Mie receivers, which are generated in Near Real Time. Standard atmospheric\n        correction (Rayleigh channel), receiver response and bias correction is applied.\n        The product is generated within 3 hours after data acquisition.\\\",\\n      \\\"type\\\":\n        \\\"Collection\\\",\\n      \\\"title\\\": \\\"Aeolus preliminary HLOS (horizontal line-of-sight)\n        wind observations for Rayleigh and Mie receivers\\\",\\n      \\\"license\\\": \\\"various\\\",\\n\n        \\     \\\"assets\\\": {\\n        \\\"metadata_ogc_17_069r3\\\": {\\n          \\\"roles\\\":\n        [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/L1B_Wind_Products\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/L1B_Wind_Products?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/L1B_Wind_Products?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/L1B_Wind_Products?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/L1B_Wind_Products?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/L1B_Wind_Products?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/L1B_Wind_Products?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        }\\n\n        \\     },\\n      \\\"links\\\": [\\n        {\\n          \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/L1B_Wind_Products\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"root\\\",\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\": \\\"application/json\\\",\\n\n        \\         \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"title\\\":\n        \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://earth.esa.int/eogateway/documents/20142/37627/Aeolus-Sensor-and-Product-Description.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"Aeolus Sensor\n        and Product Description - Aeolus Sensor and Product Description\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://esatellus.service-now.com/csp?id=esa_simple_request\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Get Help? - ESA\n        Earth Observation User Services Portal\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/L1B_Wind_Products?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/L1B_Wind_Products?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/L1B_Wind_Products?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/L1B_Wind_Products?httpAccept=application/rdf%2Bxml;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/L1B_Wind_Products?httpAccept=text/turtle;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for ESA/ESRIN\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/Aeolus\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for Aeolus platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/a032cde6-16e3-5940-988e-f6d79870d14c\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for ALADIN instrument\\\"\\n        }\\n\n        \\     ],\\n      \\\"id\\\": \\\"L1B_Wind_Products\\\",\\n      \\\"updated\\\": \\\"2023-06-15T11:50:19Z\\\",\\n\n        \\     \\\"providers\\\": [\\n        {\\n          \\\"roles\\\": [\\\"producer\\\"],\\n\n        \\         \\\"name\\\": \\\"ESA/ESRIN\\\",\\n          \\\"url\\\": \\\"http://www.esa.int\\\"\\n\n        \\       },\\n        {\\n          \\\"roles\\\": [\\\"host\\\"],\\n          \\\"name\\\":\n        \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\": \\\"https://emc.spacebel.be/readme.html\\\"\\n\n        \\       }\\n      ],\\n      \\\"summaries\\\": {\\n        \\\"instruments\\\": [\\\"ALADIN\\\"],\\n\n        \\       \\\"platform\\\": [\\\"Aeolus\\\"]\\n      }\\n    },\\n    {\\n      \\\"extent\\\":\n        {\\n        \\\"spatial\\\": {\\\"bbox\\\": [[\\n          -180,\\n          -90,\\n          180,\\n\n        \\         90\\n        ]]},\\n        \\\"temporal\\\": {\\\"interval\\\": [[\\n          \\\"2010-04-08T00:00:00.000Z\\\",\\n\n        \\         null\\n        ]]}\\n      },\\n      \\\"stac_version\\\": \\\"1.0.0\\\",\\n\n        \\     \\\"sci:doi\\\": \\\"10.5270/CR2-120cf4c\\\",\\n      \\\"keywords\\\": [\\n        \\\"World\\\",\\n\n        \\       \\\"DIF10\\\",\\n        \\\"Ice Product\\\",\\n        \\\"ice-sheet elevation\\\",\\n\n        \\       \\\"sea-ice freeboard\\\",\\n        \\\"altimeter\\\",\\n        \\\"Oceans\\\",\\n\n        \\       \\\"EARTH SCIENCE > OCEANS\\\",\\n        \\\"Snow and Ice\\\",\\n        \\\"EARTH\n        SCIENCE > CRYOSPHERE > SNOW/ICE\\\",\\n        \\\"EARTH SCIENCE > TERRESTRIAL\n        HYDROSPHERE > SNOW/ICE\\\",\\n        \\\"Inclined, non-sun-synchronous\\\",\\n        \\\"FDM\\\",\\n\n        \\       \\\"LRM\\\",\\n        \\\"SAR\\\",\\n        \\\"SARIn\\\",\\n        \\\"GRD\\\",\\n\n        \\       \\\"GOP\\\",\\n        \\\"IOP\\\",\\n        \\\"Radar Altimeters\\\",\\n        \\\"CryoSat-2\\\",\\n\n        \\       \\\"SIRAL\\\"\\n      ],\\n      \\\"created\\\": \\\"2019-06-04T00:00:00.000Z\\\",\\n\n        \\     \\\"description\\\": \\\"CryoSat's primary payload is the SAR/Interferometric\n        Radar Altimeter (SIRAL) (https://earth.esa.int/eogateway/instruments/siral)\n        which has extended capabilities to meet the measurement requirements for ice-sheet\n        elevation and sea-ice freeboard.  CryoSat also carries three star trackers\n        for measuring the orientation of the baseline. In addition, a radio receiver\n        called Doppler Orbit and Radio Positioning Integration by Satellite (DORIS)\n        and a small laser retroreflector ensures that CryoSat's position will be accurately\n        tracked.  More detailed information on CryoSat instruments is available on\n        the CryoSat mission page.  The following CryoSat datasets are available and\n        distributed to registered users:  Level 1B and L2 Ice products: FDM, LRM,\n        SAR and SARIn Consolidated Level 2 (GDR): (LRM+SAR+SARIN) consolidated ice\n        products over an orbit Intermediate Level 2 Ice products: LRM, SAR and SARIn\n        L1b and L2 Ocean Products: GOP and IOP CryoTEMPO EOLIS Point Products CryoTEMPO\n        EOLIS Gridded Products  Detailed information concerning each of the above\n        datasets is available in the CryoSat Products Overview (https://earth.esa.int/eogateway/missions/cryosat/products)\n        and in the news item: CryoSat Ocean Products now open to scientific community\n        (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).\n        \\ CryoSat Level 1B altimetric products contain time and geo-location information\n        as well as SIRAL measurements in engineering units. Calibration corrections\n        are included and have been applied to the window delay computations. In Offline\n        products, geophysical corrections are computed from Analysis Auxiliary Data\n        Files (ADFs), whereas in FDM products corrections are computed for Forecast\n        ADFs. All corrections are included in the data products and therefore the\n        range can be calculated by taking into account the surface type.  The Offline\n        Level 2 LRM, SAR and SARIn ice altimetric products are generated 30 days after\n        data acquisition and are principally dedicated to glaciologists working on\n        sea-ice and land-ice areas. The Level 2 FDM products are near-real time ocean\n        products, generated 2-3 hours after data acquisition, and fulfill the needs\n        of some ocean operational services. Level 2 products contain the time of measurement,\n        the geo-location and the height of the surface.  IOP and GOP are outputs of\n        the CryoSat Ocean Processor. These products are dedicated to the study of\n        ocean surfaces, and provided specifically for the needs of the oceanographic\n        community. IOP are generated 2-3 days after data sensing acquisition and use\n        the DORIS Preliminary Orbit. GOP are typically generated 30 days after data\n        sensing acquisition and use the DORIS Precise Orbit. Geophysical corrections\n        are computed from the Analysis ADFs, however following the oceanographic convention\n        the corrections are available but not directly applied to the range (as for\n        FDM).  The CryoSat ThEMatic PrOducts (Cryo-TEMPO) projects aim to deliver\n        a new  paradigm of simplified, harmonized, and agile CryoSat-2 products, that\n        are  easily accessible to new communities of non-altimeter experts and end\n        users. The Cryo-TEMPO datasets include dedicated products over five thematic\n        areas, covering Sea Ice, Land Ice, Polar Ocean, Coastal Ocean and Inland Water,\n        together with a novel SWATH product (CryoTEMPO-EOLIS) that exploits CryoSat's\n        SARIn mode over ice sheet margins. The standard Cryo-TEMPO products include\n        fully-traceable uncertainties and use rapidly evolving, state-of-the-art processing\n        dedicated to each thematic area. Throughout the project, the  products will\n        be constantly evolved, and validated by a group of Thematic Users, thus ensuring\n        optimal relevance and impact for the intended target  communities. More information\n        on the Cryo-TEMPO products can be found on the Project Website (http://cryosat.mssl.ucl.ac.uk/tempo/index.html).\n        The CryoTEMPO-EOLIS swath product exploits CryoSat's SARIn mode and the novel\n        Swath processing technique to deliver increased spatial and temporal coverage\n        of time-dependent elevation over land ice, a critical metric for tracking\n        ice mass trends in support to a wide variety of end-users. The CryoTEMPO-EOLIS\n        swath product exploits CryoSat's SARIn mode and the novel Swath processing\n        technique to deliver increased spatial and temporal coverage of time-dependent\n        elevation over land ice, a critical metric for tracking ice mass trends in\n        support to a wide variety of end-users.The dataset consists of systematic\n        reprocessing of the entire CryoSat archive to generate new L2-Swath products,\n        increasing data sampling by 1 to 2 orders of magnitude compared with the operational\n        L2 ESA product. In addition, the EOLIS dataset is joined with the ESA L2 Point-Of-Closest-Approach\n        to generate monthly DEM (Digital Elevation Model) products. This dataset will\n        further the ability of the community to analyse and understand trends across\n        the Greenland Ice Sheet margin, Antarctica and several mountain glaciers and\n        ice caps around the world.\\\",\\n      \\\"type\\\": \\\"Collection\\\",\\n      \\\"title\\\":\n        \\\"CryoSat products\\\",\\n      \\\"license\\\": \\\"various\\\",\\n      \\\"assets\\\":\n        {\\n        \\\"search\\\": {\\n          \\\"roles\\\": [\\\"search\\\"],\\n          \\\"href\\\":\n        \\\"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=CryoSat.products\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Search client\\\"\\n\n        \\       },\\n        \\\"offering_2\\\": {\\n          \\\"roles\\\": [\\\"http://www.opengis.net/spec/owc-geojson/1.0/req/wms#GetMap\\\"],\\n\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\n        \\         \\\"title\\\": \\\"GetMap\\\",\\n          \\\"type\\\": \\\"image/png\\\"\\n        },\\n\n        \\       \\\"offering_1\\\": {\\n          \\\"roles\\\": [\\\"http://www.opengis.net/spec/owc-geojson/1.0/req/wms#GetCapabilities\\\"],\\n\n        \\         \\\"href\\\": \\\"https://eovoc.spacebel.be/geoserver/wms?service=WMS&version=1.1.1&request=GetCapabilities\\\",\\n\n        \\         \\\"title\\\": \\\"GetCapabilities\\\",\\n          \\\"type\\\": \\\"application/xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_069r3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/CryoSat.products\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/CryoSat.products?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/CryoSat.products?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/CryoSat.products?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/CryoSat.products?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/CryoSat.products?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/CryoSat.products?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        }\\n\n        \\     },\\n      \\\"links\\\": [\\n        {\\n          \\\"rel\\\": \\\"cite-as\\\",\\n\n        \\         \\\"href\\\": \\\"https://doi.org/10.5270/CR2-120cf4c\\\",\\n          \\\"type\\\":\n        \\\"text/html\\\",\\n          \\\"title\\\": \\\"Landing page\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/CryoSat.products\\\",\\n\n        \\         \\\"type\\\": \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"root\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\",\\n          \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n\n        \\         \\\"title\\\": \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"items\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/CryoSat.products/items?httpAccept=application/geo%2Bjson;profile=https://stacspec.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json\\\",\\n          \\\"title\\\": \\\"Datasets\n        search for the series CryoSat.products\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"http://www.opengis.net/def/rel/ogc/1.0/queryables\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/CryoSat.products/queryables\\\",\\n          \\\"type\\\":\n        \\\"application/schema+json\\\",\\n          \\\"title\\\": \\\"Queryables for CryoSat.products\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"search\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/series/items/CryoSat.products/api\\\",\\n\n        \\         \\\"type\\\": \\\"application/opensearchdescription+xml\\\",\\n          \\\"title\\\":\n        \\\"OpenSearch Description Document\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://esatellus.service-now.com/csp?id=esa_simple_request\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Get Help? - ESA\n        Earth Observation User Services Portal\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/CryoSat.products?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/CryoSat.products?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/CryoSat.products?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/CryoSat.products?httpAccept=application/rdf%2Bxml;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/CryoSat.products?httpAccept=text/turtle;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/CryoSat.products?httpAccept=text/turtle;profile=http://data.europa.eu/930/\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"wms:transparent\\\": true,\\n          \\\"rel\\\": \\\"wms\\\",\\n          \\\"wms:dimensions\\\":\n        {\\\"version\\\": \\\"1.1.1\\\"},\\n          \\\"href\\\": \\\"https://eovoc.spacebel.be/geoserver/wms\\\",\\n\n        \\         \\\"type\\\": \\\"image/png\\\",\\n          \\\"title\\\": \\\"CryoSat.products\\\",\\n\n        \\         \\\"wms:layers\\\": [\\\"Density:CryoSat.products\\\"],\\n          \\\"wms:styles\\\":\n        [\\\"Magma\\\"]\\n        },\\n        {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\\\",\\n          \\\"title\\\":\n        \\\"More collections for ESA/ESRIN\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/CryoSat-2\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for CryoSat-2 platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/ba530a28-c2ba-5a34-b71e-678d316e936f\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for SIRAL instrument\\\"\\n        }\\n\n        \\     ],\\n      \\\"id\\\": \\\"CryoSat.products\\\",\\n      \\\"updated\\\": \\\"2023-11-09T11:03:42Z\\\",\\n\n        \\     \\\"stac_extensions\\\": [\\n        \\\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\\\",\\n\n        \\       \\\"https://stac-extensions.github.io/web-map-links/v1.2.0/schema.json\\\"\\n\n        \\     ],\\n      \\\"providers\\\": [\\n        {\\n          \\\"roles\\\": [\\\"producer\\\"],\\n\n        \\         \\\"name\\\": \\\"ESA/ESRIN\\\",\\n          \\\"url\\\": \\\"http://www.esa.int\\\"\\n\n        \\       },\\n        {\\n          \\\"roles\\\": [\\\"host\\\"],\\n          \\\"name\\\":\n        \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\": \\\"https://emc.spacebel.be/readme.html\\\"\\n\n        \\       }\\n      ],\\n      \\\"summaries\\\": {\\n        \\\"instruments\\\": [\\\"SIRAL\\\"],\\n\n        \\       \\\"platform\\\": [\\\"CryoSat-2\\\"]\\n      }\\n    },\\n    {\\n      \\\"extent\\\":\n        {\\n        \\\"spatial\\\": {\\\"bbox\\\": [[\\n          -180,\\n          -84,\\n          180,\\n\n        \\         84\\n        ]]},\\n        \\\"temporal\\\": {\\\"interval\\\": [[\\n          \\\"2016-02-29T00:00:00.000Z\\\",\\n\n        \\         null\\n        ]]}\\n      },\\n      \\\"stac_version\\\": \\\"1.0.0\\\",\\n\n        \\     \\\"keywords\\\": [\\n        \\\"DIF10\\\",\\n        \\\"Land Surface\\\",\\n        \\\"EARTH\n        SCIENCE > LAND SURFACE\\\",\\n        \\\"Mapping and Cartography\\\",\\n        \\\"Natural\n        Hazards and Disaster Risk\\\",\\n        \\\"EARTH SCIENCE > HUMAN DIMENSIONS >\n        NATURAL HAZARDS\\\",\\n        \\\"Sun-synchronous\\\",\\n        \\\"VIS (0.40 - 0.75\n        \\xB5m)\\\",\\n        \\\"NIR (0.75 - 1.30 \\xB5m)\\\",\\n        \\\"Very High Resolution\n        - VHR (0 - 5m)\\\",\\n        \\\"SSC_DEF_SC, SSC_DEF_CO\\\",\\n        \\\"475-575\n        km\\\",\\n        \\\"8 km at nadir for SkySat-1 to -2, 6.6 km at nadir for SkySat-3\n        to -13\\\",\\n        \\\"Imaging Spectrometers/Radiometers\\\",\\n        \\\"SkySat\\\",\\n\n        \\       \\\"SkySat Camera\\\"\\n      ],\\n      \\\"created\\\": \\\"2022-06-23T00:00:00.000Z\\\",\\n\n        \\     \\\"description\\\": \\\"The SkySat ESA archive collection consists of SkySat\n        products requested by ESA supported projects over their areas of interest\n        around the world and that ESA collected over the years. The dataset regularly\n        grows as ESA collects new SkySat products.  Two different product types are\n        offered, Ground Sampling Distance at nadir up to 65 cm for PAN and up to 0.8m\n        for MS  EO-SIP Product Type Product description Content SSC_DEF_SC Basic and\n        Ortho scene  * Level 1B 4-bands Analytic /DN Basic scene  * Level 1B 4-bands\n        Panchromatic /DN Basic scene  * Level 1A 1-band Panchromatic DN Pre Sup resolution\n        Basic scene  * Level 3B 3-bands Visual Ortho Scene  * Level 3B 4-bands Pansharpened\n        Multispectral Ortho Scene  * Level 3B 4-bands Analytic/DN/SR Ortho Scene  *\n        Level 3B 1-band Panchromatic /DN Ortho Scene SSC_DEF_CO Ortho Collect  * Visual\n        3-band Pansharpened Image  * Multispectral 4-band Pansharpened Image  * Multispectral\n        4-band Analytic/DN/SR Image (B, G, R,N)  * 1-band Panchromatic Image  The\n        Basic Scene product is uncalibrated, not radiometrically corrected for atmosphere\n        or for any geometric distortions inherent in the imaging process \\\\u2022Analytic\n        - unorthorectified, radiometrically corrected, multispectral BGRN \\\\u2022Analytic\n        DN - unorthorectified, multispectral BGRN \\\\u2022Panchromatic - unorthorectified,\n        radiometrically corrected, panchromatic (PAN) \\\\u2022Panchromatic DN - unorthorectified,\n        panchromatic (PAN) \\\\u2022L1A Panchromatic DN - unorthorectified, pre-super\n        resolution, panchromatic (PAN)   The Ortho Scene product is sensor and geometrically\n        corrected, and is projected to a cartographic map projection.  \\\\u2022Visual\n        - orthorectified, pansharpened, and color-corrected (using a color curve)\n        3-band RGB Imagery \\\\u2022Pansharpened Multispectral - orthorectified, pansharpened\n        4-band BGRN Imagery \\\\u2022Analytic SR - orthorectified, multispectral BGRN.\n        Atmospherically corrected Surface Reflectance product. \\\\u2022Analytic - orthorectified,\n        multispectral BGRN. Radiometric corrections applied to correct for any sensor\n        artifacts and transformation to top-of-atmosphere radiance \\\\u2022Analytic\n        DN - orthorectified, multispectral BGRN, uncalibrated digital number imagery\n        product Radiometric corrections applied to correct for any sensor artifacts\n        \\\\u2022Panchromatic - orthorectified, radiometrically correct, panchromatic\n        (PAN) \\\\u2022Panchromatic DN - orthorectified, panchromatic (PAN), uncalibrated\n        digital number imagery product   The Ortho Collect product is created by composing\n        SkySat Ortho Scenes along an imaging strip. The product may contain artifacts\n        resulting from the composing process, particular offsets in areas of stitched\n        source scenes.  Spatial coverage: Check the spatial coverage of the collection\n        on a _$$map$$ https://tpm-ds.eo.esa.int/smcat/SkySat/ available on the Third\n        Party Missions Dissemination Service.\\\",\\n      \\\"type\\\": \\\"Collection\\\",\\n\n        \\     \\\"title\\\": \\\"Skysat ESA archive\\\",\\n      \\\"license\\\": \\\"various\\\",\\n\n        \\     \\\"assets\\\": {\\n        \\\"search\\\": {\\n          \\\"roles\\\": [\\\"search\\\"],\\n\n        \\         \\\"href\\\": \\\"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=SkySatESAarchive\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Search client\\\"\\n\n        \\       },\\n        \\\"offering_2\\\": {\\n          \\\"roles\\\": [\\\"http://www.opengis.net/spec/owc-geojson/1.0/req/wms#GetMap\\\"],\\n\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\n        \\         \\\"title\\\": \\\"GetMap\\\",\\n          \\\"type\\\": \\\"image/png\\\"\\n        },\\n\n        \\       \\\"offering_1\\\": {\\n          \\\"roles\\\": [\\\"http://www.opengis.net/spec/owc-geojson/1.0/req/wms#GetCapabilities\\\"],\\n\n        \\         \\\"href\\\": \\\"https://eovoc.spacebel.be/geoserver/wms?service=WMS&version=1.1.1&request=GetCapabilities\\\",\\n\n        \\         \\\"title\\\": \\\"GetCapabilities\\\",\\n          \\\"type\\\": \\\"application/xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_069r3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/SkySatESAarchive\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/SkySatESAarchive?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/SkySatESAarchive?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/SkySatESAarchive?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/SkySatESAarchive?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/SkySatESAarchive?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/SkySatESAarchive?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        }\\n\n        \\     },\\n      \\\"links\\\": [\\n        {\\n          \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/SkySatESAarchive\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"root\\\",\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\": \\\"application/json\\\",\\n\n        \\         \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"title\\\":\n        \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"items\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/SkySatESAarchive/items?httpAccept=application/geo%2Bjson;profile=https://stacspec.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json\\\",\\n          \\\"title\\\": \\\"Datasets\n        search for the series SkySatESAarchive\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"http://www.opengis.net/def/rel/ogc/1.0/queryables\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/SkySatESAarchive/queryables\\\",\\n          \\\"type\\\":\n        \\\"application/schema+json\\\",\\n          \\\"title\\\": \\\"Queryables for SkySatESAarchive\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"search\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/series/items/SkySatESAarchive/api\\\",\\n\n        \\         \\\"type\\\": \\\"application/opensearchdescription+xml\\\",\\n          \\\"title\\\":\n        \\\"OpenSearch Description Document\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://www.planet.com/products/#satellite-imagery\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Planet products\n        - Catalogue\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://assets.planet.com/docs/Planet_Combined_Imagery_Product_Specs_letter_screen.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"Planet Imagery\n        Product Specifications - Product Specifications\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://esatellus.service-now.com/csp?id=esa_simple_request\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Get Help? - ESA\n        Earth Observation User Services Portal\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/SkySatESAarchive?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/SkySatESAarchive?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/SkySatESAarchive?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/SkySatESAarchive?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/SkySatESAarchive?httpAccept=application/rdf%2Bxml;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/SkySatESAarchive?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\\\",\\n\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/SkySatESAarchive?httpAccept=text/turtle;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/SkySatESAarchive?httpAccept=text/turtle;profile=http://data.europa.eu/930/\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"wms:transparent\\\": true,\\n          \\\"rel\\\": \\\"wms\\\",\\n          \\\"wms:dimensions\\\":\n        {\\\"version\\\": \\\"1.1.1\\\"},\\n          \\\"href\\\": \\\"https://eovoc.spacebel.be/geoserver/wms\\\",\\n\n        \\         \\\"type\\\": \\\"image/png\\\",\\n          \\\"title\\\": \\\"SkySatESAarchive\\\",\\n\n        \\         \\\"wms:layers\\\": [\\\"Density:SkySatESAarchive\\\"],\\n          \\\"wms:styles\\\":\n        [\\\"Turbo\\\"]\\n        },\\n        {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\\\",\\n          \\\"title\\\":\n        \\\"More collections for ESA/ESRIN\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/SkySat\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for SkySat platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/429a0634-46aa-518a-ac92-b5bcec0315d4\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for SkySat Camera instrument\\\"\\n        }\\n\n        \\     ],\\n      \\\"id\\\": \\\"SkySatESAarchive\\\",\\n      \\\"updated\\\": \\\"2023-11-09T17:22:55Z\\\",\\n\n        \\     \\\"stac_extensions\\\": [\\\"https://stac-extensions.github.io/web-map-links/v1.2.0/schema.json\\\"],\\n\n        \\     \\\"providers\\\": [\\n        {\\n          \\\"roles\\\": [\\\"producer\\\"],\\n\n        \\         \\\"name\\\": \\\"ESA/ESRIN\\\",\\n          \\\"url\\\": \\\"http://www.esa.int\\\"\\n\n        \\       },\\n        {\\n          \\\"roles\\\": [\\\"host\\\"],\\n          \\\"name\\\":\n        \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\": \\\"https://emc.spacebel.be/readme.html\\\"\\n\n        \\       }\\n      ],\\n      \\\"summaries\\\": {\\n        \\\"instruments\\\": [\\\"SkySat\n        Camera\\\"],\\n        \\\"platform\\\": [\\\"SkySat\\\"]\\n      }\\n    },\\n    {\\n      \\\"extent\\\":\n        {\\n        \\\"spatial\\\": {\\\"bbox\\\": [[\\n          -180,\\n          -84,\\n          180,\\n\n        \\         84\\n        ]]},\\n        \\\"temporal\\\": {\\\"interval\\\": [[\\n          \\\"2009-02-22T00:00:00.000Z\\\",\\n\n        \\         null\\n        ]]}\\n      },\\n      \\\"stac_version\\\": \\\"1.0.0\\\",\\n\n        \\     \\\"keywords\\\": [\\n        \\\"World\\\",\\n        \\\"DIF10\\\",\\n        \\\"Multispectral\\\",\\n\n        \\       \\\"Planet\\\",\\n        \\\"Land Surface\\\",\\n        \\\"EARTH SCIENCE >\n        LAND SURFACE\\\",\\n        \\\"Mapping and Cartography\\\",\\n        \\\"Natural Hazards\n        and Disaster Risk\\\",\\n        \\\"EARTH SCIENCE > HUMAN DIMENSIONS > NATURAL\n        HAZARDS\\\",\\n        \\\"Sun-synchronous\\\",\\n        \\\"VIS (0.40 - 0.75 \\xB5m)\\\",\\n\n        \\       \\\"NIR (0.75 - 1.30 \\xB5m)\\\",\\n        \\\"High Resolution - HR (5 -\n        20 m)\\\",\\n        \\\"MSI_IMG_3A\\\",\\n        \\\"MSI_IMG_1B\\\",\\n        \\\"630\n        km\\\",\\n        \\\"77 km\\\",\\n        \\\"Imaging Spectrometers/Radiometers\\\",\\n\n        \\       \\\"RapidEye\\\",\\n        \\\"MSI\\\"\\n      ],\\n      \\\"created\\\": \\\"2019-05-23T00:00:00.000Z\\\",\\n\n        \\     \\\"description\\\": \\\"The RapidEye ESA archive is a subset of the RapidEye\n        Full archive that ESA collected over the years. The dataset regularly grows\n        as ESA collects new RapidEye products. Spatial coverage: Check the spatial\n        coverage of the collection on a _$$map$$ https://tpm-ds.eo.esa.int/socat/RapidEye\n        available on the Third Party Missions Dissemination Service.\\\",\\n      \\\"type\\\":\n        \\\"Collection\\\",\\n      \\\"title\\\": \\\"RapidEye ESA archive\\\",\\n      \\\"license\\\":\n        \\\"various\\\",\\n      \\\"assets\\\": {\\n        \\\"search\\\": {\\n          \\\"roles\\\":\n        [\\\"search\\\"],\\n          \\\"href\\\": \\\"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=RapidEye.ESA.archive\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Search client\\\"\\n\n        \\       },\\n        \\\"offering_2\\\": {\\n          \\\"roles\\\": [\\\"http://www.opengis.net/spec/owc-geojson/1.0/req/wms#GetMap\\\"],\\n\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\n        \\         \\\"title\\\": \\\"GetMap\\\",\\n          \\\"type\\\": \\\"image/png\\\"\\n        },\\n\n        \\       \\\"offering_1\\\": {\\n          \\\"roles\\\": [\\\"http://www.opengis.net/spec/owc-geojson/1.0/req/wms#GetCapabilities\\\"],\\n\n        \\         \\\"href\\\": \\\"https://eovoc.spacebel.be/geoserver/wms?service=WMS&version=1.1.1&request=GetCapabilities\\\",\\n\n        \\         \\\"title\\\": \\\"GetCapabilities\\\",\\n          \\\"type\\\": \\\"application/xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_069r3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/RapidEye.ESA.archive\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/RapidEye.ESA.archive?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/RapidEye.ESA.archive?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/RapidEye.ESA.archive?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/RapidEye.ESA.archive?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/RapidEye.ESA.archive?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/RapidEye.ESA.archive?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        }\\n\n        \\     },\\n      \\\"links\\\": [\\n        {\\n          \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/RapidEye.ESA.archive\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"root\\\",\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\": \\\"application/json\\\",\\n\n        \\         \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"title\\\":\n        \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/geo+json\\\",\\n          \\\"title\\\": \\\"Datasets\n        search for the series RapidEye.ESA.archive\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"http://www.opengis.net/def/rel/ogc/1.0/queryables\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/RapidEye.ESA.archive/queryables\\\",\\n\n        \\         \\\"type\\\": \\\"application/schema+json\\\",\\n          \\\"title\\\": \\\"Queryables\n        for RapidEye.ESA.archive\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"search\\\",\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/series/items/RapidEye.ESA.archive/api\\\",\\n\n        \\         \\\"type\\\": \\\"application/opensearchdescription+xml\\\",\\n          \\\"title\\\":\n        \\\"OpenSearch Description Document\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://www.planet.com/products/#satellite-imagery\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Planet products\n        - Catalogue\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://earth.esa.int/eogateway/documents/20142/37627/Planet-combined-imagery-product-specs-2020.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"RapidEye\n        Satellite Image Product Specifications - Product Specifications\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://esatellus.service-now.com/csp?id=esa_simple_request\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Get Help ? - ESA\n        Earth Observation User Services Portal\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/RapidEye.ESA.archive?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/RapidEye.ESA.archive?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/RapidEye.ESA.archive?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/RapidEye.ESA.archive?httpAccept=application/rdf%2Bxml;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/RapidEye.ESA.archive?httpAccept=text/turtle;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"wms:transparent\\\": true,\\n          \\\"rel\\\": \\\"wms\\\",\\n          \\\"wms:dimensions\\\":\n        {\\\"version\\\": \\\"1.1.1\\\"},\\n          \\\"href\\\": \\\"https://eovoc.spacebel.be/geoserver/wms\\\",\\n\n        \\         \\\"type\\\": \\\"image/png\\\",\\n          \\\"title\\\": \\\"RapidEye.ESA.archive\\\",\\n\n        \\         \\\"wms:layers\\\": [\\\"Density:RapidEye.ESA.archive\\\"],\\n          \\\"wms:styles\\\":\n        [\\\"Magma\\\"]\\n        },\\n        {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\\\",\\n          \\\"title\\\":\n        \\\"More collections for ESA/ESRIN\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/RapidEye\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for RapidEye platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/4b332a30-7c95-5fb1-bf55-fb4b10c1565f\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for MSI instrument\\\"\\n        }\\n\n        \\     ],\\n      \\\"id\\\": \\\"RapidEye.ESA.archive\\\",\\n      \\\"updated\\\": \\\"2023-11-10T08:02:35Z\\\",\\n\n        \\     \\\"stac_extensions\\\": [\\\"https://stac-extensions.github.io/web-map-links/v1.2.0/schema.json\\\"],\\n\n        \\     \\\"providers\\\": [\\n        {\\n          \\\"roles\\\": [\\\"producer\\\"],\\n\n        \\         \\\"name\\\": \\\"ESA/ESRIN\\\",\\n          \\\"url\\\": \\\"http://www.esa.int\\\"\\n\n        \\       },\\n        {\\n          \\\"roles\\\": [\\\"host\\\"],\\n          \\\"name\\\":\n        \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\": \\\"https://emc.spacebel.be/readme.html\\\"\\n\n        \\       }\\n      ],\\n      \\\"summaries\\\": {\\n        \\\"instruments\\\": [\\\"MSI\\\"],\\n\n        \\       \\\"platform\\\": [\\\"RapidEye\\\"]\\n      }\\n    },\\n    {\\n      \\\"extent\\\":\n        {\\n        \\\"spatial\\\": {\\\"bbox\\\": [[\\n          -20,\\n          -35,\\n          35,\\n\n        \\         75\\n        ]]},\\n        \\\"temporal\\\": {\\\"interval\\\": [[\\n          \\\"2015-01-01T00:00:00.000Z\\\",\\n\n        \\         null\\n        ]]}\\n      },\\n      \\\"stac_version\\\": \\\"1.0.0\\\",\\n\n        \\     \\\"keywords\\\": [\\n        \\\"Europe\\\",\\n        \\\"DIF10\\\",\\n        \\\"orthorectified\\\",\\n\n        \\       \\\"corrected\\\",\\n        \\\"geometrically corrected\\\",\\n        \\\"USGS\\\",\\n\n        \\       \\\"Surface Radiative Properties\\\",\\n        \\\"EARTH SCIENCE > LAND\n        SURFACE > SURFACE RADIATIVE PROPERTIES\\\",\\n        \\\"Vegetation\\\",\\n        \\\"EARTH\n        SCIENCE > BIOSPHERE > VEGETATION\\\",\\n        \\\"Land Use and Land Cover\\\",\\n\n        \\       \\\"EARTH SCIENCE > LAND SURFACE > LAND USE/LAND COVER\\\",\\n        \\\"Agriculture\\\",\\n\n        \\       \\\"EARTH SCIENCE > AGRICULTURE\\\",\\n        \\\"Forestry\\\",\\n        \\\"EARTH\n        SCIENCE > BIOSPHERE > ECOSYSTEMS > TERRESTRIAL ECOSYSTEMS > FORESTS\\\",\\n        \\\"Sun-synchronous\\\",\\n\n        \\       \\\"VIS (0.40 - 0.75 \\xB5m)\\\",\\n        \\\"NIR (0.75 - 1.30 \\xB5m)\\\",\\n\n        \\       \\\"SWIR (1.3 - 3.0 \\xB5m)\\\",\\n        \\\"TIR (6.0 - 15.0 \\xB5nm)\\\",\\n\n        \\       \\\"DPAS 5.0\\\",\\n        \\\"Medium Resolution - MR (20 - 500 m)\\\",\\n\n        \\       \\\"OAT_GEO_1P\\\",\\n        \\\"OAT_GTC_1P\\\",\\n        \\\"OAT_SP__2P\\\",\\n\n        \\       \\\"OAT_SR__2P\\\",\\n        \\\"705 km\\\",\\n        \\\"185 km\\\",\\n        \\\"Imaging\n        Spectrometers/Radiometers\\\",\\n        \\\"Landsat-8\\\",\\n        \\\"OLI\\\",\\n        \\\"TIRS\\\"\\n\n        \\     ],\\n      \\\"created\\\": \\\"2022-01-14T00:00:00.000Z\\\",\\n      \\\"description\\\":\n        \\\"This dataset contains the European Coverage of Landsat 8 Collection 2 data,\n        both Level 1 and Level 2, since the beginning of the mission. Landsat 8 Collection\n        2 is the result of reprocessing effort on the archive and on fresh products\n        with significant improvement with respect to Collection 1 on data quality,\n        obtained by means of advancements in data processing, algorithm development.\n        The primary characteristic is a relevant improvement in the absolute geolocation\n        accuracy (now re-baselined to the European Space Agency Copernicus Sentinel-2\n        Global Reference Image, GRI) but includes also updated digital elevation modelling\n        sources, improved Radiometric Calibration (even correction for the TIRS striping\n        effect), enhanced Quality Assessment Bands, updated and consistent metadata\n        files, usage of Cloud Optimized Georeferenced (COG) Tagged Image File Format.\n        \\ Landsat 8 level 1 products combine data from the 2 Landsat instruments,\n        OLI and TIRS. The level 1 products generated can be either L1TP or L1GT: \\\\u2022\n        L1TP - Level 1 Precision Terrain (Corrected) (L1T) products: Radiometrically\n        calibrated and orthorectified using ground control points (GCPs) and digital\n        elevation model (DEM) data to correct for relief displacement. The highest\n        quality Level-1 products suitable for pixel-level time series analysis. GCPs\n        used for L1TP correction are derived from the Global Land Survey 2000 (GLS2000)\n        data set. \\\\u2022 L1GT - Level 1 Systematic Terrain (Corrected) (L1GT) products:\n        L1GT data products consist of L0 product data with systematic radiometric,\n        geometric and terrain corrections applied and resampled for registration to\n        a cartographic projection, referenced to the WGS84, G873, or current version.\n        The dissemination server contains three different classes of Level1 products\n        \\\\u2022 Real Time (RT): Newly acquired Landsat 8 OLI/TIRS data are processed\n        upon downlink but use an initial TIRS line-of-sight model parameters; the\n        data is made available in less than 12 hours (4-6 hours typically). Once the\n        data have been reprocessed with the refined TIRS parameters, the products\n        are transitioned to either Tier 1 or Tier 2 and removed from the Real-Time\n        tier (in 14-16 days). \\\\u2022 Tier 1 (T1): Landsat scenes with the highest\n        available data quality are placed into Tier 1 and are considered suitable\n        for time-series analysis. Tier 1 includes Level-1 Precision and Terrain (L1TP)\n        corrected data that have well-characterized radiometry and are inter-calibrated\n        across the different Landsat instruments. The georegistration of Tier 1 scenes\n        is consistent and within prescribed image-to-image tolerances of \\u2266 12-meter\n        radial root mean square error (RMSE). \\\\u2022 Tier 2 (T2): Landsat scenes\n        not meeting Tier 1 criteria during processing are assigned to Tier 2. Tier\n        2 scenes adhere to the same radiometric standard as Tier 1 scenes, but do\n        not meet the Tier 1 geometry specification due to less accurate orbital information\n        (specific to older Landsat sensors), significant cloud cover, insufficient\n        ground control, or other factors. This includes Systematic Terrain (L1GT)\n        and Systematic (L1GS) processed data.  Landsat 8 level 2 products are generated\n        from L1GT and L1TP Level 1 products that meet the <76 degrees Solar Zenith\n        Angle constraint and include the required auxiliary data inputs to generate\n        a scientifically viable product. The data are available a couple of days after\n        the Level1 T1/T2. The level 2 products generated can be L2SP or L2SR: \\\\u2022\n        L2SP - Level 2 Science Products (L2SP) products: include Surface Reflectance\n        (SR), Surface Temperature (ST), ST intermediate bands, an angle coefficients\n        file, and Quality Assessment (QA) Bands. \\\\u2022 L2SR - Level 2 Surface Reflectance\n        (L2SR) products: include Surface Reflectance (SR), an angle coefficients file,\n        and Quality Assessment (QA) Bands; it is generated if ST could not be generated\n        \\ Two different categories of Level 1 products are offered: LC with Optical,\n        Thermal and Quality Map images, LO with Optical and Quality Map images (Thermal\n        not available). For the Level 2 data, only LC combined products are generated\\\",\\n\n        \\     \\\"type\\\": \\\"Collection\\\",\\n      \\\"title\\\": \\\"Landsat 8 Collection 2\n        European Coverage\\\",\\n      \\\"license\\\": \\\"various\\\",\\n      \\\"assets\\\": {\\n\n        \\       \\\"search\\\": {\\n          \\\"roles\\\": [\\\"search\\\"],\\n          \\\"href\\\":\n        \\\"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=Landsat8.Collection2.European.Coverage\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Search client\\\"\\n\n        \\       },\\n        \\\"offering_2\\\": {\\n          \\\"roles\\\": [\\\"http://www.opengis.net/spec/owc-geojson/1.0/req/wms#GetMap\\\"],\\n\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\n        \\         \\\"title\\\": \\\"GetMap\\\",\\n          \\\"type\\\": \\\"image/png\\\"\\n        },\\n\n        \\       \\\"offering_1\\\": {\\n          \\\"roles\\\": [\\\"http://www.opengis.net/spec/owc-geojson/1.0/req/wms#GetCapabilities\\\"],\\n\n        \\         \\\"href\\\": \\\"https://eovoc.spacebel.be/geoserver/wms?service=WMS&version=1.1.1&request=GetCapabilities\\\",\\n\n        \\         \\\"title\\\": \\\"GetCapabilities\\\",\\n          \\\"type\\\": \\\"application/xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_069r3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        }\\n\n        \\     },\\n      \\\"links\\\": [\\n        {\\n          \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage\\\",\\n\n        \\         \\\"type\\\": \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"root\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\",\\n          \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n\n        \\         \\\"title\\\": \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"items\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage/items?httpAccept=application/geo%2Bjson;profile=https://stacspec.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json\\\",\\n          \\\"title\\\": \\\"Datasets\n        search for the series Landsat8.Collection2.European.Coverage\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"http://www.opengis.net/def/rel/ogc/1.0/queryables\\\",\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage/queryables\\\",\\n\n        \\         \\\"type\\\": \\\"application/schema+json\\\",\\n          \\\"title\\\": \\\"Queryables\n        for Landsat8.Collection2.European.Coverage\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"search\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/series/items/Landsat8.Collection2.European.Coverage/api\\\",\\n\n        \\         \\\"type\\\": \\\"application/opensearchdescription+xml\\\",\\n          \\\"title\\\":\n        \\\"OpenSearch Description Document\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://earth.esa.int/eogateway/documents/20142/0/Landsat-Collection-1-vs-Collection-2-Summary.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"Landsat Collection1\n        vs Collection 2 - Product description\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"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\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"Landsat 8-9\n        OLI-TIRS Collection 2 Level 1 Data Format Control Book (DFCB) - Product specification\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\":\n        \\\"https://earth.esa.int/eogateway/documents/20142/0/Landsat-8-9-OLI-TIRS-Collection-2-Level-2-Data-Format-Control-Book-DFCB.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"Landsat 8-9\n        OLI-TIRS Collection 2 Level 2 Data Format Control Book (DFCB) - Product specification\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\":\n        \\\"https://www.usgs.gov/landsat-missions/landsat-collection-2\\\",\\n          \\\"type\\\":\n        \\\"text/html\\\",\\n          \\\"title\\\": \\\"USGS Landsat Collection 2 web page\n        - web portal\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://esatellus.service-now.com/csp?id=esa_simple_request\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Get Help? - ESA\n        Earth Observation User Services Portal\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage?httpAccept=text/turtle;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"wms:transparent\\\": true,\\n          \\\"rel\\\": \\\"wms\\\",\\n          \\\"wms:dimensions\\\":\n        {\\\"version\\\": \\\"1.1.1\\\"},\\n          \\\"href\\\": \\\"https://eovoc.spacebel.be/geoserver/wms\\\",\\n\n        \\         \\\"type\\\": \\\"image/png\\\",\\n          \\\"title\\\": \\\"Landsat8.Collection2.European.Coverage\\\",\\n\n        \\         \\\"wms:layers\\\": [\\\"Density:Landsat8.Collection2.European.Coverage\\\"],\\n\n        \\         \\\"wms:styles\\\": [\\\"Turbo\\\"]\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for ESA/ESRIN\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/Landsat-8\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for Landsat-8 platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/6bfc7afc-547a-57cd-818c-6d90e3e589ab\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for OLI instrument\\\"\\n        }\\n\n        \\     ],\\n      \\\"id\\\": \\\"Landsat8.Collection2.European.Coverage\\\",\\n      \\\"updated\\\":\n        \\\"2023-11-10T08:38:42Z\\\",\\n      \\\"stac_extensions\\\": [\\\"https://stac-extensions.github.io/web-map-links/v1.2.0/schema.json\\\"],\\n\n        \\     \\\"providers\\\": [\\n        {\\n          \\\"roles\\\": [\\\"producer\\\"],\\n\n        \\         \\\"name\\\": \\\"ESA/ESRIN\\\",\\n          \\\"url\\\": \\\"http://www.esa.int\\\"\\n\n        \\       },\\n        {\\n          \\\"roles\\\": [\\\"host\\\"],\\n          \\\"name\\\":\n        \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\": \\\"https://emc.spacebel.be/readme.html\\\"\\n\n        \\       }\\n      ],\\n      \\\"summaries\\\": {\\n        \\\"instruments\\\": [\\\"OLI\\\"],\\n\n        \\       \\\"platform\\\": [\\\"Landsat-8\\\"]\\n      }\\n    },\\n    {\\n      \\\"extent\\\":\n        {\\n        \\\"spatial\\\": {\\\"bbox\\\": [[\\n          -180,\\n          -90,\\n          180,\\n\n        \\         90\\n        ]]},\\n        \\\"temporal\\\": {\\\"interval\\\": [[\\n          \\\"2007-01-23T10:16:34Z\\\",\\n\n        \\         null\\n        ]]}\\n      },\\n      \\\"stac_version\\\": \\\"1.0.0\\\",\\n\n        \\     \\\"keywords\\\": [\\n        \\\"DIF10\\\",\\n        \\\"MetOp-A\\\",\\n        \\\"MetOp-B\\\",\\n\n        \\       \\\"MetOp-C\\\",\\n        \\\"COT\\\",\\n        \\\"Cloud Optical Thickness\\\",\\n\n        \\       \\\"AC-SAF\\\",\\n        \\\"GOME.TC.AGG\\\",\\n        \\\"urn:eop:DLR:EOWEB:GOME.TC.AGG\\\",\\n\n        \\       \\\"FEDEO\\\",\\n        \\\"Atmospheric conditions\\\",\\n        \\\"EARTH SCIENCE>ATMOSPHERE>CLOUDS>CLOUD\n        MICROPHYSICS>CLOUD OPTICAL DEPTH/THICKNESS\\\",\\n        \\\"METOP-A\\\",\\n        \\\"METOP-B\\\",\\n\n        \\       \\\"METOP-C\\\",\\n        \\\"GOME-2\\\",\\n        \\\"Metop-A\\\",\\n        \\\"Metop-B\\\",\\n\n        \\       \\\"Metop-C\\\"\\n      ],\\n      \\\"description\\\": \\\"The Global Ozone Monitoring\n        Experiment-2 (GOME-2) instrument continues the long-term monitoring of atmospheric\n        trace gas constituents started with GOME / ERS-2 and SCIAMACHY / Envisat.\n        Currently, there are three GOME-2 instruments operating on board EUMETSAT's\n        Meteorological Operational satellites MetOp-A, -B and -C, launched in October\n        2006, September 2012, and November 2018, respectively. GOME-2 can measure\n        a range of atmospheric trace constituents, with the emphasis on global ozone\n        distributions. Furthermore, cloud properties and intensities of ultraviolet\n        radiation are retrieved. These data are crucial for monitoring the atmospheric\n        composition and the detection of pollutants. DLR generates operational GOME-2\n        / MetOp level 2 products in the framework of EUMETSAT's Satellite Application\n        Facility on Atmospheric Chemistry Monitoring (AC-SAF). GOME-2 near-real-time\n        products are available already two hours after sensing.\\\\t\\\\tOCRA (Optical\n        Cloud Recognition Algorithm) and ROCINN (Retrieval of Cloud Information using\n        Neural Networks) are used for retrieving the following geophysical cloud properties\n        from GOME and GOME-2 data: cloud fraction (cloud cover), cloud-top pressure\n        (cloud-top height), and cloud optical thickness (cloud-top albedo). OCRA is\n        an optical sensor cloud detection algorithm that uses the PMD devices on GOME\n        / GOME-2 to deliver cloud fractions for GOME / GOME-2 scenes. ROCINN takes\n        the OCRA cloud fraction as input and uses a neural network training scheme\n        to invert GOME / GOME-2 reflectivities in and around the O2-A band. VLIDORT\n        [Spurr (2006)] templates of reflectances based on full polarization scattering\n        of light are used to train the neural network. ROCINN retrieves cloud-top\n        pressure and cloud-top albedo. The cloud optical thickness is computed using\n        libRadtran [Mayer and Kylling (2005)] radiative transfer simulations taking\n        as input the cloud-top albedo retrieved with ROCINN. For more details please\n        refer to relevant peer-review papers listed on the GOME and GOME-2 documentation\n        pages: https://atmos.eoc.dlr.de/app/docs/\\\",\\n      \\\"type\\\": \\\"Collection\\\",\\n\n        \\     \\\"title\\\": \\\"METOP GOME-2 - Cloud Optical Thickness (COT) - Global\\\",\\n\n        \\     \\\"license\\\": \\\"various\\\",\\n      \\\"assets\\\": {\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/810631f4-c311-44f2-9ced-c2260df2bc06?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/810631f4-c311-44f2-9ced-c2260df2bc06?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"enclosure_3\\\": {\\n          \\\"roles\\\": [\\\"data\\\"],\\n\n        \\         \\\"href\\\": \\\"https://geoservice.dlr.de/eoc/atmosphere/wms?\\\",\\n          \\\"type\\\":\n        \\\"application/x-binary\\\",\\n          \\\"title\\\": \\\"METOP-C_GOME-2_L2C_P1D_COT\n        - MetOp-C GOME-2 L2C Daily COT\\\"\\n        },\\n        \\\"enclosure_4\\\": {\\n\n        \\         \\\"roles\\\": [\\\"data\\\"],\\n          \\\"href\\\": \\\"https://geoservice.dlr.de/eoc/atmosphere/wms?\\\",\\n\n        \\         \\\"type\\\": \\\"application/x-binary\\\",\\n          \\\"title\\\": \\\"METOP_GOME-2_L2C_P1D_COMB_COT\n        - MetOp GOME-2 L2C Daily COT Combined\\\"\\n        },\\n        \\\"enclosure_1\\\":\n        {\\n          \\\"roles\\\": [\\\"data\\\"],\\n          \\\"href\\\": \\\"ftp://acsaf.eoc.dlr.de/\\\",\\n\n        \\         \\\"type\\\": \\\"application/x-binary\\\",\\n          \\\"title\\\": \\\"DLR-ATMOS\n        FTP-server - For data access via FTP, please register at https://acsaf.org/registration_form.html\n        or contact helpdesk@acsaf.org.\\\"\\n        },\\n        \\\"search\\\": {\\n          \\\"roles\\\":\n        [\\\"search\\\"],\\n          \\\"href\\\": \\\"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Search client\\\"\\n\n        \\       },\\n        \\\"enclosure_2\\\": {\\n          \\\"roles\\\": [\\\"data\\\"],\\n\n        \\         \\\"href\\\": \\\"https://geoservice.dlr.de/eoc/atmosphere/wms?\\\",\\n          \\\"type\\\":\n        \\\"application/x-binary\\\",\\n          \\\"title\\\": \\\"METOP-B_GOME-2_L2C_P1D_COT\n        - MetOp-B GOME-2 L2C Daily COT\\\"\\n        },\\n        \\\"metadata_ogc_17_069r3\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/810631f4-c311-44f2-9ced-c2260df2bc06\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139_2\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/810631f4-c311-44f2-9ced-c2260df2bc06?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/810631f4-c311-44f2-9ced-c2260df2bc06?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"enclosure_7\\\": {\\n          \\\"roles\\\": [\\\"data\\\"],\\n\n        \\         \\\"href\\\": \\\"https://geoservice.dlr.de/eoc/atmosphere/wcs?\\\",\\n          \\\"type\\\":\n        \\\"application/x-binary\\\",\\n          \\\"title\\\": \\\"METOP_GOME-2_L2C_P1D_COMB_COT\n        - MetOp GOME-2 L2C Daily COT Combined\\\"\\n        },\\n        \\\"metadata_ogc_17_084r1\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/810631f4-c311-44f2-9ced-c2260df2bc06?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/810631f4-c311-44f2-9ced-c2260df2bc06?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        },\\n\n        \\       \\\"enclosure_5\\\": {\\n          \\\"roles\\\": [\\\"data\\\"],\\n          \\\"href\\\":\n        \\\"https://geoservice.dlr.de/eoc/atmosphere/wcs?\\\",\\n          \\\"type\\\": \\\"application/x-binary\\\",\\n\n        \\         \\\"title\\\": \\\"METOP-B_GOME-2_L2C_P1D_COT - MetOp-B GOME-2 L2C Daily\n        COT\\\"\\n        },\\n        \\\"quicklook\\\": {\\n          \\\"roles\\\": [\\\"overview\\\"],\\n\n        \\         \\\"href\\\": \\\"https://geoservice.dlr.de/catalogue/srv/api/records/810631f4-c311-44f2-9ced-c2260df2bc06/attachments/metop_gome2_cot_ql.jpg\\\",\\n\n        \\         \\\"type\\\": \\\"image/jpeg\\\",\\n          \\\"title\\\": \\\"graphic overview\\\"\\n\n        \\       },\\n        \\\"enclosure_6\\\": {\\n          \\\"roles\\\": [\\\"data\\\"],\\n\n        \\         \\\"href\\\": \\\"https://geoservice.dlr.de/eoc/atmosphere/wcs?\\\",\\n          \\\"type\\\":\n        \\\"application/x-binary\\\",\\n          \\\"title\\\": \\\"METOP-C_GOME-2_L2C_P1D_COT\n        - MetOp-C GOME-2 L2C Daily COT\\\"\\n        }\\n      },\\n      \\\"links\\\": [\\n\n        \\       {\\n          \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/810631f4-c311-44f2-9ced-c2260df2bc06\\\",\\n\n        \\         \\\"type\\\": \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"root\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\",\\n          \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n\n        \\         \\\"title\\\": \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"search\\\",\\n          \\\"href\\\":\n        \\\"https://eoweb.dlr.de/egp/main?service=geoservice.dlr.de%2Feoc%2Fatmosphere%2Fwms%26type=wms%26layer=METOP-B_GOME-2_L2C_P1D_COT\\\",\\n\n        \\         \\\"title\\\": \\\"METOP-B_GOME-2_L2C_P1D_COT - EGP: MetOp-B GOME-2 L2C\n        Daily COT\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"search\\\",\\n          \\\"href\\\":\n        \\\"https://eoweb.dlr.de/egp/main?service=geoservice.dlr.de%2Feoc%2Fatmosphere%2Fwms%26type=wms%26layer=METOP-C_GOME-2_L2C_P1D_COT\\\",\\n\n        \\         \\\"title\\\": \\\"METOP-C_GOME-2_L2C_P1D_COT - EGP: MetOp-C GOME-2 L2C\n        Daily COT\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"search\\\",\\n          \\\"href\\\":\n        \\\"https://eoweb.dlr.de/egp/main?service=geoservice.dlr.de%2Feoc%2Fatmosphere%2Fwms%26type=wms%26layer=METOP_GOME-2_L2C_P1D_COMB_COT\\\",\\n\n        \\         \\\"title\\\": \\\"METOP_GOME-2_L2C_P1D_COMB_COT - EGP: MetOp GOME-2 L2C\n        Daily COT Combined\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"related\\\",\\n\n        \\         \\\"href\\\": \\\"https://eoweb.dlr.de/egp/main?ecswCollection=urn%3Aeop%3ADLR%3AEOWEB%3AGOME.TC.AGG\\\",\\n\n        \\         \\\"title\\\": \\\"METOP GOME-2 - Cloud Optical Thickness (COT) - Global\n        - EOWEB GeoPortal Collection\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"icon\\\",\\n          \\\"href\\\": \\\"https://geoservice.dlr.de/catalogue/srv/api/records/810631f4-c311-44f2-9ced-c2260df2bc06/attachments/metop_gome2_cot_ql_s.jpg\\\",\\n\n        \\         \\\"type\\\": \\\"image/jpeg\\\",\\n          \\\"title\\\": \\\"graphic overview\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\":\n        \\\"https://geoservice.dlr.de/web/maps/metop:gome2.tc.daily\\\",\\n          \\\"title\\\":\n        \\\"EOC Geoservice Map Context - EOC Geoservice Map Context (metop:gome2.tc.daily)\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\":\n        \\\"https://atmos.eoc.dlr.de/app/missions/gome2\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://geoservice.dlr.de/eoc/atmosphere/wms?SERVICE=WMS&REQUEST=GetCapabilities\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\":\n        \\\"https://geoservice.dlr.de/eoc/atmosphere/wcs?SERVICE=WCS&REQUEST=GetCapabilities\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/810631f4-c311-44f2-9ced-c2260df2bc06?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/810631f4-c311-44f2-9ced-c2260df2bc06?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/810631f4-c311-44f2-9ced-c2260df2bc06?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/DE@DLR\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for DE/DLR\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/Metop-A\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for Metop-A platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/Metop-B\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for Metop-B platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/Metop-C\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for Metop-C platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/eaa1390e-6453-5b90-9ed2-90c3f5096d83\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for GOME-2 instrument\\\"\\n        }\\n\n        \\     ],\\n      \\\"id\\\": \\\"810631f4-c311-44f2-9ced-c2260df2bc06\\\",\\n      \\\"updated\\\":\n        \\\"2024-06-20T13:07:23Z\\\",\\n      \\\"stac_extensions\\\": [\\\"https://stac-extensions.github.io/processing/v1.2.0/schema.json\\\"],\\n\n        \\     \\\"providers\\\": [\\n        {\\n          \\\"roles\\\": [\\\"producer\\\"],\\n\n        \\         \\\"name\\\": \\\"DE/DLR\\\"\\n        },\\n        {\\n          \\\"roles\\\":\n        [\\\"host\\\"],\\n          \\\"name\\\": \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\":\n        \\\"https://emc.spacebel.be/readme.html\\\"\\n        }\\n      ],\\n      \\\"summaries\\\":\n        {\\n        \\\"instruments\\\": [\\\"GOME-2\\\"],\\n        \\\"processing:lineage\\\":\n        [\\\"Please refer to relevant peer-review papers listed on the GOME and GOME-2\n        documentation pages for more details on cloud optical thickness retrieval:\n        https://atmos.eoc.dlr.de/app/docs/\\\"],\\n        \\\"platform\\\": [\\n          \\\"Metop-A\\\",\\n\n        \\         \\\"Metop-B\\\",\\n          \\\"Metop-C\\\"\\n        ]\\n      }\\n    },\\n\n        \\   {\\n      \\\"extent\\\": {\\n        \\\"spatial\\\": {\\\"bbox\\\": [[\\n          -180,\\n\n        \\         -90,\\n          180,\\n          90\\n        ]]},\\n        \\\"temporal\\\":\n        {\\\"interval\\\": [[\\n          \\\"2007-01-23T10:16:34Z\\\",\\n          null\\n        ]]}\\n\n        \\     },\\n      \\\"stac_version\\\": \\\"1.0.0\\\",\\n      \\\"keywords\\\": [\\n        \\\"DIF10\\\",\\n\n        \\       \\\"MetOp-A\\\",\\n        \\\"MetOp-B\\\",\\n        \\\"MetOp-C\\\",\\n        \\\"NO2\\\",\\n\n        \\       \\\"Nitrogen Dioxide\\\",\\n        \\\"AC-SAF\\\",\\n        \\\"GOME.TC.AGG\\\",\\n\n        \\       \\\"urn:eop:DLR:EOWEB:GOME.TC.AGG\\\",\\n        \\\"FEDEO\\\",\\n        \\\"Atmospheric\n        conditions\\\",\\n        \\\"EARTH SCIENCE>ATMOSPHERE>ATMOSPHERIC CHEMISTRY>NITROGEN\n        COMPOUNDS>NITROGEN DIOXIDE\\\",\\n        \\\"METOP-A\\\",\\n        \\\"METOP-B\\\",\\n\n        \\       \\\"METOP-C\\\",\\n        \\\"GOME-2\\\",\\n        \\\"Metop-A\\\",\\n        \\\"Metop-B\\\",\\n\n        \\       \\\"Metop-C\\\"\\n      ],\\n      \\\"description\\\": \\\"The Global Ozone Monitoring\n        Experiment-2 (GOME-2) instrument continues the long-term monitoring of atmospheric\n        trace gas constituents started with GOME / ERS-2 and SCIAMACHY / Envisat.\n        Currently, there are three GOME-2 instruments operating on board EUMETSAT's\n        Meteorological Operational satellites MetOp-A, -B, and -C, launched in October\n        2006, September 2012, and November 2018, respectively. GOME-2 can measure\n        a range of atmospheric trace constituents, with the emphasis on global ozone\n        distributions. Furthermore, cloud properties and intensities of ultraviolet\n        radiation are retrieved. These data are crucial for monitoring the atmospheric\n        composition and the detection of pollutants. DLR generates operational GOME-2\n        / MetOp level 2 products in the framework of EUMETSAT's Satellite Application\n        Facility on Atmospheric Chemistry Monitoring (AC-SAF). GOME-2 near-real-time\n        products are available already two hours after sensing.\\\\t\\\\t\\\\tThe operational\n        NO2 total column products are generated using the algorithm GDP (GOME Data\n        Processor) version 4.x integrated into the UPAS (Universal Processor for UV\n        / VIS Atmospheric Spectrometers) processor for generating level 2 trace gas\n        and cloud products.\\\\t\\\\t\\\\tThe total NO2 column is retrieved from GOME solar\n        back-scattered measurements in the visible wavelength region (425-450 nm),\n        using the Differential Optical Absorption Spectroscopy (DOAS) method.\\\\t\\\\t\\\\tFor\n        more details please refer to relevant peer-review papers listed on the GOME\n        and GOME-2 documentation pages: https://atmos.eoc.dlr.de/app/docs/\\\",\\n      \\\"type\\\":\n        \\\"Collection\\\",\\n      \\\"title\\\": \\\"METOP GOME-2 - Nitrogen Dioxide (NO2)\n        - Global\\\",\\n      \\\"license\\\": \\\"various\\\",\\n      \\\"assets\\\": {\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/bf8dbf94-ff16-42bf-a957-0e8f80813aff?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/bf8dbf94-ff16-42bf-a957-0e8f80813aff?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"enclosure_3\\\": {\\n          \\\"roles\\\": [\\\"data\\\"],\\n\n        \\         \\\"href\\\": \\\"https://geoservice.dlr.de/eoc/atmosphere/wms?\\\",\\n          \\\"type\\\":\n        \\\"application/x-binary\\\",\\n          \\\"title\\\": \\\"METOP-C_GOME-2_L2C_P1D_NO2\n        - MetOp-C GOME-2 L2C Daily NO2\\\"\\n        },\\n        \\\"enclosure_4\\\": {\\n\n        \\         \\\"roles\\\": [\\\"data\\\"],\\n          \\\"href\\\": \\\"https://geoservice.dlr.de/eoc/atmosphere/wms?\\\",\\n\n        \\         \\\"type\\\": \\\"application/x-binary\\\",\\n          \\\"title\\\": \\\"METOP_GOME-2_L2C_P1D_COMB_NO2\n        - MetOp GOME-2 L2C Daily NO2 Combined\\\"\\n        },\\n        \\\"enclosure_1\\\":\n        {\\n          \\\"roles\\\": [\\\"data\\\"],\\n          \\\"href\\\": \\\"ftp://acsaf.eoc.dlr.de/\\\",\\n\n        \\         \\\"type\\\": \\\"application/x-binary\\\",\\n          \\\"title\\\": \\\"DLR-ATMOS\n        FTP-server - For data access via FTP, please register at https://acsaf.org/registration_form.html\n        or contact helpdesk@acsaf.org.\\\"\\n        },\\n        \\\"search\\\": {\\n          \\\"roles\\\":\n        [\\\"search\\\"],\\n          \\\"href\\\": \\\"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Search client\\\"\\n\n        \\       },\\n        \\\"enclosure_2\\\": {\\n          \\\"roles\\\": [\\\"data\\\"],\\n\n        \\         \\\"href\\\": \\\"https://geoservice.dlr.de/eoc/atmosphere/wms?\\\",\\n          \\\"type\\\":\n        \\\"application/x-binary\\\",\\n          \\\"title\\\": \\\"METOP-B_GOME-2_L2C_P1D_NO2\n        - MetOp-B GOME-2 L2C Daily NO2\\\"\\n        },\\n        \\\"metadata_ogc_17_069r3\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/bf8dbf94-ff16-42bf-a957-0e8f80813aff\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139_2\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/bf8dbf94-ff16-42bf-a957-0e8f80813aff?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/bf8dbf94-ff16-42bf-a957-0e8f80813aff?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"enclosure_7\\\": {\\n          \\\"roles\\\": [\\\"data\\\"],\\n\n        \\         \\\"href\\\": \\\"https://geoservice.dlr.de/eoc/atmosphere/wcs?\\\",\\n          \\\"type\\\":\n        \\\"application/x-binary\\\",\\n          \\\"title\\\": \\\"METOP_GOME-2_L2C_P1D_COMB_NO2\n        - MetOp GOME-2 L2C Daily NO2 Combined\\\"\\n        },\\n        \\\"metadata_ogc_17_084r1\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/bf8dbf94-ff16-42bf-a957-0e8f80813aff?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/bf8dbf94-ff16-42bf-a957-0e8f80813aff?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        },\\n\n        \\       \\\"enclosure_5\\\": {\\n          \\\"roles\\\": [\\\"data\\\"],\\n          \\\"href\\\":\n        \\\"https://geoservice.dlr.de/eoc/atmosphere/wcs?\\\",\\n          \\\"type\\\": \\\"application/x-binary\\\",\\n\n        \\         \\\"title\\\": \\\"METOP-B_GOME-2_L2C_P1D_NO2 - MetOp-B GOME-2 L2C Daily\n        NO2\\\"\\n        },\\n        \\\"quicklook\\\": {\\n          \\\"roles\\\": [\\\"overview\\\"],\\n\n        \\         \\\"href\\\": \\\"https://geoservice.dlr.de/catalogue/srv/api/records/bf8dbf94-ff16-42bf-a957-0e8f80813aff/attachments/metop_gome2_no2_ql.jpg\\\",\\n\n        \\         \\\"type\\\": \\\"image/jpeg\\\",\\n          \\\"title\\\": \\\"graphic overview\\\"\\n\n        \\       },\\n        \\\"enclosure_6\\\": {\\n          \\\"roles\\\": [\\\"data\\\"],\\n\n        \\         \\\"href\\\": \\\"https://geoservice.dlr.de/eoc/atmosphere/wcs?\\\",\\n          \\\"type\\\":\n        \\\"application/x-binary\\\",\\n          \\\"title\\\": \\\"METOP-C_GOME-2_L2C_P1D_NO2\n        - MetOp-C GOME-2 L2C Daily NO2\\\"\\n        }\\n      },\\n      \\\"links\\\": [\\n\n        \\       {\\n          \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/bf8dbf94-ff16-42bf-a957-0e8f80813aff\\\",\\n\n        \\         \\\"type\\\": \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"root\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\",\\n          \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n\n        \\         \\\"title\\\": \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"search\\\",\\n          \\\"href\\\":\n        \\\"https://eoweb.dlr.de/egp/main?service=geoservice.dlr.de%2Feoc%2Fatmosphere%2Fwms%26type=wms%26layer=METOP-B_GOME-2_L2C_P1D_NO2\\\",\\n\n        \\         \\\"title\\\": \\\"METOP-B_GOME-2_L2C_P1D_NO2 - EGP: MetOp-B GOME-2 L2C\n        Daily NO2\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"search\\\",\\n          \\\"href\\\":\n        \\\"https://eoweb.dlr.de/egp/main?service=geoservice.dlr.de%2Feoc%2Fatmosphere%2Fwms%26type=wms%26layer=METOP-C_GOME-2_L2C_P1D_NO2\\\",\\n\n        \\         \\\"title\\\": \\\"METOP-C_GOME-2_L2C_P1D_NO2 - EGP: MetOp-C GOME-2 L2C\n        Daily NO2\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"search\\\",\\n          \\\"href\\\":\n        \\\"https://eoweb.dlr.de/egp/main?service=geoservice.dlr.de%2Feoc%2Fatmosphere%2Fwms%26type=wms%26layer=METOP_GOME-2_L2C_P1D_COMB_NO2\\\",\\n\n        \\         \\\"title\\\": \\\"METOP_GOME-2_L2C_P1D_COMB_NO2 - EGP: MetOp GOME-2 L2C\n        Daily NO2 Combined\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"related\\\",\\n\n        \\         \\\"href\\\": \\\"https://eoweb.dlr.de/egp/main?ecswCollection=urn%3Aeop%3ADLR%3AEOWEB%3AGOME.TC.AGG\\\",\\n\n        \\         \\\"title\\\": \\\"METOP GOME-2 - Nitrogen Dioxide (NO2) - Global - EOWEB\n        GeoPortal Collection\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"icon\\\",\\n\n        \\         \\\"href\\\": \\\"https://geoservice.dlr.de/catalogue/srv/api/records/bf8dbf94-ff16-42bf-a957-0e8f80813aff/attachments/metop_gome2_no2_ql_s.jpg\\\",\\n\n        \\         \\\"type\\\": \\\"image/jpeg\\\",\\n          \\\"title\\\": \\\"graphic overview\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\":\n        \\\"https://geoservice.dlr.de/web/maps/metop:gome2.tc.daily\\\",\\n          \\\"title\\\":\n        \\\"EOC Geoservice Map Context - EOC Geoservice Map Context (metop:gome2.tc.daily)\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\":\n        \\\"https://atmos.eoc.dlr.de/app/missions/gome2\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://geoservice.dlr.de/eoc/atmosphere/wms?SERVICE=WMS&REQUEST=GetCapabilities\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\":\n        \\\"https://geoservice.dlr.de/eoc/atmosphere/wcs?SERVICE=WCS&REQUEST=GetCapabilities\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/bf8dbf94-ff16-42bf-a957-0e8f80813aff?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/bf8dbf94-ff16-42bf-a957-0e8f80813aff?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/bf8dbf94-ff16-42bf-a957-0e8f80813aff?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/DE@DLR\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for DE/DLR\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/Metop-A\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for Metop-A platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/Metop-B\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for Metop-B platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/Metop-C\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for Metop-C platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/eaa1390e-6453-5b90-9ed2-90c3f5096d83\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for GOME-2 instrument\\\"\\n        }\\n\n        \\     ],\\n      \\\"id\\\": \\\"bf8dbf94-ff16-42bf-a957-0e8f80813aff\\\",\\n      \\\"updated\\\":\n        \\\"2024-06-20T13:07:52Z\\\",\\n      \\\"stac_extensions\\\": [\\\"https://stac-extensions.github.io/processing/v1.2.0/schema.json\\\"],\\n\n        \\     \\\"providers\\\": [\\n        {\\n          \\\"roles\\\": [\\\"producer\\\"],\\n\n        \\         \\\"name\\\": \\\"DE/DLR\\\"\\n        },\\n        {\\n          \\\"roles\\\":\n        [\\\"host\\\"],\\n          \\\"name\\\": \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\":\n        \\\"https://emc.spacebel.be/readme.html\\\"\\n        }\\n      ],\\n      \\\"summaries\\\":\n        {\\n        \\\"instruments\\\": [\\\"GOME-2\\\"],\\n        \\\"processing:lineage\\\":\n        [\\\"Please refer to relevant peer-review papers listed on the GOME and GOME-2\n        documentation pages for more details on nitrogen dioxide retrieval: https://atmos.eoc.dlr.de/app/docs/\\\"],\\n\n        \\       \\\"platform\\\": [\\n          \\\"Metop-A\\\",\\n          \\\"Metop-B\\\",\\n\n        \\         \\\"Metop-C\\\"\\n        ]\\n      }\\n    },\\n    {\\n      \\\"extent\\\":\n        {\\n        \\\"spatial\\\": {\\\"bbox\\\": [[\\n          -180,\\n          -90,\\n          180,\\n\n        \\         90\\n        ]]},\\n        \\\"temporal\\\": {\\\"interval\\\": [[\\n          \\\"2007-01-23T10:16:34Z\\\",\\n\n        \\         null\\n        ]]}\\n      },\\n      \\\"stac_version\\\": \\\"1.0.0\\\",\\n\n        \\     \\\"keywords\\\": [\\n        \\\"DIF10\\\",\\n        \\\"MetOp-A\\\",\\n        \\\"MetOp-B\\\",\\n\n        \\       \\\"MetOp-C\\\",\\n        \\\"HCHO\\\",\\n        \\\"Formaldehyde\\\",\\n        \\\"AC-SAF\\\",\\n\n        \\       \\\"GOME.TC.AGG\\\",\\n        \\\"urn:eop:DLR:EOWEB:GOME.TC.AGG\\\",\\n        \\\"FEDEO\\\",\\n\n        \\       \\\"Atmospheric conditions\\\",\\n        \\\"EARTH SCIENCE>ATMOSPHERE>ATMOSPHERIC\n        CHEMISTRY>CARBON AND HYDROCARBON COMPOUNDS>FORMALDEHYDE\\\",\\n        \\\"METOP-A\\\",\\n\n        \\       \\\"METOP-B\\\",\\n        \\\"METOP-C\\\",\\n        \\\"GOME-2\\\",\\n        \\\"Metop-A\\\",\\n\n        \\       \\\"Metop-B\\\",\\n        \\\"Metop-C\\\"\\n      ],\\n      \\\"description\\\":\n        \\\"The Global Ozone Monitoring Experiment-2 (GOME-2) instrument continues the\n        long-term monitoring of atmospheric trace gas constituents started with GOME\n        / ERS-2 and SCIAMACHY / Envisat. Currently, there are three GOME-2 instruments\n        operating on board EUMETSAT's Meteorological Operational satellites MetOp-A,\n        -B, and -C, launched in October 2006, September 2012, and November 2018, respectively.\n        GOME-2 can measure a range of atmospheric trace constituents, with the emphasis\n        on global ozone distributions. Furthermore, cloud properties and intensities\n        of ultraviolet radiation are retrieved. These data are crucial for monitoring\n        the atmospheric composition and the detection of pollutants. DLR generates\n        operational GOME-2 / MetOp level 2 products in the framework of EUMETSAT's\n        Satellite Application Facility on Atmospheric Chemistry Monitoring (AC-SAF).\n        GOME-2 near-real-time products are available already two hours after sensing.\\\\t\\\\t\\\\tThe\n        operational HCHO total column products are generated using the algorithm GDP\n        (GOME Data Processor) version 4.x integrated into the UPAS (Universal Processor\n        for UV / VIS Atmospheric Spectrometers) processor for generating level 2 trace\n        gas and cloud products.\\\\t\\\\t\\\\tFor more details please refer to relevant\n        peer-review papers listed on the GOME and GOME-2 documentation pages: https://atmos.eoc.dlr.de/app/docs/\\\",\\n\n        \\     \\\"type\\\": \\\"Collection\\\",\\n      \\\"title\\\": \\\"METOP GOME-2 - Formaldehyde\n        (HCHO) - Global\\\",\\n      \\\"license\\\": \\\"various\\\",\\n      \\\"assets\\\": {\\n\n        \\       \\\"metadata_iso_19139\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/3dd6bbdd-5dca-411e-b251-cdc325d703c4?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/3dd6bbdd-5dca-411e-b251-cdc325d703c4?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"enclosure_3\\\": {\\n          \\\"roles\\\": [\\\"data\\\"],\\n\n        \\         \\\"href\\\": \\\"https://geoservice.dlr.de/eoc/atmosphere/wms?\\\",\\n          \\\"type\\\":\n        \\\"application/x-binary\\\",\\n          \\\"title\\\": \\\"METOP-C_GOME-2_L2C_P1D_HCHO\n        - MetOp-C GOME-2 L2C Daily HCHO\\\"\\n        },\\n        \\\"enclosure_4\\\": {\\n\n        \\         \\\"roles\\\": [\\\"data\\\"],\\n          \\\"href\\\": \\\"https://geoservice.dlr.de/eoc/atmosphere/wms?\\\",\\n\n        \\         \\\"type\\\": \\\"application/x-binary\\\",\\n          \\\"title\\\": \\\"METOP_GOME-2_L2C_P1D_COMB_HCHO\n        - MetOp GOME-2 L2C Daily HCHO Combined\\\"\\n        },\\n        \\\"enclosure_1\\\":\n        {\\n          \\\"roles\\\": [\\\"data\\\"],\\n          \\\"href\\\": \\\"ftp://acsaf.eoc.dlr.de/\\\",\\n\n        \\         \\\"type\\\": \\\"application/x-binary\\\",\\n          \\\"title\\\": \\\"DLR-ATMOS\n        FTP-server - For data access via FTP, please register at https://acsaf.org/registration_form.html\n        or contact helpdesk@acsaf.org.\\\"\\n        },\\n        \\\"search\\\": {\\n          \\\"roles\\\":\n        [\\\"search\\\"],\\n          \\\"href\\\": \\\"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Search client\\\"\\n\n        \\       },\\n        \\\"enclosure_2\\\": {\\n          \\\"roles\\\": [\\\"data\\\"],\\n\n        \\         \\\"href\\\": \\\"https://geoservice.dlr.de/eoc/atmosphere/wms?\\\",\\n          \\\"type\\\":\n        \\\"application/x-binary\\\",\\n          \\\"title\\\": \\\"METOP-B_GOME-2_L2C_P1D_HCHO\n        - MetOp-B GOME-2 L2C Daily HCHO\\\"\\n        },\\n        \\\"metadata_ogc_17_069r3\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/3dd6bbdd-5dca-411e-b251-cdc325d703c4\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139_2\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/3dd6bbdd-5dca-411e-b251-cdc325d703c4?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/3dd6bbdd-5dca-411e-b251-cdc325d703c4?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"enclosure_7\\\": {\\n          \\\"roles\\\": [\\\"data\\\"],\\n\n        \\         \\\"href\\\": \\\"https://geoservice.dlr.de/eoc/atmosphere/wcs?\\\",\\n          \\\"type\\\":\n        \\\"application/x-binary\\\",\\n          \\\"title\\\": \\\"METOP_GOME-2_L2C_P1D_COMB_HCHO\n        - MetOp GOME-2 L2C Daily HCHO Combined\\\"\\n        },\\n        \\\"metadata_ogc_17_084r1\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/3dd6bbdd-5dca-411e-b251-cdc325d703c4?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/3dd6bbdd-5dca-411e-b251-cdc325d703c4?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        },\\n\n        \\       \\\"enclosure_5\\\": {\\n          \\\"roles\\\": [\\\"data\\\"],\\n          \\\"href\\\":\n        \\\"https://geoservice.dlr.de/eoc/atmosphere/wcs?\\\",\\n          \\\"type\\\": \\\"application/x-binary\\\",\\n\n        \\         \\\"title\\\": \\\"METOP-B_GOME-2_L2C_P1D_HCHO - MetOp-B GOME-2 L2C Daily\n        HCHO\\\"\\n        },\\n        \\\"quicklook\\\": {\\n          \\\"roles\\\": [\\\"overview\\\"],\\n\n        \\         \\\"href\\\": \\\"https://geoservice.dlr.de/catalogue/srv/api/records/3dd6bbdd-5dca-411e-b251-cdc325d703c4/attachments/metop_gome2_hcho_ql.jpg\\\",\\n\n        \\         \\\"type\\\": \\\"image/jpeg\\\",\\n          \\\"title\\\": \\\"graphic overview\\\"\\n\n        \\       },\\n        \\\"enclosure_6\\\": {\\n          \\\"roles\\\": [\\\"data\\\"],\\n\n        \\         \\\"href\\\": \\\"https://geoservice.dlr.de/eoc/atmosphere/wcs?\\\",\\n          \\\"type\\\":\n        \\\"application/x-binary\\\",\\n          \\\"title\\\": \\\"METOP-C_GOME-2_L2C_P1D_HCHO\n        - MetOp-C GOME-2 L2C Daily HCHO\\\"\\n        }\\n      },\\n      \\\"links\\\": [\\n\n        \\       {\\n          \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/3dd6bbdd-5dca-411e-b251-cdc325d703c4\\\",\\n\n        \\         \\\"type\\\": \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"root\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\",\\n          \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n\n        \\         \\\"title\\\": \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"search\\\",\\n          \\\"href\\\":\n        \\\"https://eoweb.dlr.de/egp/main?service=geoservice.dlr.de%2Feoc%2Fatmosphere%2Fwms%26type=wms%26layer=METOP-B_GOME-2_L2C_P1D_HCHO\\\",\\n\n        \\         \\\"title\\\": \\\"METOP-B_GOME-2_L2C_P1D_HCHO - EGP: MetOp-B GOME-2 L2C\n        Daily HCHO\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"search\\\",\\n          \\\"href\\\":\n        \\\"https://eoweb.dlr.de/egp/main?service=geoservice.dlr.de%2Feoc%2Fatmosphere%2Fwms%26type=wms%26layer=METOP-C_GOME-2_L2C_P1D_HCHO\\\",\\n\n        \\         \\\"title\\\": \\\"METOP-C_GOME-2_L2C_P1D_HCHO - EGP: MetOp-C GOME-2 L2C\n        Daily HCHO\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"search\\\",\\n          \\\"href\\\":\n        \\\"https://eoweb.dlr.de/egp/main?service=geoservice.dlr.de%2Feoc%2Fatmosphere%2Fwms%26type=wms%26layer=METOP_GOME-2_L2C_P1D_COMB_HCHO\\\",\\n\n        \\         \\\"title\\\": \\\"METOP_GOME-2_L2C_P1D_COMB_HCHO - EGP: MetOp GOME-2\n        L2C Daily HCHO Combined\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"related\\\",\\n\n        \\         \\\"href\\\": \\\"https://eoweb.dlr.de/egp/main?ecswCollection=urn%3Aeop%3ADLR%3AEOWEB%3AGOME.TC.AGG\\\",\\n\n        \\         \\\"title\\\": \\\"METOP GOME-2 - Formaldehyde (HCHO) - Global - EOWEB\n        GeoPortal Collection\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"icon\\\",\\n\n        \\         \\\"href\\\": \\\"https://geoservice.dlr.de/catalogue/srv/api/records/3dd6bbdd-5dca-411e-b251-cdc325d703c4/attachments/metop_gome2_hcho_ql_s.jpg\\\",\\n\n        \\         \\\"type\\\": \\\"image/jpeg\\\",\\n          \\\"title\\\": \\\"graphic overview\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\":\n        \\\"https://geoservice.dlr.de/web/maps/metop:gome2.tc.daily\\\",\\n          \\\"title\\\":\n        \\\"EOC Geoservice Map Context - EOC Geoservice Map Context (metop:gome2.tc.daily)\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\":\n        \\\"https://atmos.eoc.dlr.de/app/missions/gome2\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://geoservice.dlr.de/eoc/atmosphere/wms?SERVICE=WMS&REQUEST=GetCapabilities\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\":\n        \\\"https://geoservice.dlr.de/eoc/atmosphere/wcs?SERVICE=WCS&REQUEST=GetCapabilities\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/3dd6bbdd-5dca-411e-b251-cdc325d703c4?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/3dd6bbdd-5dca-411e-b251-cdc325d703c4?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/3dd6bbdd-5dca-411e-b251-cdc325d703c4?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/DE@DLR\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for DE/DLR\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/Metop-A\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for Metop-A platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/Metop-B\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for Metop-B platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/Metop-C\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for Metop-C platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/eaa1390e-6453-5b90-9ed2-90c3f5096d83\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for GOME-2 instrument\\\"\\n        }\\n\n        \\     ],\\n      \\\"id\\\": \\\"3dd6bbdd-5dca-411e-b251-cdc325d703c4\\\",\\n      \\\"updated\\\":\n        \\\"2024-06-20T13:07:47Z\\\",\\n      \\\"stac_extensions\\\": [\\\"https://stac-extensions.github.io/processing/v1.2.0/schema.json\\\"],\\n\n        \\     \\\"providers\\\": [\\n        {\\n          \\\"roles\\\": [\\\"producer\\\"],\\n\n        \\         \\\"name\\\": \\\"DE/DLR\\\"\\n        },\\n        {\\n          \\\"roles\\\":\n        [\\\"host\\\"],\\n          \\\"name\\\": \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\":\n        \\\"https://emc.spacebel.be/readme.html\\\"\\n        }\\n      ],\\n      \\\"summaries\\\":\n        {\\n        \\\"instruments\\\": [\\\"GOME-2\\\"],\\n        \\\"processing:lineage\\\":\n        [\\\"Please refer to relevant peer-review papers listed on the GOME and GOME-2\n        documentation pages for more details on formaldehyde retrieval: https://atmos.eoc.dlr.de/app/docs/\\\"],\\n\n        \\       \\\"platform\\\": [\\n          \\\"Metop-A\\\",\\n          \\\"Metop-B\\\",\\n\n        \\         \\\"Metop-C\\\"\\n        ]\\n      }\\n    },\\n    {\\n      \\\"extent\\\":\n        {\\n        \\\"spatial\\\": {\\\"bbox\\\": [[\\n          -180,\\n          -90,\\n          180,\\n\n        \\         90\\n        ]]},\\n        \\\"temporal\\\": {\\\"interval\\\": [[\\n          \\\"2022-04-27T00:00:00Z\\\",\\n\n        \\         null\\n        ]]}\\n      },\\n      \\\"stac_version\\\": \\\"1.0.0\\\",\\n\n        \\     \\\"keywords\\\": [\\n        \\\"DIF10\\\",\\n        \\\"Orthoimagery\\\",\\n        \\\"DLR\\\",\\n\n        \\       \\\"EOC\\\",\\n        \\\"hyperspectral sensing\\\",\\n        \\\"quicklooks\\\",\\n\n        \\       \\\"Level 0\\\",\\n        \\\"FEDEO\\\",\\n        \\\"urn:eop:DLR:EOWEB:ENMAP.HSI.L0\\\",\\n\n        \\       \\\"visible wavelengths\\\",\\n        \\\"infrared wavelengths\\\",\\n        \\\"EARTH\n        SCIENCE>SPECTRAL/ENGINEERING>VISIBLE WAVELENGTHS\\\",\\n        \\\"EARTH SCIENCE>SPECTRAL/ENGINEERING>INFRARED\n        WAVELENGTHS\\\",\\n        \\\"EnMAP\\\",\\n        \\\"HSI\\\",\\n        \\\"Global\\\"\\n\n        \\     ],\\n      \\\"description\\\": \\\"The EnMAP HSI L0 Quicklooks collection\n        contains the VNIR and SWIR quicklook images as well as the quality masks for\n        haze, cloud, or snow; based on the latest atmospheric correction methodology\n        of the land processor. It allows users to get an overview which L0 data has\n        been acquired and archived since the operational start of the EnMAP mission\n        and which data is potentially available for on-demand processing into higher\n        level products with specific processing parameters via the EOWEB-GeoPortal.\n        The database is constantly updated with newly acquired L0 data.                            The\n        Environmental Mapping and Analysis Program (EnMAP) is a German hyperspectral\n        satellite mission that monitors and characterizes Earth\\\\u2019s environment\n        on a global scale. EnMAP delivers accurate data that provides information\n        on the status and evolution of terrestrial and aquatic ecosystems, supporting\n        environmental monitoring, management, and decision-making.                                For\n        more information, please see the mission website: https://www.enmap.org/mission/\\\",\\n\n        \\     \\\"sci:citation\\\": \\\"DOI: 10.15489/rlyibn8gjc58\\\",\\n      \\\"type\\\": \\\"Collection\\\",\\n\n        \\     \\\"title\\\": \\\"EnMAP HSI - Level 0 / Quicklook Images - Global\\\",\\n      \\\"license\\\":\n        \\\"various\\\",\\n      \\\"assets\\\": {\\n        \\\"metadata_iso_19139\\\": {\\n          \\\"roles\\\":\n        [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/a13994c5-8d10-4627-90b8-60077ab5de40?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/a13994c5-8d10-4627-90b8-60077ab5de40?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"enclosure_3\\\": {\\n          \\\"roles\\\": [\\\"data\\\"],\\n\n        \\         \\\"href\\\": \\\"https://geoservice.dlr.de/eoc/imagery/wms?\\\",\\n          \\\"type\\\":\n        \\\"application/x-binary\\\",\\n          \\\"title\\\": \\\"ENMAP_HSI_L0_QL_QUALITY_SNOW\n        - EnMAP HSI L0 Quicklooks Quality Snow\\\"\\n        },\\n        \\\"enclosure_4\\\":\n        {\\n          \\\"roles\\\": [\\\"data\\\"],\\n          \\\"href\\\": \\\"https://geoservice.dlr.de/eoc/imagery/wms?\\\",\\n\n        \\         \\\"type\\\": \\\"application/x-binary\\\",\\n          \\\"title\\\": \\\"ENMAP_HSI_L0_QL_QUALITY_HAZE\n        - EnMAP HSI L0 Quicklooks Quality Haze\\\"\\n        },\\n        \\\"enclosure_1\\\":\n        {\\n          \\\"roles\\\": [\\\"data\\\"],\\n          \\\"href\\\": \\\"https://geoservice.dlr.de/eoc/imagery/wms?\\\",\\n\n        \\         \\\"type\\\": \\\"application/x-binary\\\",\\n          \\\"title\\\": \\\"ENMAP_HSI_L0_QL_VNIR\n        - EnMAP HSI L0 Quicklooks VNIR\\\"\\n        },\\n        \\\"enclosure_2\\\": {\\n\n        \\         \\\"roles\\\": [\\\"data\\\"],\\n          \\\"href\\\": \\\"https://geoservice.dlr.de/eoc/imagery/wms?\\\",\\n\n        \\         \\\"type\\\": \\\"application/x-binary\\\",\\n          \\\"title\\\": \\\"ENMAP_HSI_L0_QL_SWIR\n        - EnMAP HSI L0 Quicklooks SWIR\\\"\\n        },\\n        \\\"metadata_ogc_17_069r3\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/a13994c5-8d10-4627-90b8-60077ab5de40\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139_2\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/a13994c5-8d10-4627-90b8-60077ab5de40?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"enclosure_9\\\": {\\n          \\\"roles\\\": [\\\"data\\\"],\\n\n        \\         \\\"href\\\": \\\"https://download.geoservice.dlr.de/ENMAP/files/\\\",\\n\n        \\         \\\"type\\\": \\\"application/x-binary\\\",\\n          \\\"title\\\": \\\"HTTP\n        download EnMAP HSI - Level 0 Quicklook Images - Global\\\"\\n        },\\n        \\\"metadata_iso_19115_3\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/a13994c5-8d10-4627-90b8-60077ab5de40?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"enclosure_7\\\": {\\n          \\\"roles\\\": [\\\"data\\\"],\\n\n        \\         \\\"href\\\": \\\"https://geoservice.dlr.de/eoc/imagery/wms?\\\",\\n          \\\"type\\\":\n        \\\"application/x-binary\\\",\\n          \\\"title\\\": \\\"ENMAP_HSI_L0_QL_QUALITY_CLASSES\n        - EnMAP HSI L0 Quicklooks Quality Classes\\\"\\n        },\\n        \\\"enclosure_8\\\":\n        {\\n          \\\"roles\\\": [\\\"data\\\"],\\n          \\\"href\\\": \\\"https://geoservice.dlr.de/eoc/imagery/wms?\\\",\\n\n        \\         \\\"type\\\": \\\"application/x-binary\\\",\\n          \\\"title\\\": \\\"ENMAP_HSI_L0_QL_QUALITY_CIRRUS\n        - EnMAP HSI L0 Quicklooks Quality Cirrus\\\"\\n        },\\n        \\\"metadata_ogc_17_084r1\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/a13994c5-8d10-4627-90b8-60077ab5de40?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/a13994c5-8d10-4627-90b8-60077ab5de40?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        },\\n\n        \\       \\\"enclosure_5\\\": {\\n          \\\"roles\\\": [\\\"data\\\"],\\n          \\\"href\\\":\n        \\\"https://geoservice.dlr.de/eoc/imagery/wms?\\\",\\n          \\\"type\\\": \\\"application/x-binary\\\",\\n\n        \\         \\\"title\\\": \\\"ENMAP_HSI_L0_QL_QUALITY_CLOUDSHADOW - EnMAP HSI L0\n        Quicklooks Quality Cloudshadow\\\"\\n        },\\n        \\\"quicklook\\\": {\\n          \\\"roles\\\":\n        [\\\"overview\\\"],\\n          \\\"href\\\": \\\"https://geoservice.dlr.de/catalogue/srv/api/records/a13994c5-8d10-4627-90b8-60077ab5de40/attachments/ENMAP_HSI_L0_ql.jpg\\\",\\n\n        \\         \\\"type\\\": \\\"image/jpeg\\\",\\n          \\\"title\\\": \\\"graphic overview\\\"\\n\n        \\       },\\n        \\\"enclosure_6\\\": {\\n          \\\"roles\\\": [\\\"data\\\"],\\n\n        \\         \\\"href\\\": \\\"https://geoservice.dlr.de/eoc/imagery/wms?\\\",\\n          \\\"type\\\":\n        \\\"application/x-binary\\\",\\n          \\\"title\\\": \\\"ENMAP_HSI_L0_QL_QUALITY_CLOUD\n        - EnMAP HSI L0 Quicklooks Quality Cloud\\\"\\n        }\\n      },\\n      \\\"links\\\":\n        [\\n        {\\n          \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/a13994c5-8d10-4627-90b8-60077ab5de40\\\",\\n\n        \\         \\\"type\\\": \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"root\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\",\\n          \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n\n        \\         \\\"title\\\": \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n\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\n        \\         \\\"type\\\": \\\"image/jpeg\\\",\\n          \\\"title\\\": \\\"graphic overview\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\":\n        \\\"https://geoservice.dlr.de/eoc/imagery/wms?SERVICE=WMS%26REQUEST=GetCapabilities\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/a13994c5-8d10-4627-90b8-60077ab5de40?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/a13994c5-8d10-4627-90b8-60077ab5de40?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/a13994c5-8d10-4627-90b8-60077ab5de40?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/DE@DLR\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for DE/DLR\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/EnMAP\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for EnMAP platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/249b8467-308b-55f9-8b74-198a335780e0\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for HSI instrument\\\"\\n        }\\n\n        \\     ],\\n      \\\"id\\\": \\\"a13994c5-8d10-4627-90b8-60077ab5de40\\\",\\n      \\\"updated\\\":\n        \\\"2024-08-12T07:07:07Z\\\",\\n      \\\"stac_extensions\\\": [\\n        \\\"https://stac-extensions.github.io/processing/v1.2.0/schema.json\\\",\\n\n        \\       \\\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\\\"\\n\n        \\     ],\\n      \\\"providers\\\": [\\n        {\\n          \\\"roles\\\": [\\\"producer\\\"],\\n\n        \\         \\\"name\\\": \\\"DE/DLR\\\"\\n        },\\n        {\\n          \\\"roles\\\":\n        [\\\"host\\\"],\\n          \\\"name\\\": \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\":\n        \\\"https://emc.spacebel.be/readme.html\\\"\\n        }\\n      ],\\n      \\\"summaries\\\":\n        {\\n        \\\"instruments\\\": [\\\"HSI\\\"],\\n        \\\"processing:lineage\\\": [\\\"Input\n        data: Raw EnMAP HSI satellite data\\\"],\\n        \\\"platform\\\": [\\\"EnMAP\\\"]\\n\n        \\     }\\n    },\\n    {\\n      \\\"extent\\\": {\\n        \\\"spatial\\\": {\\\"bbox\\\":\n        [[\\n          -180,\\n          -90,\\n          180,\\n          90\\n        ]]},\\n\n        \\       \\\"temporal\\\": {\\\"interval\\\": [[\\n          \\\"2018-05-01T00:00:00.000Z\\\",\\n\n        \\         null\\n        ]]}\\n      },\\n      \\\"stac_version\\\": \\\"1.0.0\\\",\\n\n        \\     \\\"keywords\\\": [\\n        \\\"Oceans\\\",\\n        \\\"EARTH SCIENCE > OCEANS\\\",\\n\n        \\       \\\"Marine Environment Monitoring\\\",\\n        \\\"EARTH SCIENCE > OCEANS\n        > MARINE ENVIRONMENT MONITORING\\\",\\n        \\\"Ocean Circulation\\\",\\n        \\\"EARTH\n        SCIENCE > OCEANS > OCEAN CIRCULATION\\\",\\n        \\\"Sun-synchronous\\\",\\n        \\\"L-Band\n        (19.4 - 76.9 cm)\\\",\\n        \\\"305\\\",\\n        \\\"758 km\\\",\\n        \\\"1000\n        km\\\",\\n        \\\"Interferometric Radiometers\\\",\\n        \\\"SMOS\\\",\\n        \\\"MIRAS\\\"\\n\n        \\     ],\\n      \\\"created\\\": \\\"2019-05-31T00:00:00.000Z\\\",\\n      \\\"description\\\":\n        \\\"SMOS L3WS products are daily composite maps of the collected SMOS L2 swath\n        wind products for a specific day, provided with the same grid than the Level\n        2 wind data (SMOS L2WS NRT) but separated into ascending and descending passes.\\\\r\\\\n\\\\r\\\\nThis\n        product is available the day after sensing from Ifremer, in NetCDF format.\\\\r\\\\n\\\\r\\\\nBefore\n        using this dataset, please check the read-me-first note available in the Resources\n        section below.\\\",\\n      \\\"type\\\": \\\"Collection\\\",\\n      \\\"title\\\": \\\"SMOS\n        L3 Daily Wind Speed\\\",\\n      \\\"version\\\": \\\"4.0\\\",\\n      \\\"license\\\": \\\"various\\\",\\n\n        \\     \\\"assets\\\": {\\n        \\\"search\\\": {\\n          \\\"roles\\\": [\\\"search\\\"],\\n\n        \\         \\\"href\\\": \\\"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=L3SW_Open\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Search client\\\"\\n\n        \\       },\\n        \\\"enclosure\\\": {\\n          \\\"roles\\\": [\\\"data\\\"],\\n          \\\"href\\\":\n        \\\"https://smos-diss.eo.esa.int/oads/meta/L2_SWS_Open/index/\\\",\\n          \\\"type\\\":\n        \\\"text/html\\\",\\n          \\\"title\\\": \\\"OADS repository - OADS repository\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_069r3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/L3SW_Open\\\",\\n          \\\"type\\\":\n        \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/L3SW_Open?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/L3SW_Open?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/L3SW_Open?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/L3SW_Open?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/L3SW_Open?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/L3SW_Open?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        }\\n\n        \\     },\\n      \\\"links\\\": [\\n        {\\n          \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/L3SW_Open\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"root\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n\n        \\         \\\"type\\\": \\\"application/json\\\",\\n          \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"parent\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be\\\",\\n          \\\"title\\\": \\\"collections\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"search\\\",\\n\n        \\         \\\"href\\\": \\\"https://eocat.esa.int/eo-catalogue/collections/series/items/L3SW_Open/api\\\",\\n\n        \\         \\\"type\\\": \\\"application/opensearchdescription+xml\\\",\\n          \\\"title\\\":\n        \\\"OpenSearch Description Document\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://earth.esa.int/eogateway/documents/20142/37627/SMOS-Wind-Products-Description.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"SMOS Wind\n        Products Description Document (PDD) - Product Specifications\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://earth.esa.int/eogateway/documents/20142/37627/SMOS-WIND-DS-ATBD.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"SMOS Wind\n        Products\\_ATBD - Algorithm Theoretical Basis Document (ATBD)\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://earth.esa.int/documents/d/guest/smos-wind-data-service-read-me-first-note-pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"Read-me-first\n        note for the release of SMOS Wind\\_data\\_products - Release Note\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\": \\\"http://www.smosstorm.org/\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"SMOS Wind Data\n        Service at Ifremer - External resources\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://earth.esa.int/eogateway/search?category=tools+and+toolboxes&mission=smos&tools_type=analysis%2Cprocessing%2Cvisualisation\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"SMOS Software Tools\n        - Software Tools\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://esatellus.service-now.com/csp?id=esa_simple_request\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Get Help? - ESA\n        Earth Observation User Services Portal\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/L3SW_Open?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/L3SW_Open?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/L3SW_Open?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/L3SW_Open?httpAccept=application/rdf%2Bxml;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/L3SW_Open?httpAccept=text/turtle;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/L3SW_Open?httpAccept=text/turtle;profile=http://data.europa.eu/930/\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for ESA/ESRIN\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/SMOS\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for SMOS platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/5cda1e1d-7fb8-59c0-8a37-eaceff0ce027\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for MIRAS instrument\\\"\\n        }\\n\n        \\     ],\\n      \\\"id\\\": \\\"L3SW_Open\\\",\\n      \\\"updated\\\": \\\"2024-07-24T12:23:19Z\\\",\\n\n        \\     \\\"stac_extensions\\\": [\\\"https://stac-extensions.github.io/version/v1.2.0/schema.json\\\"],\\n\n        \\     \\\"providers\\\": [\\n        {\\n          \\\"roles\\\": [\\\"producer\\\"],\\n\n        \\         \\\"name\\\": \\\"ESA/ESRIN\\\",\\n          \\\"url\\\": \\\"https://earth.esa.int\\\"\\n\n        \\       },\\n        {\\n          \\\"roles\\\": [\\\"host\\\"],\\n          \\\"name\\\":\n        \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\": \\\"https://emc.spacebel.be/readme.html\\\"\\n\n        \\       }\\n      ],\\n      \\\"summaries\\\": {\\n        \\\"instruments\\\": [\\\"MIRAS\\\"],\\n\n        \\       \\\"platform\\\": [\\\"SMOS\\\"]\\n      }\\n    }\\n  ],\\n  \\\"numberReturned\\\":\n        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\n        \\     \\\"type\\\": \\\"application/json\\\",\\n      \\\"title\\\": \\\"This document\\\"\\n\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\n        \\     \\\"type\\\": \\\"application/json\\\",\\n      \\\"title\\\": \\\"Next results\\\"\\n\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\n        \\     \\\"type\\\": \\\"application/json\\\",\\n      \\\"title\\\": \\\"Previous results\\\"\\n\n        \\   },\\n    {\\n      \\\"rel\\\": \\\"http://www.opengis.net/def/rel/ogc/1.0/queryables\\\",\\n\n        \\     \\\"href\\\": \\\"https://emc.spacebel.be/collections/queryables\\\",\\n      \\\"type\\\":\n        \\\"application/schema+json\\\",\\n      \\\"title\\\": \\\"Queryables for collection\n        search\\\"\\n    }\\n  ],\\n  \\\"numberMatched\\\": 1025\\n}\"\n    headers:\n      Access-Control-Allow-Headers:\n      - X-PINGOTHER, Content-Type, Authorization, Accept\n      Access-Control-Allow-Methods:\n      - POST,GET,PUT,HEAD,OPTIONS,DELETE\n      Access-Control-Allow-Origin:\n      - '*'\n      Cache-Control:\n      - no-cache, no-store, max-age=0, must-revalidate\n      Connection:\n      - keep-alive\n      Content-Type:\n      - application/json;charset=UTF-8\n      Date:\n      - Thu, 31 Jul 2025 15:08:14 GMT\n      Expires:\n      - '0'\n      Pragma:\n      - no-cache\n      Server:\n      - openresty\n      Strict-Transport-Security:\n      - max-age=31536000 ; includeSubDomains\n      Transfer-Encoding:\n      - chunked\n      X-Content-Type-Options:\n      - nosniff\n      X-Frame-Options:\n      - DENY\n      X-Served-By:\n      - emc.spacebel.be\n      X-XSS-Protection:\n      - 1; mode=block\n    status:\n      code: 200\n      message: ''\nversion: 1\n"
  },
  {
    "path": "tests/cassettes/test_collection_search/TestCollectionSearch.test_enabled_but_client_side_q.yaml",
    "content": "interactions:\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://emc.spacebel.be/collections?limit=5&q=sentinel\n  response:\n    body:\n      string: \"{\\n  \\\"collections\\\": [\\n    {\\n      \\\"extent\\\": {\\n        \\\"spatial\\\":\n        {\\\"bbox\\\": [[\\n          -180,\\n          -90,\\n          180,\\n          90\\n\n        \\       ]]},\\n        \\\"temporal\\\": {\\\"interval\\\": [[\\n          \\\"2021-10-09T00:00:00.000Z\\\",\\n\n        \\         null\\n        ]]}\\n      },\\n      \\\"stac_version\\\": \\\"1.0.0\\\",\\n\n        \\     \\\"keywords\\\": [\\n        \\\"FedEO\\\",\\n        \\\"SCIHUB\\\",\\n        \\\"DIF10\\\",\\n\n        \\       \\\"Sea Surface Topography\\\",\\n        \\\"EARTH SCIENCE > OCEANS > SEA\n        SURFACE TOPOGRAPHY\\\",\\n        \\\"Radar Altimeters\\\",\\n        \\\"Radiometers\\\",\\n\n        \\       \\\"Sentinel-6\\\",\\n        \\\"POSEIDON-4\\\",\\n        \\\"AMR-C\\\"\\n      ],\\n\n        \\     \\\"created\\\": \\\"2024-01-02T00:00:00.00Z\\\",\\n      \\\"description\\\": \\\"Copernicus\n        Sentinel-6 Michael Freilich is an Earth Observation satellite mission developed\n        to provide enhanced continuity to the very stable time series of mean sea\n        level measurements and ocean sea state that started in 1992, with the TOPEX/Poseidon\n        mission, then continued by the Jason-1, Jason-2 and Jason-3 satellite missions.\\\",\\n\n        \\     \\\"type\\\": \\\"Collection\\\",\\n      \\\"title\\\": \\\"Sentinel-6 Products\\\",\\n\n        \\     \\\"license\\\": \\\"various\\\",\\n      \\\"assets\\\": {\\n        \\\"search\\\":\n        {\\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\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Search client\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_069r3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        }\\n\n        \\     },\\n      \\\"links\\\": [\\n        {\\n          \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"root\\\",\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\": \\\"application/json\\\",\\n\n        \\         \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"title\\\":\n        \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/geo+json\\\",\\n          \\\"title\\\": \\\"Datasets\n        search for the series EOP:ESA:Sentinel-6\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"http://www.opengis.net/def/rel/ogc/1.0/queryables\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/EOP:ESA:SCIHUB:S6/queryables\\\",\\n          \\\"type\\\":\n        \\\"application/schema+json\\\",\\n          \\\"title\\\": \\\"Queryables for EOP:ESA:SCIHUB:S6\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"search\\\",\\n          \\\"href\\\":\n        \\\"https://dataspace.copernicus.eu\\\",\\n          \\\"title\\\": \\\"Copernicus Data\n        Space Ecosystem - Copernicus Data Space Ecosystem\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"search\\\",\\n          \\\"href\\\": \\\"https://fedeo.ceos.org/opensearch/description.xml?parentIdentifier=EOP:ESA:SCIHUB:S6\\\",\\n\n        \\         \\\"title\\\": \\\"FedEO Clearinghouse - FedEO Clearinghouse\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"search\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/series/items/EOP:ESA:SCIHUB:S6/api\\\",\\n\n        \\         \\\"type\\\": \\\"application/opensearchdescription+xml\\\",\\n          \\\"title\\\":\n        \\\"OpenSearch Description Document\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://sentinel.esa.int/web/sentinel/missions/sentinel-6\\\",\\n\n        \\         \\\"title\\\": \\\"ESA Sentinel-6 Online\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=text/turtle;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for ESA/ESRIN\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/Sentinel-6\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for Sentinel-6 platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/700b6e99-a527-5819-b283-4656c8832ea0\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for AMR-C instrument\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/5d1512a5-cb97-5e74-8778-35cd65c06936\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for POSEIDON-4 instrument\\\"\\n        }\\n\n        \\     ],\\n      \\\"id\\\": \\\"EOP:ESA:Sentinel-6\\\",\\n      \\\"updated\\\": \\\"2020-11-21T00:00:00.00Z\\\",\\n\n        \\     \\\"providers\\\": [\\n        {\\n          \\\"roles\\\": [\\\"producer\\\"],\\n\n        \\         \\\"name\\\": \\\"ESA/ESRIN\\\"\\n        },\\n        {\\n          \\\"roles\\\":\n        [\\\"host\\\"],\\n          \\\"name\\\": \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\":\n        \\\"https://emc.spacebel.be/readme.html\\\"\\n        }\\n      ],\\n      \\\"summaries\\\":\n        {\\n        \\\"instruments\\\": [\\n          \\\"AMR-C\\\",\\n          \\\"POSEIDON-4\\\"\\n\n        \\       ],\\n        \\\"platform\\\": [\\\"Sentinel-6\\\"]\\n      }\\n    },\\n    {\\n\n        \\     \\\"extent\\\": {\\n        \\\"spatial\\\": {\\\"bbox\\\": [[\\n          -180,\\n\n        \\         -90,\\n          180,\\n          90\\n        ]]},\\n        \\\"temporal\\\":\n        {\\\"interval\\\": [[\\n          \\\"2017-10-13T00:00:00.000Z\\\",\\n          null\\n\n        \\       ]]}\\n      },\\n      \\\"stac_version\\\": \\\"1.0.0\\\",\\n      \\\"keywords\\\":\n        [\\n        \\\"FedEO\\\",\\n        \\\"SCIHUB\\\",\\n        \\\"DIF10\\\",\\n        \\\"Air\n        Quality\\\",\\n        \\\"EARTH SCIENCE > ATMOSPHERE > AIR QUALITY\\\",\\n        \\\"Sentinel-5P\\\",\\n\n        \\       \\\"TROPOMI\\\"\\n      ],\\n      \\\"created\\\": \\\"2018-10-09T00:00:00.00Z\\\",\\n\n        \\     \\\"description\\\": \\\"The Sentinel-5P data offer for the Pre-Operations\n        Open Access Hub consists of Level-1B and Level-2 user products for the TROPOMI\n        instrument.\\\",\\n      \\\"type\\\": \\\"Collection\\\",\\n      \\\"title\\\": \\\"Sentinel-5P\n        Products\\\",\\n      \\\"license\\\": \\\"various\\\",\\n      \\\"assets\\\": {\\n        \\\"search\\\":\n        {\\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\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Search client\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_069r3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        }\\n\n        \\     },\\n      \\\"links\\\": [\\n        {\\n          \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"root\\\",\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\": \\\"application/json\\\",\\n\n        \\         \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"title\\\":\n        \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/geo+json\\\",\\n          \\\"title\\\": \\\"Datasets\n        search for the series EOP:ESA:Sentinel-5P\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"http://www.opengis.net/def/rel/ogc/1.0/queryables\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/EOP:ESA:SCIHUB:S5P/queryables\\\",\\n          \\\"type\\\":\n        \\\"application/schema+json\\\",\\n          \\\"title\\\": \\\"Queryables for EOP:ESA:SCIHUB:S5P\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"search\\\",\\n          \\\"href\\\":\n        \\\"https://dataspace.copernicus.eu\\\",\\n          \\\"title\\\": \\\"Copernicus Data\n        Space Ecosystem - Copernicus Data Space Ecosystem\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"search\\\",\\n          \\\"href\\\": \\\"https://fedeo.ceos.org/opensearch/description.xml?parentIdentifier=EOP:ESA:SCIHUB:S5P\\\",\\n\n        \\         \\\"title\\\": \\\"FedEO Clearinghouse - FedEO Clearinghouse\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"search\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/series/items/EOP:ESA:SCIHUB:S5P/api\\\",\\n\n        \\         \\\"type\\\": \\\"application/opensearchdescription+xml\\\",\\n          \\\"title\\\":\n        \\\"OpenSearch Description Document\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://sentinel.esa.int/web/sentinel/missions/sentinel-5P\\\",\\n\n        \\         \\\"title\\\": \\\"ESA Sentinel-5P Online\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://sentinels.copernicus.eu/web/sentinel/user-guides/sentinel-5p-tropomi\\\",\\n\n        \\         \\\"title\\\": \\\"Sentinel-5P TROPOMI User Guide \\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=text/turtle;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for ESA/ESRIN\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/Sentinel-5P\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for Sentinel-5P platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/09f91afd-c0d2-52a9-9b50-b895a60917fa\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for TROPOMI instrument\\\"\\n        }\\n\n        \\     ],\\n      \\\"id\\\": \\\"EOP:ESA:Sentinel-5P\\\",\\n      \\\"updated\\\": \\\"2017-04-30T00:00:00.00Z\\\",\\n\n        \\     \\\"stac_extensions\\\": [\\\"https://stac-extensions.github.io/processing/v1.2.0/schema.json\\\"],\\n\n        \\     \\\"providers\\\": [\\n        {\\n          \\\"roles\\\": [\\\"producer\\\"],\\n\n        \\         \\\"name\\\": \\\"ESA/ESRIN\\\"\\n        },\\n        {\\n          \\\"roles\\\":\n        [\\\"host\\\"],\\n          \\\"name\\\": \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\":\n        \\\"https://emc.spacebel.be/readme.html\\\"\\n        }\\n      ],\\n      \\\"summaries\\\":\n        {\\n        \\\"instruments\\\": [\\\"TROPOMI\\\"],\\n        \\\"processing:lineage\\\":\n        [\\\"The Sentinel-5 Precursor objectives are to provide operational space-borne\n        observations in support to the operational monitoring of Air Quality, Climate,\n        Ozone and Surface UV. It will provide measurements of Ozone, NO_2, SO_2, Formaldehyde,\n        Aerosol, Carbonmonoxide, Methane, Clouds.\\\"],\\n        \\\"platform\\\": [\\\"Sentinel-5P\\\"]\\n\n        \\     }\\n    },\\n    {\\n      \\\"extent\\\": {\\n        \\\"spatial\\\": {\\\"bbox\\\":\n        [[\\n          -180,\\n          -90,\\n          180,\\n          90\\n        ]]},\\n\n        \\       \\\"temporal\\\": {\\\"interval\\\": [[\\n          \\\"2016-01-01T00:00:00.000Z\\\",\\n\n        \\         null\\n        ]]}\\n      },\\n      \\\"stac_version\\\": \\\"1.0.0\\\",\\n\n        \\     \\\"keywords\\\": [\\n        \\\"MAJA\\\",\\n        \\\"GeoTiff\\\",\\n        \\\"Forestry\\\",\\n\n        \\       \\\"Forest Conservation/Protection\\\",\\n        \\\"Sentinel-2\\\",\\n        \\\"MSI\\\"\\n\n        \\     ],\\n      \\\"created\\\": \\\"2023-09-05T00:00:00.00Z\\\",\\n      \\\"description\\\":\n        \\\"False colour satellite data allows you to upgrade your forest surveys. It\n        provides you with a broader perspective of biotic and abiotic disturbances\n        in real-time. This enables you to make more informed decisions to safeguard\n        the forests. Forestry professionals can utilise false colour imagery to optimise\n        their forestry operations, such as planning and monitoring tree planting,\n        conducting inventory assessments, and identifying areas for habitat restoration.\\\",\\n\n        \\     \\\"type\\\": \\\"Collection\\\",\\n      \\\"title\\\": \\\"False Colour Composites\\\",\\n\n        \\     \\\"license\\\": \\\"various\\\",\\n      \\\"assets\\\": {\\n        \\\"search\\\":\n        {\\n          \\\"roles\\\": [\\\"search\\\"],\\n          \\\"href\\\": \\\"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=F-FCC\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Search client\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_069r3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-FCC\\\",\\n          \\\"type\\\":\n        \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-FCC?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-FCC?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        },\\n\n        \\       \\\"quicklook\\\": {\\n          \\\"roles\\\": [\\\"overview\\\"],\\n          \\\"href\\\":\n        \\\"https://eovoc.spacebel.be/images/fcc.png\\\",\\n          \\\"type\\\": \\\"image/png\\\",\\n\n        \\         \\\"title\\\": \\\"graphic overview\\\"\\n        }\\n      },\\n      \\\"links\\\":\n        [\\n        {\\n          \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-FCC\\\",\\n\n        \\         \\\"type\\\": \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"root\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\",\\n          \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n\n        \\         \\\"title\\\": \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"items\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/F-FCC/items?httpAccept=application/geo%2Bjson;profile=https://stacspec.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json\\\",\\n          \\\"title\\\": \\\"Datasets\n        search for the series F-FCC\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"http://www.opengis.net/def/rel/ogc/1.0/queryables\\\",\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-FCC/queryables\\\",\\n\n        \\         \\\"type\\\": \\\"application/schema+json\\\",\\n          \\\"title\\\": \\\"Queryables\n        for F-FCC\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"search\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/series/items/F-FCC/api\\\",\\n          \\\"type\\\":\n        \\\"application/opensearchdescription+xml\\\",\\n          \\\"title\\\": \\\"OpenSearch\n        Description Document\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"ordering\\\",\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/ordering?collection=F-FCC\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Order F-FCC Product\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\":\n        \\\"https://eovoc.spacebel.be/images/FC_Brochure_final.pdf\\\",\\n          \\\"type\\\":\n        \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"F-FCC Brochure - F-FCC Product\n        Description\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/rdf%2Bxml;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-FCC?httpAccept=text/turtle;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-FCC?httpAccept=text/turtle;profile=http://data.europa.eu/930/\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/Spacebel\n        SA\\\",\\n          \\\"title\\\": \\\"More collections for Spacebel SA\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/Sentinel-2\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for Sentinel-2 platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/s2-msi\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for MSI instrument\\\"\\n        }\\n\n        \\     ],\\n      \\\"id\\\": \\\"F-FCC\\\",\\n      \\\"updated\\\": \\\"2023-09-05T00:00:00.00Z\\\",\\n\n        \\     \\\"providers\\\": [\\n        {\\n          \\\"roles\\\": [\\\"producer\\\"],\\n\n        \\         \\\"name\\\": \\\"Spacebel SA\\\",\\n          \\\"url\\\": \\\"https://www.spacebel.com\\\"\\n\n        \\       },\\n        {\\n          \\\"roles\\\": [\\\"host\\\"],\\n          \\\"name\\\":\n        \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\": \\\"https://emc.spacebel.be/readme.html\\\"\\n\n        \\       }\\n      ],\\n      \\\"summaries\\\": {\\n        \\\"instruments\\\": [\\\"MSI\\\"],\\n\n        \\       \\\"platform\\\": [\\\"Sentinel-2\\\"]\\n      }\\n    },\\n    {\\n      \\\"extent\\\":\n        {\\n        \\\"spatial\\\": {\\\"bbox\\\": [[\\n          -180,\\n          -90,\\n          180,\\n\n        \\         90\\n        ]]},\\n        \\\"temporal\\\": {\\\"interval\\\": [[\\n          \\\"2002-05-14T00:00:00.000Z\\\",\\n\n        \\         \\\"2012-04-08T23:59:59.999Z\\\"\\n        ]]}\\n      },\\n      \\\"stac_version\\\":\n        \\\"1.0.0\\\",\\n      \\\"sci:doi\\\": \\\"10.5270/EN1-85m0a7b\\\",\\n      \\\"keywords\\\":\n        [\\n        \\\"World\\\",\\n        \\\"Land Surface\\\",\\n        \\\"Topography\\\",\\n\n        \\       \\\"Cryosphere\\\",\\n        \\\"Snow and Ice\\\",\\n        \\\"Oceans\\\",\\n\n        \\       \\\"Ocean Waves\\\",\\n        \\\"Sea Surface Topography\\\",\\n        \\\"Atmosphere\\\",\\n\n        \\       \\\"Atmospheric Winds\\\",\\n        \\\"EARTH SCIENCE > LAND SURFACE\\\",\\n\n        \\       \\\"EARTH SCIENCE > LAND SURFACE > TOPOGRAPHY\\\",\\n        \\\"EARTH SCIENCE\n        > CRYOSPHERE\\\",\\n        \\\"EARTH SCIENCE > CRYOSPHERE > SNOW/ICE\\\",\\n        \\\"EARTH\n        SCIENCE > TERRESTRIAL HYDROSPHERE > SNOW/ICE\\\",\\n        \\\"EARTH SCIENCE >\n        OCEANS\\\",\\n        \\\"EARTH SCIENCE > OCEANS > OCEAN WAVES\\\",\\n        \\\"EARTH\n        SCIENCE > OCEANS > SEA SURFACE TOPOGRAPHY\\\",\\n        \\\"EARTH SCIENCE > ATMOSPHERE\\\",\\n\n        \\       \\\"EARTH SCIENCE > ATMOSPHERE > ATMOSPHERIC WINDS\\\",\\n        \\\"Sun-synchronous\\\",\\n\n        \\       \\\"800 km\\\",\\n        \\\"5 - 1150 km\\\",\\n        \\\"Radar Altimeters\\\",\\n\n        \\       \\\"Envisat\\\",\\n        \\\"RA-2\\\"\\n      ],\\n      \\\"created\\\": \\\"2019-05-29T00:00:00.00Z\\\",\\n\n        \\     \\\"description\\\": \\\"This is a RA-2 Sensor and Geophysical Data Record\n        (SGDR) Full Mission Reprocessing (FMR) v3 product. This FMR follows the first\n        Envisat Altimetry reprocessing Version (V2.1) completed in 2012.  The GDR\n        and S-GDR data products were reprocessed for all cycles from 6 to 113 (May\n        2002 to April 2012) into a homogeneous standard in NetCDF format (close to\n        Sentinel-3).  The Sensor Data Record (SGDR) Product from RA-2/MWR includes\n        the data in the GDR product (https://earth.esa.int/eogateway/catalog/envisat-ra-2-geophysical-data-record-gdr-ra2_gdr__2p-)\n        (RA-2 geophysical data, MWR data) and also RA-2 averaged waveforms (18Hz)\n        and RA-2 individual waveforms (1800Hz). This product is a continuation of\n        ERS RA data.  This data product has a coverage of 1 pass, pole-pole, a spatial\n        sampling of about 390 m along track and a size of 31 to 40 MB, depending on\n        presence of individual waveforms.  The radiometric accuracy is 0.2 dB and\n        auxiliary data include: Orbit state vectors (DORIS, FOS), RA2 and MWR characterisation\n        data, Platform attitude, Gain calibration, USO frequency, ECMWF data, time\n        relation, leap second, Ionospheric corrections, geoid, mean sea surface, slope\n        data, and tide model (ocean, earth, loading, pole).  Please consult the Envisat\n        RA-2/MWR Product Quality Readme file before using the data.\\\",\\n      \\\"type\\\":\n        \\\"Collection\\\",\\n      \\\"title\\\": \\\"Envisat RA-2 Sensor and Geophysical Data\n        Record - SGDR\\_[RA2_MWS__2P]\\\",\\n      \\\"license\\\": \\\"various\\\",\\n      \\\"assets\\\":\n        {\\n        \\\"metadata_ogc_17_069r3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        }\\n\n        \\     },\\n      \\\"links\\\": [\\n        {\\n          \\\"rel\\\": \\\"cite-as\\\",\\n\n        \\         \\\"href\\\": \\\"https://doi.org/10.5270/EN1-85m0a7b\\\",\\n          \\\"type\\\":\n        \\\"text/html\\\",\\n          \\\"title\\\": \\\"Landing page\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P\\\",\\n\n        \\         \\\"type\\\": \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"root\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\",\\n          \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n\n        \\         \\\"title\\\": \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\":\n        \\\"https://earth.esa.int/web/sppa/mission-performance/esa-missions/envisat/ra2/products-and-algorithms/products-information/aux\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"RA2-MWR Auxiliary\n        Data - Auxiliary Data\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://earth.esa.int/eogateway/instruments/ra2/products-information\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Envisat RA-2 MWR\n        Sensor Performance, Products and Algorithms - Product Information\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://earth.esa.int/eogateway/documents/20142/37627/Envisat-RA-2-Level-2-Product-Handbook.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"RA-2 Product\n        Handbook - User Manual\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://earth.esa.int/eogateway/documents/20142/37627/Envisat-RA-2-product-specifications.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"RA-2 Product\n        Specifications - Product Specifications\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://earth.esa.int/eogateway/documents/20142/37627/Envisat-RA-2-MWR-Level-2-Product-Readme-3.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"ReadMe file\n        - Product Specifications\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://earth.esa.int/eogateway/documents/20142/37627/Error-Budget-Envisat-Altimetry-Mission.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"Envisat Altimetry\n        Error Budget - Technical Note\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://earth.esa.int/eogateway/search?text=&category=Tools%20and%20toolboxes&filter=ra2-mwr\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"RA-2 Software Tools\n        - Tools\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\":\n        \\\"https://esatellus.service-now.com/csp?id=esa_simple_request\\\",\\n          \\\"type\\\":\n        \\\"text/html\\\",\\n          \\\"title\\\": \\\"Get Help? - ESA Earth Observation User\n        Services Portal\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=text/turtle;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for ESA/ESRIN\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/Envisat\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for Envisat platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/2ebd3948-3f88-5944-8e3c-7e60099ec941\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for RA-2 instrument\\\"\\n        }\\n\n        \\     ],\\n      \\\"id\\\": \\\"ENVISAT.RA2.MWS_2P\\\",\\n      \\\"updated\\\": \\\"2023-06-13T13:23:41Z\\\",\\n\n        \\     \\\"stac_extensions\\\": [\\\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\\\"],\\n\n        \\     \\\"providers\\\": [\\n        {\\n          \\\"roles\\\": [\\\"producer\\\"],\\n\n        \\         \\\"name\\\": \\\"ESA/ESRIN\\\",\\n          \\\"url\\\": \\\"http://www.esa.int\\\"\\n\n        \\       },\\n        {\\n          \\\"roles\\\": [\\\"host\\\"],\\n          \\\"name\\\":\n        \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\": \\\"https://emc.spacebel.be/readme.html\\\"\\n\n        \\       }\\n      ],\\n      \\\"summaries\\\": {\\n        \\\"instruments\\\": [\\\"RA-2\\\"],\\n\n        \\       \\\"platform\\\": [\\\"Envisat\\\"]\\n      }\\n    },\\n    {\\n      \\\"extent\\\":\n        {\\n        \\\"spatial\\\": {\\\"bbox\\\": [[\\n          -180,\\n          -90,\\n          180,\\n\n        \\         90\\n        ]]},\\n        \\\"temporal\\\": {\\\"interval\\\": [[\\n          \\\"2002-04-29T00:00:00.000Z\\\",\\n\n        \\         \\\"2012-04-08T23:59:59.999Z\\\"\\n        ]]}\\n      },\\n      \\\"stac_version\\\":\n        \\\"1.0.0\\\",\\n      \\\"sci:doi\\\": \\\"10.5270/EN1-opsw96m\\\",\\n      \\\"keywords\\\":\n        [\\n        \\\"World\\\",\\n        \\\"DIF10\\\",\\n        \\\"Atmosphere\\\",\\n        \\\"EARTH\n        SCIENCE > ATMOSPHERE\\\",\\n        \\\"Atmospheric Winds\\\",\\n        \\\"EARTH SCIENCE\n        > ATMOSPHERE > ATMOSPHERIC WINDS\\\",\\n        \\\"Sun-synchronous\\\",\\n        \\\"MERIS\n        RR - 1040 m across track / 1160 m along track\\\",\\n        \\\"800 km\\\",\\n        \\\"5\n        - 1150 km\\\",\\n        \\\"Imaging Spectrometers/Radiometers\\\",\\n        \\\"Envisat\\\",\\n\n        \\       \\\"MERIS\\\"\\n      ],\\n      \\\"created\\\": \\\"2019-05-28T00:00:00.000Z\\\",\\n\n        \\     \\\"description\\\": \\\"The MERIS Level 1 Reduced Resolution (RR) product\n        contains the Top of Atmosphere (TOA) upwelling spectral radiance measures\n        at reduced resolution. The in-band reference irradiances for the 15 MERIS\n        bands are computed by averaging the in-band solar irradiance of each pixel.\n        The in-band solar irradiance of each pixel is computed by integrating the\n        reference solar spectrum with the band-pass of each pixel.  The MERIS RR Level\n        1 product has Sentinel 3-like format starting from the 4th reprocessing data\n        released to users in July 2020.  Each measurement and annotation data file\n        is in NetCDF 4. The Level 1 product is composed of 22 measurements data files:\n        15 files containing radiances at each band (one band per file), accompanied\n        by the associated error estimates, and 7 annotation data files.  The band-pass\n        of each pixel is derived from on-ground and in-flight characterisation via\n        an instrument model. The values \\\\\\\"Band wavelength\\\\\\\" and \\\\\\\"Bandwidth\\\\\\\"\n        provided in the Manifest file of the Level 1 products are the averaged band-pass\n        of each pixel over the instrument field of view.  The Auxiliary data used\n        are listed in the Manifest file associated to each product.  MERIS was operating\n        continuously on the day side of the Envisat orbit (descending track). RR data\n        was acquired over 43.5 minutes in each orbit, i.e. 80% of the descending track.\\\",\\n\n        \\     \\\"type\\\": \\\"Collection\\\",\\n      \\\"title\\\": \\\"Envisat MERIS Reduced\n        Resolution - Level 1 [MER_RR__1P/ME_1_RRG]\\\",\\n      \\\"license\\\": \\\"various\\\",\\n\n        \\     \\\"assets\\\": {\\n        \\\"search\\\": {\\n          \\\"roles\\\": [\\\"search\\\"],\\n\n        \\         \\\"href\\\": \\\"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=MER.RR__1P\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Search client\\\"\\n\n        \\       },\\n        \\\"offering_2\\\": {\\n          \\\"roles\\\": [\\\"http://www.opengis.net/spec/owc-geojson/1.0/req/wms#GetMap\\\"],\\n\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\n        \\         \\\"title\\\": \\\"GetMap\\\",\\n          \\\"type\\\": \\\"image/png\\\"\\n        },\\n\n        \\       \\\"offering_1\\\": {\\n          \\\"roles\\\": [\\\"http://www.opengis.net/spec/owc-geojson/1.0/req/wms#GetCapabilities\\\"],\\n\n        \\         \\\"href\\\": \\\"https://eovoc.spacebel.be/geoserver/wms?service=WMS&version=1.1.1&request=GetCapabilities\\\",\\n\n        \\         \\\"title\\\": \\\"GetCapabilities\\\",\\n          \\\"type\\\": \\\"application/xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_069r3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/MER.RR__1P\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/MER.RR__1P?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/MER.RR__1P?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/MER.RR__1P?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/MER.RR__1P?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/MER.RR__1P?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/MER.RR__1P?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        }\\n\n        \\     },\\n      \\\"links\\\": [\\n        {\\n          \\\"rel\\\": \\\"cite-as\\\",\\n\n        \\         \\\"href\\\": \\\"https://doi.org/10.5270/EN1-opsw96m\\\",\\n          \\\"type\\\":\n        \\\"text/html\\\",\\n          \\\"title\\\": \\\"Landing page\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/MER.RR__1P\\\",\\n\n        \\         \\\"type\\\": \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"root\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\",\\n          \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n\n        \\         \\\"title\\\": \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"items\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/MER.RR__1P/items?httpAccept=application/geo%2Bjson;profile=https://stacspec.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json\\\",\\n          \\\"title\\\": \\\"Datasets\n        search for the series MER.RR__1P\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"http://www.opengis.net/def/rel/ogc/1.0/queryables\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/MER.RR__1P/queryables\\\",\\n          \\\"type\\\":\n        \\\"application/schema+json\\\",\\n          \\\"title\\\": \\\"Queryables for MER.RR__1P\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"search\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/series/items/MER.RR__1P/api\\\",\\n          \\\"type\\\":\n        \\\"application/opensearchdescription+xml\\\",\\n          \\\"title\\\": \\\"OpenSearch\n        Description Document\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://earth.esa.int/eogateway/instruments/meris/auxiliary-data\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"MERIS auxiliary\n        data - Auxiliary Data\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://earth.esa.int/eogateway/documents/20142/37627/MERIS-Sentinel-3-Like-L1-andL2-PFS.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"MERIS Sentinel3-like\n        L1/L2 Product Format Specification - Product Specifications\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://earth.esa.int/eogateway/instruments/meris/products-information\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"MERIS 4th data\n        reprocessing documentation - Product Specifications\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"More MERIS Documents\n        - Other\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\":\n        \\\"https://earth.esa.int/eogateway/search?text=MERIS&category=Tools%20and%20toolboxes&filter=Envisat,MERIS&subFilter=&sortby=ZA\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"MERIS Software\n        and Tools - Tools\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://earth.esa.int/eogateway/missions/envisat\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Envisat mission\n        - Description of Envisat mission\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://earth.esa.int/eogateway/instruments/meris\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"MERIS instrument\n        - Description of MERIS instrument\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://esatellus.service-now.com/csp?id=esa_simple_request\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Get Help? - ESA\n        Earth Observation User Services Portal\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/MER.RR__1P?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/MER.RR__1P?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/MER.RR__1P?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/MER.RR__1P?httpAccept=application/rdf%2Bxml;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/MER.RR__1P?httpAccept=text/turtle;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"wms:transparent\\\": true,\\n          \\\"rel\\\": \\\"wms\\\",\\n          \\\"wms:dimensions\\\":\n        {\\\"version\\\": \\\"1.1.1\\\"},\\n          \\\"href\\\": \\\"https://eovoc.spacebel.be/geoserver/wms\\\",\\n\n        \\         \\\"type\\\": \\\"image/png\\\",\\n          \\\"title\\\": \\\"MER.RR__1P\\\",\\n\n        \\         \\\"wms:layers\\\": [\\\"Density:MER.RR__1P\\\"],\\n          \\\"wms:styles\\\":\n        [\\\"Turbo\\\"]\\n        },\\n        {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\\\",\\n          \\\"title\\\":\n        \\\"More collections for ESA/ESRIN\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/Envisat\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for Envisat platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/003ed1d0-9f6c-59cb-a427-1fa4c4a92107\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for MERIS instrument\\\"\\n        }\\n\n        \\     ],\\n      \\\"id\\\": \\\"MER.RR__1P\\\",\\n      \\\"updated\\\": \\\"2023-11-10T08:30:10Z\\\",\\n\n        \\     \\\"stac_extensions\\\": [\\n        \\\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\\\",\\n\n        \\       \\\"https://stac-extensions.github.io/web-map-links/v1.2.0/schema.json\\\"\\n\n        \\     ],\\n      \\\"providers\\\": [\\n        {\\n          \\\"roles\\\": [\\\"producer\\\"],\\n\n        \\         \\\"name\\\": \\\"ESA/ESRIN\\\",\\n          \\\"url\\\": \\\"http://www.esa.int\\\"\\n\n        \\       },\\n        {\\n          \\\"roles\\\": [\\\"host\\\"],\\n          \\\"name\\\":\n        \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\": \\\"https://emc.spacebel.be/readme.html\\\"\\n\n        \\       }\\n      ],\\n      \\\"summaries\\\": {\\n        \\\"instruments\\\": [\\\"MERIS\\\"],\\n\n        \\       \\\"platform\\\": [\\\"Envisat\\\"]\\n      }\\n    }\\n  ],\\n  \\\"numberReturned\\\":\n        5,\\n  \\\"links\\\": [\\n    {\\n      \\\"rel\\\": \\\"self\\\",\\n      \\\"href\\\": \\\"https://emc.spacebel.be/collections?limit=5&q=sentinel\\\",\\n\n        \\     \\\"type\\\": \\\"application/json\\\",\\n      \\\"title\\\": \\\"This document\\\"\\n\n        \\   },\\n    {\\n      \\\"rel\\\": \\\"next\\\",\\n      \\\"href\\\": \\\"https://emc.spacebel.be/collections?limit=5&q=sentinel&startRecord=6\\\",\\n\n        \\     \\\"type\\\": \\\"application/json\\\",\\n      \\\"title\\\": \\\"Next results\\\"\\n\n        \\   },\\n    {\\n      \\\"rel\\\": \\\"http://www.opengis.net/def/rel/ogc/1.0/queryables\\\",\\n\n        \\     \\\"href\\\": \\\"https://emc.spacebel.be/collections/queryables\\\",\\n      \\\"type\\\":\n        \\\"application/schema+json\\\",\\n      \\\"title\\\": \\\"Queryables for collection\n        search\\\"\\n    }\\n  ],\\n  \\\"numberMatched\\\": 216\\n}\"\n    headers:\n      Access-Control-Allow-Headers:\n      - X-PINGOTHER, Content-Type, Authorization, Accept\n      Access-Control-Allow-Methods:\n      - POST,GET,PUT,HEAD,OPTIONS,DELETE\n      Access-Control-Allow-Origin:\n      - '*'\n      Cache-Control:\n      - no-cache, no-store, max-age=0, must-revalidate\n      Connection:\n      - keep-alive\n      Content-Type:\n      - application/json;charset=UTF-8\n      Date:\n      - Thu, 31 Jul 2025 15:08:20 GMT\n      Expires:\n      - '0'\n      Pragma:\n      - no-cache\n      Server:\n      - openresty\n      Strict-Transport-Security:\n      - max-age=31536000 ; includeSubDomains\n      Transfer-Encoding:\n      - chunked\n      X-Content-Type-Options:\n      - nosniff\n      X-Frame-Options:\n      - DENY\n      X-Served-By:\n      - emc.spacebel.be\n      X-XSS-Protection:\n      - 1; mode=block\n    status:\n      code: 200\n      message: ''\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://emc.spacebel.be/collections?limit=5&q=sentinel\n  response:\n    body:\n      string: \"{\\n  \\\"collections\\\": [\\n    {\\n      \\\"extent\\\": {\\n        \\\"spatial\\\":\n        {\\\"bbox\\\": [[\\n          -180,\\n          -90,\\n          180,\\n          90\\n\n        \\       ]]},\\n        \\\"temporal\\\": {\\\"interval\\\": [[\\n          \\\"2021-10-09T00:00:00.000Z\\\",\\n\n        \\         null\\n        ]]}\\n      },\\n      \\\"stac_version\\\": \\\"1.0.0\\\",\\n\n        \\     \\\"keywords\\\": [\\n        \\\"FedEO\\\",\\n        \\\"SCIHUB\\\",\\n        \\\"DIF10\\\",\\n\n        \\       \\\"Sea Surface Topography\\\",\\n        \\\"EARTH SCIENCE > OCEANS > SEA\n        SURFACE TOPOGRAPHY\\\",\\n        \\\"Radar Altimeters\\\",\\n        \\\"Radiometers\\\",\\n\n        \\       \\\"Sentinel-6\\\",\\n        \\\"POSEIDON-4\\\",\\n        \\\"AMR-C\\\"\\n      ],\\n\n        \\     \\\"created\\\": \\\"2024-01-02T00:00:00.00Z\\\",\\n      \\\"description\\\": \\\"Copernicus\n        Sentinel-6 Michael Freilich is an Earth Observation satellite mission developed\n        to provide enhanced continuity to the very stable time series of mean sea\n        level measurements and ocean sea state that started in 1992, with the TOPEX/Poseidon\n        mission, then continued by the Jason-1, Jason-2 and Jason-3 satellite missions.\\\",\\n\n        \\     \\\"type\\\": \\\"Collection\\\",\\n      \\\"title\\\": \\\"Sentinel-6 Products\\\",\\n\n        \\     \\\"license\\\": \\\"various\\\",\\n      \\\"assets\\\": {\\n        \\\"search\\\":\n        {\\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\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Search client\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_069r3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        }\\n\n        \\     },\\n      \\\"links\\\": [\\n        {\\n          \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"root\\\",\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\": \\\"application/json\\\",\\n\n        \\         \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"title\\\":\n        \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/geo+json\\\",\\n          \\\"title\\\": \\\"Datasets\n        search for the series EOP:ESA:Sentinel-6\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"http://www.opengis.net/def/rel/ogc/1.0/queryables\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/EOP:ESA:SCIHUB:S6/queryables\\\",\\n          \\\"type\\\":\n        \\\"application/schema+json\\\",\\n          \\\"title\\\": \\\"Queryables for EOP:ESA:SCIHUB:S6\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"search\\\",\\n          \\\"href\\\":\n        \\\"https://dataspace.copernicus.eu\\\",\\n          \\\"title\\\": \\\"Copernicus Data\n        Space Ecosystem - Copernicus Data Space Ecosystem\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"search\\\",\\n          \\\"href\\\": \\\"https://fedeo.ceos.org/opensearch/description.xml?parentIdentifier=EOP:ESA:SCIHUB:S6\\\",\\n\n        \\         \\\"title\\\": \\\"FedEO Clearinghouse - FedEO Clearinghouse\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"search\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/series/items/EOP:ESA:SCIHUB:S6/api\\\",\\n\n        \\         \\\"type\\\": \\\"application/opensearchdescription+xml\\\",\\n          \\\"title\\\":\n        \\\"OpenSearch Description Document\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://sentinel.esa.int/web/sentinel/missions/sentinel-6\\\",\\n\n        \\         \\\"title\\\": \\\"ESA Sentinel-6 Online\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=text/turtle;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for ESA/ESRIN\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/Sentinel-6\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for Sentinel-6 platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/700b6e99-a527-5819-b283-4656c8832ea0\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for AMR-C instrument\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/5d1512a5-cb97-5e74-8778-35cd65c06936\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for POSEIDON-4 instrument\\\"\\n        }\\n\n        \\     ],\\n      \\\"id\\\": \\\"EOP:ESA:Sentinel-6\\\",\\n      \\\"updated\\\": \\\"2020-11-21T00:00:00.00Z\\\",\\n\n        \\     \\\"providers\\\": [\\n        {\\n          \\\"roles\\\": [\\\"producer\\\"],\\n\n        \\         \\\"name\\\": \\\"ESA/ESRIN\\\"\\n        },\\n        {\\n          \\\"roles\\\":\n        [\\\"host\\\"],\\n          \\\"name\\\": \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\":\n        \\\"https://emc.spacebel.be/readme.html\\\"\\n        }\\n      ],\\n      \\\"summaries\\\":\n        {\\n        \\\"instruments\\\": [\\n          \\\"AMR-C\\\",\\n          \\\"POSEIDON-4\\\"\\n\n        \\       ],\\n        \\\"platform\\\": [\\\"Sentinel-6\\\"]\\n      }\\n    },\\n    {\\n\n        \\     \\\"extent\\\": {\\n        \\\"spatial\\\": {\\\"bbox\\\": [[\\n          -180,\\n\n        \\         -90,\\n          180,\\n          90\\n        ]]},\\n        \\\"temporal\\\":\n        {\\\"interval\\\": [[\\n          \\\"2017-10-13T00:00:00.000Z\\\",\\n          null\\n\n        \\       ]]}\\n      },\\n      \\\"stac_version\\\": \\\"1.0.0\\\",\\n      \\\"keywords\\\":\n        [\\n        \\\"FedEO\\\",\\n        \\\"SCIHUB\\\",\\n        \\\"DIF10\\\",\\n        \\\"Air\n        Quality\\\",\\n        \\\"EARTH SCIENCE > ATMOSPHERE > AIR QUALITY\\\",\\n        \\\"Sentinel-5P\\\",\\n\n        \\       \\\"TROPOMI\\\"\\n      ],\\n      \\\"created\\\": \\\"2018-10-09T00:00:00.00Z\\\",\\n\n        \\     \\\"description\\\": \\\"The Sentinel-5P data offer for the Pre-Operations\n        Open Access Hub consists of Level-1B and Level-2 user products for the TROPOMI\n        instrument.\\\",\\n      \\\"type\\\": \\\"Collection\\\",\\n      \\\"title\\\": \\\"Sentinel-5P\n        Products\\\",\\n      \\\"license\\\": \\\"various\\\",\\n      \\\"assets\\\": {\\n        \\\"search\\\":\n        {\\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\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Search client\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_069r3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        }\\n\n        \\     },\\n      \\\"links\\\": [\\n        {\\n          \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"root\\\",\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\": \\\"application/json\\\",\\n\n        \\         \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"title\\\":\n        \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/geo+json\\\",\\n          \\\"title\\\": \\\"Datasets\n        search for the series EOP:ESA:Sentinel-5P\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"http://www.opengis.net/def/rel/ogc/1.0/queryables\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/EOP:ESA:SCIHUB:S5P/queryables\\\",\\n          \\\"type\\\":\n        \\\"application/schema+json\\\",\\n          \\\"title\\\": \\\"Queryables for EOP:ESA:SCIHUB:S5P\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"search\\\",\\n          \\\"href\\\":\n        \\\"https://dataspace.copernicus.eu\\\",\\n          \\\"title\\\": \\\"Copernicus Data\n        Space Ecosystem - Copernicus Data Space Ecosystem\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"search\\\",\\n          \\\"href\\\": \\\"https://fedeo.ceos.org/opensearch/description.xml?parentIdentifier=EOP:ESA:SCIHUB:S5P\\\",\\n\n        \\         \\\"title\\\": \\\"FedEO Clearinghouse - FedEO Clearinghouse\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"search\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/series/items/EOP:ESA:SCIHUB:S5P/api\\\",\\n\n        \\         \\\"type\\\": \\\"application/opensearchdescription+xml\\\",\\n          \\\"title\\\":\n        \\\"OpenSearch Description Document\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://sentinel.esa.int/web/sentinel/missions/sentinel-5P\\\",\\n\n        \\         \\\"title\\\": \\\"ESA Sentinel-5P Online\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://sentinels.copernicus.eu/web/sentinel/user-guides/sentinel-5p-tropomi\\\",\\n\n        \\         \\\"title\\\": \\\"Sentinel-5P TROPOMI User Guide \\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=text/turtle;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for ESA/ESRIN\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/Sentinel-5P\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for Sentinel-5P platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/09f91afd-c0d2-52a9-9b50-b895a60917fa\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for TROPOMI instrument\\\"\\n        }\\n\n        \\     ],\\n      \\\"id\\\": \\\"EOP:ESA:Sentinel-5P\\\",\\n      \\\"updated\\\": \\\"2017-04-30T00:00:00.00Z\\\",\\n\n        \\     \\\"stac_extensions\\\": [\\\"https://stac-extensions.github.io/processing/v1.2.0/schema.json\\\"],\\n\n        \\     \\\"providers\\\": [\\n        {\\n          \\\"roles\\\": [\\\"producer\\\"],\\n\n        \\         \\\"name\\\": \\\"ESA/ESRIN\\\"\\n        },\\n        {\\n          \\\"roles\\\":\n        [\\\"host\\\"],\\n          \\\"name\\\": \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\":\n        \\\"https://emc.spacebel.be/readme.html\\\"\\n        }\\n      ],\\n      \\\"summaries\\\":\n        {\\n        \\\"instruments\\\": [\\\"TROPOMI\\\"],\\n        \\\"processing:lineage\\\":\n        [\\\"The Sentinel-5 Precursor objectives are to provide operational space-borne\n        observations in support to the operational monitoring of Air Quality, Climate,\n        Ozone and Surface UV. It will provide measurements of Ozone, NO_2, SO_2, Formaldehyde,\n        Aerosol, Carbonmonoxide, Methane, Clouds.\\\"],\\n        \\\"platform\\\": [\\\"Sentinel-5P\\\"]\\n\n        \\     }\\n    },\\n    {\\n      \\\"extent\\\": {\\n        \\\"spatial\\\": {\\\"bbox\\\":\n        [[\\n          -180,\\n          -90,\\n          180,\\n          90\\n        ]]},\\n\n        \\       \\\"temporal\\\": {\\\"interval\\\": [[\\n          \\\"2016-01-01T00:00:00.000Z\\\",\\n\n        \\         null\\n        ]]}\\n      },\\n      \\\"stac_version\\\": \\\"1.0.0\\\",\\n\n        \\     \\\"keywords\\\": [\\n        \\\"MAJA\\\",\\n        \\\"GeoTiff\\\",\\n        \\\"Forestry\\\",\\n\n        \\       \\\"Forest Conservation/Protection\\\",\\n        \\\"Sentinel-2\\\",\\n        \\\"MSI\\\"\\n\n        \\     ],\\n      \\\"created\\\": \\\"2023-09-05T00:00:00.00Z\\\",\\n      \\\"description\\\":\n        \\\"False colour satellite data allows you to upgrade your forest surveys. It\n        provides you with a broader perspective of biotic and abiotic disturbances\n        in real-time. This enables you to make more informed decisions to safeguard\n        the forests. Forestry professionals can utilise false colour imagery to optimise\n        their forestry operations, such as planning and monitoring tree planting,\n        conducting inventory assessments, and identifying areas for habitat restoration.\\\",\\n\n        \\     \\\"type\\\": \\\"Collection\\\",\\n      \\\"title\\\": \\\"False Colour Composites\\\",\\n\n        \\     \\\"license\\\": \\\"various\\\",\\n      \\\"assets\\\": {\\n        \\\"search\\\":\n        {\\n          \\\"roles\\\": [\\\"search\\\"],\\n          \\\"href\\\": \\\"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=F-FCC\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Search client\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_069r3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-FCC\\\",\\n          \\\"type\\\":\n        \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-FCC?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-FCC?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        },\\n\n        \\       \\\"quicklook\\\": {\\n          \\\"roles\\\": [\\\"overview\\\"],\\n          \\\"href\\\":\n        \\\"https://eovoc.spacebel.be/images/fcc.png\\\",\\n          \\\"type\\\": \\\"image/png\\\",\\n\n        \\         \\\"title\\\": \\\"graphic overview\\\"\\n        }\\n      },\\n      \\\"links\\\":\n        [\\n        {\\n          \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-FCC\\\",\\n\n        \\         \\\"type\\\": \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"root\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\",\\n          \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n\n        \\         \\\"title\\\": \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"items\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/F-FCC/items?httpAccept=application/geo%2Bjson;profile=https://stacspec.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json\\\",\\n          \\\"title\\\": \\\"Datasets\n        search for the series F-FCC\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"http://www.opengis.net/def/rel/ogc/1.0/queryables\\\",\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-FCC/queryables\\\",\\n\n        \\         \\\"type\\\": \\\"application/schema+json\\\",\\n          \\\"title\\\": \\\"Queryables\n        for F-FCC\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"search\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/series/items/F-FCC/api\\\",\\n          \\\"type\\\":\n        \\\"application/opensearchdescription+xml\\\",\\n          \\\"title\\\": \\\"OpenSearch\n        Description Document\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"ordering\\\",\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/ordering?collection=F-FCC\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Order F-FCC Product\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\":\n        \\\"https://eovoc.spacebel.be/images/FC_Brochure_final.pdf\\\",\\n          \\\"type\\\":\n        \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"F-FCC Brochure - F-FCC Product\n        Description\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/rdf%2Bxml;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-FCC?httpAccept=text/turtle;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-FCC?httpAccept=text/turtle;profile=http://data.europa.eu/930/\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/Spacebel\n        SA\\\",\\n          \\\"title\\\": \\\"More collections for Spacebel SA\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/Sentinel-2\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for Sentinel-2 platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/s2-msi\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for MSI instrument\\\"\\n        }\\n\n        \\     ],\\n      \\\"id\\\": \\\"F-FCC\\\",\\n      \\\"updated\\\": \\\"2023-09-05T00:00:00.00Z\\\",\\n\n        \\     \\\"providers\\\": [\\n        {\\n          \\\"roles\\\": [\\\"producer\\\"],\\n\n        \\         \\\"name\\\": \\\"Spacebel SA\\\",\\n          \\\"url\\\": \\\"https://www.spacebel.com\\\"\\n\n        \\       },\\n        {\\n          \\\"roles\\\": [\\\"host\\\"],\\n          \\\"name\\\":\n        \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\": \\\"https://emc.spacebel.be/readme.html\\\"\\n\n        \\       }\\n      ],\\n      \\\"summaries\\\": {\\n        \\\"instruments\\\": [\\\"MSI\\\"],\\n\n        \\       \\\"platform\\\": [\\\"Sentinel-2\\\"]\\n      }\\n    },\\n    {\\n      \\\"extent\\\":\n        {\\n        \\\"spatial\\\": {\\\"bbox\\\": [[\\n          -180,\\n          -90,\\n          180,\\n\n        \\         90\\n        ]]},\\n        \\\"temporal\\\": {\\\"interval\\\": [[\\n          \\\"2002-05-14T00:00:00.000Z\\\",\\n\n        \\         \\\"2012-04-08T23:59:59.999Z\\\"\\n        ]]}\\n      },\\n      \\\"stac_version\\\":\n        \\\"1.0.0\\\",\\n      \\\"sci:doi\\\": \\\"10.5270/EN1-85m0a7b\\\",\\n      \\\"keywords\\\":\n        [\\n        \\\"World\\\",\\n        \\\"Land Surface\\\",\\n        \\\"Topography\\\",\\n\n        \\       \\\"Cryosphere\\\",\\n        \\\"Snow and Ice\\\",\\n        \\\"Oceans\\\",\\n\n        \\       \\\"Ocean Waves\\\",\\n        \\\"Sea Surface Topography\\\",\\n        \\\"Atmosphere\\\",\\n\n        \\       \\\"Atmospheric Winds\\\",\\n        \\\"EARTH SCIENCE > LAND SURFACE\\\",\\n\n        \\       \\\"EARTH SCIENCE > LAND SURFACE > TOPOGRAPHY\\\",\\n        \\\"EARTH SCIENCE\n        > CRYOSPHERE\\\",\\n        \\\"EARTH SCIENCE > CRYOSPHERE > SNOW/ICE\\\",\\n        \\\"EARTH\n        SCIENCE > TERRESTRIAL HYDROSPHERE > SNOW/ICE\\\",\\n        \\\"EARTH SCIENCE >\n        OCEANS\\\",\\n        \\\"EARTH SCIENCE > OCEANS > OCEAN WAVES\\\",\\n        \\\"EARTH\n        SCIENCE > OCEANS > SEA SURFACE TOPOGRAPHY\\\",\\n        \\\"EARTH SCIENCE > ATMOSPHERE\\\",\\n\n        \\       \\\"EARTH SCIENCE > ATMOSPHERE > ATMOSPHERIC WINDS\\\",\\n        \\\"Sun-synchronous\\\",\\n\n        \\       \\\"800 km\\\",\\n        \\\"5 - 1150 km\\\",\\n        \\\"Radar Altimeters\\\",\\n\n        \\       \\\"Envisat\\\",\\n        \\\"RA-2\\\"\\n      ],\\n      \\\"created\\\": \\\"2019-05-29T00:00:00.00Z\\\",\\n\n        \\     \\\"description\\\": \\\"This is a RA-2 Sensor and Geophysical Data Record\n        (SGDR) Full Mission Reprocessing (FMR) v3 product. This FMR follows the first\n        Envisat Altimetry reprocessing Version (V2.1) completed in 2012.  The GDR\n        and S-GDR data products were reprocessed for all cycles from 6 to 113 (May\n        2002 to April 2012) into a homogeneous standard in NetCDF format (close to\n        Sentinel-3).  The Sensor Data Record (SGDR) Product from RA-2/MWR includes\n        the data in the GDR product (https://earth.esa.int/eogateway/catalog/envisat-ra-2-geophysical-data-record-gdr-ra2_gdr__2p-)\n        (RA-2 geophysical data, MWR data) and also RA-2 averaged waveforms (18Hz)\n        and RA-2 individual waveforms (1800Hz). This product is a continuation of\n        ERS RA data.  This data product has a coverage of 1 pass, pole-pole, a spatial\n        sampling of about 390 m along track and a size of 31 to 40 MB, depending on\n        presence of individual waveforms.  The radiometric accuracy is 0.2 dB and\n        auxiliary data include: Orbit state vectors (DORIS, FOS), RA2 and MWR characterisation\n        data, Platform attitude, Gain calibration, USO frequency, ECMWF data, time\n        relation, leap second, Ionospheric corrections, geoid, mean sea surface, slope\n        data, and tide model (ocean, earth, loading, pole).  Please consult the Envisat\n        RA-2/MWR Product Quality Readme file before using the data.\\\",\\n      \\\"type\\\":\n        \\\"Collection\\\",\\n      \\\"title\\\": \\\"Envisat RA-2 Sensor and Geophysical Data\n        Record - SGDR\\_[RA2_MWS__2P]\\\",\\n      \\\"license\\\": \\\"various\\\",\\n      \\\"assets\\\":\n        {\\n        \\\"metadata_ogc_17_069r3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        }\\n\n        \\     },\\n      \\\"links\\\": [\\n        {\\n          \\\"rel\\\": \\\"cite-as\\\",\\n\n        \\         \\\"href\\\": \\\"https://doi.org/10.5270/EN1-85m0a7b\\\",\\n          \\\"type\\\":\n        \\\"text/html\\\",\\n          \\\"title\\\": \\\"Landing page\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P\\\",\\n\n        \\         \\\"type\\\": \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"root\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\",\\n          \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n\n        \\         \\\"title\\\": \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\":\n        \\\"https://earth.esa.int/web/sppa/mission-performance/esa-missions/envisat/ra2/products-and-algorithms/products-information/aux\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"RA2-MWR Auxiliary\n        Data - Auxiliary Data\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://earth.esa.int/eogateway/instruments/ra2/products-information\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Envisat RA-2 MWR\n        Sensor Performance, Products and Algorithms - Product Information\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://earth.esa.int/eogateway/documents/20142/37627/Envisat-RA-2-Level-2-Product-Handbook.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"RA-2 Product\n        Handbook - User Manual\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://earth.esa.int/eogateway/documents/20142/37627/Envisat-RA-2-product-specifications.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"RA-2 Product\n        Specifications - Product Specifications\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://earth.esa.int/eogateway/documents/20142/37627/Envisat-RA-2-MWR-Level-2-Product-Readme-3.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"ReadMe file\n        - Product Specifications\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://earth.esa.int/eogateway/documents/20142/37627/Error-Budget-Envisat-Altimetry-Mission.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"Envisat Altimetry\n        Error Budget - Technical Note\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://earth.esa.int/eogateway/search?text=&category=Tools%20and%20toolboxes&filter=ra2-mwr\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"RA-2 Software Tools\n        - Tools\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\":\n        \\\"https://esatellus.service-now.com/csp?id=esa_simple_request\\\",\\n          \\\"type\\\":\n        \\\"text/html\\\",\\n          \\\"title\\\": \\\"Get Help? - ESA Earth Observation User\n        Services Portal\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=text/turtle;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for ESA/ESRIN\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/Envisat\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for Envisat platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/2ebd3948-3f88-5944-8e3c-7e60099ec941\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for RA-2 instrument\\\"\\n        }\\n\n        \\     ],\\n      \\\"id\\\": \\\"ENVISAT.RA2.MWS_2P\\\",\\n      \\\"updated\\\": \\\"2023-06-13T13:23:41Z\\\",\\n\n        \\     \\\"stac_extensions\\\": [\\\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\\\"],\\n\n        \\     \\\"providers\\\": [\\n        {\\n          \\\"roles\\\": [\\\"producer\\\"],\\n\n        \\         \\\"name\\\": \\\"ESA/ESRIN\\\",\\n          \\\"url\\\": \\\"http://www.esa.int\\\"\\n\n        \\       },\\n        {\\n          \\\"roles\\\": [\\\"host\\\"],\\n          \\\"name\\\":\n        \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\": \\\"https://emc.spacebel.be/readme.html\\\"\\n\n        \\       }\\n      ],\\n      \\\"summaries\\\": {\\n        \\\"instruments\\\": [\\\"RA-2\\\"],\\n\n        \\       \\\"platform\\\": [\\\"Envisat\\\"]\\n      }\\n    },\\n    {\\n      \\\"extent\\\":\n        {\\n        \\\"spatial\\\": {\\\"bbox\\\": [[\\n          -180,\\n          -90,\\n          180,\\n\n        \\         90\\n        ]]},\\n        \\\"temporal\\\": {\\\"interval\\\": [[\\n          \\\"2002-04-29T00:00:00.000Z\\\",\\n\n        \\         \\\"2012-04-08T23:59:59.999Z\\\"\\n        ]]}\\n      },\\n      \\\"stac_version\\\":\n        \\\"1.0.0\\\",\\n      \\\"sci:doi\\\": \\\"10.5270/EN1-opsw96m\\\",\\n      \\\"keywords\\\":\n        [\\n        \\\"World\\\",\\n        \\\"DIF10\\\",\\n        \\\"Atmosphere\\\",\\n        \\\"EARTH\n        SCIENCE > ATMOSPHERE\\\",\\n        \\\"Atmospheric Winds\\\",\\n        \\\"EARTH SCIENCE\n        > ATMOSPHERE > ATMOSPHERIC WINDS\\\",\\n        \\\"Sun-synchronous\\\",\\n        \\\"MERIS\n        RR - 1040 m across track / 1160 m along track\\\",\\n        \\\"800 km\\\",\\n        \\\"5\n        - 1150 km\\\",\\n        \\\"Imaging Spectrometers/Radiometers\\\",\\n        \\\"Envisat\\\",\\n\n        \\       \\\"MERIS\\\"\\n      ],\\n      \\\"created\\\": \\\"2019-05-28T00:00:00.000Z\\\",\\n\n        \\     \\\"description\\\": \\\"The MERIS Level 1 Reduced Resolution (RR) product\n        contains the Top of Atmosphere (TOA) upwelling spectral radiance measures\n        at reduced resolution. The in-band reference irradiances for the 15 MERIS\n        bands are computed by averaging the in-band solar irradiance of each pixel.\n        The in-band solar irradiance of each pixel is computed by integrating the\n        reference solar spectrum with the band-pass of each pixel.  The MERIS RR Level\n        1 product has Sentinel 3-like format starting from the 4th reprocessing data\n        released to users in July 2020.  Each measurement and annotation data file\n        is in NetCDF 4. The Level 1 product is composed of 22 measurements data files:\n        15 files containing radiances at each band (one band per file), accompanied\n        by the associated error estimates, and 7 annotation data files.  The band-pass\n        of each pixel is derived from on-ground and in-flight characterisation via\n        an instrument model. The values \\\\\\\"Band wavelength\\\\\\\" and \\\\\\\"Bandwidth\\\\\\\"\n        provided in the Manifest file of the Level 1 products are the averaged band-pass\n        of each pixel over the instrument field of view.  The Auxiliary data used\n        are listed in the Manifest file associated to each product.  MERIS was operating\n        continuously on the day side of the Envisat orbit (descending track). RR data\n        was acquired over 43.5 minutes in each orbit, i.e. 80% of the descending track.\\\",\\n\n        \\     \\\"type\\\": \\\"Collection\\\",\\n      \\\"title\\\": \\\"Envisat MERIS Reduced\n        Resolution - Level 1 [MER_RR__1P/ME_1_RRG]\\\",\\n      \\\"license\\\": \\\"various\\\",\\n\n        \\     \\\"assets\\\": {\\n        \\\"search\\\": {\\n          \\\"roles\\\": [\\\"search\\\"],\\n\n        \\         \\\"href\\\": \\\"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=MER.RR__1P\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Search client\\\"\\n\n        \\       },\\n        \\\"offering_2\\\": {\\n          \\\"roles\\\": [\\\"http://www.opengis.net/spec/owc-geojson/1.0/req/wms#GetMap\\\"],\\n\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\n        \\         \\\"title\\\": \\\"GetMap\\\",\\n          \\\"type\\\": \\\"image/png\\\"\\n        },\\n\n        \\       \\\"offering_1\\\": {\\n          \\\"roles\\\": [\\\"http://www.opengis.net/spec/owc-geojson/1.0/req/wms#GetCapabilities\\\"],\\n\n        \\         \\\"href\\\": \\\"https://eovoc.spacebel.be/geoserver/wms?service=WMS&version=1.1.1&request=GetCapabilities\\\",\\n\n        \\         \\\"title\\\": \\\"GetCapabilities\\\",\\n          \\\"type\\\": \\\"application/xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_069r3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/MER.RR__1P\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/MER.RR__1P?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/MER.RR__1P?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/MER.RR__1P?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/MER.RR__1P?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/MER.RR__1P?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/MER.RR__1P?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        }\\n\n        \\     },\\n      \\\"links\\\": [\\n        {\\n          \\\"rel\\\": \\\"cite-as\\\",\\n\n        \\         \\\"href\\\": \\\"https://doi.org/10.5270/EN1-opsw96m\\\",\\n          \\\"type\\\":\n        \\\"text/html\\\",\\n          \\\"title\\\": \\\"Landing page\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/MER.RR__1P\\\",\\n\n        \\         \\\"type\\\": \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"root\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\",\\n          \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n\n        \\         \\\"title\\\": \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"items\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/MER.RR__1P/items?httpAccept=application/geo%2Bjson;profile=https://stacspec.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json\\\",\\n          \\\"title\\\": \\\"Datasets\n        search for the series MER.RR__1P\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"http://www.opengis.net/def/rel/ogc/1.0/queryables\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/MER.RR__1P/queryables\\\",\\n          \\\"type\\\":\n        \\\"application/schema+json\\\",\\n          \\\"title\\\": \\\"Queryables for MER.RR__1P\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"search\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/series/items/MER.RR__1P/api\\\",\\n          \\\"type\\\":\n        \\\"application/opensearchdescription+xml\\\",\\n          \\\"title\\\": \\\"OpenSearch\n        Description Document\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://earth.esa.int/eogateway/instruments/meris/auxiliary-data\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"MERIS auxiliary\n        data - Auxiliary Data\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://earth.esa.int/eogateway/documents/20142/37627/MERIS-Sentinel-3-Like-L1-andL2-PFS.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"MERIS Sentinel3-like\n        L1/L2 Product Format Specification - Product Specifications\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://earth.esa.int/eogateway/instruments/meris/products-information\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"MERIS 4th data\n        reprocessing documentation - Product Specifications\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"More MERIS Documents\n        - Other\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\":\n        \\\"https://earth.esa.int/eogateway/search?text=MERIS&category=Tools%20and%20toolboxes&filter=Envisat,MERIS&subFilter=&sortby=ZA\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"MERIS Software\n        and Tools - Tools\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://earth.esa.int/eogateway/missions/envisat\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Envisat mission\n        - Description of Envisat mission\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://earth.esa.int/eogateway/instruments/meris\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"MERIS instrument\n        - Description of MERIS instrument\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://esatellus.service-now.com/csp?id=esa_simple_request\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Get Help? - ESA\n        Earth Observation User Services Portal\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/MER.RR__1P?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/MER.RR__1P?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/MER.RR__1P?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/MER.RR__1P?httpAccept=application/rdf%2Bxml;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/MER.RR__1P?httpAccept=text/turtle;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"wms:transparent\\\": true,\\n          \\\"rel\\\": \\\"wms\\\",\\n          \\\"wms:dimensions\\\":\n        {\\\"version\\\": \\\"1.1.1\\\"},\\n          \\\"href\\\": \\\"https://eovoc.spacebel.be/geoserver/wms\\\",\\n\n        \\         \\\"type\\\": \\\"image/png\\\",\\n          \\\"title\\\": \\\"MER.RR__1P\\\",\\n\n        \\         \\\"wms:layers\\\": [\\\"Density:MER.RR__1P\\\"],\\n          \\\"wms:styles\\\":\n        [\\\"Turbo\\\"]\\n        },\\n        {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\\\",\\n          \\\"title\\\":\n        \\\"More collections for ESA/ESRIN\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/Envisat\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for Envisat platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/003ed1d0-9f6c-59cb-a427-1fa4c4a92107\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for MERIS instrument\\\"\\n        }\\n\n        \\     ],\\n      \\\"id\\\": \\\"MER.RR__1P\\\",\\n      \\\"updated\\\": \\\"2023-11-10T08:30:10Z\\\",\\n\n        \\     \\\"stac_extensions\\\": [\\n        \\\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\\\",\\n\n        \\       \\\"https://stac-extensions.github.io/web-map-links/v1.2.0/schema.json\\\"\\n\n        \\     ],\\n      \\\"providers\\\": [\\n        {\\n          \\\"roles\\\": [\\\"producer\\\"],\\n\n        \\         \\\"name\\\": \\\"ESA/ESRIN\\\",\\n          \\\"url\\\": \\\"http://www.esa.int\\\"\\n\n        \\       },\\n        {\\n          \\\"roles\\\": [\\\"host\\\"],\\n          \\\"name\\\":\n        \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\": \\\"https://emc.spacebel.be/readme.html\\\"\\n\n        \\       }\\n      ],\\n      \\\"summaries\\\": {\\n        \\\"instruments\\\": [\\\"MERIS\\\"],\\n\n        \\       \\\"platform\\\": [\\\"Envisat\\\"]\\n      }\\n    }\\n  ],\\n  \\\"numberReturned\\\":\n        5,\\n  \\\"links\\\": [\\n    {\\n      \\\"rel\\\": \\\"self\\\",\\n      \\\"href\\\": \\\"https://emc.spacebel.be/collections?limit=5&q=sentinel\\\",\\n\n        \\     \\\"type\\\": \\\"application/json\\\",\\n      \\\"title\\\": \\\"This document\\\"\\n\n        \\   },\\n    {\\n      \\\"rel\\\": \\\"next\\\",\\n      \\\"href\\\": \\\"https://emc.spacebel.be/collections?limit=5&q=sentinel&startRecord=6\\\",\\n\n        \\     \\\"type\\\": \\\"application/json\\\",\\n      \\\"title\\\": \\\"Next results\\\"\\n\n        \\   },\\n    {\\n      \\\"rel\\\": \\\"http://www.opengis.net/def/rel/ogc/1.0/queryables\\\",\\n\n        \\     \\\"href\\\": \\\"https://emc.spacebel.be/collections/queryables\\\",\\n      \\\"type\\\":\n        \\\"application/schema+json\\\",\\n      \\\"title\\\": \\\"Queryables for collection\n        search\\\"\\n    }\\n  ],\\n  \\\"numberMatched\\\": 216\\n}\"\n    headers:\n      Access-Control-Allow-Headers:\n      - X-PINGOTHER, Content-Type, Authorization, Accept\n      Access-Control-Allow-Methods:\n      - POST,GET,PUT,HEAD,OPTIONS,DELETE\n      Access-Control-Allow-Origin:\n      - '*'\n      Cache-Control:\n      - no-cache, no-store, max-age=0, must-revalidate\n      Connection:\n      - keep-alive\n      Content-Type:\n      - application/json;charset=UTF-8\n      Date:\n      - Thu, 31 Jul 2025 15:08:21 GMT\n      Expires:\n      - '0'\n      Pragma:\n      - no-cache\n      Server:\n      - openresty\n      Strict-Transport-Security:\n      - max-age=31536000 ; includeSubDomains\n      Transfer-Encoding:\n      - chunked\n      X-Content-Type-Options:\n      - nosniff\n      X-Frame-Options:\n      - DENY\n      X-Served-By:\n      - emc.spacebel.be\n      X-XSS-Protection:\n      - 1; mode=block\n    status:\n      code: 200\n      message: ''\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://emc.spacebel.be/collections?limit=5&q=sentinel\n  response:\n    body:\n      string: \"{\\n  \\\"collections\\\": [\\n    {\\n      \\\"extent\\\": {\\n        \\\"spatial\\\":\n        {\\\"bbox\\\": [[\\n          -180,\\n          -90,\\n          180,\\n          90\\n\n        \\       ]]},\\n        \\\"temporal\\\": {\\\"interval\\\": [[\\n          \\\"2021-10-09T00:00:00.000Z\\\",\\n\n        \\         null\\n        ]]}\\n      },\\n      \\\"stac_version\\\": \\\"1.0.0\\\",\\n\n        \\     \\\"keywords\\\": [\\n        \\\"FedEO\\\",\\n        \\\"SCIHUB\\\",\\n        \\\"DIF10\\\",\\n\n        \\       \\\"Sea Surface Topography\\\",\\n        \\\"EARTH SCIENCE > OCEANS > SEA\n        SURFACE TOPOGRAPHY\\\",\\n        \\\"Radar Altimeters\\\",\\n        \\\"Radiometers\\\",\\n\n        \\       \\\"Sentinel-6\\\",\\n        \\\"POSEIDON-4\\\",\\n        \\\"AMR-C\\\"\\n      ],\\n\n        \\     \\\"created\\\": \\\"2024-01-02T00:00:00.00Z\\\",\\n      \\\"description\\\": \\\"Copernicus\n        Sentinel-6 Michael Freilich is an Earth Observation satellite mission developed\n        to provide enhanced continuity to the very stable time series of mean sea\n        level measurements and ocean sea state that started in 1992, with the TOPEX/Poseidon\n        mission, then continued by the Jason-1, Jason-2 and Jason-3 satellite missions.\\\",\\n\n        \\     \\\"type\\\": \\\"Collection\\\",\\n      \\\"title\\\": \\\"Sentinel-6 Products\\\",\\n\n        \\     \\\"license\\\": \\\"various\\\",\\n      \\\"assets\\\": {\\n        \\\"search\\\":\n        {\\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\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Search client\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_069r3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        }\\n\n        \\     },\\n      \\\"links\\\": [\\n        {\\n          \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"root\\\",\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\": \\\"application/json\\\",\\n\n        \\         \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"title\\\":\n        \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/geo+json\\\",\\n          \\\"title\\\": \\\"Datasets\n        search for the series EOP:ESA:Sentinel-6\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"http://www.opengis.net/def/rel/ogc/1.0/queryables\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/EOP:ESA:SCIHUB:S6/queryables\\\",\\n          \\\"type\\\":\n        \\\"application/schema+json\\\",\\n          \\\"title\\\": \\\"Queryables for EOP:ESA:SCIHUB:S6\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"search\\\",\\n          \\\"href\\\":\n        \\\"https://dataspace.copernicus.eu\\\",\\n          \\\"title\\\": \\\"Copernicus Data\n        Space Ecosystem - Copernicus Data Space Ecosystem\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"search\\\",\\n          \\\"href\\\": \\\"https://fedeo.ceos.org/opensearch/description.xml?parentIdentifier=EOP:ESA:SCIHUB:S6\\\",\\n\n        \\         \\\"title\\\": \\\"FedEO Clearinghouse - FedEO Clearinghouse\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"search\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/series/items/EOP:ESA:SCIHUB:S6/api\\\",\\n\n        \\         \\\"type\\\": \\\"application/opensearchdescription+xml\\\",\\n          \\\"title\\\":\n        \\\"OpenSearch Description Document\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://sentinel.esa.int/web/sentinel/missions/sentinel-6\\\",\\n\n        \\         \\\"title\\\": \\\"ESA Sentinel-6 Online\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=text/turtle;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for ESA/ESRIN\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/Sentinel-6\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for Sentinel-6 platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/700b6e99-a527-5819-b283-4656c8832ea0\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for AMR-C instrument\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/5d1512a5-cb97-5e74-8778-35cd65c06936\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for POSEIDON-4 instrument\\\"\\n        }\\n\n        \\     ],\\n      \\\"id\\\": \\\"EOP:ESA:Sentinel-6\\\",\\n      \\\"updated\\\": \\\"2020-11-21T00:00:00.00Z\\\",\\n\n        \\     \\\"providers\\\": [\\n        {\\n          \\\"roles\\\": [\\\"producer\\\"],\\n\n        \\         \\\"name\\\": \\\"ESA/ESRIN\\\"\\n        },\\n        {\\n          \\\"roles\\\":\n        [\\\"host\\\"],\\n          \\\"name\\\": \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\":\n        \\\"https://emc.spacebel.be/readme.html\\\"\\n        }\\n      ],\\n      \\\"summaries\\\":\n        {\\n        \\\"instruments\\\": [\\n          \\\"AMR-C\\\",\\n          \\\"POSEIDON-4\\\"\\n\n        \\       ],\\n        \\\"platform\\\": [\\\"Sentinel-6\\\"]\\n      }\\n    },\\n    {\\n\n        \\     \\\"extent\\\": {\\n        \\\"spatial\\\": {\\\"bbox\\\": [[\\n          -180,\\n\n        \\         -90,\\n          180,\\n          90\\n        ]]},\\n        \\\"temporal\\\":\n        {\\\"interval\\\": [[\\n          \\\"2017-10-13T00:00:00.000Z\\\",\\n          null\\n\n        \\       ]]}\\n      },\\n      \\\"stac_version\\\": \\\"1.0.0\\\",\\n      \\\"keywords\\\":\n        [\\n        \\\"FedEO\\\",\\n        \\\"SCIHUB\\\",\\n        \\\"DIF10\\\",\\n        \\\"Air\n        Quality\\\",\\n        \\\"EARTH SCIENCE > ATMOSPHERE > AIR QUALITY\\\",\\n        \\\"Sentinel-5P\\\",\\n\n        \\       \\\"TROPOMI\\\"\\n      ],\\n      \\\"created\\\": \\\"2018-10-09T00:00:00.00Z\\\",\\n\n        \\     \\\"description\\\": \\\"The Sentinel-5P data offer for the Pre-Operations\n        Open Access Hub consists of Level-1B and Level-2 user products for the TROPOMI\n        instrument.\\\",\\n      \\\"type\\\": \\\"Collection\\\",\\n      \\\"title\\\": \\\"Sentinel-5P\n        Products\\\",\\n      \\\"license\\\": \\\"various\\\",\\n      \\\"assets\\\": {\\n        \\\"search\\\":\n        {\\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\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Search client\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_069r3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        }\\n\n        \\     },\\n      \\\"links\\\": [\\n        {\\n          \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"root\\\",\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\": \\\"application/json\\\",\\n\n        \\         \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"title\\\":\n        \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/geo+json\\\",\\n          \\\"title\\\": \\\"Datasets\n        search for the series EOP:ESA:Sentinel-5P\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"http://www.opengis.net/def/rel/ogc/1.0/queryables\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/EOP:ESA:SCIHUB:S5P/queryables\\\",\\n          \\\"type\\\":\n        \\\"application/schema+json\\\",\\n          \\\"title\\\": \\\"Queryables for EOP:ESA:SCIHUB:S5P\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"search\\\",\\n          \\\"href\\\":\n        \\\"https://dataspace.copernicus.eu\\\",\\n          \\\"title\\\": \\\"Copernicus Data\n        Space Ecosystem - Copernicus Data Space Ecosystem\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"search\\\",\\n          \\\"href\\\": \\\"https://fedeo.ceos.org/opensearch/description.xml?parentIdentifier=EOP:ESA:SCIHUB:S5P\\\",\\n\n        \\         \\\"title\\\": \\\"FedEO Clearinghouse - FedEO Clearinghouse\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"search\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/series/items/EOP:ESA:SCIHUB:S5P/api\\\",\\n\n        \\         \\\"type\\\": \\\"application/opensearchdescription+xml\\\",\\n          \\\"title\\\":\n        \\\"OpenSearch Description Document\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://sentinel.esa.int/web/sentinel/missions/sentinel-5P\\\",\\n\n        \\         \\\"title\\\": \\\"ESA Sentinel-5P Online\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://sentinels.copernicus.eu/web/sentinel/user-guides/sentinel-5p-tropomi\\\",\\n\n        \\         \\\"title\\\": \\\"Sentinel-5P TROPOMI User Guide \\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=text/turtle;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for ESA/ESRIN\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/Sentinel-5P\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for Sentinel-5P platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/09f91afd-c0d2-52a9-9b50-b895a60917fa\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for TROPOMI instrument\\\"\\n        }\\n\n        \\     ],\\n      \\\"id\\\": \\\"EOP:ESA:Sentinel-5P\\\",\\n      \\\"updated\\\": \\\"2017-04-30T00:00:00.00Z\\\",\\n\n        \\     \\\"stac_extensions\\\": [\\\"https://stac-extensions.github.io/processing/v1.2.0/schema.json\\\"],\\n\n        \\     \\\"providers\\\": [\\n        {\\n          \\\"roles\\\": [\\\"producer\\\"],\\n\n        \\         \\\"name\\\": \\\"ESA/ESRIN\\\"\\n        },\\n        {\\n          \\\"roles\\\":\n        [\\\"host\\\"],\\n          \\\"name\\\": \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\":\n        \\\"https://emc.spacebel.be/readme.html\\\"\\n        }\\n      ],\\n      \\\"summaries\\\":\n        {\\n        \\\"instruments\\\": [\\\"TROPOMI\\\"],\\n        \\\"processing:lineage\\\":\n        [\\\"The Sentinel-5 Precursor objectives are to provide operational space-borne\n        observations in support to the operational monitoring of Air Quality, Climate,\n        Ozone and Surface UV. It will provide measurements of Ozone, NO_2, SO_2, Formaldehyde,\n        Aerosol, Carbonmonoxide, Methane, Clouds.\\\"],\\n        \\\"platform\\\": [\\\"Sentinel-5P\\\"]\\n\n        \\     }\\n    },\\n    {\\n      \\\"extent\\\": {\\n        \\\"spatial\\\": {\\\"bbox\\\":\n        [[\\n          -180,\\n          -90,\\n          180,\\n          90\\n        ]]},\\n\n        \\       \\\"temporal\\\": {\\\"interval\\\": [[\\n          \\\"2016-01-01T00:00:00.000Z\\\",\\n\n        \\         null\\n        ]]}\\n      },\\n      \\\"stac_version\\\": \\\"1.0.0\\\",\\n\n        \\     \\\"keywords\\\": [\\n        \\\"MAJA\\\",\\n        \\\"GeoTiff\\\",\\n        \\\"Forestry\\\",\\n\n        \\       \\\"Forest Conservation/Protection\\\",\\n        \\\"Sentinel-2\\\",\\n        \\\"MSI\\\"\\n\n        \\     ],\\n      \\\"created\\\": \\\"2023-09-05T00:00:00.00Z\\\",\\n      \\\"description\\\":\n        \\\"False colour satellite data allows you to upgrade your forest surveys. It\n        provides you with a broader perspective of biotic and abiotic disturbances\n        in real-time. This enables you to make more informed decisions to safeguard\n        the forests. Forestry professionals can utilise false colour imagery to optimise\n        their forestry operations, such as planning and monitoring tree planting,\n        conducting inventory assessments, and identifying areas for habitat restoration.\\\",\\n\n        \\     \\\"type\\\": \\\"Collection\\\",\\n      \\\"title\\\": \\\"False Colour Composites\\\",\\n\n        \\     \\\"license\\\": \\\"various\\\",\\n      \\\"assets\\\": {\\n        \\\"search\\\":\n        {\\n          \\\"roles\\\": [\\\"search\\\"],\\n          \\\"href\\\": \\\"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=F-FCC\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Search client\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_069r3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-FCC\\\",\\n          \\\"type\\\":\n        \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-FCC?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-FCC?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        },\\n\n        \\       \\\"quicklook\\\": {\\n          \\\"roles\\\": [\\\"overview\\\"],\\n          \\\"href\\\":\n        \\\"https://eovoc.spacebel.be/images/fcc.png\\\",\\n          \\\"type\\\": \\\"image/png\\\",\\n\n        \\         \\\"title\\\": \\\"graphic overview\\\"\\n        }\\n      },\\n      \\\"links\\\":\n        [\\n        {\\n          \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-FCC\\\",\\n\n        \\         \\\"type\\\": \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"root\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\",\\n          \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n\n        \\         \\\"title\\\": \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"items\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/F-FCC/items?httpAccept=application/geo%2Bjson;profile=https://stacspec.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json\\\",\\n          \\\"title\\\": \\\"Datasets\n        search for the series F-FCC\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"http://www.opengis.net/def/rel/ogc/1.0/queryables\\\",\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-FCC/queryables\\\",\\n\n        \\         \\\"type\\\": \\\"application/schema+json\\\",\\n          \\\"title\\\": \\\"Queryables\n        for F-FCC\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"search\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/series/items/F-FCC/api\\\",\\n          \\\"type\\\":\n        \\\"application/opensearchdescription+xml\\\",\\n          \\\"title\\\": \\\"OpenSearch\n        Description Document\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"ordering\\\",\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/ordering?collection=F-FCC\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Order F-FCC Product\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\":\n        \\\"https://eovoc.spacebel.be/images/FC_Brochure_final.pdf\\\",\\n          \\\"type\\\":\n        \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"F-FCC Brochure - F-FCC Product\n        Description\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/rdf%2Bxml;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-FCC?httpAccept=text/turtle;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-FCC?httpAccept=text/turtle;profile=http://data.europa.eu/930/\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/Spacebel\n        SA\\\",\\n          \\\"title\\\": \\\"More collections for Spacebel SA\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/Sentinel-2\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for Sentinel-2 platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/s2-msi\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for MSI instrument\\\"\\n        }\\n\n        \\     ],\\n      \\\"id\\\": \\\"F-FCC\\\",\\n      \\\"updated\\\": \\\"2023-09-05T00:00:00.00Z\\\",\\n\n        \\     \\\"providers\\\": [\\n        {\\n          \\\"roles\\\": [\\\"producer\\\"],\\n\n        \\         \\\"name\\\": \\\"Spacebel SA\\\",\\n          \\\"url\\\": \\\"https://www.spacebel.com\\\"\\n\n        \\       },\\n        {\\n          \\\"roles\\\": [\\\"host\\\"],\\n          \\\"name\\\":\n        \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\": \\\"https://emc.spacebel.be/readme.html\\\"\\n\n        \\       }\\n      ],\\n      \\\"summaries\\\": {\\n        \\\"instruments\\\": [\\\"MSI\\\"],\\n\n        \\       \\\"platform\\\": [\\\"Sentinel-2\\\"]\\n      }\\n    },\\n    {\\n      \\\"extent\\\":\n        {\\n        \\\"spatial\\\": {\\\"bbox\\\": [[\\n          -180,\\n          -90,\\n          180,\\n\n        \\         90\\n        ]]},\\n        \\\"temporal\\\": {\\\"interval\\\": [[\\n          \\\"2002-05-14T00:00:00.000Z\\\",\\n\n        \\         \\\"2012-04-08T23:59:59.999Z\\\"\\n        ]]}\\n      },\\n      \\\"stac_version\\\":\n        \\\"1.0.0\\\",\\n      \\\"sci:doi\\\": \\\"10.5270/EN1-85m0a7b\\\",\\n      \\\"keywords\\\":\n        [\\n        \\\"World\\\",\\n        \\\"Land Surface\\\",\\n        \\\"Topography\\\",\\n\n        \\       \\\"Cryosphere\\\",\\n        \\\"Snow and Ice\\\",\\n        \\\"Oceans\\\",\\n\n        \\       \\\"Ocean Waves\\\",\\n        \\\"Sea Surface Topography\\\",\\n        \\\"Atmosphere\\\",\\n\n        \\       \\\"Atmospheric Winds\\\",\\n        \\\"EARTH SCIENCE > LAND SURFACE\\\",\\n\n        \\       \\\"EARTH SCIENCE > LAND SURFACE > TOPOGRAPHY\\\",\\n        \\\"EARTH SCIENCE\n        > CRYOSPHERE\\\",\\n        \\\"EARTH SCIENCE > CRYOSPHERE > SNOW/ICE\\\",\\n        \\\"EARTH\n        SCIENCE > TERRESTRIAL HYDROSPHERE > SNOW/ICE\\\",\\n        \\\"EARTH SCIENCE >\n        OCEANS\\\",\\n        \\\"EARTH SCIENCE > OCEANS > OCEAN WAVES\\\",\\n        \\\"EARTH\n        SCIENCE > OCEANS > SEA SURFACE TOPOGRAPHY\\\",\\n        \\\"EARTH SCIENCE > ATMOSPHERE\\\",\\n\n        \\       \\\"EARTH SCIENCE > ATMOSPHERE > ATMOSPHERIC WINDS\\\",\\n        \\\"Sun-synchronous\\\",\\n\n        \\       \\\"800 km\\\",\\n        \\\"5 - 1150 km\\\",\\n        \\\"Radar Altimeters\\\",\\n\n        \\       \\\"Envisat\\\",\\n        \\\"RA-2\\\"\\n      ],\\n      \\\"created\\\": \\\"2019-05-29T00:00:00.00Z\\\",\\n\n        \\     \\\"description\\\": \\\"This is a RA-2 Sensor and Geophysical Data Record\n        (SGDR) Full Mission Reprocessing (FMR) v3 product. This FMR follows the first\n        Envisat Altimetry reprocessing Version (V2.1) completed in 2012.  The GDR\n        and S-GDR data products were reprocessed for all cycles from 6 to 113 (May\n        2002 to April 2012) into a homogeneous standard in NetCDF format (close to\n        Sentinel-3).  The Sensor Data Record (SGDR) Product from RA-2/MWR includes\n        the data in the GDR product (https://earth.esa.int/eogateway/catalog/envisat-ra-2-geophysical-data-record-gdr-ra2_gdr__2p-)\n        (RA-2 geophysical data, MWR data) and also RA-2 averaged waveforms (18Hz)\n        and RA-2 individual waveforms (1800Hz). This product is a continuation of\n        ERS RA data.  This data product has a coverage of 1 pass, pole-pole, a spatial\n        sampling of about 390 m along track and a size of 31 to 40 MB, depending on\n        presence of individual waveforms.  The radiometric accuracy is 0.2 dB and\n        auxiliary data include: Orbit state vectors (DORIS, FOS), RA2 and MWR characterisation\n        data, Platform attitude, Gain calibration, USO frequency, ECMWF data, time\n        relation, leap second, Ionospheric corrections, geoid, mean sea surface, slope\n        data, and tide model (ocean, earth, loading, pole).  Please consult the Envisat\n        RA-2/MWR Product Quality Readme file before using the data.\\\",\\n      \\\"type\\\":\n        \\\"Collection\\\",\\n      \\\"title\\\": \\\"Envisat RA-2 Sensor and Geophysical Data\n        Record - SGDR\\_[RA2_MWS__2P]\\\",\\n      \\\"license\\\": \\\"various\\\",\\n      \\\"assets\\\":\n        {\\n        \\\"metadata_ogc_17_069r3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        }\\n\n        \\     },\\n      \\\"links\\\": [\\n        {\\n          \\\"rel\\\": \\\"cite-as\\\",\\n\n        \\         \\\"href\\\": \\\"https://doi.org/10.5270/EN1-85m0a7b\\\",\\n          \\\"type\\\":\n        \\\"text/html\\\",\\n          \\\"title\\\": \\\"Landing page\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P\\\",\\n\n        \\         \\\"type\\\": \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"root\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\",\\n          \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n\n        \\         \\\"title\\\": \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\":\n        \\\"https://earth.esa.int/web/sppa/mission-performance/esa-missions/envisat/ra2/products-and-algorithms/products-information/aux\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"RA2-MWR Auxiliary\n        Data - Auxiliary Data\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://earth.esa.int/eogateway/instruments/ra2/products-information\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Envisat RA-2 MWR\n        Sensor Performance, Products and Algorithms - Product Information\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://earth.esa.int/eogateway/documents/20142/37627/Envisat-RA-2-Level-2-Product-Handbook.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"RA-2 Product\n        Handbook - User Manual\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://earth.esa.int/eogateway/documents/20142/37627/Envisat-RA-2-product-specifications.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"RA-2 Product\n        Specifications - Product Specifications\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://earth.esa.int/eogateway/documents/20142/37627/Envisat-RA-2-MWR-Level-2-Product-Readme-3.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"ReadMe file\n        - Product Specifications\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://earth.esa.int/eogateway/documents/20142/37627/Error-Budget-Envisat-Altimetry-Mission.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"Envisat Altimetry\n        Error Budget - Technical Note\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://earth.esa.int/eogateway/search?text=&category=Tools%20and%20toolboxes&filter=ra2-mwr\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"RA-2 Software Tools\n        - Tools\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\":\n        \\\"https://esatellus.service-now.com/csp?id=esa_simple_request\\\",\\n          \\\"type\\\":\n        \\\"text/html\\\",\\n          \\\"title\\\": \\\"Get Help? - ESA Earth Observation User\n        Services Portal\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=text/turtle;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for ESA/ESRIN\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/Envisat\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for Envisat platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/2ebd3948-3f88-5944-8e3c-7e60099ec941\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for RA-2 instrument\\\"\\n        }\\n\n        \\     ],\\n      \\\"id\\\": \\\"ENVISAT.RA2.MWS_2P\\\",\\n      \\\"updated\\\": \\\"2023-06-13T13:23:41Z\\\",\\n\n        \\     \\\"stac_extensions\\\": [\\\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\\\"],\\n\n        \\     \\\"providers\\\": [\\n        {\\n          \\\"roles\\\": [\\\"producer\\\"],\\n\n        \\         \\\"name\\\": \\\"ESA/ESRIN\\\",\\n          \\\"url\\\": \\\"http://www.esa.int\\\"\\n\n        \\       },\\n        {\\n          \\\"roles\\\": [\\\"host\\\"],\\n          \\\"name\\\":\n        \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\": \\\"https://emc.spacebel.be/readme.html\\\"\\n\n        \\       }\\n      ],\\n      \\\"summaries\\\": {\\n        \\\"instruments\\\": [\\\"RA-2\\\"],\\n\n        \\       \\\"platform\\\": [\\\"Envisat\\\"]\\n      }\\n    },\\n    {\\n      \\\"extent\\\":\n        {\\n        \\\"spatial\\\": {\\\"bbox\\\": [[\\n          -180,\\n          -90,\\n          180,\\n\n        \\         90\\n        ]]},\\n        \\\"temporal\\\": {\\\"interval\\\": [[\\n          \\\"2002-04-29T00:00:00.000Z\\\",\\n\n        \\         \\\"2012-04-08T23:59:59.999Z\\\"\\n        ]]}\\n      },\\n      \\\"stac_version\\\":\n        \\\"1.0.0\\\",\\n      \\\"sci:doi\\\": \\\"10.5270/EN1-opsw96m\\\",\\n      \\\"keywords\\\":\n        [\\n        \\\"World\\\",\\n        \\\"DIF10\\\",\\n        \\\"Atmosphere\\\",\\n        \\\"EARTH\n        SCIENCE > ATMOSPHERE\\\",\\n        \\\"Atmospheric Winds\\\",\\n        \\\"EARTH SCIENCE\n        > ATMOSPHERE > ATMOSPHERIC WINDS\\\",\\n        \\\"Sun-synchronous\\\",\\n        \\\"MERIS\n        RR - 1040 m across track / 1160 m along track\\\",\\n        \\\"800 km\\\",\\n        \\\"5\n        - 1150 km\\\",\\n        \\\"Imaging Spectrometers/Radiometers\\\",\\n        \\\"Envisat\\\",\\n\n        \\       \\\"MERIS\\\"\\n      ],\\n      \\\"created\\\": \\\"2019-05-28T00:00:00.000Z\\\",\\n\n        \\     \\\"description\\\": \\\"The MERIS Level 1 Reduced Resolution (RR) product\n        contains the Top of Atmosphere (TOA) upwelling spectral radiance measures\n        at reduced resolution. The in-band reference irradiances for the 15 MERIS\n        bands are computed by averaging the in-band solar irradiance of each pixel.\n        The in-band solar irradiance of each pixel is computed by integrating the\n        reference solar spectrum with the band-pass of each pixel.  The MERIS RR Level\n        1 product has Sentinel 3-like format starting from the 4th reprocessing data\n        released to users in July 2020.  Each measurement and annotation data file\n        is in NetCDF 4. The Level 1 product is composed of 22 measurements data files:\n        15 files containing radiances at each band (one band per file), accompanied\n        by the associated error estimates, and 7 annotation data files.  The band-pass\n        of each pixel is derived from on-ground and in-flight characterisation via\n        an instrument model. The values \\\\\\\"Band wavelength\\\\\\\" and \\\\\\\"Bandwidth\\\\\\\"\n        provided in the Manifest file of the Level 1 products are the averaged band-pass\n        of each pixel over the instrument field of view.  The Auxiliary data used\n        are listed in the Manifest file associated to each product.  MERIS was operating\n        continuously on the day side of the Envisat orbit (descending track). RR data\n        was acquired over 43.5 minutes in each orbit, i.e. 80% of the descending track.\\\",\\n\n        \\     \\\"type\\\": \\\"Collection\\\",\\n      \\\"title\\\": \\\"Envisat MERIS Reduced\n        Resolution - Level 1 [MER_RR__1P/ME_1_RRG]\\\",\\n      \\\"license\\\": \\\"various\\\",\\n\n        \\     \\\"assets\\\": {\\n        \\\"search\\\": {\\n          \\\"roles\\\": [\\\"search\\\"],\\n\n        \\         \\\"href\\\": \\\"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=MER.RR__1P\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Search client\\\"\\n\n        \\       },\\n        \\\"offering_2\\\": {\\n          \\\"roles\\\": [\\\"http://www.opengis.net/spec/owc-geojson/1.0/req/wms#GetMap\\\"],\\n\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\n        \\         \\\"title\\\": \\\"GetMap\\\",\\n          \\\"type\\\": \\\"image/png\\\"\\n        },\\n\n        \\       \\\"offering_1\\\": {\\n          \\\"roles\\\": [\\\"http://www.opengis.net/spec/owc-geojson/1.0/req/wms#GetCapabilities\\\"],\\n\n        \\         \\\"href\\\": \\\"https://eovoc.spacebel.be/geoserver/wms?service=WMS&version=1.1.1&request=GetCapabilities\\\",\\n\n        \\         \\\"title\\\": \\\"GetCapabilities\\\",\\n          \\\"type\\\": \\\"application/xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_069r3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/MER.RR__1P\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/MER.RR__1P?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/MER.RR__1P?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/MER.RR__1P?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/MER.RR__1P?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/MER.RR__1P?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/MER.RR__1P?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        }\\n\n        \\     },\\n      \\\"links\\\": [\\n        {\\n          \\\"rel\\\": \\\"cite-as\\\",\\n\n        \\         \\\"href\\\": \\\"https://doi.org/10.5270/EN1-opsw96m\\\",\\n          \\\"type\\\":\n        \\\"text/html\\\",\\n          \\\"title\\\": \\\"Landing page\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/MER.RR__1P\\\",\\n\n        \\         \\\"type\\\": \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"root\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\",\\n          \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n\n        \\         \\\"title\\\": \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"items\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/MER.RR__1P/items?httpAccept=application/geo%2Bjson;profile=https://stacspec.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json\\\",\\n          \\\"title\\\": \\\"Datasets\n        search for the series MER.RR__1P\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"http://www.opengis.net/def/rel/ogc/1.0/queryables\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/MER.RR__1P/queryables\\\",\\n          \\\"type\\\":\n        \\\"application/schema+json\\\",\\n          \\\"title\\\": \\\"Queryables for MER.RR__1P\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"search\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/series/items/MER.RR__1P/api\\\",\\n          \\\"type\\\":\n        \\\"application/opensearchdescription+xml\\\",\\n          \\\"title\\\": \\\"OpenSearch\n        Description Document\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://earth.esa.int/eogateway/instruments/meris/auxiliary-data\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"MERIS auxiliary\n        data - Auxiliary Data\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://earth.esa.int/eogateway/documents/20142/37627/MERIS-Sentinel-3-Like-L1-andL2-PFS.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"MERIS Sentinel3-like\n        L1/L2 Product Format Specification - Product Specifications\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://earth.esa.int/eogateway/instruments/meris/products-information\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"MERIS 4th data\n        reprocessing documentation - Product Specifications\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"More MERIS Documents\n        - Other\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\":\n        \\\"https://earth.esa.int/eogateway/search?text=MERIS&category=Tools%20and%20toolboxes&filter=Envisat,MERIS&subFilter=&sortby=ZA\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"MERIS Software\n        and Tools - Tools\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://earth.esa.int/eogateway/missions/envisat\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Envisat mission\n        - Description of Envisat mission\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://earth.esa.int/eogateway/instruments/meris\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"MERIS instrument\n        - Description of MERIS instrument\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://esatellus.service-now.com/csp?id=esa_simple_request\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Get Help? - ESA\n        Earth Observation User Services Portal\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/MER.RR__1P?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/MER.RR__1P?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/MER.RR__1P?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/MER.RR__1P?httpAccept=application/rdf%2Bxml;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/MER.RR__1P?httpAccept=text/turtle;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"wms:transparent\\\": true,\\n          \\\"rel\\\": \\\"wms\\\",\\n          \\\"wms:dimensions\\\":\n        {\\\"version\\\": \\\"1.1.1\\\"},\\n          \\\"href\\\": \\\"https://eovoc.spacebel.be/geoserver/wms\\\",\\n\n        \\         \\\"type\\\": \\\"image/png\\\",\\n          \\\"title\\\": \\\"MER.RR__1P\\\",\\n\n        \\         \\\"wms:layers\\\": [\\\"Density:MER.RR__1P\\\"],\\n          \\\"wms:styles\\\":\n        [\\\"Turbo\\\"]\\n        },\\n        {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\\\",\\n          \\\"title\\\":\n        \\\"More collections for ESA/ESRIN\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/Envisat\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for Envisat platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/003ed1d0-9f6c-59cb-a427-1fa4c4a92107\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for MERIS instrument\\\"\\n        }\\n\n        \\     ],\\n      \\\"id\\\": \\\"MER.RR__1P\\\",\\n      \\\"updated\\\": \\\"2023-11-10T08:30:10Z\\\",\\n\n        \\     \\\"stac_extensions\\\": [\\n        \\\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\\\",\\n\n        \\       \\\"https://stac-extensions.github.io/web-map-links/v1.2.0/schema.json\\\"\\n\n        \\     ],\\n      \\\"providers\\\": [\\n        {\\n          \\\"roles\\\": [\\\"producer\\\"],\\n\n        \\         \\\"name\\\": \\\"ESA/ESRIN\\\",\\n          \\\"url\\\": \\\"http://www.esa.int\\\"\\n\n        \\       },\\n        {\\n          \\\"roles\\\": [\\\"host\\\"],\\n          \\\"name\\\":\n        \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\": \\\"https://emc.spacebel.be/readme.html\\\"\\n\n        \\       }\\n      ],\\n      \\\"summaries\\\": {\\n        \\\"instruments\\\": [\\\"MERIS\\\"],\\n\n        \\       \\\"platform\\\": [\\\"Envisat\\\"]\\n      }\\n    }\\n  ],\\n  \\\"numberReturned\\\":\n        5,\\n  \\\"links\\\": [\\n    {\\n      \\\"rel\\\": \\\"self\\\",\\n      \\\"href\\\": \\\"https://emc.spacebel.be/collections?limit=5&q=sentinel\\\",\\n\n        \\     \\\"type\\\": \\\"application/json\\\",\\n      \\\"title\\\": \\\"This document\\\"\\n\n        \\   },\\n    {\\n      \\\"rel\\\": \\\"next\\\",\\n      \\\"href\\\": \\\"https://emc.spacebel.be/collections?limit=5&q=sentinel&startRecord=6\\\",\\n\n        \\     \\\"type\\\": \\\"application/json\\\",\\n      \\\"title\\\": \\\"Next results\\\"\\n\n        \\   },\\n    {\\n      \\\"rel\\\": \\\"http://www.opengis.net/def/rel/ogc/1.0/queryables\\\",\\n\n        \\     \\\"href\\\": \\\"https://emc.spacebel.be/collections/queryables\\\",\\n      \\\"type\\\":\n        \\\"application/schema+json\\\",\\n      \\\"title\\\": \\\"Queryables for collection\n        search\\\"\\n    }\\n  ],\\n  \\\"numberMatched\\\": 216\\n}\"\n    headers:\n      Access-Control-Allow-Headers:\n      - X-PINGOTHER, Content-Type, Authorization, Accept\n      Access-Control-Allow-Methods:\n      - POST,GET,PUT,HEAD,OPTIONS,DELETE\n      Access-Control-Allow-Origin:\n      - '*'\n      Cache-Control:\n      - no-cache, no-store, max-age=0, must-revalidate\n      Connection:\n      - keep-alive\n      Content-Type:\n      - application/json;charset=UTF-8\n      Date:\n      - Thu, 31 Jul 2025 15:08:22 GMT\n      Expires:\n      - '0'\n      Pragma:\n      - no-cache\n      Server:\n      - openresty\n      Strict-Transport-Security:\n      - max-age=31536000 ; includeSubDomains\n      Transfer-Encoding:\n      - chunked\n      X-Content-Type-Options:\n      - nosniff\n      X-Frame-Options:\n      - DENY\n      X-Served-By:\n      - emc.spacebel.be\n      X-XSS-Protection:\n      - 1; mode=block\n    status:\n      code: 200\n      message: ''\nversion: 1\n"
  },
  {
    "path": "tests/cassettes/test_collection_search/TestCollectionSearch.test_matched.yaml",
    "content": "interactions:\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://earth-search.aws.element84.com/v1/collections?limit=4&q=sentinel\n  response:\n    body:\n      string: \"{\\\"collections\\\":[{\\\"type\\\":\\\"Collection\\\",\\\"id\\\":\\\"sentinel-2-pre-c1-l2a\\\",\\\"title\\\":\\\"Sentinel-2\n        Pre-Collection 1 Level-2A \\\",\\\"description\\\":\\\"Sentinel-2 Pre-Collection 1\n        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\n        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;\n        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;\n        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;\n        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;\n        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;\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"SWIR 2.2\\u03BCm\n        - 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;\n        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;\n        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;\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"SWIR 1.6\\u03BCm\n        - 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;\n        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;\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Scene classification\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Aerosol optical\n        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;\n        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;\n        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;\n        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;\n        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;\n        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\n        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\n        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\n        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\n        aerosol (band 1)\\\",\\\"center_wavelength\\\":0.443,\\\"full_width_half_max\\\":0.027},{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (band 2)\\\",\\\"center_wavelength\\\":0.49,\\\"full_width_half_max\\\":0.098},{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (band 3)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.045},{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (band 4)\\\",\\\"center_wavelength\\\":0.665,\\\"full_width_half_max\\\":0.038},{\\\"name\\\":\\\"rededge1\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 1 (band 5)\\\",\\\"center_wavelength\\\":0.704,\\\"full_width_half_max\\\":0.019},{\\\"name\\\":\\\"rededge2\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 2 (band 6)\\\",\\\"center_wavelength\\\":0.74,\\\"full_width_half_max\\\":0.018},{\\\"name\\\":\\\"rededge3\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 3 (band 7)\\\",\\\"center_wavelength\\\":0.783,\\\"full_width_half_max\\\":0.028},{\\\"name\\\":\\\"nir\\\",\\\"common_name\\\":\\\"nir\\\",\\\"description\\\":\\\"NIR\n        1 (band 8)\\\",\\\"center_wavelength\\\":0.842,\\\"full_width_half_max\\\":0.145},{\\\"name\\\":\\\"nir08\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"NIR\n        2 (band 8A)\\\",\\\"center_wavelength\\\":0.865,\\\"full_width_half_max\\\":0.033},{\\\"name\\\":\\\"nir09\\\",\\\"common_name\\\":\\\"nir09\\\",\\\"description\\\":\\\"NIR\n        3 (band 9)\\\",\\\"center_wavelength\\\":0.945,\\\"full_width_half_max\\\":0.026},{\\\"name\\\":\\\"cirrus\\\",\\\"common_name\\\":\\\"cirrus\\\",\\\"description\\\":\\\"Cirrus\n        (band 10)\\\",\\\"center_wavelength\\\":1.3735,\\\"full_width_half_max\\\":0.075},{\\\"name\\\":\\\"swir16\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"SWIR\n        1 (band 11)\\\",\\\"center_wavelength\\\":1.61,\\\"full_width_half_max\\\":0.143},{\\\"name\\\":\\\"swir22\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"SWIR\n        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\n        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\n        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\n        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\n        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\n        Copernicus DEM is a Digital Surface Model (DSM) which represents the surface\n        of the Earth including buildings, infrastructure and vegetation. GLO-30 Public\n        provides limited worldwide coverage at 30 meters because a small subset of\n        tiles covering specific countries are not yet released to the public by the\n        Copernicus Programme.\\\",\\\"item_assets\\\":{\\\"data\\\":{\\\"type\\\":\\\"image/tiff;\n        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\n        [National Agriculture Imagery Program](https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/)\n        (NAIP) provides U.S.-wide, high-resolution aerial imagery, with four spectral\n        bands (R, G, B, IR).  NAIP is administered by the [Aerial Field Photography\n        Office](https://www.fsa.usda.gov/programs-and-services/aerial-photography/)\n        (AFPO) within the [US Department of Agriculture](https://www.usda.gov/) (USDA).\n        \\ Data are captured at least once every three years for each state.  This\n        dataset represents NAIP data from 2010-present, in [cloud-optimized GeoTIFF](https://www.cogeo.org/)\n        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\n        Domain\\\",\\\"type\\\":\\\"text/html\\\"},{\\\"rel\\\":\\\"cite-as\\\",\\\"href\\\":\\\"https://doi.org/10.5066/F7QN651G\\\",\\\"title\\\":\\\"NAIP\n        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:\n        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\n        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\n        84\\\",\\\"roles\\\":[\\\"processor\\\"],\\\"url\\\":\\\"https://element84.com\\\"}],\\\"summaries\\\":{\\\"gsd\\\":[0.6,1],\\\"eo:bands\\\":[{\\\"name\\\":\\\"Red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"visible\n        red\\\"},{\\\"name\\\":\\\"Green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"visible\n        green\\\"},{\\\"name\\\":\\\"Blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"visible\n        blue\\\"},{\\\"name\\\":\\\"NIR\\\",\\\"common_name\\\":\\\"nir\\\",\\\"description\\\":\\\"near-infrared\\\"}]},\\\"item_assets\\\":{\\\"image\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"RGBIR\n        COG tile\\\",\\\"eo:bands\\\":[{\\\"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\n        Metdata\\\"}},\\\"sci:doi\\\":\\\"10.5066/F7QN651G\\\",\\\"sci:publications\\\":[{\\\"doi\\\":\\\"10.14358/PERS.83.10.737\\\",\\\"citation\\\":\\\"Maxwell,\n        A. E., Warner, T. A., Vanderbilt, B. C., &amp; Ramezan, C. A. (2017). Land\n        cover classification and feature extraction from National Agriculture Imagery\n        Program (NAIP) orthoimagery: A Review. Photogrammetric Engineering &amp; Remote\n        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\n        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\n        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\n        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\n        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\n        Copernicus DEM is a Digital Surface Model (DSM) which represents the surface\n        of the Earth including buildings, infrastructure and vegetation. GLO-90 provides\n        worldwide coverage at 90 meters.\\\",\\\"item_assets\\\":{\\\"data\\\":{\\\"type\\\":\\\"image/tiff;\n        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\n        corrected global Landsat Collection 2 Level-2 data from the Thematic Mapper\n        (TM) onboard Landsat 4 and 5, the Enhanced Thematic Mapper Plus (ETM+) onboard\n        Landsat 7, and the Operational Land Imager (OLI) and Thermal Infrared Sensor\n        (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\n        4-5 TM Collection 2 Level-2\\\"},{\\\"rel\\\":\\\"cite-as\\\",\\\"href\\\":\\\"https://doi.org/10.5066/P9C7I13B\\\",\\\"title\\\":\\\"Landsat\n        7 ETM+ Collection 2 Level-2\\\"},{\\\"rel\\\":\\\"cite-as\\\",\\\"href\\\":\\\"https://doi.org/10.5066/P9OGBGM6\\\",\\\"title\\\":\\\"Landsat\n        8-9 OLI/TIRS Collection 2 Level-2\\\"},{\\\"rel\\\":\\\"license\\\",\\\"href\\\":\\\"https://www.usgs.gov/core-science-systems/hdds/data-policy\\\",\\\"title\\\":\\\"Public\n        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\n        image\\\",\\\"roles\\\":[\\\"thumbnail\\\"]},\\\"reduced_resolution_browse\\\":{\\\"type\\\":\\\"image/jpeg\\\",\\\"title\\\":\\\"Reduced\n        resolution browse image\\\",\\\"roles\\\":[\\\"overview\\\"]},\\\"mtl.json\\\":{\\\"type\\\":\\\"application/json\\\",\\\"title\\\":\\\"Product\n        Metadata File (json)\\\",\\\"description\\\":\\\"Collection 2 Level-2 Product Metadata\n        File (json)\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"mtl.txt\\\":{\\\"type\\\":\\\"text/plain\\\",\\\"title\\\":\\\"Product\n        Metadata File (txt)\\\",\\\"description\\\":\\\"Collection 2 Level-2 Product Metadata\n        File (txt)\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"mtl.xml\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"title\\\":\\\"Product\n        Metadata File (xml)\\\",\\\"description\\\":\\\"Collection 2 Level-2 Product Metadata\n        File (xml)\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"ang\\\":{\\\"type\\\":\\\"text/plain\\\",\\\"title\\\":\\\"Angle\n        Coefficients File\\\",\\\"description\\\":\\\"Collection 2 Level-1 Angle Coefficients\n        File\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"qa_pixel\\\":{\\\"type\\\":\\\"image/tiff; application=geotiff;\n        profile=cloud-optimized\\\",\\\"title\\\":\\\"Pixel Quality Assessment Band\\\",\\\"description\\\":\\\"Collection\n        2 Level-1 Pixel Quality Assessment Band\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":1,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":30,\\\"unit\\\":\\\"bit\n        index\\\"}],\\\"roles\\\":[\\\"cloud\\\",\\\"cloud-shadow\\\",\\\"snow-ice\\\",\\\"water-mask\\\"]},\\\"qa_radsat\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Radiometric Saturation\n        Quality Assessment Band\\\",\\\"description\\\":\\\"Collection 2 Level-1 Radiometric\n        Saturation Quality Assessment Band\\\",\\\"raster:bands\\\":[{\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":30,\\\"unit\\\":\\\"bit\n        index\\\"}],\\\"roles\\\":[\\\"saturation\\\"]},\\\"coastal\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Coastal/Aerosol\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Coastal/Aerosol Band Surface\n        Reflectance\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":30,\\\"scale\\\":0.0000275,\\\"offset\\\":-0.2}],\\\"roles\\\":[\\\"reflectance\\\"]},\\\"blue\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Blue Band\\\",\\\"description\\\":\\\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Green Band\\\",\\\"description\\\":\\\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Red Band\\\",\\\"description\\\":\\\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Near Infrared Band\n        0.8\\\",\\\"description\\\":\\\"Collection 2 Level-2 Near Infrared Band 0.8 Surface\n        Reflectance\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":30,\\\"scale\\\":0.0000275,\\\"offset\\\":-0.2}],\\\"roles\\\":[\\\"reflectance\\\"]},\\\"swir16\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Short-wave Infrared\n        Band 1.6\\\",\\\"description\\\":\\\"Collection 2 Level-2 Short-wave Infrared Band\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Short-wave Infrared\n        Band 2.2\\\",\\\"description\\\":\\\"Collection 2 Level-2 Short-wave Infrared Band\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Atmospheric Opacity\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Atmospheric Opacity Band Surface\n        Reflectance Product\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":-9999,\\\"data_type\\\":\\\"int16\\\",\\\"spatial_resolution\\\":30,\\\"scale\\\":0.001}],\\\"roles\\\":[\\\"data\\\"]},\\\"cloud_qa\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Cloud Quality Assessment\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Cloud Quality Assessment Band\n        Surface Reflectance Product\\\",\\\"raster:bands\\\":[{\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":30,\\\"unit\\\":\\\"bit\n        index\\\"}],\\\"roles\\\":[\\\"cloud\\\",\\\"cloud-shadow\\\",\\\"snow-ice\\\",\\\"water-mask\\\"]},\\\"qa_aerosol\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Aerosol Quality\n        Assessment Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Aerosol Quality Assessment\n        Band Surface Reflectance Product\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":1,\\\"data_type\\\":\\\"uint8\\\",\\\"spatial_resolution\\\":30,\\\"unit\\\":\\\"bit\n        index\\\"}],\\\"roles\\\":[\\\"data-mask\\\",\\\"water-mask\\\"]},\\\"lwir11\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Surface Temperature\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Thermal Infrared Band Surface\n        Temperature\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":30,\\\"unit\\\":\\\"kelvin\\\",\\\"scale\\\":0.00341802,\\\"offset\\\":149}],\\\"roles\\\":[\\\"temperature\\\"]},\\\"lwir\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Surface Temperature\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Thermal Infrared Band Surface\n        Temperature\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\",\\\"spatial_resolution\\\":30,\\\"unit\\\":\\\"kelvin\\\",\\\"scale\\\":0.00341802,\\\"offset\\\":149}],\\\"roles\\\":[\\\"temperature\\\"]},\\\"atran\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Atmospheric Transmittance\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Atmospheric Transmittance Band\n        Surface Temperature Product\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":-9999,\\\"data_type\\\":\\\"int16\\\",\\\"spatial_resolution\\\":30,\\\"scale\\\":0.0001}],\\\"roles\\\":[\\\"data\\\"]},\\\"cdist\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Cloud Distance\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Cloud Distance Band Surface\n        Temperature Product\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":-9999,\\\"data_type\\\":\\\"int16\\\",\\\"spatial_resolution\\\":30,\\\"unit\\\":\\\"kilometer\\\",\\\"scale\\\":0.01}],\\\"roles\\\":[\\\"data\\\"]},\\\"drad\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Downwelled Radiance\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Downwelled Radiance Band Surface\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Upwelled Radiance\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Upwelled Radiance Band Surface\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Thermal Radiance\n        Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Thermal Radiance Band Surface\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Emissivity Band\\\",\\\"description\\\":\\\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Emissivity Standard\n        Deviation Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Emissivity Standard\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Surface Temperature\n        Quality Assessment Band\\\",\\\"description\\\":\\\"Collection 2 Level-2 Quality Assessment\n        Band Surface Temperature Product\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":-9999,\\\"data_type\\\":\\\"int16\\\",\\\"spatial_resolution\\\":30,\\\"unit\\\":\\\"kelvin\\\",\\\"scale\\\":0.01}],\\\"roles\\\":[\\\"data\\\"]}},\\\"title\\\":\\\"Landsat\n        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\n        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\n        blue (Thematic Mapper)\\\",\\\"center_wavelength\\\":0.49,\\\"full_width_half_max\\\":0.07},{\\\"name\\\":\\\"TM_B2\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Visible\n        green (Thematic Mapper)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.08},{\\\"name\\\":\\\"TM_B3\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Visible\n        red (Thematic Mapper)\\\",\\\"center_wavelength\\\":0.66,\\\"full_width_half_max\\\":0.06},{\\\"name\\\":\\\"TM_B4\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"Near\n        infrared (Thematic Mapper)\\\",\\\"center_wavelength\\\":0.83,\\\"full_width_half_max\\\":0.14},{\\\"name\\\":\\\"TM_B5\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"Short-wave\n        infrared (Thematic Mapper)\\\",\\\"center_wavelength\\\":1.65,\\\"full_width_half_max\\\":0.2},{\\\"name\\\":\\\"TM_B6\\\",\\\"common_name\\\":\\\"lwir\\\",\\\"description\\\":\\\"Long-wave\n        infrared (Thematic Mapper)\\\",\\\"center_wavelength\\\":11.45,\\\"full_width_half_max\\\":2.1},{\\\"name\\\":\\\"TM_B7\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"Short-wave\n        infrared (Thematic Mapper)\\\",\\\"center_wavelength\\\":2.22,\\\"full_width_half_max\\\":0.27},{\\\"name\\\":\\\"ETM_B1\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Visible\n        blue (Enhanced Thematic Mapper Plus)\\\",\\\"center_wavelength\\\":0.48,\\\"full_width_half_max\\\":0.07},{\\\"name\\\":\\\"ETM_B2\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Visible\n        green (Enhanced Thematic Mapper Plus)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.08},{\\\"name\\\":\\\"ETM_B3\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Visible\n        red (Enhanced Thematic Mapper Plus)\\\",\\\"center_wavelength\\\":0.66,\\\"full_width_half_max\\\":0.06},{\\\"name\\\":\\\"ETM_B4\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"Near\n        infrared (Enhanced Thematic Mapper Plus)\\\",\\\"center_wavelength\\\":0.84,\\\"full_width_half_max\\\":0.13},{\\\"name\\\":\\\"ETM_B5\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"Short-wave\n        infrared (Enhanced Thematic Mapper Plus)\\\",\\\"center_wavelength\\\":1.65,\\\"full_width_half_max\\\":0.2},{\\\"name\\\":\\\"ETM_B6\\\",\\\"common_name\\\":\\\"lwir\\\",\\\"description\\\":\\\"Long-wave\n        infrared (Enhanced Thematic Mapper Plus)\\\",\\\"center_wavelength\\\":11.34,\\\"full_width_half_max\\\":2.05},{\\\"name\\\":\\\"ETM_B7\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"Short-wave\n        infrared (Enhanced Thematic Mapper Plus)\\\",\\\"center_wavelength\\\":2.2,\\\"full_width_half_max\\\":0.28},{\\\"name\\\":\\\"OLI_B1\\\",\\\"common_name\\\":\\\"coastal\\\",\\\"description\\\":\\\"Coastal/Aerosol\n        (Operational Land Imager)\\\",\\\"center_wavelength\\\":0.44,\\\"full_width_half_max\\\":0.02},{\\\"name\\\":\\\"OLI_B2\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Visible\n        blue (Operational Land Imager)\\\",\\\"center_wavelength\\\":0.48,\\\"full_width_half_max\\\":0.06},{\\\"name\\\":\\\"OLI_B3\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Visible\n        green (Operational Land Imager)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.06},{\\\"name\\\":\\\"OLI_B4\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Visible\n        red (Operational Land Imager)\\\",\\\"center_wavelength\\\":0.65,\\\"full_width_half_max\\\":0.04},{\\\"name\\\":\\\"OLI_B5\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"Near\n        infrared (Operational Land Imager)\\\",\\\"center_wavelength\\\":0.87,\\\"full_width_half_max\\\":0.03},{\\\"name\\\":\\\"OLI_B6\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"Short-wave\n        infrared (Operational Land Imager)\\\",\\\"center_wavelength\\\":1.61,\\\"full_width_half_max\\\":0.09},{\\\"name\\\":\\\"OLI_B7\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"Short-wave\n        infrared (Operational Land Imager)\\\",\\\"center_wavelength\\\":2.2,\\\"full_width_half_max\\\":0.19},{\\\"name\\\":\\\"TIRS_B10\\\",\\\"common_name\\\":\\\"lwir11\\\",\\\"description\\\":\\\"Long-wave\n        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\n        Level-2A\\\",\\\"description\\\":\\\"Global Sentinel-2 data from the Multispectral\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Aerosol optical\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Blue (band 2) -\n        10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Coastal aerosol\n        (band 1) - 60m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"coastal\\\",\\\"common_name\\\":\\\"coastal\\\",\\\"description\\\":\\\"Coastal\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Green (band 3)\n        - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"NIR 1 (band 8)\n        - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"nir\\\",\\\"common_name\\\":\\\"nir\\\",\\\"description\\\":\\\"NIR\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"NIR 2 (band 8A)\n        - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"nir08\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"NIR\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"NIR 3 (band 9)\n        - 60m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"nir09\\\",\\\"common_name\\\":\\\"nir09\\\",\\\"description\\\":\\\"NIR\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Red (band 4) -\n        10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Red edge 1 (band\n        5) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"rededge1\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Red edge 2 (band\n        6) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"rededge2\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Red edge 3 (band\n        7) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"rededge3\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Scene classification\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"SWIR 1 (band 11)\n        - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"swir16\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"SWIR\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"SWIR 2 (band 12)\n        - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"swir22\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"SWIR\n        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\n        image\\\",\\\"roles\\\":[\\\"thumbnail\\\"]},\\\"tileinfo_metadata\\\":{\\\"type\\\":\\\"application/json\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"visual\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"True color image\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (band 4)\\\",\\\"center_wavelength\\\":0.665,\\\"full_width_half_max\\\":0.038},{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (band 3)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.045},{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (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;\n        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\n        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\n        (band 2) - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (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\n        aerosol (band 1) - 60m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"coastal\\\",\\\"common_name\\\":\\\"coastal\\\",\\\"description\\\":\\\"Coastal\n        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\n        (band 3) - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (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\n        1 (band 8) - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"nir\\\",\\\"common_name\\\":\\\"nir\\\",\\\"description\\\":\\\"NIR\n        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\n        2 (band 8A) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"nir08\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"NIR\n        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\n        3 (band 9) - 60m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"nir09\\\",\\\"common_name\\\":\\\"nir09\\\",\\\"description\\\":\\\"NIR\n        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\n        (band 4) - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (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\n        edge 1 (band 5) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"rededge1\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        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\n        edge 2 (band 6) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"rededge2\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        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\n        edge 3 (band 7) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"rededge3\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        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\n        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\n        1 (band 11) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"swir16\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"SWIR\n        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\n        2 (band 12) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"swir22\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"SWIR\n        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\n        color image\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (band 4)\\\",\\\"center_wavelength\\\":0.665,\\\"full_width_half_max\\\":0.038},{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (band 3)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.045},{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (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\n        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\n        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\n        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\n        aerosol (band 1)\\\",\\\"center_wavelength\\\":0.443,\\\"full_width_half_max\\\":0.027},{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (band 2)\\\",\\\"center_wavelength\\\":0.49,\\\"full_width_half_max\\\":0.098},{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (band 3)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.045},{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (band 4)\\\",\\\"center_wavelength\\\":0.665,\\\"full_width_half_max\\\":0.038},{\\\"name\\\":\\\"rededge1\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 1 (band 5)\\\",\\\"center_wavelength\\\":0.704,\\\"full_width_half_max\\\":0.019},{\\\"name\\\":\\\"rededge2\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 2 (band 6)\\\",\\\"center_wavelength\\\":0.74,\\\"full_width_half_max\\\":0.018},{\\\"name\\\":\\\"rededge3\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 3 (band 7)\\\",\\\"center_wavelength\\\":0.783,\\\"full_width_half_max\\\":0.028},{\\\"name\\\":\\\"nir\\\",\\\"common_name\\\":\\\"nir\\\",\\\"description\\\":\\\"NIR\n        1 (band 8)\\\",\\\"center_wavelength\\\":0.842,\\\"full_width_half_max\\\":0.145},{\\\"name\\\":\\\"nir08\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"NIR\n        2 (band 8A)\\\",\\\"center_wavelength\\\":0.865,\\\"full_width_half_max\\\":0.033},{\\\"name\\\":\\\"nir09\\\",\\\"common_name\\\":\\\"nir09\\\",\\\"description\\\":\\\"NIR\n        3 (band 9)\\\",\\\"center_wavelength\\\":0.945,\\\"full_width_half_max\\\":0.026},{\\\"name\\\":\\\"cirrus\\\",\\\"common_name\\\":\\\"cirrus\\\",\\\"description\\\":\\\"Cirrus\n        (band 10)\\\",\\\"center_wavelength\\\":1.3735,\\\"full_width_half_max\\\":0.075},{\\\"name\\\":\\\"swir16\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"SWIR\n        1 (band 11)\\\",\\\"center_wavelength\\\":1.61,\\\"full_width_half_max\\\":0.143},{\\\"name\\\":\\\"swir22\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"SWIR\n        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\n        Level-1C\\\",\\\"description\\\":\\\"Global Sentinel-2 data from the Multispectral\n        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\n        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\n        (band 2) - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (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\n        (band 10) - 60m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"cirrus\\\",\\\"common_name\\\":\\\"cirrus\\\",\\\"description\\\":\\\"Cirrus\n        (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\n        aerosol (band 1) - 60m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"coastal\\\",\\\"common_name\\\":\\\"coastal\\\",\\\"description\\\":\\\"Coastal\n        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\n        (band 3) - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (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\n        1 (band 8) - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"nir\\\",\\\"common_name\\\":\\\"nir\\\",\\\"description\\\":\\\"NIR\n        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\n        2 (band 8A) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"nir08\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"NIR\n        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\n        3 (band 9) - 60m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"nir09\\\",\\\"common_name\\\":\\\"nir09\\\",\\\"description\\\":\\\"NIR\n        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\n        (band 4) - 10m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (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\n        edge 1 (band 5) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"rededge1\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        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\n        edge 2 (band 6) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"rededge2\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        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\n        edge 3 (band 7) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"rededge3\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        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\n        1 (band 11) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"swir16\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"SWIR\n        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\n        2 (band 12) - 20m\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"swir22\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"SWIR\n        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\n        image\\\",\\\"roles\\\":[\\\"thumbnail\\\"]},\\\"tileinfo_metadata\\\":{\\\"type\\\":\\\"application/json\\\",\\\"roles\\\":[\\\"metadata\\\"]},\\\"visual\\\":{\\\"type\\\":\\\"image/jp2\\\",\\\"title\\\":\\\"True\n        color image\\\",\\\"eo:bands\\\":[{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (band 4)\\\",\\\"center_wavelength\\\":0.665,\\\"full_width_half_max\\\":0.038},{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (band 3)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.045},{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (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\n        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\n        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\n        aerosol (band 1)\\\",\\\"center_wavelength\\\":0.443,\\\"full_width_half_max\\\":0.027},{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (band 2)\\\",\\\"center_wavelength\\\":0.49,\\\"full_width_half_max\\\":0.098},{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (band 3)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.045},{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (band 4)\\\",\\\"center_wavelength\\\":0.665,\\\"full_width_half_max\\\":0.038},{\\\"name\\\":\\\"rededge1\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 1 (band 5)\\\",\\\"center_wavelength\\\":0.704,\\\"full_width_half_max\\\":0.019},{\\\"name\\\":\\\"rededge2\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 2 (band 6)\\\",\\\"center_wavelength\\\":0.74,\\\"full_width_half_max\\\":0.018},{\\\"name\\\":\\\"rededge3\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 3 (band 7)\\\",\\\"center_wavelength\\\":0.783,\\\"full_width_half_max\\\":0.028},{\\\"name\\\":\\\"nir\\\",\\\"common_name\\\":\\\"nir\\\",\\\"description\\\":\\\"NIR\n        1 (band 8)\\\",\\\"center_wavelength\\\":0.842,\\\"full_width_half_max\\\":0.145},{\\\"name\\\":\\\"nir08\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"NIR\n        2 (band 8A)\\\",\\\"center_wavelength\\\":0.865,\\\"full_width_half_max\\\":0.033},{\\\"name\\\":\\\"nir09\\\",\\\"common_name\\\":\\\"nir09\\\",\\\"description\\\":\\\"NIR\n        3 (band 9)\\\",\\\"center_wavelength\\\":0.945,\\\"full_width_half_max\\\":0.026},{\\\"name\\\":\\\"cirrus\\\",\\\"common_name\\\":\\\"cirrus\\\",\\\"description\\\":\\\"Cirrus\n        (band 10)\\\",\\\"center_wavelength\\\":1.3735,\\\"full_width_half_max\\\":0.075},{\\\"name\\\":\\\"swir16\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"SWIR\n        1 (band 11)\\\",\\\"center_wavelength\\\":1.61,\\\"full_width_half_max\\\":0.143},{\\\"name\\\":\\\"swir22\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"SWIR\n        2 (band 12)\\\",\\\"center_wavelength\\\":2.19,\\\"full_width_half_max\\\":0.242}]}},{\\\"type\\\":\\\"Collection\\\",\\\"id\\\":\\\"sentinel-2-c1-l2a\\\",\\\"title\\\":\\\"Sentinel-2\n        Collection 1 Level-2A\\\",\\\"description\\\":\\\"Sentinel-2 Collection 1 Level-2A,\n        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\n        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;\n        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;\n        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;\n        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;\n        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;\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"SWIR 2.2\\u03BCm\n        - 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;\n        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;\n        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;\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"SWIR 1.6\\u03BCm\n        - 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;\n        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;\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Scene classification\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"title\\\":\\\"Aerosol optical\n        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;\n        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;\n        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;\n        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;\n        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;\n        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\n        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\n        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\n        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\n        aerosol (band 1)\\\",\\\"center_wavelength\\\":0.443,\\\"full_width_half_max\\\":0.027},{\\\"name\\\":\\\"blue\\\",\\\"common_name\\\":\\\"blue\\\",\\\"description\\\":\\\"Blue\n        (band 2)\\\",\\\"center_wavelength\\\":0.49,\\\"full_width_half_max\\\":0.098},{\\\"name\\\":\\\"green\\\",\\\"common_name\\\":\\\"green\\\",\\\"description\\\":\\\"Green\n        (band 3)\\\",\\\"center_wavelength\\\":0.56,\\\"full_width_half_max\\\":0.045},{\\\"name\\\":\\\"red\\\",\\\"common_name\\\":\\\"red\\\",\\\"description\\\":\\\"Red\n        (band 4)\\\",\\\"center_wavelength\\\":0.665,\\\"full_width_half_max\\\":0.038},{\\\"name\\\":\\\"rededge1\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 1 (band 5)\\\",\\\"center_wavelength\\\":0.704,\\\"full_width_half_max\\\":0.019},{\\\"name\\\":\\\"rededge2\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 2 (band 6)\\\",\\\"center_wavelength\\\":0.74,\\\"full_width_half_max\\\":0.018},{\\\"name\\\":\\\"rededge3\\\",\\\"common_name\\\":\\\"rededge\\\",\\\"description\\\":\\\"Red\n        edge 3 (band 7)\\\",\\\"center_wavelength\\\":0.783,\\\"full_width_half_max\\\":0.028},{\\\"name\\\":\\\"nir\\\",\\\"common_name\\\":\\\"nir\\\",\\\"description\\\":\\\"NIR\n        1 (band 8)\\\",\\\"center_wavelength\\\":0.842,\\\"full_width_half_max\\\":0.145},{\\\"name\\\":\\\"nir08\\\",\\\"common_name\\\":\\\"nir08\\\",\\\"description\\\":\\\"NIR\n        2 (band 8A)\\\",\\\"center_wavelength\\\":0.865,\\\"full_width_half_max\\\":0.033},{\\\"name\\\":\\\"nir09\\\",\\\"common_name\\\":\\\"nir09\\\",\\\"description\\\":\\\"NIR\n        3 (band 9)\\\",\\\"center_wavelength\\\":0.945,\\\"full_width_half_max\\\":0.026},{\\\"name\\\":\\\"cirrus\\\",\\\"common_name\\\":\\\"cirrus\\\",\\\"description\\\":\\\"Cirrus\n        (band 10)\\\",\\\"center_wavelength\\\":1.3735,\\\"full_width_half_max\\\":0.075},{\\\"name\\\":\\\"swir16\\\",\\\"common_name\\\":\\\"swir16\\\",\\\"description\\\":\\\"SWIR\n        1 (band 11)\\\",\\\"center_wavelength\\\":1.61,\\\"full_width_half_max\\\":0.143},{\\\"name\\\":\\\"swir22\\\",\\\"common_name\\\":\\\"swir22\\\",\\\"description\\\":\\\"SWIR\n        2 (band 12)\\\",\\\"center_wavelength\\\":2.19,\\\"full_width_half_max\\\":0.242}]}},{\\\"id\\\":\\\"sentinel-1-grd\\\",\\\"type\\\":\\\"Collection\\\",\\\"title\\\":\\\"Sentinel-1\n        Level-1C Ground Range Detected (GRD)\\\",\\\"description\\\":\\\"Sentinel-1 is a pair\n        of Synthetic Aperture Radar (SAR) imaging satellites launched in 2014 and\n        2016 by the European Space Agency (ESA). Their 6 day revisit cycle and ability\n        to observe through clouds makes this dataset perfect for sea and land monitoring,\n        emergency response due to environmental disasters, and economic applications.\n        This dataset represents the global Sentinel-1 GRD archive, from beginning\n        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\n        Ground Range Detected (GRD) Technical Guide\\\"},{\\\"rel\\\":\\\"license\\\",\\\"href\\\":\\\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\\\",\\\"title\\\":\\\"Copernicus\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"HH\n        Data\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\"}]},\\\"hv\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"HV\n        Data\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\"}]},\\\"vh\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"VH\n        Data\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\"}]},\\\"vv\\\":{\\\"type\\\":\\\"image/tiff;\n        application=geotiff; profile=cloud-optimized\\\",\\\"roles\\\":[\\\"data\\\"],\\\"title\\\":\\\"VV\n        Data\\\",\\\"raster:bands\\\":[{\\\"nodata\\\":0,\\\"data_type\\\":\\\"uint16\\\"}]},\\\"thumbnail\\\":{\\\"type\\\":\\\"image/png\\\",\\\"roles\\\":[\\\"thumbnail\\\"],\\\"title\\\":\\\"Thumbnail\n        Image\\\"},\\\"safe-manifest\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"SAFE\n        Manifest File\\\"},\\\"schema-noise-hh\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"HH\n        Noise Schema\\\"},\\\"schema-noise-hv\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"HV\n        Noise Schema\\\"},\\\"schema-noise-vh\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"VH\n        Noise Schema\\\"},\\\"schema-noise-vv\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"VV\n        Noise Schema\\\"},\\\"schema-product-hh\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"HH\n        Product Schema\\\"},\\\"schema-product-hv\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"HV\n        Product Schema\\\"},\\\"schema-product-vh\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"VH\n        Product Schema\\\"},\\\"schema-product-vv\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"VV\n        Product Schema\\\"},\\\"schema-calibration-hh\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"HH\n        Calibration Schema\\\"},\\\"schema-calibration-hv\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"HV\n        Calibration Schema\\\"},\\\"schema-calibration-vh\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"VH\n        Calibration Schema\\\"},\\\"schema-calibration-vv\\\":{\\\"type\\\":\\\"application/xml\\\",\\\"roles\\\":[\\\"metadata\\\"],\\\"title\\\":\\\"VV\n        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}}\"\n    headers:\n      Connection:\n      - keep-alive\n      Content-Encoding:\n      - gzip\n      Content-Length:\n      - '8117'\n      Content-Type:\n      - application/json; charset=utf-8\n      Date:\n      - Thu, 31 Jul 2025 15:08:19 GMT\n      Via:\n      - 1.1 cf1928ef9a9a7bb589a35ead31bcb4ea.cloudfront.net (CloudFront)\n      X-Amz-Cf-Id:\n      - ZTkGB6Ng9VYUDwjd2TcoxSWJqDCQyuceGxj107YwnNyBi5-Oh5IXMg==\n      X-Amz-Cf-Pop:\n      - DEN52-C1\n      X-Amzn-Trace-Id:\n      - Root=1-688b86e3-0cfb4c983b5ba3080af1dddd;Parent=07d02c89952b798e;Sampled=0;Lineage=1:9e2884e9:0\n      X-Cache:\n      - Miss from cloudfront\n      access-control-allow-origin:\n      - '*'\n      etag:\n      - W/\"141dd-9fMv6YJnvxPn9adSQK466CnIbE0\"\n      x-amz-apigw-id:\n      - OlIDqH4bvHcEQ-Q=\n      x-amzn-Remapped-content-length:\n      - '82397'\n      x-amzn-RequestId:\n      - 68a564bc-53b2-46df-a79a-bf4594a1ffe1\n      x-powered-by:\n      - Express\n    status:\n      code: 200\n      message: OK\nversion: 1\n"
  },
  {
    "path": "tests/cassettes/test_collection_search/TestCollectionSearch.test_q_results.yaml",
    "content": "interactions:\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://emc.spacebel.be/collections?limit=10&q=%22monthly+cloudless+mosaics%22\n  response:\n    body:\n      string: \"{\\n  \\\"collections\\\": [{\\n    \\\"extent\\\": {\\n      \\\"spatial\\\": {\\\"bbox\\\":\n        [[\\n        -180,\\n        -90,\\n        180,\\n        90\\n      ]]},\\n      \\\"temporal\\\":\n        {\\\"interval\\\": [[\\n        null,\\n        null\\n      ]]}\\n    },\\n    \\\"stac_version\\\":\n        \\\"1.0.0\\\",\\n    \\\"keywords\\\": [\\n      \\\"Forestry\\\",\\n      \\\"Forest Management\\\"\\n\n        \\   ],\\n    \\\"created\\\": \\\"2023-09-05T00:00:00.00Z\\\",\\n    \\\"description\\\":\n        \\\"Creating monthly cloudless mosaics of images is invaluable for forest management\n        as they provide a consistent and clear view of the forest canopy throughout\n        the year. These mosaics enable forest managers to track seasonal changes,\n        identify potential threats like pest infestations or wildfires, and make informed\n        decisions regarding tree health and growth. Additionally, by having a reliable\n        historical record of forest conditions, these mosaics assist in long-term\n        planning and sustainable resource management. Furthermore, the accessibility\n        and accuracy of monthly cloudless mosaics enhance collaboration among stakeholders,\n        allowing suitable policy development.\\\",\\n    \\\"type\\\": \\\"Collection\\\",\\n\n        \\   \\\"title\\\": \\\"Cloudless True Color Data\\\",\\n    \\\"license\\\": \\\"various\\\",\\n\n        \\   \\\"assets\\\": {\\n      \\\"search\\\": {\\n        \\\"roles\\\": [\\\"search\\\"],\\n\n        \\       \\\"href\\\": \\\"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=F-TCC\\\",\\n\n        \\       \\\"type\\\": \\\"text/html\\\",\\n        \\\"title\\\": \\\"Search client\\\"\\n      },\\n\n        \\     \\\"metadata_ogc_17_069r3\\\": {\\n        \\\"roles\\\": [\\\"metadata\\\"],\\n        \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/F-TCC\\\",\\n        \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\       \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n      },\\n      \\\"metadata_iso_19139\\\":\n        {\\n        \\\"roles\\\": [\\\"metadata\\\"],\\n        \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-TCC?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\       \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n        \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\     },\\n      \\\"metadata_iso_19139_2\\\": {\\n        \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\       \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-TCC?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\       \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n        \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\     },\\n      \\\"metadata_dif_10\\\": {\\n        \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\       \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-TCC?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\       \\\"title\\\": \\\"DIF-10 metadata\\\",\\n        \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\     },\\n      \\\"metadata_iso_19115_3\\\": {\\n        \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\       \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-TCC?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\       \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n        \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\     },\\n      \\\"metadata_ogc_17_084r1\\\": {\\n        \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\       \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-TCC?mode=owc\\\",\\n\n        \\       \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n        \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\     },\\n      \\\"metadata_html\\\": {\\n        \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\       \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-TCC?httpAccept=text/html\\\",\\n\n        \\       \\\"title\\\": \\\"HTML\\\",\\n        \\\"type\\\": \\\"text/html\\\"\\n      },\\n\n        \\     \\\"quicklook\\\": {\\n        \\\"roles\\\": [\\\"overview\\\"],\\n        \\\"href\\\":\n        \\\"https://eovoc.spacebel.be/images/tcc.png\\\",\\n        \\\"type\\\": \\\"image/png\\\",\\n\n        \\       \\\"title\\\": \\\"graphic overview\\\"\\n      }\\n    },\\n    \\\"links\\\": [\\n\n        \\     {\\n        \\\"rel\\\": \\\"self\\\",\\n        \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-TCC\\\",\\n\n        \\       \\\"type\\\": \\\"application/json\\\"\\n      },\\n      {\\n        \\\"rel\\\":\n        \\\"root\\\",\\n        \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n        \\\"type\\\":\n        \\\"application/json\\\",\\n        \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n      },\\n\n        \\     {\\n        \\\"rel\\\": \\\"parent\\\",\\n        \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n\n        \\       \\\"title\\\": \\\"collections\\\",\\n        \\\"type\\\": \\\"application/json\\\"\\n\n        \\     },\\n      {\\n        \\\"rel\\\": \\\"items\\\",\\n        \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-TCC/items?httpAccept=application/geo%2Bjson;profile=https://stacspec.org\\\",\\n\n        \\       \\\"type\\\": \\\"application/geo+json\\\",\\n        \\\"title\\\": \\\"Datasets\n        search for the series F-TCC\\\"\\n      },\\n      {\\n        \\\"rel\\\": \\\"http://www.opengis.net/def/rel/ogc/1.0/queryables\\\",\\n\n        \\       \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-TCC/queryables\\\",\\n\n        \\       \\\"type\\\": \\\"application/schema+json\\\",\\n        \\\"title\\\": \\\"Queryables\n        for F-TCC\\\"\\n      },\\n      {\\n        \\\"rel\\\": \\\"search\\\",\\n        \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/series/items/F-TCC/api\\\",\\n        \\\"type\\\":\n        \\\"application/opensearchdescription+xml\\\",\\n        \\\"title\\\": \\\"OpenSearch\n        Description Document\\\"\\n      },\\n      {\\n        \\\"rel\\\": \\\"ordering\\\",\\n\n        \\       \\\"href\\\": \\\"https://emc.spacebel.be/ordering?collection=F-TCC\\\",\\n\n        \\       \\\"type\\\": \\\"text/html\\\",\\n        \\\"title\\\": \\\"Order F-TCC Product\\\"\\n\n        \\     },\\n      {\\n        \\\"rel\\\": \\\"describedby\\\",\\n        \\\"href\\\": \\\"https://eovoc.spacebel.be/images/F-TCC_Brochure_vs3.pdf\\\",\\n\n        \\       \\\"type\\\": \\\"application/pdf\\\",\\n        \\\"title\\\": \\\"F-TCC Brochure\n        - F-TCC Product Description\\\"\\n      },\\n      {\\n        \\\"rel\\\": \\\"alternate\\\",\\n\n        \\       \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-TCC?httpAccept=application/atom%2Bxml\\\",\\n\n        \\       \\\"type\\\": \\\"application/atom+xml\\\",\\n        \\\"title\\\": \\\"Atom format\\\"\\n\n        \\     },\\n      {\\n        \\\"rel\\\": \\\"alternate\\\",\\n        \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-TCC?httpAccept=application/xml\\\",\\n\n        \\       \\\"type\\\": \\\"application/xml\\\",\\n        \\\"title\\\": \\\"Dublin Core metadata\\\"\\n\n        \\     },\\n      {\\n        \\\"rel\\\": \\\"alternate\\\",\\n        \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-TCC?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\       \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\       \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n      },\\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\n        \\       \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\       \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n      },\\n      {\\n\n        \\       \\\"rel\\\": \\\"alternate\\\",\\n        \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-TCC?httpAccept=application/rdf%2Bxml;profile=https://schema.org\\\",\\n\n        \\       \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\       \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n      },\\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\n        \\       \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\       \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n      },\\n      {\\n\n        \\       \\\"rel\\\": \\\"alternate\\\",\\n        \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-TCC?httpAccept=text/turtle;profile=https://schema.org\\\",\\n\n        \\       \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n        \\\"title\\\":\n        \\\"Turtle (schema.org) metadata\\\"\\n      },\\n      {\\n        \\\"rel\\\": \\\"alternate\\\",\\n\n        \\       \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-TCC?httpAccept=text/turtle;profile=http://data.europa.eu/930/\\\",\\n\n        \\       \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\       \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n      },\\n      {\\n        \\\"rel\\\":\n        \\\"related\\\",\\n        \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/Spacebel\n        SA\\\",\\n        \\\"title\\\": \\\"More collections for Spacebel SA\\\"\\n      }\\n\n        \\   ],\\n    \\\"id\\\": \\\"F-TCC\\\",\\n    \\\"updated\\\": \\\"2023-09-05T00:00:00.00Z\\\",\\n\n        \\   \\\"providers\\\": [\\n      {\\n        \\\"roles\\\": [\\\"producer\\\"],\\n        \\\"name\\\":\n        \\\"Spacebel SA\\\",\\n        \\\"url\\\": \\\"http://www.spacebel.com\\\"\\n      },\\n\n        \\     {\\n        \\\"roles\\\": [\\\"host\\\"],\\n        \\\"name\\\": \\\"FedEO Clearinghouse\\\",\\n\n        \\       \\\"url\\\": \\\"https://emc.spacebel.be/readme.html\\\"\\n      }\\n    ]\\n\n        \\ }],\\n  \\\"numberReturned\\\": 1,\\n  \\\"links\\\": [\\n    {\\n      \\\"rel\\\": \\\"self\\\",\\n\n        \\     \\\"href\\\": \\\"https://emc.spacebel.be/collections?limit=10&q=%22monthly+cloudless+mosaics%22\\\",\\n\n        \\     \\\"type\\\": \\\"application/json\\\",\\n      \\\"title\\\": \\\"This document\\\"\\n\n        \\   },\\n    {\\n      \\\"rel\\\": \\\"http://www.opengis.net/def/rel/ogc/1.0/queryables\\\",\\n\n        \\     \\\"href\\\": \\\"https://emc.spacebel.be/collections/queryables\\\",\\n      \\\"type\\\":\n        \\\"application/schema+json\\\",\\n      \\\"title\\\": \\\"Queryables for collection\n        search\\\"\\n    }\\n  ],\\n  \\\"numberMatched\\\": 1\\n}\"\n    headers:\n      Access-Control-Allow-Headers:\n      - X-PINGOTHER, Content-Type, Authorization, Accept\n      Access-Control-Allow-Methods:\n      - POST,GET,PUT,HEAD,OPTIONS,DELETE\n      Access-Control-Allow-Origin:\n      - '*'\n      Cache-Control:\n      - no-cache, no-store, max-age=0, must-revalidate\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '8149'\n      Content-Type:\n      - application/json;charset=UTF-8\n      Date:\n      - Thu, 31 Jul 2025 15:08:08 GMT\n      Expires:\n      - '0'\n      Pragma:\n      - no-cache\n      Server:\n      - openresty\n      Strict-Transport-Security:\n      - max-age=31536000 ; includeSubDomains\n      X-Content-Type-Options:\n      - nosniff\n      X-Frame-Options:\n      - DENY\n      X-Served-By:\n      - emc.spacebel.be\n      X-XSS-Protection:\n      - 1; mode=block\n    status:\n      code: 200\n      message: ''\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://emc.spacebel.be/collections?limit=10&q=%22monthly+cloudless+mosaics%22\n  response:\n    body:\n      string: \"{\\n  \\\"collections\\\": [{\\n    \\\"extent\\\": {\\n      \\\"spatial\\\": {\\\"bbox\\\":\n        [[\\n        -180,\\n        -90,\\n        180,\\n        90\\n      ]]},\\n      \\\"temporal\\\":\n        {\\\"interval\\\": [[\\n        null,\\n        null\\n      ]]}\\n    },\\n    \\\"stac_version\\\":\n        \\\"1.0.0\\\",\\n    \\\"keywords\\\": [\\n      \\\"Forestry\\\",\\n      \\\"Forest Management\\\"\\n\n        \\   ],\\n    \\\"created\\\": \\\"2023-09-05T00:00:00.00Z\\\",\\n    \\\"description\\\":\n        \\\"Creating monthly cloudless mosaics of images is invaluable for forest management\n        as they provide a consistent and clear view of the forest canopy throughout\n        the year. These mosaics enable forest managers to track seasonal changes,\n        identify potential threats like pest infestations or wildfires, and make informed\n        decisions regarding tree health and growth. Additionally, by having a reliable\n        historical record of forest conditions, these mosaics assist in long-term\n        planning and sustainable resource management. Furthermore, the accessibility\n        and accuracy of monthly cloudless mosaics enhance collaboration among stakeholders,\n        allowing suitable policy development.\\\",\\n    \\\"type\\\": \\\"Collection\\\",\\n\n        \\   \\\"title\\\": \\\"Cloudless True Color Data\\\",\\n    \\\"license\\\": \\\"various\\\",\\n\n        \\   \\\"assets\\\": {\\n      \\\"search\\\": {\\n        \\\"roles\\\": [\\\"search\\\"],\\n\n        \\       \\\"href\\\": \\\"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=F-TCC\\\",\\n\n        \\       \\\"type\\\": \\\"text/html\\\",\\n        \\\"title\\\": \\\"Search client\\\"\\n      },\\n\n        \\     \\\"metadata_ogc_17_069r3\\\": {\\n        \\\"roles\\\": [\\\"metadata\\\"],\\n        \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/F-TCC\\\",\\n        \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\       \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n      },\\n      \\\"metadata_iso_19139\\\":\n        {\\n        \\\"roles\\\": [\\\"metadata\\\"],\\n        \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-TCC?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\       \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n        \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\     },\\n      \\\"metadata_iso_19139_2\\\": {\\n        \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\       \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-TCC?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\       \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n        \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\     },\\n      \\\"metadata_dif_10\\\": {\\n        \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\       \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-TCC?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\       \\\"title\\\": \\\"DIF-10 metadata\\\",\\n        \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\     },\\n      \\\"metadata_iso_19115_3\\\": {\\n        \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\       \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-TCC?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\       \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n        \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\     },\\n      \\\"metadata_ogc_17_084r1\\\": {\\n        \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\       \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-TCC?mode=owc\\\",\\n\n        \\       \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n        \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\     },\\n      \\\"metadata_html\\\": {\\n        \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\       \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-TCC?httpAccept=text/html\\\",\\n\n        \\       \\\"title\\\": \\\"HTML\\\",\\n        \\\"type\\\": \\\"text/html\\\"\\n      },\\n\n        \\     \\\"quicklook\\\": {\\n        \\\"roles\\\": [\\\"overview\\\"],\\n        \\\"href\\\":\n        \\\"https://eovoc.spacebel.be/images/tcc.png\\\",\\n        \\\"type\\\": \\\"image/png\\\",\\n\n        \\       \\\"title\\\": \\\"graphic overview\\\"\\n      }\\n    },\\n    \\\"links\\\": [\\n\n        \\     {\\n        \\\"rel\\\": \\\"self\\\",\\n        \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-TCC\\\",\\n\n        \\       \\\"type\\\": \\\"application/json\\\"\\n      },\\n      {\\n        \\\"rel\\\":\n        \\\"root\\\",\\n        \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n        \\\"type\\\":\n        \\\"application/json\\\",\\n        \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n      },\\n\n        \\     {\\n        \\\"rel\\\": \\\"parent\\\",\\n        \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n\n        \\       \\\"title\\\": \\\"collections\\\",\\n        \\\"type\\\": \\\"application/json\\\"\\n\n        \\     },\\n      {\\n        \\\"rel\\\": \\\"items\\\",\\n        \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-TCC/items?httpAccept=application/geo%2Bjson;profile=https://stacspec.org\\\",\\n\n        \\       \\\"type\\\": \\\"application/geo+json\\\",\\n        \\\"title\\\": \\\"Datasets\n        search for the series F-TCC\\\"\\n      },\\n      {\\n        \\\"rel\\\": \\\"http://www.opengis.net/def/rel/ogc/1.0/queryables\\\",\\n\n        \\       \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-TCC/queryables\\\",\\n\n        \\       \\\"type\\\": \\\"application/schema+json\\\",\\n        \\\"title\\\": \\\"Queryables\n        for F-TCC\\\"\\n      },\\n      {\\n        \\\"rel\\\": \\\"search\\\",\\n        \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/series/items/F-TCC/api\\\",\\n        \\\"type\\\":\n        \\\"application/opensearchdescription+xml\\\",\\n        \\\"title\\\": \\\"OpenSearch\n        Description Document\\\"\\n      },\\n      {\\n        \\\"rel\\\": \\\"ordering\\\",\\n\n        \\       \\\"href\\\": \\\"https://emc.spacebel.be/ordering?collection=F-TCC\\\",\\n\n        \\       \\\"type\\\": \\\"text/html\\\",\\n        \\\"title\\\": \\\"Order F-TCC Product\\\"\\n\n        \\     },\\n      {\\n        \\\"rel\\\": \\\"describedby\\\",\\n        \\\"href\\\": \\\"https://eovoc.spacebel.be/images/F-TCC_Brochure_vs3.pdf\\\",\\n\n        \\       \\\"type\\\": \\\"application/pdf\\\",\\n        \\\"title\\\": \\\"F-TCC Brochure\n        - F-TCC Product Description\\\"\\n      },\\n      {\\n        \\\"rel\\\": \\\"alternate\\\",\\n\n        \\       \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-TCC?httpAccept=application/atom%2Bxml\\\",\\n\n        \\       \\\"type\\\": \\\"application/atom+xml\\\",\\n        \\\"title\\\": \\\"Atom format\\\"\\n\n        \\     },\\n      {\\n        \\\"rel\\\": \\\"alternate\\\",\\n        \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-TCC?httpAccept=application/xml\\\",\\n\n        \\       \\\"type\\\": \\\"application/xml\\\",\\n        \\\"title\\\": \\\"Dublin Core metadata\\\"\\n\n        \\     },\\n      {\\n        \\\"rel\\\": \\\"alternate\\\",\\n        \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-TCC?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\       \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\       \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n      },\\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\n        \\       \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\       \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n      },\\n      {\\n\n        \\       \\\"rel\\\": \\\"alternate\\\",\\n        \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-TCC?httpAccept=application/rdf%2Bxml;profile=https://schema.org\\\",\\n\n        \\       \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\       \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n      },\\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\n        \\       \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\       \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n      },\\n      {\\n\n        \\       \\\"rel\\\": \\\"alternate\\\",\\n        \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-TCC?httpAccept=text/turtle;profile=https://schema.org\\\",\\n\n        \\       \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n        \\\"title\\\":\n        \\\"Turtle (schema.org) metadata\\\"\\n      },\\n      {\\n        \\\"rel\\\": \\\"alternate\\\",\\n\n        \\       \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-TCC?httpAccept=text/turtle;profile=http://data.europa.eu/930/\\\",\\n\n        \\       \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\       \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n      },\\n      {\\n        \\\"rel\\\":\n        \\\"related\\\",\\n        \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/Spacebel\n        SA\\\",\\n        \\\"title\\\": \\\"More collections for Spacebel SA\\\"\\n      }\\n\n        \\   ],\\n    \\\"id\\\": \\\"F-TCC\\\",\\n    \\\"updated\\\": \\\"2023-09-05T00:00:00.00Z\\\",\\n\n        \\   \\\"providers\\\": [\\n      {\\n        \\\"roles\\\": [\\\"producer\\\"],\\n        \\\"name\\\":\n        \\\"Spacebel SA\\\",\\n        \\\"url\\\": \\\"http://www.spacebel.com\\\"\\n      },\\n\n        \\     {\\n        \\\"roles\\\": [\\\"host\\\"],\\n        \\\"name\\\": \\\"FedEO Clearinghouse\\\",\\n\n        \\       \\\"url\\\": \\\"https://emc.spacebel.be/readme.html\\\"\\n      }\\n    ]\\n\n        \\ }],\\n  \\\"numberReturned\\\": 1,\\n  \\\"links\\\": [\\n    {\\n      \\\"rel\\\": \\\"self\\\",\\n\n        \\     \\\"href\\\": \\\"https://emc.spacebel.be/collections?limit=10&q=%22monthly+cloudless+mosaics%22\\\",\\n\n        \\     \\\"type\\\": \\\"application/json\\\",\\n      \\\"title\\\": \\\"This document\\\"\\n\n        \\   },\\n    {\\n      \\\"rel\\\": \\\"http://www.opengis.net/def/rel/ogc/1.0/queryables\\\",\\n\n        \\     \\\"href\\\": \\\"https://emc.spacebel.be/collections/queryables\\\",\\n      \\\"type\\\":\n        \\\"application/schema+json\\\",\\n      \\\"title\\\": \\\"Queryables for collection\n        search\\\"\\n    }\\n  ],\\n  \\\"numberMatched\\\": 1\\n}\"\n    headers:\n      Access-Control-Allow-Headers:\n      - X-PINGOTHER, Content-Type, Authorization, Accept\n      Access-Control-Allow-Methods:\n      - POST,GET,PUT,HEAD,OPTIONS,DELETE\n      Access-Control-Allow-Origin:\n      - '*'\n      Cache-Control:\n      - no-cache, no-store, max-age=0, must-revalidate\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '8149'\n      Content-Type:\n      - application/json;charset=UTF-8\n      Date:\n      - Thu, 31 Jul 2025 15:08:08 GMT\n      Expires:\n      - '0'\n      Pragma:\n      - no-cache\n      Server:\n      - openresty\n      Strict-Transport-Security:\n      - max-age=31536000 ; includeSubDomains\n      X-Content-Type-Options:\n      - nosniff\n      X-Frame-Options:\n      - DENY\n      X-Served-By:\n      - emc.spacebel.be\n      X-XSS-Protection:\n      - 1; mode=block\n    status:\n      code: 200\n      message: ''\nversion: 1\n"
  },
  {
    "path": "tests/cassettes/test_collection_search/TestCollectionSearch.test_result_paging.yaml",
    "content": "interactions:\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://emc.spacebel.be/collections?limit=10&q=sentinel\n  response:\n    body:\n      string: \"{\\n  \\\"collections\\\": [\\n    {\\n      \\\"extent\\\": {\\n        \\\"spatial\\\":\n        {\\\"bbox\\\": [[\\n          -180,\\n          -90,\\n          180,\\n          90\\n\n        \\       ]]},\\n        \\\"temporal\\\": {\\\"interval\\\": [[\\n          \\\"2021-10-09T00:00:00.000Z\\\",\\n\n        \\         null\\n        ]]}\\n      },\\n      \\\"stac_version\\\": \\\"1.0.0\\\",\\n\n        \\     \\\"keywords\\\": [\\n        \\\"FedEO\\\",\\n        \\\"SCIHUB\\\",\\n        \\\"DIF10\\\",\\n\n        \\       \\\"Sea Surface Topography\\\",\\n        \\\"EARTH SCIENCE > OCEANS > SEA\n        SURFACE TOPOGRAPHY\\\",\\n        \\\"Radar Altimeters\\\",\\n        \\\"Radiometers\\\",\\n\n        \\       \\\"Sentinel-6\\\",\\n        \\\"POSEIDON-4\\\",\\n        \\\"AMR-C\\\"\\n      ],\\n\n        \\     \\\"created\\\": \\\"2024-01-02T00:00:00.00Z\\\",\\n      \\\"description\\\": \\\"Copernicus\n        Sentinel-6 Michael Freilich is an Earth Observation satellite mission developed\n        to provide enhanced continuity to the very stable time series of mean sea\n        level measurements and ocean sea state that started in 1992, with the TOPEX/Poseidon\n        mission, then continued by the Jason-1, Jason-2 and Jason-3 satellite missions.\\\",\\n\n        \\     \\\"type\\\": \\\"Collection\\\",\\n      \\\"title\\\": \\\"Sentinel-6 Products\\\",\\n\n        \\     \\\"license\\\": \\\"various\\\",\\n      \\\"assets\\\": {\\n        \\\"search\\\":\n        {\\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\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Search client\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_069r3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        }\\n\n        \\     },\\n      \\\"links\\\": [\\n        {\\n          \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"root\\\",\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\": \\\"application/json\\\",\\n\n        \\         \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"title\\\":\n        \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/geo+json\\\",\\n          \\\"title\\\": \\\"Datasets\n        search for the series EOP:ESA:Sentinel-6\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"http://www.opengis.net/def/rel/ogc/1.0/queryables\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/EOP:ESA:SCIHUB:S6/queryables\\\",\\n          \\\"type\\\":\n        \\\"application/schema+json\\\",\\n          \\\"title\\\": \\\"Queryables for EOP:ESA:SCIHUB:S6\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"search\\\",\\n          \\\"href\\\":\n        \\\"https://dataspace.copernicus.eu\\\",\\n          \\\"title\\\": \\\"Copernicus Data\n        Space Ecosystem - Copernicus Data Space Ecosystem\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"search\\\",\\n          \\\"href\\\": \\\"https://fedeo.ceos.org/opensearch/description.xml?parentIdentifier=EOP:ESA:SCIHUB:S6\\\",\\n\n        \\         \\\"title\\\": \\\"FedEO Clearinghouse - FedEO Clearinghouse\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"search\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/series/items/EOP:ESA:SCIHUB:S6/api\\\",\\n\n        \\         \\\"type\\\": \\\"application/opensearchdescription+xml\\\",\\n          \\\"title\\\":\n        \\\"OpenSearch Description Document\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://sentinel.esa.int/web/sentinel/missions/sentinel-6\\\",\\n\n        \\         \\\"title\\\": \\\"ESA Sentinel-6 Online\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=text/turtle;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for ESA/ESRIN\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/Sentinel-6\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for Sentinel-6 platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/700b6e99-a527-5819-b283-4656c8832ea0\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for AMR-C instrument\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/5d1512a5-cb97-5e74-8778-35cd65c06936\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for POSEIDON-4 instrument\\\"\\n        }\\n\n        \\     ],\\n      \\\"id\\\": \\\"EOP:ESA:Sentinel-6\\\",\\n      \\\"updated\\\": \\\"2020-11-21T00:00:00.00Z\\\",\\n\n        \\     \\\"providers\\\": [\\n        {\\n          \\\"roles\\\": [\\\"producer\\\"],\\n\n        \\         \\\"name\\\": \\\"ESA/ESRIN\\\"\\n        },\\n        {\\n          \\\"roles\\\":\n        [\\\"host\\\"],\\n          \\\"name\\\": \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\":\n        \\\"https://emc.spacebel.be/readme.html\\\"\\n        }\\n      ],\\n      \\\"summaries\\\":\n        {\\n        \\\"instruments\\\": [\\n          \\\"AMR-C\\\",\\n          \\\"POSEIDON-4\\\"\\n\n        \\       ],\\n        \\\"platform\\\": [\\\"Sentinel-6\\\"]\\n      }\\n    },\\n    {\\n\n        \\     \\\"extent\\\": {\\n        \\\"spatial\\\": {\\\"bbox\\\": [[\\n          -180,\\n\n        \\         -90,\\n          180,\\n          90\\n        ]]},\\n        \\\"temporal\\\":\n        {\\\"interval\\\": [[\\n          \\\"2017-10-13T00:00:00.000Z\\\",\\n          null\\n\n        \\       ]]}\\n      },\\n      \\\"stac_version\\\": \\\"1.0.0\\\",\\n      \\\"keywords\\\":\n        [\\n        \\\"FedEO\\\",\\n        \\\"SCIHUB\\\",\\n        \\\"DIF10\\\",\\n        \\\"Air\n        Quality\\\",\\n        \\\"EARTH SCIENCE > ATMOSPHERE > AIR QUALITY\\\",\\n        \\\"Sentinel-5P\\\",\\n\n        \\       \\\"TROPOMI\\\"\\n      ],\\n      \\\"created\\\": \\\"2018-10-09T00:00:00.00Z\\\",\\n\n        \\     \\\"description\\\": \\\"The Sentinel-5P data offer for the Pre-Operations\n        Open Access Hub consists of Level-1B and Level-2 user products for the TROPOMI\n        instrument.\\\",\\n      \\\"type\\\": \\\"Collection\\\",\\n      \\\"title\\\": \\\"Sentinel-5P\n        Products\\\",\\n      \\\"license\\\": \\\"various\\\",\\n      \\\"assets\\\": {\\n        \\\"search\\\":\n        {\\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\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Search client\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_069r3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        }\\n\n        \\     },\\n      \\\"links\\\": [\\n        {\\n          \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"root\\\",\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\": \\\"application/json\\\",\\n\n        \\         \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"title\\\":\n        \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/geo+json\\\",\\n          \\\"title\\\": \\\"Datasets\n        search for the series EOP:ESA:Sentinel-5P\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"http://www.opengis.net/def/rel/ogc/1.0/queryables\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/EOP:ESA:SCIHUB:S5P/queryables\\\",\\n          \\\"type\\\":\n        \\\"application/schema+json\\\",\\n          \\\"title\\\": \\\"Queryables for EOP:ESA:SCIHUB:S5P\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"search\\\",\\n          \\\"href\\\":\n        \\\"https://dataspace.copernicus.eu\\\",\\n          \\\"title\\\": \\\"Copernicus Data\n        Space Ecosystem - Copernicus Data Space Ecosystem\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"search\\\",\\n          \\\"href\\\": \\\"https://fedeo.ceos.org/opensearch/description.xml?parentIdentifier=EOP:ESA:SCIHUB:S5P\\\",\\n\n        \\         \\\"title\\\": \\\"FedEO Clearinghouse - FedEO Clearinghouse\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"search\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/series/items/EOP:ESA:SCIHUB:S5P/api\\\",\\n\n        \\         \\\"type\\\": \\\"application/opensearchdescription+xml\\\",\\n          \\\"title\\\":\n        \\\"OpenSearch Description Document\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://sentinel.esa.int/web/sentinel/missions/sentinel-5P\\\",\\n\n        \\         \\\"title\\\": \\\"ESA Sentinel-5P Online\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://sentinels.copernicus.eu/web/sentinel/user-guides/sentinel-5p-tropomi\\\",\\n\n        \\         \\\"title\\\": \\\"Sentinel-5P TROPOMI User Guide \\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=text/turtle;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for ESA/ESRIN\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/Sentinel-5P\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for Sentinel-5P platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/09f91afd-c0d2-52a9-9b50-b895a60917fa\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for TROPOMI instrument\\\"\\n        }\\n\n        \\     ],\\n      \\\"id\\\": \\\"EOP:ESA:Sentinel-5P\\\",\\n      \\\"updated\\\": \\\"2017-04-30T00:00:00.00Z\\\",\\n\n        \\     \\\"stac_extensions\\\": [\\\"https://stac-extensions.github.io/processing/v1.2.0/schema.json\\\"],\\n\n        \\     \\\"providers\\\": [\\n        {\\n          \\\"roles\\\": [\\\"producer\\\"],\\n\n        \\         \\\"name\\\": \\\"ESA/ESRIN\\\"\\n        },\\n        {\\n          \\\"roles\\\":\n        [\\\"host\\\"],\\n          \\\"name\\\": \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\":\n        \\\"https://emc.spacebel.be/readme.html\\\"\\n        }\\n      ],\\n      \\\"summaries\\\":\n        {\\n        \\\"instruments\\\": [\\\"TROPOMI\\\"],\\n        \\\"processing:lineage\\\":\n        [\\\"The Sentinel-5 Precursor objectives are to provide operational space-borne\n        observations in support to the operational monitoring of Air Quality, Climate,\n        Ozone and Surface UV. It will provide measurements of Ozone, NO_2, SO_2, Formaldehyde,\n        Aerosol, Carbonmonoxide, Methane, Clouds.\\\"],\\n        \\\"platform\\\": [\\\"Sentinel-5P\\\"]\\n\n        \\     }\\n    },\\n    {\\n      \\\"extent\\\": {\\n        \\\"spatial\\\": {\\\"bbox\\\":\n        [[\\n          -180,\\n          -90,\\n          180,\\n          90\\n        ]]},\\n\n        \\       \\\"temporal\\\": {\\\"interval\\\": [[\\n          \\\"2016-01-01T00:00:00.000Z\\\",\\n\n        \\         null\\n        ]]}\\n      },\\n      \\\"stac_version\\\": \\\"1.0.0\\\",\\n\n        \\     \\\"keywords\\\": [\\n        \\\"MAJA\\\",\\n        \\\"GeoTiff\\\",\\n        \\\"Forestry\\\",\\n\n        \\       \\\"Forest Conservation/Protection\\\",\\n        \\\"Sentinel-2\\\",\\n        \\\"MSI\\\"\\n\n        \\     ],\\n      \\\"created\\\": \\\"2023-09-05T00:00:00.00Z\\\",\\n      \\\"description\\\":\n        \\\"False colour satellite data allows you to upgrade your forest surveys. It\n        provides you with a broader perspective of biotic and abiotic disturbances\n        in real-time. This enables you to make more informed decisions to safeguard\n        the forests. Forestry professionals can utilise false colour imagery to optimise\n        their forestry operations, such as planning and monitoring tree planting,\n        conducting inventory assessments, and identifying areas for habitat restoration.\\\",\\n\n        \\     \\\"type\\\": \\\"Collection\\\",\\n      \\\"title\\\": \\\"False Colour Composites\\\",\\n\n        \\     \\\"license\\\": \\\"various\\\",\\n      \\\"assets\\\": {\\n        \\\"search\\\":\n        {\\n          \\\"roles\\\": [\\\"search\\\"],\\n          \\\"href\\\": \\\"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=F-FCC\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Search client\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_069r3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-FCC\\\",\\n          \\\"type\\\":\n        \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-FCC?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-FCC?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        },\\n\n        \\       \\\"quicklook\\\": {\\n          \\\"roles\\\": [\\\"overview\\\"],\\n          \\\"href\\\":\n        \\\"https://eovoc.spacebel.be/images/fcc.png\\\",\\n          \\\"type\\\": \\\"image/png\\\",\\n\n        \\         \\\"title\\\": \\\"graphic overview\\\"\\n        }\\n      },\\n      \\\"links\\\":\n        [\\n        {\\n          \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-FCC\\\",\\n\n        \\         \\\"type\\\": \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"root\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\",\\n          \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n\n        \\         \\\"title\\\": \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"items\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/F-FCC/items?httpAccept=application/geo%2Bjson;profile=https://stacspec.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json\\\",\\n          \\\"title\\\": \\\"Datasets\n        search for the series F-FCC\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"http://www.opengis.net/def/rel/ogc/1.0/queryables\\\",\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-FCC/queryables\\\",\\n\n        \\         \\\"type\\\": \\\"application/schema+json\\\",\\n          \\\"title\\\": \\\"Queryables\n        for F-FCC\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"search\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/series/items/F-FCC/api\\\",\\n          \\\"type\\\":\n        \\\"application/opensearchdescription+xml\\\",\\n          \\\"title\\\": \\\"OpenSearch\n        Description Document\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"ordering\\\",\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/ordering?collection=F-FCC\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Order F-FCC Product\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\":\n        \\\"https://eovoc.spacebel.be/images/FC_Brochure_final.pdf\\\",\\n          \\\"type\\\":\n        \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"F-FCC Brochure - F-FCC Product\n        Description\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/rdf%2Bxml;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-FCC?httpAccept=text/turtle;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/F-FCC?httpAccept=text/turtle;profile=http://data.europa.eu/930/\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/Spacebel\n        SA\\\",\\n          \\\"title\\\": \\\"More collections for Spacebel SA\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/Sentinel-2\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for Sentinel-2 platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/s2-msi\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for MSI instrument\\\"\\n        }\\n\n        \\     ],\\n      \\\"id\\\": \\\"F-FCC\\\",\\n      \\\"updated\\\": \\\"2023-09-05T00:00:00.00Z\\\",\\n\n        \\     \\\"providers\\\": [\\n        {\\n          \\\"roles\\\": [\\\"producer\\\"],\\n\n        \\         \\\"name\\\": \\\"Spacebel SA\\\",\\n          \\\"url\\\": \\\"https://www.spacebel.com\\\"\\n\n        \\       },\\n        {\\n          \\\"roles\\\": [\\\"host\\\"],\\n          \\\"name\\\":\n        \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\": \\\"https://emc.spacebel.be/readme.html\\\"\\n\n        \\       }\\n      ],\\n      \\\"summaries\\\": {\\n        \\\"instruments\\\": [\\\"MSI\\\"],\\n\n        \\       \\\"platform\\\": [\\\"Sentinel-2\\\"]\\n      }\\n    },\\n    {\\n      \\\"extent\\\":\n        {\\n        \\\"spatial\\\": {\\\"bbox\\\": [[\\n          -180,\\n          -90,\\n          180,\\n\n        \\         90\\n        ]]},\\n        \\\"temporal\\\": {\\\"interval\\\": [[\\n          \\\"2002-05-14T00:00:00.000Z\\\",\\n\n        \\         \\\"2012-04-08T23:59:59.999Z\\\"\\n        ]]}\\n      },\\n      \\\"stac_version\\\":\n        \\\"1.0.0\\\",\\n      \\\"sci:doi\\\": \\\"10.5270/EN1-85m0a7b\\\",\\n      \\\"keywords\\\":\n        [\\n        \\\"World\\\",\\n        \\\"Land Surface\\\",\\n        \\\"Topography\\\",\\n\n        \\       \\\"Cryosphere\\\",\\n        \\\"Snow and Ice\\\",\\n        \\\"Oceans\\\",\\n\n        \\       \\\"Ocean Waves\\\",\\n        \\\"Sea Surface Topography\\\",\\n        \\\"Atmosphere\\\",\\n\n        \\       \\\"Atmospheric Winds\\\",\\n        \\\"EARTH SCIENCE > LAND SURFACE\\\",\\n\n        \\       \\\"EARTH SCIENCE > LAND SURFACE > TOPOGRAPHY\\\",\\n        \\\"EARTH SCIENCE\n        > CRYOSPHERE\\\",\\n        \\\"EARTH SCIENCE > CRYOSPHERE > SNOW/ICE\\\",\\n        \\\"EARTH\n        SCIENCE > TERRESTRIAL HYDROSPHERE > SNOW/ICE\\\",\\n        \\\"EARTH SCIENCE >\n        OCEANS\\\",\\n        \\\"EARTH SCIENCE > OCEANS > OCEAN WAVES\\\",\\n        \\\"EARTH\n        SCIENCE > OCEANS > SEA SURFACE TOPOGRAPHY\\\",\\n        \\\"EARTH SCIENCE > ATMOSPHERE\\\",\\n\n        \\       \\\"EARTH SCIENCE > ATMOSPHERE > ATMOSPHERIC WINDS\\\",\\n        \\\"Sun-synchronous\\\",\\n\n        \\       \\\"800 km\\\",\\n        \\\"5 - 1150 km\\\",\\n        \\\"Radar Altimeters\\\",\\n\n        \\       \\\"Envisat\\\",\\n        \\\"RA-2\\\"\\n      ],\\n      \\\"created\\\": \\\"2019-05-29T00:00:00.00Z\\\",\\n\n        \\     \\\"description\\\": \\\"This is a RA-2 Sensor and Geophysical Data Record\n        (SGDR) Full Mission Reprocessing (FMR) v3 product. This FMR follows the first\n        Envisat Altimetry reprocessing Version (V2.1) completed in 2012.  The GDR\n        and S-GDR data products were reprocessed for all cycles from 6 to 113 (May\n        2002 to April 2012) into a homogeneous standard in NetCDF format (close to\n        Sentinel-3).  The Sensor Data Record (SGDR) Product from RA-2/MWR includes\n        the data in the GDR product (https://earth.esa.int/eogateway/catalog/envisat-ra-2-geophysical-data-record-gdr-ra2_gdr__2p-)\n        (RA-2 geophysical data, MWR data) and also RA-2 averaged waveforms (18Hz)\n        and RA-2 individual waveforms (1800Hz). This product is a continuation of\n        ERS RA data.  This data product has a coverage of 1 pass, pole-pole, a spatial\n        sampling of about 390 m along track and a size of 31 to 40 MB, depending on\n        presence of individual waveforms.  The radiometric accuracy is 0.2 dB and\n        auxiliary data include: Orbit state vectors (DORIS, FOS), RA2 and MWR characterisation\n        data, Platform attitude, Gain calibration, USO frequency, ECMWF data, time\n        relation, leap second, Ionospheric corrections, geoid, mean sea surface, slope\n        data, and tide model (ocean, earth, loading, pole).  Please consult the Envisat\n        RA-2/MWR Product Quality Readme file before using the data.\\\",\\n      \\\"type\\\":\n        \\\"Collection\\\",\\n      \\\"title\\\": \\\"Envisat RA-2 Sensor and Geophysical Data\n        Record - SGDR\\_[RA2_MWS__2P]\\\",\\n      \\\"license\\\": \\\"various\\\",\\n      \\\"assets\\\":\n        {\\n        \\\"metadata_ogc_17_069r3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        }\\n\n        \\     },\\n      \\\"links\\\": [\\n        {\\n          \\\"rel\\\": \\\"cite-as\\\",\\n\n        \\         \\\"href\\\": \\\"https://doi.org/10.5270/EN1-85m0a7b\\\",\\n          \\\"type\\\":\n        \\\"text/html\\\",\\n          \\\"title\\\": \\\"Landing page\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P\\\",\\n\n        \\         \\\"type\\\": \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"root\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\",\\n          \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n\n        \\         \\\"title\\\": \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\":\n        \\\"https://earth.esa.int/web/sppa/mission-performance/esa-missions/envisat/ra2/products-and-algorithms/products-information/aux\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"RA2-MWR Auxiliary\n        Data - Auxiliary Data\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://earth.esa.int/eogateway/instruments/ra2/products-information\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Envisat RA-2 MWR\n        Sensor Performance, Products and Algorithms - Product Information\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://earth.esa.int/eogateway/documents/20142/37627/Envisat-RA-2-Level-2-Product-Handbook.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"RA-2 Product\n        Handbook - User Manual\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://earth.esa.int/eogateway/documents/20142/37627/Envisat-RA-2-product-specifications.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"RA-2 Product\n        Specifications - Product Specifications\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://earth.esa.int/eogateway/documents/20142/37627/Envisat-RA-2-MWR-Level-2-Product-Readme-3.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"ReadMe file\n        - Product Specifications\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://earth.esa.int/eogateway/documents/20142/37627/Error-Budget-Envisat-Altimetry-Mission.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"Envisat Altimetry\n        Error Budget - Technical Note\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://earth.esa.int/eogateway/search?text=&category=Tools%20and%20toolboxes&filter=ra2-mwr\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"RA-2 Software Tools\n        - Tools\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\":\n        \\\"https://esatellus.service-now.com/csp?id=esa_simple_request\\\",\\n          \\\"type\\\":\n        \\\"text/html\\\",\\n          \\\"title\\\": \\\"Get Help? - ESA Earth Observation User\n        Services Portal\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=text/turtle;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for ESA/ESRIN\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/Envisat\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for Envisat platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/2ebd3948-3f88-5944-8e3c-7e60099ec941\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for RA-2 instrument\\\"\\n        }\\n\n        \\     ],\\n      \\\"id\\\": \\\"ENVISAT.RA2.MWS_2P\\\",\\n      \\\"updated\\\": \\\"2023-06-13T13:23:41Z\\\",\\n\n        \\     \\\"stac_extensions\\\": [\\\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\\\"],\\n\n        \\     \\\"providers\\\": [\\n        {\\n          \\\"roles\\\": [\\\"producer\\\"],\\n\n        \\         \\\"name\\\": \\\"ESA/ESRIN\\\",\\n          \\\"url\\\": \\\"http://www.esa.int\\\"\\n\n        \\       },\\n        {\\n          \\\"roles\\\": [\\\"host\\\"],\\n          \\\"name\\\":\n        \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\": \\\"https://emc.spacebel.be/readme.html\\\"\\n\n        \\       }\\n      ],\\n      \\\"summaries\\\": {\\n        \\\"instruments\\\": [\\\"RA-2\\\"],\\n\n        \\       \\\"platform\\\": [\\\"Envisat\\\"]\\n      }\\n    },\\n    {\\n      \\\"extent\\\":\n        {\\n        \\\"spatial\\\": {\\\"bbox\\\": [[\\n          -180,\\n          -90,\\n          180,\\n\n        \\         90\\n        ]]},\\n        \\\"temporal\\\": {\\\"interval\\\": [[\\n          \\\"2002-04-29T00:00:00.000Z\\\",\\n\n        \\         \\\"2012-04-08T23:59:59.999Z\\\"\\n        ]]}\\n      },\\n      \\\"stac_version\\\":\n        \\\"1.0.0\\\",\\n      \\\"sci:doi\\\": \\\"10.5270/EN1-opsw96m\\\",\\n      \\\"keywords\\\":\n        [\\n        \\\"World\\\",\\n        \\\"DIF10\\\",\\n        \\\"Atmosphere\\\",\\n        \\\"EARTH\n        SCIENCE > ATMOSPHERE\\\",\\n        \\\"Atmospheric Winds\\\",\\n        \\\"EARTH SCIENCE\n        > ATMOSPHERE > ATMOSPHERIC WINDS\\\",\\n        \\\"Sun-synchronous\\\",\\n        \\\"MERIS\n        RR - 1040 m across track / 1160 m along track\\\",\\n        \\\"800 km\\\",\\n        \\\"5\n        - 1150 km\\\",\\n        \\\"Imaging Spectrometers/Radiometers\\\",\\n        \\\"Envisat\\\",\\n\n        \\       \\\"MERIS\\\"\\n      ],\\n      \\\"created\\\": \\\"2019-05-28T00:00:00.000Z\\\",\\n\n        \\     \\\"description\\\": \\\"The MERIS Level 1 Reduced Resolution (RR) product\n        contains the Top of Atmosphere (TOA) upwelling spectral radiance measures\n        at reduced resolution. The in-band reference irradiances for the 15 MERIS\n        bands are computed by averaging the in-band solar irradiance of each pixel.\n        The in-band solar irradiance of each pixel is computed by integrating the\n        reference solar spectrum with the band-pass of each pixel.  The MERIS RR Level\n        1 product has Sentinel 3-like format starting from the 4th reprocessing data\n        released to users in July 2020.  Each measurement and annotation data file\n        is in NetCDF 4. The Level 1 product is composed of 22 measurements data files:\n        15 files containing radiances at each band (one band per file), accompanied\n        by the associated error estimates, and 7 annotation data files.  The band-pass\n        of each pixel is derived from on-ground and in-flight characterisation via\n        an instrument model. The values \\\\\\\"Band wavelength\\\\\\\" and \\\\\\\"Bandwidth\\\\\\\"\n        provided in the Manifest file of the Level 1 products are the averaged band-pass\n        of each pixel over the instrument field of view.  The Auxiliary data used\n        are listed in the Manifest file associated to each product.  MERIS was operating\n        continuously on the day side of the Envisat orbit (descending track). RR data\n        was acquired over 43.5 minutes in each orbit, i.e. 80% of the descending track.\\\",\\n\n        \\     \\\"type\\\": \\\"Collection\\\",\\n      \\\"title\\\": \\\"Envisat MERIS Reduced\n        Resolution - Level 1 [MER_RR__1P/ME_1_RRG]\\\",\\n      \\\"license\\\": \\\"various\\\",\\n\n        \\     \\\"assets\\\": {\\n        \\\"search\\\": {\\n          \\\"roles\\\": [\\\"search\\\"],\\n\n        \\         \\\"href\\\": \\\"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=MER.RR__1P\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Search client\\\"\\n\n        \\       },\\n        \\\"offering_2\\\": {\\n          \\\"roles\\\": [\\\"http://www.opengis.net/spec/owc-geojson/1.0/req/wms#GetMap\\\"],\\n\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\n        \\         \\\"title\\\": \\\"GetMap\\\",\\n          \\\"type\\\": \\\"image/png\\\"\\n        },\\n\n        \\       \\\"offering_1\\\": {\\n          \\\"roles\\\": [\\\"http://www.opengis.net/spec/owc-geojson/1.0/req/wms#GetCapabilities\\\"],\\n\n        \\         \\\"href\\\": \\\"https://eovoc.spacebel.be/geoserver/wms?service=WMS&version=1.1.1&request=GetCapabilities\\\",\\n\n        \\         \\\"title\\\": \\\"GetCapabilities\\\",\\n          \\\"type\\\": \\\"application/xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_069r3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/MER.RR__1P\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/MER.RR__1P?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/MER.RR__1P?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/MER.RR__1P?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/MER.RR__1P?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/MER.RR__1P?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/MER.RR__1P?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        }\\n\n        \\     },\\n      \\\"links\\\": [\\n        {\\n          \\\"rel\\\": \\\"cite-as\\\",\\n\n        \\         \\\"href\\\": \\\"https://doi.org/10.5270/EN1-opsw96m\\\",\\n          \\\"type\\\":\n        \\\"text/html\\\",\\n          \\\"title\\\": \\\"Landing page\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/MER.RR__1P\\\",\\n\n        \\         \\\"type\\\": \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"root\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\",\\n          \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n\n        \\         \\\"title\\\": \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"items\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/MER.RR__1P/items?httpAccept=application/geo%2Bjson;profile=https://stacspec.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json\\\",\\n          \\\"title\\\": \\\"Datasets\n        search for the series MER.RR__1P\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"http://www.opengis.net/def/rel/ogc/1.0/queryables\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/MER.RR__1P/queryables\\\",\\n          \\\"type\\\":\n        \\\"application/schema+json\\\",\\n          \\\"title\\\": \\\"Queryables for MER.RR__1P\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"search\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/series/items/MER.RR__1P/api\\\",\\n          \\\"type\\\":\n        \\\"application/opensearchdescription+xml\\\",\\n          \\\"title\\\": \\\"OpenSearch\n        Description Document\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://earth.esa.int/eogateway/instruments/meris/auxiliary-data\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"MERIS auxiliary\n        data - Auxiliary Data\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://earth.esa.int/eogateway/documents/20142/37627/MERIS-Sentinel-3-Like-L1-andL2-PFS.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"MERIS Sentinel3-like\n        L1/L2 Product Format Specification - Product Specifications\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://earth.esa.int/eogateway/instruments/meris/products-information\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"MERIS 4th data\n        reprocessing documentation - Product Specifications\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"More MERIS Documents\n        - Other\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\":\n        \\\"https://earth.esa.int/eogateway/search?text=MERIS&category=Tools%20and%20toolboxes&filter=Envisat,MERIS&subFilter=&sortby=ZA\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"MERIS Software\n        and Tools - Tools\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://earth.esa.int/eogateway/missions/envisat\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Envisat mission\n        - Description of Envisat mission\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://earth.esa.int/eogateway/instruments/meris\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"MERIS instrument\n        - Description of MERIS instrument\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://esatellus.service-now.com/csp?id=esa_simple_request\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Get Help? - ESA\n        Earth Observation User Services Portal\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/MER.RR__1P?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/MER.RR__1P?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/MER.RR__1P?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/MER.RR__1P?httpAccept=application/rdf%2Bxml;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/MER.RR__1P?httpAccept=text/turtle;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"wms:transparent\\\": true,\\n          \\\"rel\\\": \\\"wms\\\",\\n          \\\"wms:dimensions\\\":\n        {\\\"version\\\": \\\"1.1.1\\\"},\\n          \\\"href\\\": \\\"https://eovoc.spacebel.be/geoserver/wms\\\",\\n\n        \\         \\\"type\\\": \\\"image/png\\\",\\n          \\\"title\\\": \\\"MER.RR__1P\\\",\\n\n        \\         \\\"wms:layers\\\": [\\\"Density:MER.RR__1P\\\"],\\n          \\\"wms:styles\\\":\n        [\\\"Turbo\\\"]\\n        },\\n        {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\\\",\\n          \\\"title\\\":\n        \\\"More collections for ESA/ESRIN\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/Envisat\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for Envisat platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/003ed1d0-9f6c-59cb-a427-1fa4c4a92107\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for MERIS instrument\\\"\\n        }\\n\n        \\     ],\\n      \\\"id\\\": \\\"MER.RR__1P\\\",\\n      \\\"updated\\\": \\\"2023-11-10T08:30:10Z\\\",\\n\n        \\     \\\"stac_extensions\\\": [\\n        \\\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\\\",\\n\n        \\       \\\"https://stac-extensions.github.io/web-map-links/v1.2.0/schema.json\\\"\\n\n        \\     ],\\n      \\\"providers\\\": [\\n        {\\n          \\\"roles\\\": [\\\"producer\\\"],\\n\n        \\         \\\"name\\\": \\\"ESA/ESRIN\\\",\\n          \\\"url\\\": \\\"http://www.esa.int\\\"\\n\n        \\       },\\n        {\\n          \\\"roles\\\": [\\\"host\\\"],\\n          \\\"name\\\":\n        \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\": \\\"https://emc.spacebel.be/readme.html\\\"\\n\n        \\       }\\n      ],\\n      \\\"summaries\\\": {\\n        \\\"instruments\\\": [\\\"MERIS\\\"],\\n\n        \\       \\\"platform\\\": [\\\"Envisat\\\"]\\n      }\\n    },\\n    {\\n      \\\"extent\\\":\n        {\\n        \\\"spatial\\\": {\\\"bbox\\\": [[\\n          -20,\\n          -35,\\n          35,\\n\n        \\         75\\n        ]]},\\n        \\\"temporal\\\": {\\\"interval\\\": [[\\n          \\\"2015-01-01T00:00:00.000Z\\\",\\n\n        \\         null\\n        ]]}\\n      },\\n      \\\"stac_version\\\": \\\"1.0.0\\\",\\n\n        \\     \\\"keywords\\\": [\\n        \\\"Europe\\\",\\n        \\\"DIF10\\\",\\n        \\\"orthorectified\\\",\\n\n        \\       \\\"corrected\\\",\\n        \\\"geometrically corrected\\\",\\n        \\\"USGS\\\",\\n\n        \\       \\\"Surface Radiative Properties\\\",\\n        \\\"EARTH SCIENCE > LAND\n        SURFACE > SURFACE RADIATIVE PROPERTIES\\\",\\n        \\\"Vegetation\\\",\\n        \\\"EARTH\n        SCIENCE > BIOSPHERE > VEGETATION\\\",\\n        \\\"Land Use and Land Cover\\\",\\n\n        \\       \\\"EARTH SCIENCE > LAND SURFACE > LAND USE/LAND COVER\\\",\\n        \\\"Agriculture\\\",\\n\n        \\       \\\"EARTH SCIENCE > AGRICULTURE\\\",\\n        \\\"Forestry\\\",\\n        \\\"EARTH\n        SCIENCE > BIOSPHERE > ECOSYSTEMS > TERRESTRIAL ECOSYSTEMS > FORESTS\\\",\\n        \\\"Sun-synchronous\\\",\\n\n        \\       \\\"VIS (0.40 - 0.75 \\xB5m)\\\",\\n        \\\"NIR (0.75 - 1.30 \\xB5m)\\\",\\n\n        \\       \\\"SWIR (1.3 - 3.0 \\xB5m)\\\",\\n        \\\"TIR (6.0 - 15.0 \\xB5nm)\\\",\\n\n        \\       \\\"DPAS 5.0\\\",\\n        \\\"Medium Resolution - MR (20 - 500 m)\\\",\\n\n        \\       \\\"OAT_GEO_1P\\\",\\n        \\\"OAT_GTC_1P\\\",\\n        \\\"OAT_SP__2P\\\",\\n\n        \\       \\\"OAT_SR__2P\\\",\\n        \\\"705 km\\\",\\n        \\\"185 km\\\",\\n        \\\"Imaging\n        Spectrometers/Radiometers\\\",\\n        \\\"Landsat-8\\\",\\n        \\\"OLI\\\",\\n        \\\"TIRS\\\"\\n\n        \\     ],\\n      \\\"created\\\": \\\"2022-01-14T00:00:00.000Z\\\",\\n      \\\"description\\\":\n        \\\"This dataset contains the European Coverage of Landsat 8 Collection 2 data,\n        both Level 1 and Level 2, since the beginning of the mission. Landsat 8 Collection\n        2 is the result of reprocessing effort on the archive and on fresh products\n        with significant improvement with respect to Collection 1 on data quality,\n        obtained by means of advancements in data processing, algorithm development.\n        The primary characteristic is a relevant improvement in the absolute geolocation\n        accuracy (now re-baselined to the European Space Agency Copernicus Sentinel-2\n        Global Reference Image, GRI) but includes also updated digital elevation modelling\n        sources, improved Radiometric Calibration (even correction for the TIRS striping\n        effect), enhanced Quality Assessment Bands, updated and consistent metadata\n        files, usage of Cloud Optimized Georeferenced (COG) Tagged Image File Format.\n        \\ Landsat 8 level 1 products combine data from the 2 Landsat instruments,\n        OLI and TIRS. The level 1 products generated can be either L1TP or L1GT: \\\\u2022\n        L1TP - Level 1 Precision Terrain (Corrected) (L1T) products: Radiometrically\n        calibrated and orthorectified using ground control points (GCPs) and digital\n        elevation model (DEM) data to correct for relief displacement. The highest\n        quality Level-1 products suitable for pixel-level time series analysis. GCPs\n        used for L1TP correction are derived from the Global Land Survey 2000 (GLS2000)\n        data set. \\\\u2022 L1GT - Level 1 Systematic Terrain (Corrected) (L1GT) products:\n        L1GT data products consist of L0 product data with systematic radiometric,\n        geometric and terrain corrections applied and resampled for registration to\n        a cartographic projection, referenced to the WGS84, G873, or current version.\n        The dissemination server contains three different classes of Level1 products\n        \\\\u2022 Real Time (RT): Newly acquired Landsat 8 OLI/TIRS data are processed\n        upon downlink but use an initial TIRS line-of-sight model parameters; the\n        data is made available in less than 12 hours (4-6 hours typically). Once the\n        data have been reprocessed with the refined TIRS parameters, the products\n        are transitioned to either Tier 1 or Tier 2 and removed from the Real-Time\n        tier (in 14-16 days). \\\\u2022 Tier 1 (T1): Landsat scenes with the highest\n        available data quality are placed into Tier 1 and are considered suitable\n        for time-series analysis. Tier 1 includes Level-1 Precision and Terrain (L1TP)\n        corrected data that have well-characterized radiometry and are inter-calibrated\n        across the different Landsat instruments. The georegistration of Tier 1 scenes\n        is consistent and within prescribed image-to-image tolerances of \\u2266 12-meter\n        radial root mean square error (RMSE). \\\\u2022 Tier 2 (T2): Landsat scenes\n        not meeting Tier 1 criteria during processing are assigned to Tier 2. Tier\n        2 scenes adhere to the same radiometric standard as Tier 1 scenes, but do\n        not meet the Tier 1 geometry specification due to less accurate orbital information\n        (specific to older Landsat sensors), significant cloud cover, insufficient\n        ground control, or other factors. This includes Systematic Terrain (L1GT)\n        and Systematic (L1GS) processed data.  Landsat 8 level 2 products are generated\n        from L1GT and L1TP Level 1 products that meet the <76 degrees Solar Zenith\n        Angle constraint and include the required auxiliary data inputs to generate\n        a scientifically viable product. The data are available a couple of days after\n        the Level1 T1/T2. The level 2 products generated can be L2SP or L2SR: \\\\u2022\n        L2SP - Level 2 Science Products (L2SP) products: include Surface Reflectance\n        (SR), Surface Temperature (ST), ST intermediate bands, an angle coefficients\n        file, and Quality Assessment (QA) Bands. \\\\u2022 L2SR - Level 2 Surface Reflectance\n        (L2SR) products: include Surface Reflectance (SR), an angle coefficients file,\n        and Quality Assessment (QA) Bands; it is generated if ST could not be generated\n        \\ Two different categories of Level 1 products are offered: LC with Optical,\n        Thermal and Quality Map images, LO with Optical and Quality Map images (Thermal\n        not available). For the Level 2 data, only LC combined products are generated\\\",\\n\n        \\     \\\"type\\\": \\\"Collection\\\",\\n      \\\"title\\\": \\\"Landsat 8 Collection 2\n        European Coverage\\\",\\n      \\\"license\\\": \\\"various\\\",\\n      \\\"assets\\\": {\\n\n        \\       \\\"search\\\": {\\n          \\\"roles\\\": [\\\"search\\\"],\\n          \\\"href\\\":\n        \\\"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=Landsat8.Collection2.European.Coverage\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Search client\\\"\\n\n        \\       },\\n        \\\"offering_2\\\": {\\n          \\\"roles\\\": [\\\"http://www.opengis.net/spec/owc-geojson/1.0/req/wms#GetMap\\\"],\\n\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\n        \\         \\\"title\\\": \\\"GetMap\\\",\\n          \\\"type\\\": \\\"image/png\\\"\\n        },\\n\n        \\       \\\"offering_1\\\": {\\n          \\\"roles\\\": [\\\"http://www.opengis.net/spec/owc-geojson/1.0/req/wms#GetCapabilities\\\"],\\n\n        \\         \\\"href\\\": \\\"https://eovoc.spacebel.be/geoserver/wms?service=WMS&version=1.1.1&request=GetCapabilities\\\",\\n\n        \\         \\\"title\\\": \\\"GetCapabilities\\\",\\n          \\\"type\\\": \\\"application/xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_069r3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        }\\n\n        \\     },\\n      \\\"links\\\": [\\n        {\\n          \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage\\\",\\n\n        \\         \\\"type\\\": \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"root\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\",\\n          \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n\n        \\         \\\"title\\\": \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"items\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage/items?httpAccept=application/geo%2Bjson;profile=https://stacspec.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json\\\",\\n          \\\"title\\\": \\\"Datasets\n        search for the series Landsat8.Collection2.European.Coverage\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"http://www.opengis.net/def/rel/ogc/1.0/queryables\\\",\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage/queryables\\\",\\n\n        \\         \\\"type\\\": \\\"application/schema+json\\\",\\n          \\\"title\\\": \\\"Queryables\n        for Landsat8.Collection2.European.Coverage\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"search\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/series/items/Landsat8.Collection2.European.Coverage/api\\\",\\n\n        \\         \\\"type\\\": \\\"application/opensearchdescription+xml\\\",\\n          \\\"title\\\":\n        \\\"OpenSearch Description Document\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://earth.esa.int/eogateway/documents/20142/0/Landsat-Collection-1-vs-Collection-2-Summary.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"Landsat Collection1\n        vs Collection 2 - Product description\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"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\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"Landsat 8-9\n        OLI-TIRS Collection 2 Level 1 Data Format Control Book (DFCB) - Product specification\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\":\n        \\\"https://earth.esa.int/eogateway/documents/20142/0/Landsat-8-9-OLI-TIRS-Collection-2-Level-2-Data-Format-Control-Book-DFCB.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"Landsat 8-9\n        OLI-TIRS Collection 2 Level 2 Data Format Control Book (DFCB) - Product specification\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\":\n        \\\"https://www.usgs.gov/landsat-missions/landsat-collection-2\\\",\\n          \\\"type\\\":\n        \\\"text/html\\\",\\n          \\\"title\\\": \\\"USGS Landsat Collection 2 web page\n        - web portal\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://esatellus.service-now.com/csp?id=esa_simple_request\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Get Help? - ESA\n        Earth Observation User Services Portal\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage?httpAccept=text/turtle;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"wms:transparent\\\": true,\\n          \\\"rel\\\": \\\"wms\\\",\\n          \\\"wms:dimensions\\\":\n        {\\\"version\\\": \\\"1.1.1\\\"},\\n          \\\"href\\\": \\\"https://eovoc.spacebel.be/geoserver/wms\\\",\\n\n        \\         \\\"type\\\": \\\"image/png\\\",\\n          \\\"title\\\": \\\"Landsat8.Collection2.European.Coverage\\\",\\n\n        \\         \\\"wms:layers\\\": [\\\"Density:Landsat8.Collection2.European.Coverage\\\"],\\n\n        \\         \\\"wms:styles\\\": [\\\"Turbo\\\"]\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for ESA/ESRIN\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/Landsat-8\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for Landsat-8 platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/6bfc7afc-547a-57cd-818c-6d90e3e589ab\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for OLI instrument\\\"\\n        }\\n\n        \\     ],\\n      \\\"id\\\": \\\"Landsat8.Collection2.European.Coverage\\\",\\n      \\\"updated\\\":\n        \\\"2023-11-10T08:38:42Z\\\",\\n      \\\"stac_extensions\\\": [\\\"https://stac-extensions.github.io/web-map-links/v1.2.0/schema.json\\\"],\\n\n        \\     \\\"providers\\\": [\\n        {\\n          \\\"roles\\\": [\\\"producer\\\"],\\n\n        \\         \\\"name\\\": \\\"ESA/ESRIN\\\",\\n          \\\"url\\\": \\\"http://www.esa.int\\\"\\n\n        \\       },\\n        {\\n          \\\"roles\\\": [\\\"host\\\"],\\n          \\\"name\\\":\n        \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\": \\\"https://emc.spacebel.be/readme.html\\\"\\n\n        \\       }\\n      ],\\n      \\\"summaries\\\": {\\n        \\\"instruments\\\": [\\\"OLI\\\"],\\n\n        \\       \\\"platform\\\": [\\\"Landsat-8\\\"]\\n      }\\n    },\\n    {\\n      \\\"extent\\\":\n        {\\n        \\\"spatial\\\": {\\\"bbox\\\": [[\\n          -20,\\n          -35,\\n          55,\\n\n        \\         25\\n        ]]},\\n        \\\"temporal\\\": {\\\"interval\\\": [[\\n          \\\"2019-01-01T00:00:00Z\\\",\\n\n        \\         \\\"2019-12-31T23:59:59Z\\\"\\n        ]]}\\n      },\\n      \\\"stac_version\\\":\n        \\\"1.0.0\\\",\\n      \\\"keywords\\\": [\\n        \\\"ESA\\\",\\n        \\\"CCI\\\",\\n        \\\"Pixel\\\",\\n\n        \\       \\\"Burned Area\\\",\\n        \\\"Fire Disturbance\\\",\\n        \\\"Climate\n        Change\\\",\\n        \\\"GCOS Essential Climate Variable\\\",\\n        \\\"orthoimagery\\\",\\n\n        \\       \\\"EARTH SCIENCE>HUMAN DIMENSIONS>NATURAL HAZARDS>WILDFIRES>BURNED\n        AREA\\\",\\n        \\\"EARTH SCIENCE>BIOSPHERE>ECOLOGICAL DYNAMICS>FIRE ECOLOGY>FIRE\n        DISTURBANCE\\\"\\n      ],\\n      \\\"description\\\": \\\"The ESA Fire Disturbance\n        Climate Change Initiative (Fire_cci) project has produced maps of global burned\n        area developed from satellite observations. The Small Fire Dataset (SFD) pixel\n        products have been obtained by combining spectral information from Sentinel-2\n        MSI data and thermal information from VIIRS VNP14IMGML active fire products.This\n        dataset is part of v2.0 of the Small Fire Dataset (also known as FireCCISFD11),\n        which covers Sub-Saharan Africa for the year 2019.   Data is available here\n        at pixel resolution (0.00017966259 degrees, corresponding to approximately\n        20m at the Equator).   Gridded data products are also available in a separate\n        dataset.\\\",\\n      \\\"type\\\": \\\"Collection\\\",\\n      \\\"title\\\": \\\"ESA Fire\n        Climate Change Initiative (Fire_cci): Small Fire Dataset (SFD) Burned Area\n        pixel product for Sub-Saharan Africa, version 2.0\\\",\\n      \\\"license\\\": \\\"various\\\",\\n\n        \\     \\\"assets\\\": {\\n        \\\"search\\\": {\\n          \\\"roles\\\": [\\\"search\\\"],\\n\n        \\         \\\"href\\\": \\\"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=4c5feb539f1f44308ca7ec26e0bb7316\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Search client\\\"\\n\n        \\       },\\n        \\\"enclosure\\\": {\\n          \\\"roles\\\": [\\\"data\\\"],\\n          \\\"href\\\":\n        \\\"http://data.ceda.ac.uk/neodc/esacci/fire/data/burned_area/SFD/Africa/Sentinel2/pixel/v2.0/\\\",\\n\n        \\         \\\"type\\\": \\\"application/x-binary\\\",\\n          \\\"title\\\": \\\"DOWNLOAD\n        - Download Data\\\"\\n        },\\n        \\\"metadata_ogc_17_069r3\\\": {\\n          \\\"roles\\\":\n        [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/4c5feb539f1f44308ca7ec26e0bb7316\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/4c5feb539f1f44308ca7ec26e0bb7316?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/4c5feb539f1f44308ca7ec26e0bb7316?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/4c5feb539f1f44308ca7ec26e0bb7316?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/4c5feb539f1f44308ca7ec26e0bb7316?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/4c5feb539f1f44308ca7ec26e0bb7316?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/4c5feb539f1f44308ca7ec26e0bb7316?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        }\\n\n        \\     },\\n      \\\"links\\\": [\\n        {\\n          \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/4c5feb539f1f44308ca7ec26e0bb7316\\\",\\n\n        \\         \\\"type\\\": \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"root\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\",\\n          \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n\n        \\         \\\"title\\\": \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"items\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/4c5feb539f1f44308ca7ec26e0bb7316/items?httpAccept=application/geo%2Bjson;profile=https://stacspec.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json\\\",\\n          \\\"title\\\": \\\"Datasets\n        search for the series 4c5feb539f1f44308ca7ec26e0bb7316\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"http://www.opengis.net/def/rel/ogc/1.0/queryables\\\",\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/4c5feb539f1f44308ca7ec26e0bb7316/queryables\\\",\\n\n        \\         \\\"type\\\": \\\"application/schema+json\\\",\\n          \\\"title\\\": \\\"Queryables\n        for 4c5feb539f1f44308ca7ec26e0bb7316\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"search\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/series/items/4c5feb539f1f44308ca7ec26e0bb7316/api\\\",\\n\n        \\         \\\"type\\\": \\\"application/opensearchdescription+xml\\\",\\n          \\\"title\\\":\n        \\\"OpenSearch Description Document\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://catalogue.ceda.ac.uk/uuid/4c5feb539f1f44308ca7ec26e0bb7316\\\",\\n\n        \\         \\\"title\\\": \\\"CEDA Data Catalogue Page - Detail and access information\n        for the resource\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://climate.esa.int/projects/fire/\\\",\\n          \\\"title\\\":\n        \\\"ESA CCI Fire project website - No further details.\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://climate.esa.int/\\\",\\n\n        \\         \\\"title\\\": \\\"ESA Climate Change Initiative website - No further\n        details.\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\":\n        \\\"http://data.ceda.ac.uk/neodc/esacci/fire/docs/SFD_v2.0/Fire_cci_D2.4.4_PUG-SFD_v2.0.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"Product User\n        Guide - No further details.\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/4c5feb539f1f44308ca7ec26e0bb7316?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/4c5feb539f1f44308ca7ec26e0bb7316?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/4c5feb539f1f44308ca7ec26e0bb7316?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/4c5feb539f1f44308ca7ec26e0bb7316?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/4c5feb539f1f44308ca7ec26e0bb7316?httpAccept=application/rdf%2Bxml;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/4c5feb539f1f44308ca7ec26e0bb7316?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\\\",\\n\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/4c5feb539f1f44308ca7ec26e0bb7316?httpAccept=text/turtle;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/4c5feb539f1f44308ca7ec26e0bb7316?httpAccept=text/turtle;profile=http://data.europa.eu/930/\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/CEDA\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for CEDA\\\"\\n        }\\n      ],\\n\n        \\     \\\"id\\\": \\\"4c5feb539f1f44308ca7ec26e0bb7316\\\",\\n      \\\"updated\\\": \\\"2025-04-07T23:42:44Z\\\",\\n\n        \\     \\\"stac_extensions\\\": [\\\"https://stac-extensions.github.io/processing/v1.2.0/schema.json\\\"],\\n\n        \\     \\\"providers\\\": [\\n        {\\n          \\\"roles\\\": [\\\"producer\\\"],\\n\n        \\         \\\"name\\\": \\\"CEDA\\\"\\n        },\\n        {\\n          \\\"roles\\\":\n        [\\\"host\\\"],\\n          \\\"name\\\": \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\":\n        \\\"https://emc.spacebel.be/readme.html\\\"\\n        }\\n      ],\\n      \\\"summaries\\\":\n        {\\\"processing:lineage\\\": [\\\"Data was produced by the ESA Fire CCI team as\n        part of the ESA Climate Change Initiative (CCI) and is being held on the CEDA\n        (Centre for Environmental Data Analysis) archive as part of the ESA CCI Open\n        Data Portal project.\\\"]}\\n    },\\n    {\\n      \\\"extent\\\": {\\n        \\\"spatial\\\":\n        {\\\"bbox\\\": [[\\n          -180,\\n          -90,\\n          180,\\n          90\\n\n        \\       ]]},\\n        \\\"temporal\\\": {\\\"interval\\\": [[\\n          \\\"2017-10-31T00:00:00Z\\\",\\n\n        \\         \\\"2024-06-30T23:59:59Z\\\"\\n        ]]}\\n      },\\n      \\\"stac_version\\\":\n        \\\"1.0.0\\\",\\n      \\\"sci:doi\\\": \\\"https://doi.org/10.5194/amt-16-669-2023\\\",\\n\n        \\     \\\"keywords\\\": [\\n        \\\"ESA\\\",\\n        \\\"CCI\\\",\\n        \\\"satellite\\\",\\n\n        \\       \\\"Sentinel-5 Precursor\\\",\\n        \\\"TROPOMI\\\",\\n        \\\"atmosphere\\\",\\n\n        \\       \\\"methane\\\",\\n        \\\"carbon monoxide\\\",\\n        \\\"orthoimagery\\\",\\n\n        \\       \\\"EARTH SCIENCE>ATMOSPHERE\\\",\\n        \\\"EARTH SCIENCE>ATMOSPHERE>ATMOSPHERIC\n        CHEMISTRY>CARBON AND HYDROCARBON COMPOUNDS>METHANE\\\",\\n        \\\"EARTH SCIENCE>ATMOSPHERE>AIR\n        QUALITY>CARBON MONOXIDE\\\"\\n      ],\\n      \\\"description\\\": \\\"This product\n        is the column-average dry-air mole fraction of atmospheric methane, denoted\n        XCH4. It has been retrieved from radiance measurements from the TROPOspheric\n        Monitoring Instrument (TROPOMI) on the Sentinel-5 Precursor satellite in the\n        2.3 \\xC2\\xB5m spectral range of the solar spectral range, using the Weighting\n        Function Modified Differential Optical Absorption Spectroscopy (WFM-DOAS or\n        WFMD) retrieval algorithm. This dataset is also referred to as CH4_S5P_WFMD.\n        This version of the product is version 1.8, and covers the period from November\n        2017 - June 2024. The WFMD algorithm is based on iteratively fitting a simulated\n        radiance spectrum to the measured spectrum using a least-squares method. The\n        algorithm is very fast as it is based on a radiative transfer model based\n        look-up table scheme. The product is limited to cloud-free scenes on the Earth's\n        day side.These data were produced as part of the European Space Agency's (ESA)\n        Greenhouse Gases (GHG) Climate Change Initiative (CCI) project.When citing\n        this dataset, please also cite the following peer-reviewed publication:  Schneising,\n        O., Buchwitz, M., Hachmeister, J., Vanselow, S., Reuter, M., Buschmann, M.,\n        Bovensmann, H., and Burrows, J. P.: Advances in retrieving XCH4 and XCO from\n        Sentinel-5 Precursor: improvements in the scientific TROPOMI/WFMD algorithm,\n        Atmos. Meas. Tech., 16, 669\\xE2\\\\u0080\\\\u0093694, https://doi.org/10.5194/amt-16-669-2023,\n        2023.\\\",\\n      \\\"type\\\": \\\"Collection\\\",\\n      \\\"title\\\": \\\"ESA Greenhouse\n        Gases Climate Change Initiative (GHG_cci): Column-averaged methane from Sentinel-5P,\n        generated with the WFM-DOAS algorithm, version 1.8,  November 2017 - June\n        2024\\\",\\n      \\\"license\\\": \\\"various\\\",\\n      \\\"assets\\\": {\\n        \\\"search\\\":\n        {\\n          \\\"roles\\\": [\\\"search\\\"],\\n          \\\"href\\\": \\\"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=2b8c6a8f1abd40a6b0ce07c40b1c57ff\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Search client\\\"\\n\n        \\       },\\n        \\\"enclosure\\\": {\\n          \\\"roles\\\": [\\\"data\\\"],\\n          \\\"href\\\":\n        \\\"http://data.ceda.ac.uk/neodc/esacci/ghg/data/cci_plus/CH4_S5P_WFMD/v1.8_extended_june2024\\\",\\n\n        \\         \\\"type\\\": \\\"application/x-binary\\\",\\n          \\\"title\\\": \\\"DOWNLOAD\n        - Download Data\\\"\\n        },\\n        \\\"metadata_ogc_17_069r3\\\": {\\n          \\\"roles\\\":\n        [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/2b8c6a8f1abd40a6b0ce07c40b1c57ff\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/2b8c6a8f1abd40a6b0ce07c40b1c57ff?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/2b8c6a8f1abd40a6b0ce07c40b1c57ff?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/2b8c6a8f1abd40a6b0ce07c40b1c57ff?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/2b8c6a8f1abd40a6b0ce07c40b1c57ff?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/2b8c6a8f1abd40a6b0ce07c40b1c57ff?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/2b8c6a8f1abd40a6b0ce07c40b1c57ff?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        }\\n\n        \\     },\\n      \\\"links\\\": [\\n        {\\n          \\\"rel\\\": \\\"cite-as\\\",\\n\n        \\         \\\"href\\\": \\\"https://doi.org/https://doi.org/10.5194/amt-16-669-2023\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Landing page\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/2b8c6a8f1abd40a6b0ce07c40b1c57ff\\\",\\n\n        \\         \\\"type\\\": \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"root\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\",\\n          \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n\n        \\         \\\"title\\\": \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"items\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/2b8c6a8f1abd40a6b0ce07c40b1c57ff/items?httpAccept=application/geo%2Bjson;profile=https://stacspec.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json\\\",\\n          \\\"title\\\": \\\"Datasets\n        search for the series 2b8c6a8f1abd40a6b0ce07c40b1c57ff\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"http://www.opengis.net/def/rel/ogc/1.0/queryables\\\",\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/2b8c6a8f1abd40a6b0ce07c40b1c57ff/queryables\\\",\\n\n        \\         \\\"type\\\": \\\"application/schema+json\\\",\\n          \\\"title\\\": \\\"Queryables\n        for 2b8c6a8f1abd40a6b0ce07c40b1c57ff\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"search\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/series/items/2b8c6a8f1abd40a6b0ce07c40b1c57ff/api\\\",\\n\n        \\         \\\"type\\\": \\\"application/opensearchdescription+xml\\\",\\n          \\\"title\\\":\n        \\\"OpenSearch Description Document\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://catalogue.ceda.ac.uk/uuid/2b8c6a8f1abd40a6b0ce07c40b1c57ff\\\",\\n\n        \\         \\\"title\\\": \\\"CEDA Data Catalogue Page - Detail and access information\n        for the resource\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://www.atmos-meas-tech.net/12/6771/2019/\\\",\\n          \\\"title\\\":\n        \\\"A scientific algorithm to simultaneously retrieve carbon monoxide and methane\n        from TROPOMI onboard Sentinel-5 Precursor - No further details.\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://doi.org/10.5194/amt-16-669-2023\\\",\\n\n        \\         \\\"title\\\": \\\"Schneising, O., Buchwitz, M., Hachmeister, J., Vanselow,\n        S., Reuter, M., Buschmann, M., Bovensmann, H., and Burrows, J. P.: Advances\n        in retrieving XCH4 and XCO from Sentinel-5 Precursor: improvements in the\n        scientific TROPOMI/WFMD algorithm, Atmos. Meas. Tech., 16, 669\\xE2\\\\u0080\\\\u0093694,\n        https://doi.org/10.5194/amt-16-669-2023, 2023. - No further details.\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://climate.esa.int\\\",\\n\n        \\         \\\"title\\\": \\\"ESA Climate Change Initiative website - No further\n        details.\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\":\n        \\\"https://climate.esa.int/projects/ghgs\\\",\\n          \\\"title\\\": \\\"Greenhouse\n        Gases CCI project - No further details.\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"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\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"CRDP9: Product\n        User Guide (PUG) Version 5 - No further details.\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"CRDP9: Algorithm\n        Theoretical Basis Document (ATBD) Version 3 - No further details.\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"CRDP9: End-to-End\n        ECV Uncertainty Budget (E3UB) Version 7 - No further details.\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/2b8c6a8f1abd40a6b0ce07c40b1c57ff?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/2b8c6a8f1abd40a6b0ce07c40b1c57ff?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/2b8c6a8f1abd40a6b0ce07c40b1c57ff?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/2b8c6a8f1abd40a6b0ce07c40b1c57ff?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/2b8c6a8f1abd40a6b0ce07c40b1c57ff?httpAccept=application/rdf%2Bxml;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/2b8c6a8f1abd40a6b0ce07c40b1c57ff?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\\\",\\n\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/2b8c6a8f1abd40a6b0ce07c40b1c57ff?httpAccept=text/turtle;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/2b8c6a8f1abd40a6b0ce07c40b1c57ff?httpAccept=text/turtle;profile=http://data.europa.eu/930/\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/CEDA\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for CEDA\\\"\\n        }\\n      ],\\n\n        \\     \\\"id\\\": \\\"2b8c6a8f1abd40a6b0ce07c40b1c57ff\\\",\\n      \\\"updated\\\": \\\"2025-04-07T23:43:09Z\\\",\\n\n        \\     \\\"stac_extensions\\\": [\\n        \\\"https://stac-extensions.github.io/processing/v1.2.0/schema.json\\\",\\n\n        \\       \\\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\\\"\\n\n        \\     ],\\n      \\\"providers\\\": [\\n        {\\n          \\\"roles\\\": [\\\"producer\\\"],\\n\n        \\         \\\"name\\\": \\\"CEDA\\\"\\n        },\\n        {\\n          \\\"roles\\\":\n        [\\\"host\\\"],\\n          \\\"name\\\": \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\":\n        \\\"https://emc.spacebel.be/readme.html\\\"\\n        }\\n      ],\\n      \\\"summaries\\\":\n        {\\\"processing:lineage\\\": [\\\"Data were processed by the ESA Climate Change\n        Initiative (CCI) Greenhouse Gas project team and supplied to CEDA as part\n        of the ESA CCI Open Data Portal.\\\"]}\\n    },\\n    {\\n      \\\"extent\\\": {\\n\n        \\       \\\"spatial\\\": {\\\"bbox\\\": [[\\n          -180,\\n          -90,\\n          180,\\n\n        \\         90\\n        ]]},\\n        \\\"temporal\\\": {\\\"interval\\\": [[\\n          \\\"2019-01-01T00:00:00Z\\\",\\n\n        \\         \\\"2022-12-31T23:59:59Z\\\"\\n        ]]}\\n      },\\n      \\\"stac_version\\\":\n        \\\"1.0.0\\\",\\n      \\\"sci:doi\\\": \\\"https://doi.org/10.5281/zenodo.10721951\\\",\\n\n        \\     \\\"keywords\\\": [\\n        \\\"ESA\\\",\\n        \\\"CCI\\\",\\n        \\\"Pixel\\\",\\n\n        \\       \\\"Burned Area\\\",\\n        \\\"Fire Disturbance\\\",\\n        \\\"Climate\n        Change\\\",\\n        \\\"GCOS\\\",\\n        \\\"orthoimagery\\\",\\n        \\\"EARTH SCIENCE>HUMAN\n        DIMENSIONS>NATURAL HAZARDS>WILDFIRES>BURNED AREA\\\",\\n        \\\"EARTH SCIENCE>BIOSPHERE>ECOLOGICAL\n        DYNAMICS>FIRE ECOLOGY>FIRE DISTURBANCE\\\"\\n      ],\\n      \\\"description\\\":\n        \\\"The ESA Fire Disturbance Climate Change Initiative (CCI) project has produced\n        maps of global burned area derived from satellite observations. The Sentinel-3\n        SYN Fire_cci v1.1 pixel product is distributed as 6 continental tiles and\n        is based upon surface reflectance data from the OLCI and SLSTR instruments\n        (combined as the Synergy (SYN) product) onboard the Sentinel-3 A&B satellites.\n        This information is complemented by VIIRS thermal information. This product,\n        called FireCCIS311 for short, is available for the years 2019 to 2022.The\n        FireCCIS311 Pixel product described here includes maps at 0.002777-degree\n        (approx. 300m) resolution. Burned area (BA) information includes 3 individual\n        files, packed in a compressed tar.gz file: date of BA detection (labelled\n        JD), the confidence level (CL, a probability value estimating the confidence\n        that a pixel is actually burned), and the land cover (LC) information as defined\n        in the Copernicus Climate Change Service (C3S) Land Cover v2.1.1 product.\n        An unpacked version of the data is also available. For further information\n        on the product and its format see the Product User Guide in the linked documentation.\\\",\\n\n        \\     \\\"type\\\": \\\"Collection\\\",\\n      \\\"title\\\": \\\"ESA Fire Climate Change\n        Initiative (Fire_cci): Sentinel-3 SYN Burned Area Pixel product, version 1.1\\\",\\n\n        \\     \\\"license\\\": \\\"various\\\",\\n      \\\"assets\\\": {\\n        \\\"search\\\":\n        {\\n          \\\"roles\\\": [\\\"search\\\"],\\n          \\\"href\\\": \\\"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=d441079fc77f49fabeb41330612b252f\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Search client\\\"\\n\n        \\       },\\n        \\\"enclosure\\\": {\\n          \\\"roles\\\": [\\\"data\\\"],\\n          \\\"href\\\":\n        \\\"http://data.ceda.ac.uk/neodc/esacci/fire/data/burned_area/Sentinel3_SYN/pixel/v1.1\\\",\\n\n        \\         \\\"type\\\": \\\"application/x-binary\\\",\\n          \\\"title\\\": \\\"DOWNLOAD\n        - Download Data\\\"\\n        },\\n        \\\"metadata_ogc_17_069r3\\\": {\\n          \\\"roles\\\":\n        [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/d441079fc77f49fabeb41330612b252f\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/d441079fc77f49fabeb41330612b252f?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/d441079fc77f49fabeb41330612b252f?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/d441079fc77f49fabeb41330612b252f?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/d441079fc77f49fabeb41330612b252f?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/d441079fc77f49fabeb41330612b252f?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/d441079fc77f49fabeb41330612b252f?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        }\\n\n        \\     },\\n      \\\"links\\\": [\\n        {\\n          \\\"rel\\\": \\\"cite-as\\\",\\n\n        \\         \\\"href\\\": \\\"https://doi.org/https://doi.org/10.5281/zenodo.10721951\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Landing page\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/d441079fc77f49fabeb41330612b252f\\\",\\n\n        \\         \\\"type\\\": \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"root\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\",\\n          \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n\n        \\         \\\"title\\\": \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"items\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/d441079fc77f49fabeb41330612b252f/items?httpAccept=application/geo%2Bjson;profile=https://stacspec.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json\\\",\\n          \\\"title\\\": \\\"Datasets\n        search for the series d441079fc77f49fabeb41330612b252f\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"http://www.opengis.net/def/rel/ogc/1.0/queryables\\\",\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/d441079fc77f49fabeb41330612b252f/queryables\\\",\\n\n        \\         \\\"type\\\": \\\"application/schema+json\\\",\\n          \\\"title\\\": \\\"Queryables\n        for d441079fc77f49fabeb41330612b252f\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"search\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/series/items/d441079fc77f49fabeb41330612b252f/api\\\",\\n\n        \\         \\\"type\\\": \\\"application/opensearchdescription+xml\\\",\\n          \\\"title\\\":\n        \\\"OpenSearch Description Document\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://catalogue.ceda.ac.uk/uuid/d441079fc77f49fabeb41330612b252f\\\",\\n\n        \\         \\\"title\\\": \\\"CEDA Data Catalogue Page - Detail and access information\n        for the resource\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://climate.esa.int/projects/fire\\\",\\n          \\\"title\\\":\n        \\\"ESA Fire CCI project webpages - No further details.\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://climate.esa.int\\\",\\n\n        \\         \\\"title\\\": \\\"ESA Climate Change Initiative website - No further\n        details.\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\":\n        \\\"https://doi.org/10.5281/zenodo.10721951\\\",\\n          \\\"title\\\": \\\"Product\n        User Guide - No further details.\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://climate.esa.int/media/documents/Fire_cci_D2.2_ATBD-SYN_v1.1.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"Algorithm\n        Theoretical Basis Document (ATBD) - Version 1.1 - No further details.\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/d441079fc77f49fabeb41330612b252f?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/d441079fc77f49fabeb41330612b252f?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/d441079fc77f49fabeb41330612b252f?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/d441079fc77f49fabeb41330612b252f?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/d441079fc77f49fabeb41330612b252f?httpAccept=application/rdf%2Bxml;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/d441079fc77f49fabeb41330612b252f?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\\\",\\n\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/d441079fc77f49fabeb41330612b252f?httpAccept=text/turtle;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/d441079fc77f49fabeb41330612b252f?httpAccept=text/turtle;profile=http://data.europa.eu/930/\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/CEDA\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for CEDA\\\"\\n        }\\n      ],\\n\n        \\     \\\"id\\\": \\\"d441079fc77f49fabeb41330612b252f\\\",\\n      \\\"updated\\\": \\\"2025-04-07T23:42:44Z\\\",\\n\n        \\     \\\"stac_extensions\\\": [\\n        \\\"https://stac-extensions.github.io/processing/v1.2.0/schema.json\\\",\\n\n        \\       \\\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\\\"\\n\n        \\     ],\\n      \\\"providers\\\": [\\n        {\\n          \\\"roles\\\": [\\\"producer\\\"],\\n\n        \\         \\\"name\\\": \\\"CEDA\\\"\\n        },\\n        {\\n          \\\"roles\\\":\n        [\\\"host\\\"],\\n          \\\"name\\\": \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\":\n        \\\"https://emc.spacebel.be/readme.html\\\"\\n        }\\n      ],\\n      \\\"summaries\\\":\n        {\\\"processing:lineage\\\": [\\\"Data was produced by the ESA Fire CCI team as\n        part of the ESA Climate Change Initiative (CCI) and is being held on the CEDA\n        (Centre for Environmental Data Analysis) archive as part of the ESA CCI Open\n        Data Portal.\\\"]}\\n    },\\n    {\\n      \\\"extent\\\": {\\n        \\\"spatial\\\":\n        {\\\"bbox\\\": [[\\n          64.8,\\n          59.4,\\n          87.3,\\n          73.9\\n\n        \\       ]]},\\n        \\\"temporal\\\": {\\\"interval\\\": [[\\n          \\\"1990-01-01T00:00:00Z\\\",\\n\n        \\         \\\"2019-12-31T23:59:59Z\\\"\\n        ]]}\\n      },\\n      \\\"stac_version\\\":\n        \\\"1.0.0\\\",\\n      \\\"keywords\\\": [\\n        \\\"Land Cover\\\",\\n        \\\"CCI\\\",\\n\n        \\       \\\"High Resolution\\\",\\n        \\\"orthoimagery\\\",\\n        \\\"EARTH SCIENCE>LAND\n        SURFACE>LAND USE/LAND COVER\\\"\\n      ],\\n      \\\"description\\\": \\\"This dataset\n        contains high resolution (HR) land cover (LC) and land cover change (LCC)\n        maps of a subregion of Siberia, produced by the ESA High Resolution Land Cover\n        (HRLC) Climate Change Initiative (CCI) project.  It consists of the following\n        products:1) HRLC30:  High Resolution Land Cover Maps at 30m spatial resolution\n        for years 1990, 1995, 2000, 2005, 2010, 2015, 2019.2) HRLCC30: High Resolution\n        Land Cover Change Maps at 30m spatial resolution of yearly changes. A map\n        every 5 years (1990-1995, 1995-2000, 2000-2005, 2005-2010, 2010-2015,2015-2019)\n        is provided which reports (high priority) changed pixels and their year within\n        the 5-years temporal interval.3) Associated uncertainty productsThey cover\n        the geographic range (59.4\\xC2\\xB0N \\xE2\\\\u0080\\\\u0093 73.9\\xC2\\xB0N, 64.8\\xC2\\xB0E\n        \\xE2\\\\u0080\\\\u0093 87.4\\xC2\\xB0E).The data are provided as both GeoTIFF tiles\n        following the Sentinel 2 MGRS tiling scheme and as a GeoTiff format mosaic.\n        \\   These maps are also referred to as historical maps.\\\",\\n      \\\"type\\\":\n        \\\"Collection\\\",\\n      \\\"title\\\": \\\"ESA High Resolution Land Cover Climate\n        Change Initiative (High_Resolution_Land_Cover_cci): High Resolution Land Cover\n        and Land Cover Change Maps in Siberia (Norther Siberia region) at 30m spatial\n        resolution in GeoTiff format, 1990-2019, v1.2\\\",\\n      \\\"license\\\": \\\"various\\\",\\n\n        \\     \\\"assets\\\": {\\n        \\\"search\\\": {\\n          \\\"roles\\\": [\\\"search\\\"],\\n\n        \\         \\\"href\\\": \\\"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=854cc98dbc634cdb8afa8835994428f5\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Search client\\\"\\n\n        \\       },\\n        \\\"enclosure\\\": {\\n          \\\"roles\\\": [\\\"data\\\"],\\n          \\\"href\\\":\n        \\\"http://data.ceda.ac.uk/neodc/esacci/high_resolution_land_cover/data/land_cover_maps/A03_Siberia/historical/v1.2/geotiff/\\\",\\n\n        \\         \\\"type\\\": \\\"application/x-binary\\\",\\n          \\\"title\\\": \\\"DOWNLOAD\n        - Download Data\\\"\\n        },\\n        \\\"metadata_ogc_17_069r3\\\": {\\n          \\\"roles\\\":\n        [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/854cc98dbc634cdb8afa8835994428f5\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/854cc98dbc634cdb8afa8835994428f5?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/854cc98dbc634cdb8afa8835994428f5?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/854cc98dbc634cdb8afa8835994428f5?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/854cc98dbc634cdb8afa8835994428f5?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/854cc98dbc634cdb8afa8835994428f5?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/854cc98dbc634cdb8afa8835994428f5?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        }\\n\n        \\     },\\n      \\\"links\\\": [\\n        {\\n          \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/854cc98dbc634cdb8afa8835994428f5\\\",\\n\n        \\         \\\"type\\\": \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"root\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\",\\n          \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n\n        \\         \\\"title\\\": \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"items\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/854cc98dbc634cdb8afa8835994428f5/items?httpAccept=application/geo%2Bjson;profile=https://stacspec.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json\\\",\\n          \\\"title\\\": \\\"Datasets\n        search for the series 854cc98dbc634cdb8afa8835994428f5\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"http://www.opengis.net/def/rel/ogc/1.0/queryables\\\",\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/854cc98dbc634cdb8afa8835994428f5/queryables\\\",\\n\n        \\         \\\"type\\\": \\\"application/schema+json\\\",\\n          \\\"title\\\": \\\"Queryables\n        for 854cc98dbc634cdb8afa8835994428f5\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"search\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/series/items/854cc98dbc634cdb8afa8835994428f5/api\\\",\\n\n        \\         \\\"type\\\": \\\"application/opensearchdescription+xml\\\",\\n          \\\"title\\\":\n        \\\"OpenSearch Description Document\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://catalogue.ceda.ac.uk/uuid/854cc98dbc634cdb8afa8835994428f5\\\",\\n\n        \\         \\\"title\\\": \\\"CEDA Data Catalogue Page - Detail and access information\n        for the resource\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://climate.esa.int/\\\",\\n          \\\"title\\\": \\\"ESA\n        Climate Change Initiative website - No further details.\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://climate.esa.int/projects/high-resolution-land-cover/\\\",\\n\n        \\         \\\"title\\\": \\\"ESA CCI High Resolution Land Cover project website\n        - No further details.\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://climate.esa.int/documents/2514/CCI_HRLC_Ph1-D4.3_PUG_v2.2.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"Product User\n        Guide - No further details.\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://data.ceda.ac.uk/neodc/esacci/high_resolution_land_cover/metadata/land_cover_maps/qgis_legends\\\",\\n\n        \\         \\\"title\\\": \\\"QGIS legends - No further details.\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"Quick User\n        Guide v1.0 - No further details.\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/854cc98dbc634cdb8afa8835994428f5?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/854cc98dbc634cdb8afa8835994428f5?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/854cc98dbc634cdb8afa8835994428f5?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/854cc98dbc634cdb8afa8835994428f5?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/854cc98dbc634cdb8afa8835994428f5?httpAccept=application/rdf%2Bxml;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/854cc98dbc634cdb8afa8835994428f5?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\\\",\\n\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/854cc98dbc634cdb8afa8835994428f5?httpAccept=text/turtle;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/854cc98dbc634cdb8afa8835994428f5?httpAccept=text/turtle;profile=http://data.europa.eu/930/\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/CEDA\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for CEDA\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/Unavailable\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for Unavailable\\\"\\n        }\\n      ],\\n\n        \\     \\\"id\\\": \\\"854cc98dbc634cdb8afa8835994428f5\\\",\\n      \\\"updated\\\": \\\"2025-04-07T23:43:10Z\\\",\\n\n        \\     \\\"stac_extensions\\\": [\\\"https://stac-extensions.github.io/processing/v1.2.0/schema.json\\\"],\\n\n        \\     \\\"providers\\\": [\\n        {\\n          \\\"roles\\\": [\\\"producer\\\"],\\n\n        \\         \\\"name\\\": \\\"CEDA\\\"\\n        },\\n        {\\n          \\\"roles\\\":\n        [\\\"host\\\"],\\n          \\\"name\\\": \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\":\n        \\\"https://emc.spacebel.be/readme.html\\\"\\n        }\\n      ],\\n      \\\"summaries\\\":\n        {\\\"processing:lineage\\\": [\\\"Data were processed by the ESA CCI High Resolution\n        Land Cover project and catalogued here as part of the CCI Open Data Portal\n        Project\\\"]}\\n    }\\n  ],\\n  \\\"numberReturned\\\": 10,\\n  \\\"links\\\": [\\n    {\\n\n        \\     \\\"rel\\\": \\\"self\\\",\\n      \\\"href\\\": \\\"https://emc.spacebel.be/collections?limit=10&q=sentinel\\\",\\n\n        \\     \\\"type\\\": \\\"application/json\\\",\\n      \\\"title\\\": \\\"This document\\\"\\n\n        \\   },\\n    {\\n      \\\"rel\\\": \\\"next\\\",\\n      \\\"href\\\": \\\"https://emc.spacebel.be/collections?limit=10&q=sentinel&startRecord=11\\\",\\n\n        \\     \\\"type\\\": \\\"application/json\\\",\\n      \\\"title\\\": \\\"Next results\\\"\\n\n        \\   },\\n    {\\n      \\\"rel\\\": \\\"http://www.opengis.net/def/rel/ogc/1.0/queryables\\\",\\n\n        \\     \\\"href\\\": \\\"https://emc.spacebel.be/collections/queryables\\\",\\n      \\\"type\\\":\n        \\\"application/schema+json\\\",\\n      \\\"title\\\": \\\"Queryables for collection\n        search\\\"\\n    }\\n  ],\\n  \\\"numberMatched\\\": 216\\n}\"\n    headers:\n      Access-Control-Allow-Headers:\n      - X-PINGOTHER, Content-Type, Authorization, Accept\n      Access-Control-Allow-Methods:\n      - POST,GET,PUT,HEAD,OPTIONS,DELETE\n      Access-Control-Allow-Origin:\n      - '*'\n      Cache-Control:\n      - no-cache, no-store, max-age=0, must-revalidate\n      Connection:\n      - keep-alive\n      Content-Type:\n      - application/json;charset=UTF-8\n      Date:\n      - Thu, 31 Jul 2025 15:08:17 GMT\n      Expires:\n      - '0'\n      Pragma:\n      - no-cache\n      Server:\n      - openresty\n      Strict-Transport-Security:\n      - max-age=31536000 ; includeSubDomains\n      Transfer-Encoding:\n      - chunked\n      X-Content-Type-Options:\n      - nosniff\n      X-Frame-Options:\n      - DENY\n      X-Served-By:\n      - emc.spacebel.be\n      X-XSS-Protection:\n      - 1; mode=block\n    status:\n      code: 200\n      message: ''\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://emc.spacebel.be/collections?limit=10&q=sentinel&startRecord=11\n  response:\n    body:\n      string: \"{\\n  \\\"collections\\\": [\\n    {\\n      \\\"extent\\\": {\\n        \\\"spatial\\\":\n        {\\\"bbox\\\": [[\\n          -80,\\n          60,\\n          -10,\\n          90\\n\n        \\       ]]},\\n        \\\"temporal\\\": {\\\"interval\\\": [[\\n          \\\"1995-08-27T23:00:00Z\\\",\\n\n        \\         \\\"2017-03-16T23:59:59Z\\\"\\n        ]]}\\n      },\\n      \\\"stac_version\\\":\n        \\\"1.0.0\\\",\\n      \\\"keywords\\\": [\\n        \\\"DIF10\\\",\\n        \\\"Greenland\\\",\\n\n        \\       \\\"Ice Sheet\\\",\\n        \\\"CCI\\\",\\n        \\\"ESA\\\",\\n        \\\"orthoimagery\\\",\\n\n        \\       \\\"EARTH SCIENCE>CRYOSPHERE>GLACIERS/ICE SHEETS>ICE SHEETS\\\",\\n        \\\"ERS-1\\\",\\n\n        \\       \\\"ERS-2\\\",\\n        \\\"Sentinel-1A\\\",\\n        \\\"Sentinel-1B\\\",\\n        \\\"AMI\\\",\\n\n        \\       \\\"C-SAR\\\",\\n        \\\"ice sheets\\\",\\n        \\\"AMI-SAR\\\",\\n        \\\"SAR-C\n        (Sentinel-1)\\\",\\n        \\\"AMI/SAR\\\"\\n      ],\\n      \\\"description\\\": \\\"This\n        dataset contains grounding lines for 5 North Greenland glaciers, derived from\n        generated from ERS -1/-2 and Sentinel-1 SAR (Synthetic Aperture Radar) interferometry.\n        \\ This version of the dataset (v1.3) has been extended with grounding lines\n        for 2017. Data was produced as part of the ESA Greenland Ice Sheets Climate\n        Change Initiative (CCI) project by ENVEO, Austria. The grounding line is the\n        separation point between the floating and grounded parts of the glacier. Processes\n        at the grounding lines of floating marine termini of glaciers and ice streams\n        are important for understanding the response of the ice masses to changing\n        boundary conditions and for establishing realistic scenarios for the response\n        to climate change. The grounding line location product is derived from InSAR\n        data by mapping the tidal flexure and is generated for a selection of the\n        few glaciers in Greenland, which have a floating tongue. In general, the true\n        location of the grounding line is unknown, and therefore validation is difficult\n        for this product.Remote sensing observations do not provide direct measurement\n        on the transition from floating to grounding ice (the grounding line). The\n        satellite data deliver observations on ice surface features (e.g. tidal deformation\n        by InSAR, spatial changes in texture and shading in optical images) that are\n        indirect indicators for estimating the position of the grounding line. Due\n        to the plasticity of ice these indicators spread out over a zone upstream\n        and downstream of the grounding line, the tidal flexure zone (also called\n        grounding zone).\\\",\\n      \\\"type\\\": \\\"Collection\\\",\\n      \\\"title\\\": \\\"ESA\n        Greenland Ice Sheet Climate Change Initiative (Greenland_Ice_Sheet_cci): Grounding\n        Line Locations from SAR Interferometry,  v1.3\\\",\\n      \\\"license\\\": \\\"various\\\",\\n\n        \\     \\\"assets\\\": {\\n        \\\"search\\\": {\\n          \\\"roles\\\": [\\\"search\\\"],\\n\n        \\         \\\"href\\\": \\\"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=ea7a4cbe7b83450bb7a00bf3761c40d7\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Search client\\\"\\n\n        \\       },\\n        \\\"enclosure\\\": {\\n          \\\"roles\\\": [\\\"data\\\"],\\n          \\\"href\\\":\n        \\\"http://data.ceda.ac.uk/neodc/esacci/ice_sheets_greenland/data/greenland_grounding_line_locations/v1.3/\\\",\\n\n        \\         \\\"type\\\": \\\"application/x-binary\\\",\\n          \\\"title\\\": \\\"DOWNLOAD\n        - Download Data\\\"\\n        },\\n        \\\"metadata_ogc_17_069r3\\\": {\\n          \\\"roles\\\":\n        [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/ea7a4cbe7b83450bb7a00bf3761c40d7\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/ea7a4cbe7b83450bb7a00bf3761c40d7?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ea7a4cbe7b83450bb7a00bf3761c40d7?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ea7a4cbe7b83450bb7a00bf3761c40d7?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ea7a4cbe7b83450bb7a00bf3761c40d7?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ea7a4cbe7b83450bb7a00bf3761c40d7?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ea7a4cbe7b83450bb7a00bf3761c40d7?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        }\\n\n        \\     },\\n      \\\"links\\\": [\\n        {\\n          \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/ea7a4cbe7b83450bb7a00bf3761c40d7\\\",\\n\n        \\         \\\"type\\\": \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"root\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\",\\n          \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n\n        \\         \\\"title\\\": \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"items\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/ea7a4cbe7b83450bb7a00bf3761c40d7/items?httpAccept=application/geo%2Bjson;profile=https://stacspec.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json\\\",\\n          \\\"title\\\": \\\"Datasets\n        search for the series ea7a4cbe7b83450bb7a00bf3761c40d7\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"http://www.opengis.net/def/rel/ogc/1.0/queryables\\\",\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ea7a4cbe7b83450bb7a00bf3761c40d7/queryables\\\",\\n\n        \\         \\\"type\\\": \\\"application/schema+json\\\",\\n          \\\"title\\\": \\\"Queryables\n        for ea7a4cbe7b83450bb7a00bf3761c40d7\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"search\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/series/items/ea7a4cbe7b83450bb7a00bf3761c40d7/api\\\",\\n\n        \\         \\\"type\\\": \\\"application/opensearchdescription+xml\\\",\\n          \\\"title\\\":\n        \\\"OpenSearch Description Document\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://catalogue.ceda.ac.uk/uuid/ea7a4cbe7b83450bb7a00bf3761c40d7\\\",\\n\n        \\         \\\"title\\\": \\\"CEDA Data Catalogue Page - Detail and access information\n        for the resource\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"http://www.esa-icesheets-greenland-cci.org/index.php?q=webfm_send/165\\\",\\n\n        \\         \\\"title\\\": \\\"Product User Guide - No further details.\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\": \\\"http://www.esa-icesheets-cci.org/\\\",\\n\n        \\         \\\"title\\\": \\\"The ESA Greenland Ice Sheet CCI Project - No further\n        details.\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\":\n        \\\"https://climate.esa.int/\\\",\\n          \\\"title\\\": \\\"ESA Climate Change Initiative\n        website - No further details.\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"http://data.ceda.ac.uk/neodc/esacci/ice_sheets_greenland/metadata/sample_images/gll_v1.3_quicklook.jpg\\\",\\n\n        \\         \\\"title\\\": \\\"Sample Image - No further details.\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/ea7a4cbe7b83450bb7a00bf3761c40d7?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/ea7a4cbe7b83450bb7a00bf3761c40d7?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/ea7a4cbe7b83450bb7a00bf3761c40d7?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/ea7a4cbe7b83450bb7a00bf3761c40d7?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/ea7a4cbe7b83450bb7a00bf3761c40d7?httpAccept=application/rdf%2Bxml;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/ea7a4cbe7b83450bb7a00bf3761c40d7?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\\\",\\n\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/ea7a4cbe7b83450bb7a00bf3761c40d7?httpAccept=text/turtle;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/ea7a4cbe7b83450bb7a00bf3761c40d7?httpAccept=text/turtle;profile=http://data.europa.eu/930/\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/CEDA\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for CEDA\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/ERS-1\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for ERS-1 platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/ERS-2\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for ERS-2 platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/Sentinel-1A\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for Sentinel-1A platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/Sentinel-1B\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for Sentinel-1B platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/a2cb7dbe-6433-5737-9d3c-b974e6f643b2\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for C-SAR instrument\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/72aad1c4-ff46-535c-9256-cc0bf9d004f1\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for AMI/SAR instrument\\\"\\n        }\\n\n        \\     ],\\n      \\\"id\\\": \\\"ea7a4cbe7b83450bb7a00bf3761c40d7\\\",\\n      \\\"updated\\\":\n        \\\"2025-04-07T23:43:35Z\\\",\\n      \\\"stac_extensions\\\": [\\\"https://stac-extensions.github.io/processing/v1.2.0/schema.json\\\"],\\n\n        \\     \\\"providers\\\": [\\n        {\\n          \\\"roles\\\": [\\\"producer\\\"],\\n\n        \\         \\\"name\\\": \\\"CEDA\\\"\\n        },\\n        {\\n          \\\"roles\\\":\n        [\\\"host\\\"],\\n          \\\"name\\\": \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\":\n        \\\"https://emc.spacebel.be/readme.html\\\"\\n        }\\n      ],\\n      \\\"summaries\\\":\n        {\\n        \\\"instruments\\\": [\\n          \\\"C-SAR\\\",\\n          \\\"AMI/SAR\\\"\\n\n        \\       ],\\n        \\\"processing:lineage\\\": [\\\"Data were processed by the\n        ESA CCI Greenland Ice Sheet project team and supplied to CEDA in the context\n        of the ESA CCI Open Data Portal Project.\\\"],\\n        \\\"platform\\\": [\\n          \\\"ERS-1\\\",\\n\n        \\         \\\"ERS-2\\\",\\n          \\\"Sentinel-1A\\\",\\n          \\\"Sentinel-1B\\\"\\n\n        \\       ]\\n      }\\n    },\\n    {\\n      \\\"extent\\\": {\\n        \\\"spatial\\\":\n        {\\\"bbox\\\": [[\\n          -180,\\n          -90,\\n          180,\\n          90\\n\n        \\       ]]},\\n        \\\"temporal\\\": {\\\"interval\\\": [[\\n          \\\"1992-09-26T00:00:00Z\\\",\\n\n        \\         \\\"2022-12-31T23:59:59Z\\\"\\n        ]]}\\n      },\\n      \\\"stac_version\\\":\n        \\\"1.0.0\\\",\\n      \\\"keywords\\\": [\\n        \\\"ESA\\\",\\n        \\\"CCI\\\",\\n        \\\"Lakes\\\",\\n\n        \\       \\\"ECV\\\",\\n        \\\"orthoimagery\\\",\\n        \\\"EARTH SCIENCE>BIOSPHERE>ECOSYSTEMS>FRESHWATER\n        ECOSYSTEMS>LAKE/POND>MONTANE LAKE\\\",\\n        \\\"Jason-2\\\",\\n        \\\"Envisat\\\",\\n\n        \\       \\\"Jason-1\\\",\\n        \\\"Topex/Poseidon\\\",\\n        \\\"MODIS_AQUA\\\",\\n\n        \\       \\\"MODIS_TERRA\\\",\\n        \\\"ERS\\\",\\n        \\\"Landsat-8\\\",\\n        \\\"Landsat-5\\\",\\n\n        \\       \\\"Jason-3\\\",\\n        \\\"Landsat-7\\\",\\n        \\\"Metop\\\",\\n        \\\"Landsat-4\\\",\\n\n        \\       \\\"SARAL\\\",\\n        \\\"Sentinel-3A\\\",\\n        \\\"Sentinel-3B\\\",\\n        \\\"Sentinel-1\\\",\\n\n        \\       \\\"Sentinel-2\\\"\\n      ],\\n      \\\"description\\\": \\\"This dataset contains\n        the Lakes Essential Climate Variable, which is comprised of processed satellite\n        observations at the global scale, over the period 1992-2022, for over 2000\n        inland water bodies. This dataset was produced by the European Space Agency\n        (ESA) Lakes Climate Change Initiative (Lakes_cci) project. For more information\n        about the Lakes_cci please visit the project website. This is version 2.1.0\n        of the dataset.The six thematic climate variables included in this dataset\n        are:\\xE2\\\\u0080\\xA2 Lake Water Level (LWL), derived from satellite altimetry,\n        is fundamental to understand the balance between water inputs and water loss\n        and their connection with regional and global climate change.\\xE2\\\\u0080\\xA2\n        Lake Water Extent (LWE), modelled from the relation between LWL and high-resolution\n        spatial extent observed at set time-points, describes the areal extent of\n        the water body. This allows the observation of drought in arid environments,\n        expansion in high Asia, or impact of large-scale atmospheric oscillations\n        on lakes in tropical regions for example. .\\xE2\\\\u0080\\xA2 Lake Surface Water\n        temperature (LSWT), derived from optical and thermal satellite observations,\n        is correlated with regional air temperatures and is informative about vertical\n        mixing regimes, driving biogeochemical cycling and seasonality.\\xE2\\\\u0080\\xA2\n        Lake Ice Cover (LIC), determined from optical observations, describes the\n        freeze-up in autumn and break-up of ice in spring, which are proxies for gradually\n        changing climate patterns and seasonality.\\xE2\\\\u0080\\xA2 Lake Water-Leaving\n        Reflectance (LWLR), derived from optical satellite observations, is a direct\n        indicator of biogeochemical processes and habitats in the visible part of\n        the water column (e.g. seasonal phytoplankton biomass fluctuations), and an\n        indicator of the frequency of extreme events (peak terrestrial run-off, changing\n        mixing conditions).\\xE2\\\\u0080\\xA2 Lake Ice Thickness (LIT), containing LIT\n        information over Great Slave lake from 2002-2022.Data generated in the Lakes_cci\n        are derived from multiple satellite sensors including: TOPEX/Poseidon, Jason,\n        ENVISAT, SARAL, Sentinel 2-3, Landsat 4, 5, 7 and 8, ERS-1, ERS-2, Terra/Aqua\n        and Metop-A/B.Satellite sensors associated with the thematic climate variables\n        are as follows:LWL: TOPEX/Poseidon, Jason-1, Jason-2, Jason-3, Sentinel-6A,\n        Envisat RA/RA-2, SARAL AltiKa, GFO, Sentinel-3A SRAL, Sentinel-3B SRAL, ERS-1\n        RA, ERS-2; LWE: Landsat 4 TM, 5 TM, 7 ETM+, 8 OLI, Sentinel-1 C-band SAR,\n        Sentinel-2 MSI, Sentinel-3A SRAL, Sentinel-3B SRAL, ERS-1 AMI, ERS-2 AMI;LSWT:\n        Envisat AATSR, Terra/Aqua MODIS, Sentinel-3A ATTSR-2, Sentinel-3B, ERS-2 AVHRR,\n        Metop-A/B; LIC: Terra/Aqua MODIS; LWLR: Envisat MERIS, Sentinel-3A OLCI A/B,\n        Aqua MODIS;LIT: Jason1, Jason2, Jason3, POSEIDON-2, POSEIDON-3 and POSEIDON-3B.Detailed\n        information about the generation and validation of this dataset is available\n        from the Lakes_cci documentation available on the project website  and in\n        Carrea, L., Cr\\xC3\\xA9taux, JF., Liu, X. et al. Satellite-derived multivariate\n        world-wide lake physical variable timeseries for climate studies. Sci Data\n        10, 30 (2023). https://doi.org/10.1038/s41597-022-01889-z\\\",\\n      \\\"type\\\":\n        \\\"Collection\\\",\\n      \\\"title\\\": \\\"ESA Lakes Climate Change Initiative (Lakes_cci):\n        \\ Lake products, Version 2.1\\\",\\n      \\\"license\\\": \\\"various\\\",\\n      \\\"assets\\\":\n        {\\n        \\\"search\\\": {\\n          \\\"roles\\\": [\\\"search\\\"],\\n          \\\"href\\\":\n        \\\"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=7fc9df8070d34cacab8092e45ef276f1\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Search client\\\"\\n\n        \\       },\\n        \\\"enclosure\\\": {\\n          \\\"roles\\\": [\\\"data\\\"],\\n          \\\"href\\\":\n        \\\"http://data.ceda.ac.uk/neodc/esacci/lakes/data/lake_products/L3S/v2.1/\\\",\\n\n        \\         \\\"type\\\": \\\"application/x-binary\\\",\\n          \\\"title\\\": \\\"DOWNLOAD\n        - Download Data\\\"\\n        },\\n        \\\"metadata_ogc_17_069r3\\\": {\\n          \\\"roles\\\":\n        [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/7fc9df8070d34cacab8092e45ef276f1\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/7fc9df8070d34cacab8092e45ef276f1?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/7fc9df8070d34cacab8092e45ef276f1?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/7fc9df8070d34cacab8092e45ef276f1?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/7fc9df8070d34cacab8092e45ef276f1?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/7fc9df8070d34cacab8092e45ef276f1?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/7fc9df8070d34cacab8092e45ef276f1?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        }\\n\n        \\     },\\n      \\\"links\\\": [\\n        {\\n          \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/7fc9df8070d34cacab8092e45ef276f1\\\",\\n\n        \\         \\\"type\\\": \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"root\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\",\\n          \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n\n        \\         \\\"title\\\": \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"items\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/7fc9df8070d34cacab8092e45ef276f1/items?httpAccept=application/geo%2Bjson;profile=https://stacspec.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json\\\",\\n          \\\"title\\\": \\\"Datasets\n        search for the series 7fc9df8070d34cacab8092e45ef276f1\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"http://www.opengis.net/def/rel/ogc/1.0/queryables\\\",\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/7fc9df8070d34cacab8092e45ef276f1/queryables\\\",\\n\n        \\         \\\"type\\\": \\\"application/schema+json\\\",\\n          \\\"title\\\": \\\"Queryables\n        for 7fc9df8070d34cacab8092e45ef276f1\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"search\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/series/items/7fc9df8070d34cacab8092e45ef276f1/api\\\",\\n\n        \\         \\\"type\\\": \\\"application/opensearchdescription+xml\\\",\\n          \\\"title\\\":\n        \\\"OpenSearch Description Document\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://catalogue.ceda.ac.uk/uuid/7fc9df8070d34cacab8092e45ef276f1\\\",\\n\n        \\         \\\"title\\\": \\\"CEDA Data Catalogue Page - Detail and access information\n        for the resource\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://climate.esa.int/en/projects/lakes/key-documents-lakes/\\\",\\n\n        \\         \\\"title\\\": \\\"Documentation for ESA CCI Lakes project - No further\n        details.\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\":\n        \\\"https://climate.esa.int\\\",\\n          \\\"title\\\": \\\"ESA Climate Change Initiative\n        website - No further details.\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://climate.esa.int/projects/lakes/\\\",\\n\n        \\         \\\"title\\\": \\\"ESA CCI Lakes project website - No further details.\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/7fc9df8070d34cacab8092e45ef276f1?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/7fc9df8070d34cacab8092e45ef276f1?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/7fc9df8070d34cacab8092e45ef276f1?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/7fc9df8070d34cacab8092e45ef276f1?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/7fc9df8070d34cacab8092e45ef276f1?httpAccept=application/rdf%2Bxml;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/7fc9df8070d34cacab8092e45ef276f1?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\\\",\\n\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/7fc9df8070d34cacab8092e45ef276f1?httpAccept=text/turtle;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/7fc9df8070d34cacab8092e45ef276f1?httpAccept=text/turtle;profile=http://data.europa.eu/930/\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/CEDA\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for CEDA\\\"\\n        }\\n      ],\\n\n        \\     \\\"id\\\": \\\"7fc9df8070d34cacab8092e45ef276f1\\\",\\n      \\\"updated\\\": \\\"2025-04-07T23:44:42Z\\\",\\n\n        \\     \\\"stac_extensions\\\": [\\\"https://stac-extensions.github.io/processing/v1.2.0/schema.json\\\"],\\n\n        \\     \\\"providers\\\": [\\n        {\\n          \\\"roles\\\": [\\\"producer\\\"],\\n\n        \\         \\\"name\\\": \\\"CEDA\\\"\\n        },\\n        {\\n          \\\"roles\\\":\n        [\\\"host\\\"],\\n          \\\"name\\\": \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\":\n        \\\"https://emc.spacebel.be/readme.html\\\"\\n        }\\n      ],\\n      \\\"summaries\\\":\n        {\\\"processing:lineage\\\": [\\\"This dataset was generated in the framework of\n        the Lakes CCI+ project, funded by ESA. Data were produced by the project team\n        and supplied for archiving at the Centre for Environmental Data Analysis (CEDA).\\\"]}\\n\n        \\   },\\n    {\\n      \\\"extent\\\": {\\n        \\\"spatial\\\": {\\\"bbox\\\": [[\\n          -80,\\n\n        \\         60,\\n          -10,\\n          90\\n        ]]},\\n        \\\"temporal\\\":\n        {\\\"interval\\\": [[\\n          \\\"2017-06-02T23:00:00Z\\\",\\n          \\\"2017-09-08T22:59:59Z\\\"\\n\n        \\       ]]}\\n      },\\n      \\\"stac_version\\\": \\\"1.0.0\\\",\\n      \\\"keywords\\\":\n        [\\n        \\\"DIF10\\\",\\n        \\\"Greenland\\\",\\n        \\\"Ice sheet\\\",\\n        \\\"CCI\\\",\\n\n        \\       \\\"ESA\\\",\\n        \\\"orthoimagery\\\",\\n        \\\"EARTH SCIENCE>CRYOSPHERE>GLACIERS/ICE\n        SHEETS>ICE SHEETS\\\",\\n        \\\"Sentinel-2\\\",\\n        \\\"Sentinel-2B\\\",\\n\n        \\       \\\"Sentinel-2 MSI\\\",\\n        \\\"ice sheets\\\",\\n        \\\"Sentinel-2A\\\",\\n\n        \\       \\\"MSI (Sentinel-2)\\\",\\n        \\\"MSI\\\"\\n      ],\\n      \\\"description\\\":\n        \\\"This dataset contains optical ice velocity time series and seasonal product\n        of the Jakobshavn Glacier in Greenland, derived from intensity-tracking of\n        Sentinel-2 data acquired between 2017-06-03 and 2017-09-08.  It has been produced\n        as part of the ESA Greenland Ice sheet CCI project. The data are provided\n        on a polar stereographic grid (EPSG 3413:Latitude of true scale 70N, Reference\n        Longitude 45E) with 50m grid spacing.  The horizontal velocity is provided\n        in true meters per day, towards EASTING (x) and NORTHING (y) direction of\n        the grid.The data have been produced by S[&]T Norway.\\\",\\n      \\\"type\\\":\n        \\\"Collection\\\",\\n      \\\"title\\\": \\\"ESA Greenland Ice Sheet Climate Change\n        Initiative (Greenland_Ice_Sheet_cci): Optical ice velocity of the  Jakobshavn\n        Glacier between 2017-06-03 and 2017-09-08, generated using Sentinel-2 data,\n        v1.1\\\",\\n      \\\"license\\\": \\\"various\\\",\\n      \\\"assets\\\": {\\n        \\\"search\\\":\n        {\\n          \\\"roles\\\": [\\\"search\\\"],\\n          \\\"href\\\": \\\"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=cfe3102659f34d33b123b2a0043e4068\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Search client\\\"\\n\n        \\       },\\n        \\\"enclosure\\\": {\\n          \\\"roles\\\": [\\\"data\\\"],\\n          \\\"href\\\":\n        \\\"http://data.ceda.ac.uk/neodc/esacci/ice_sheets_greenland/data/greenland_ice_velocity/greenland_iv_50m_s2_jakobshavn/v1.1/\\\",\\n\n        \\         \\\"type\\\": \\\"application/x-binary\\\",\\n          \\\"title\\\": \\\"DOWNLOAD\n        - Download Data\\\"\\n        },\\n        \\\"metadata_ogc_17_069r3\\\": {\\n          \\\"roles\\\":\n        [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/cfe3102659f34d33b123b2a0043e4068\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/cfe3102659f34d33b123b2a0043e4068?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/cfe3102659f34d33b123b2a0043e4068?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/cfe3102659f34d33b123b2a0043e4068?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/cfe3102659f34d33b123b2a0043e4068?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/cfe3102659f34d33b123b2a0043e4068?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/cfe3102659f34d33b123b2a0043e4068?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        }\\n\n        \\     },\\n      \\\"links\\\": [\\n        {\\n          \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/cfe3102659f34d33b123b2a0043e4068\\\",\\n\n        \\         \\\"type\\\": \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"root\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\",\\n          \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n\n        \\         \\\"title\\\": \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"items\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/cfe3102659f34d33b123b2a0043e4068/items?httpAccept=application/geo%2Bjson;profile=https://stacspec.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json\\\",\\n          \\\"title\\\": \\\"Datasets\n        search for the series cfe3102659f34d33b123b2a0043e4068\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"http://www.opengis.net/def/rel/ogc/1.0/queryables\\\",\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/cfe3102659f34d33b123b2a0043e4068/queryables\\\",\\n\n        \\         \\\"type\\\": \\\"application/schema+json\\\",\\n          \\\"title\\\": \\\"Queryables\n        for cfe3102659f34d33b123b2a0043e4068\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"search\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/series/items/cfe3102659f34d33b123b2a0043e4068/api\\\",\\n\n        \\         \\\"type\\\": \\\"application/opensearchdescription+xml\\\",\\n          \\\"title\\\":\n        \\\"OpenSearch Description Document\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://catalogue.ceda.ac.uk/uuid/cfe3102659f34d33b123b2a0043e4068\\\",\\n\n        \\         \\\"title\\\": \\\"CEDA Data Catalogue Page - Detail and access information\n        for the resource\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"http://www.esa-icesheets-greenland-cci.org/index.php?q=webfm_send/165\\\",\\n\n        \\         \\\"title\\\": \\\"Product User Guide - No further details.\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\": \\\"http://esa-icesheets-greenland-cci.org/index.php?q=webfm_send/168\\\",\\n\n        \\         \\\"title\\\": \\\"Product Specification Document - No further details.\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\":\n        \\\"https://climate.esa.int/\\\",\\n          \\\"title\\\": \\\"ESA Climate Change Initiative\n        website - No further details.\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"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\n        \\         \\\"title\\\": \\\"Sample Image - No further details.\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://climate.esa.int/projects/ice-sheets-greenland/\\\",\\n\n        \\         \\\"title\\\": \\\"ESA CCI Greenland Ice Sheet project website - No further\n        details.\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/cfe3102659f34d33b123b2a0043e4068?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/cfe3102659f34d33b123b2a0043e4068?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/cfe3102659f34d33b123b2a0043e4068?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/cfe3102659f34d33b123b2a0043e4068?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/cfe3102659f34d33b123b2a0043e4068?httpAccept=application/rdf%2Bxml;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/cfe3102659f34d33b123b2a0043e4068?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\\\",\\n\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/cfe3102659f34d33b123b2a0043e4068?httpAccept=text/turtle;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/cfe3102659f34d33b123b2a0043e4068?httpAccept=text/turtle;profile=http://data.europa.eu/930/\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/CEDA\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for CEDA\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/Sentinel-2\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for Sentinel-2 platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/Sentinel-2B\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for Sentinel-2B platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/b9e0c526-c992-55e2-af93-4dc67aa71774\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for MSI instrument\\\"\\n        }\\n\n        \\     ],\\n      \\\"id\\\": \\\"cfe3102659f34d33b123b2a0043e4068\\\",\\n      \\\"updated\\\":\n        \\\"2025-04-07T23:44:19Z\\\",\\n      \\\"stac_extensions\\\": [\\\"https://stac-extensions.github.io/processing/v1.2.0/schema.json\\\"],\\n\n        \\     \\\"providers\\\": [\\n        {\\n          \\\"roles\\\": [\\\"producer\\\"],\\n\n        \\         \\\"name\\\": \\\"CEDA\\\"\\n        },\\n        {\\n          \\\"roles\\\":\n        [\\\"host\\\"],\\n          \\\"name\\\": \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\":\n        \\\"https://emc.spacebel.be/readme.html\\\"\\n        }\\n      ],\\n      \\\"summaries\\\":\n        {\\n        \\\"instruments\\\": [\\\"MSI\\\"],\\n        \\\"processing:lineage\\\": [\\\"Data\n        were produced by S[&]T Norway as part of the ESA CCI Greenland Ice Sheet project\n        and supplied to CEDA in the context of the ESA CCI Open Data Portal Project.\\\"],\\n\n        \\       \\\"platform\\\": [\\n          \\\"Sentinel-2\\\",\\n          \\\"Sentinel-2B\\\"\\n\n        \\       ]\\n      }\\n    },\\n    {\\n      \\\"extent\\\": {\\n        \\\"spatial\\\":\n        {\\\"bbox\\\": [[\\n          -80,\\n          60,\\n          -10,\\n          90\\n\n        \\       ]]},\\n        \\\"temporal\\\": {\\\"interval\\\": [[\\n          \\\"2017-04-30T23:00:00Z\\\",\\n\n        \\         \\\"2017-08-29T22:59:59Z\\\"\\n        ]]}\\n      },\\n      \\\"stac_version\\\":\n        \\\"1.0.0\\\",\\n      \\\"keywords\\\": [\\n        \\\"DIF10\\\",\\n        \\\"Greenland\\\",\\n\n        \\       \\\"Ice sheet\\\",\\n        \\\"CCI\\\",\\n        \\\"ESA\\\",\\n        \\\"orthoimagery\\\",\\n\n        \\       \\\"EARTH SCIENCE>CRYOSPHERE>GLACIERS/ICE SHEETS>ICE SHEETS\\\",\\n        \\\"Sentinel-2\\\",\\n\n        \\       \\\"Sentinel-2B\\\",\\n        \\\"Sentinel-2 MSI\\\",\\n        \\\"ice sheets\\\",\\n\n        \\       \\\"Sentinel-2A\\\",\\n        \\\"MSI (Sentinel-2)\\\",\\n        \\\"MSI\\\"\\n\n        \\     ],\\n      \\\"description\\\": \\\"This dataset contains optical ice velocity\n        time series and seasonal product of the Helheim Glacier in Greenland, derived\n        from intensity-tracking of Sentinel-2 data acquired between 2017-05-01 and\n        2017-08-29. It has been produced as part of the ESA Greenland Ice sheet CCI\n        project. The data are provided on a polar stereographic grid (EPSG 3413:Latitude\n        of true scale 70N, Reference Longitude 45E) with 50m grid spacing.  The horizontal\n        velocity is provided in true meters per day, towards EASTING (x) and NORTHING\n        (y) direction of the grid.The data have been produced by S[&]T Norway.\\\",\\n\n        \\     \\\"type\\\": \\\"Collection\\\",\\n      \\\"title\\\": \\\"ESA Greenland Ice Sheet\n        Climate Change Initiative (Greenland_Ice_Sheet_cci): Optical ice velocity\n        of the  Helheim Glacier between 2017-05-01 and 2017-08-29, generated using\n        Sentinel-2 data, v1.1\\\",\\n      \\\"license\\\": \\\"various\\\",\\n      \\\"assets\\\":\n        {\\n        \\\"search\\\": {\\n          \\\"roles\\\": [\\\"search\\\"],\\n          \\\"href\\\":\n        \\\"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=1e3fcdc14e2246c69fc54f0e1fe7a6ca\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Search client\\\"\\n\n        \\       },\\n        \\\"enclosure\\\": {\\n          \\\"roles\\\": [\\\"data\\\"],\\n          \\\"href\\\":\n        \\\"http://data.ceda.ac.uk/neodc/esacci/ice_sheets_greenland/data/greenland_ice_velocity/greenland_iv_50m_s2_helheim/v1.1/\\\",\\n\n        \\         \\\"type\\\": \\\"application/x-binary\\\",\\n          \\\"title\\\": \\\"DOWNLOAD\n        - Download Data\\\"\\n        },\\n        \\\"metadata_ogc_17_069r3\\\": {\\n          \\\"roles\\\":\n        [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/1e3fcdc14e2246c69fc54f0e1fe7a6ca\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/1e3fcdc14e2246c69fc54f0e1fe7a6ca?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/1e3fcdc14e2246c69fc54f0e1fe7a6ca?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/1e3fcdc14e2246c69fc54f0e1fe7a6ca?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/1e3fcdc14e2246c69fc54f0e1fe7a6ca?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/1e3fcdc14e2246c69fc54f0e1fe7a6ca?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/1e3fcdc14e2246c69fc54f0e1fe7a6ca?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        }\\n\n        \\     },\\n      \\\"links\\\": [\\n        {\\n          \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/1e3fcdc14e2246c69fc54f0e1fe7a6ca\\\",\\n\n        \\         \\\"type\\\": \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"root\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\",\\n          \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n\n        \\         \\\"title\\\": \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"items\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/1e3fcdc14e2246c69fc54f0e1fe7a6ca/items?httpAccept=application/geo%2Bjson;profile=https://stacspec.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json\\\",\\n          \\\"title\\\": \\\"Datasets\n        search for the series 1e3fcdc14e2246c69fc54f0e1fe7a6ca\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"http://www.opengis.net/def/rel/ogc/1.0/queryables\\\",\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/1e3fcdc14e2246c69fc54f0e1fe7a6ca/queryables\\\",\\n\n        \\         \\\"type\\\": \\\"application/schema+json\\\",\\n          \\\"title\\\": \\\"Queryables\n        for 1e3fcdc14e2246c69fc54f0e1fe7a6ca\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"search\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/series/items/1e3fcdc14e2246c69fc54f0e1fe7a6ca/api\\\",\\n\n        \\         \\\"type\\\": \\\"application/opensearchdescription+xml\\\",\\n          \\\"title\\\":\n        \\\"OpenSearch Description Document\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://catalogue.ceda.ac.uk/uuid/1e3fcdc14e2246c69fc54f0e1fe7a6ca\\\",\\n\n        \\         \\\"title\\\": \\\"CEDA Data Catalogue Page - Detail and access information\n        for the resource\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"http://esa-icesheets-greenland-cci.org/index.php?q=webfm_send/168\\\",\\n\n        \\         \\\"title\\\": \\\"Product Specification Document - No further details.\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\":\n        \\\"https://climate.esa.int/\\\",\\n          \\\"title\\\": \\\"ESA Climate Change Initiative\n        website - No further details.\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"http://www.esa-icesheets-greenland-cci.org/index.php?q=webfm_send/165\\\",\\n\n        \\         \\\"title\\\": \\\"Product User Guide - No further details.\\\"\\n        },\\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\n        \\         \\\"title\\\": \\\"Sample Image - No further details.\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://climate.esa.int/projects/ice-sheets-greenland/\\\",\\n\n        \\         \\\"title\\\": \\\"ESA CCI Greenland Ice Sheet project website - No further\n        details.\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/1e3fcdc14e2246c69fc54f0e1fe7a6ca?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/1e3fcdc14e2246c69fc54f0e1fe7a6ca?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/1e3fcdc14e2246c69fc54f0e1fe7a6ca?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/1e3fcdc14e2246c69fc54f0e1fe7a6ca?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/1e3fcdc14e2246c69fc54f0e1fe7a6ca?httpAccept=application/rdf%2Bxml;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/1e3fcdc14e2246c69fc54f0e1fe7a6ca?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\\\",\\n\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/1e3fcdc14e2246c69fc54f0e1fe7a6ca?httpAccept=text/turtle;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/1e3fcdc14e2246c69fc54f0e1fe7a6ca?httpAccept=text/turtle;profile=http://data.europa.eu/930/\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/CEDA\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for CEDA\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/Sentinel-2\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for Sentinel-2 platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/Sentinel-2B\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for Sentinel-2B platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/b9e0c526-c992-55e2-af93-4dc67aa71774\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for MSI instrument\\\"\\n        }\\n\n        \\     ],\\n      \\\"id\\\": \\\"1e3fcdc14e2246c69fc54f0e1fe7a6ca\\\",\\n      \\\"updated\\\":\n        \\\"2025-04-07T23:44:19Z\\\",\\n      \\\"stac_extensions\\\": [\\\"https://stac-extensions.github.io/processing/v1.2.0/schema.json\\\"],\\n\n        \\     \\\"providers\\\": [\\n        {\\n          \\\"roles\\\": [\\\"producer\\\"],\\n\n        \\         \\\"name\\\": \\\"CEDA\\\"\\n        },\\n        {\\n          \\\"roles\\\":\n        [\\\"host\\\"],\\n          \\\"name\\\": \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\":\n        \\\"https://emc.spacebel.be/readme.html\\\"\\n        }\\n      ],\\n      \\\"summaries\\\":\n        {\\n        \\\"instruments\\\": [\\\"MSI\\\"],\\n        \\\"processing:lineage\\\": [\\\"Data\n        were produced by S[&]T Norway as part of the ESA CCI Greenland Ice Sheet project\n        and were supplied to CEDA in the context of the ESA CCI Open Data Portal Project.\\\"],\\n\n        \\       \\\"platform\\\": [\\n          \\\"Sentinel-2\\\",\\n          \\\"Sentinel-2B\\\"\\n\n        \\       ]\\n      }\\n    },\\n    {\\n      \\\"extent\\\": {\\n        \\\"spatial\\\":\n        {\\\"bbox\\\": [[\\n          -80,\\n          60,\\n          -10,\\n          90\\n\n        \\       ]]},\\n        \\\"temporal\\\": {\\\"interval\\\": [[\\n          \\\"2015-01-22T00:00:00Z\\\",\\n\n        \\         \\\"2017-03-22T23:59:59Z\\\"\\n        ]]}\\n      },\\n      \\\"stac_version\\\":\n        \\\"1.0.0\\\",\\n      \\\"keywords\\\": [\\n        \\\"DIF10\\\",\\n        \\\"Greenland\\\",\\n\n        \\       \\\"Ice sheet\\\",\\n        \\\"CCI\\\",\\n        \\\"ESA\\\",\\n        \\\"orthoimagery\\\",\\n\n        \\       \\\"EARTH SCIENCE>CRYOSPHERE>GLACIERS/ICE SHEETS>ICE SHEETS\\\",\\n        \\\"Sentinel-1A\\\",\\n\n        \\       \\\"Sentinel-1B\\\",\\n        \\\"C-SAR\\\",\\n        \\\"ice sheets\\\",\\n        \\\"SAR-C\n        (Sentinel-1)\\\"\\n      ],\\n      \\\"description\\\": \\\"This dataset contains a\n        time series of ice velocities for the 79-Fjord Glacier in Greenland, derived\n        from Sentinel-1 SAR (Synthetic Aperture Radar) data acquired between January\n        2015 and March 2017. It has been produced by the ESA Greenland Ice Sheet Climate\n        Change Initiative (CCI) project.Data files are delivered in NetCDF format\n        at 250m grid spacing in North Polar Stereographic projection (EPSG: 3413).\n        The horizontal velocity components are provided in true meters per day, towards\n        the EASTING(x) and NORTHING(y) directions of the grid.\\\",\\n      \\\"type\\\":\n        \\\"Collection\\\",\\n      \\\"title\\\": \\\"ESA Greenland Ice Sheet Climate Change\n        Initiative (Greenland_Ice_Sheet_cci): Ice Velocity time series for the 79-Fjord\n        Glacier for 2015-2017 from Sentinel-1 data, v1.1\\\",\\n      \\\"license\\\": \\\"various\\\",\\n\n        \\     \\\"assets\\\": {\\n        \\\"search\\\": {\\n          \\\"roles\\\": [\\\"search\\\"],\\n\n        \\         \\\"href\\\": \\\"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=41e2300068b44fa190f24272dc08dcd0\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Search client\\\"\\n\n        \\       },\\n        \\\"enclosure\\\": {\\n          \\\"roles\\\": [\\\"data\\\"],\\n          \\\"href\\\":\n        \\\"http://data.ceda.ac.uk/neodc/esacci/ice_sheets_greenland/data/greenland_ice_velocity/greenland_iv_250m_s1_79fjord/v1.1/\\\",\\n\n        \\         \\\"type\\\": \\\"application/x-binary\\\",\\n          \\\"title\\\": \\\"DOWNLOAD\n        - Download Data\\\"\\n        },\\n        \\\"metadata_ogc_17_069r3\\\": {\\n          \\\"roles\\\":\n        [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/41e2300068b44fa190f24272dc08dcd0\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/41e2300068b44fa190f24272dc08dcd0?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/41e2300068b44fa190f24272dc08dcd0?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/41e2300068b44fa190f24272dc08dcd0?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/41e2300068b44fa190f24272dc08dcd0?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/41e2300068b44fa190f24272dc08dcd0?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/41e2300068b44fa190f24272dc08dcd0?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        }\\n\n        \\     },\\n      \\\"links\\\": [\\n        {\\n          \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/41e2300068b44fa190f24272dc08dcd0\\\",\\n\n        \\         \\\"type\\\": \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"root\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\",\\n          \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n\n        \\         \\\"title\\\": \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"items\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/41e2300068b44fa190f24272dc08dcd0/items?httpAccept=application/geo%2Bjson;profile=https://stacspec.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json\\\",\\n          \\\"title\\\": \\\"Datasets\n        search for the series 41e2300068b44fa190f24272dc08dcd0\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"http://www.opengis.net/def/rel/ogc/1.0/queryables\\\",\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/41e2300068b44fa190f24272dc08dcd0/queryables\\\",\\n\n        \\         \\\"type\\\": \\\"application/schema+json\\\",\\n          \\\"title\\\": \\\"Queryables\n        for 41e2300068b44fa190f24272dc08dcd0\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"search\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/series/items/41e2300068b44fa190f24272dc08dcd0/api\\\",\\n\n        \\         \\\"type\\\": \\\"application/opensearchdescription+xml\\\",\\n          \\\"title\\\":\n        \\\"OpenSearch Description Document\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://catalogue.ceda.ac.uk/uuid/41e2300068b44fa190f24272dc08dcd0\\\",\\n\n        \\         \\\"title\\\": \\\"CEDA Data Catalogue Page - Detail and access information\n        for the resource\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://climate.esa.int/\\\",\\n          \\\"title\\\": \\\"ESA\n        Climate Change Initiative website - No further details.\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\": \\\"http://www.esa-icesheets-greenland-cci.org/index.php?q=webfm_send/165\\\",\\n\n        \\         \\\"title\\\": \\\"Product User Guide - No further details.\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\": \\\"http://esa-icesheets-greenland-cci.org/index.php?q=webfm_send/168\\\",\\n\n        \\         \\\"title\\\": \\\"Product Specification Document - No further details.\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\":\n        \\\"https://climate.esa.int/projects/ice-sheets-greenland/\\\",\\n          \\\"title\\\":\n        \\\"ESA CCI Greenland Ice Sheet project website - No further details.\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/41e2300068b44fa190f24272dc08dcd0?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/41e2300068b44fa190f24272dc08dcd0?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/41e2300068b44fa190f24272dc08dcd0?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/41e2300068b44fa190f24272dc08dcd0?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/41e2300068b44fa190f24272dc08dcd0?httpAccept=application/rdf%2Bxml;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/41e2300068b44fa190f24272dc08dcd0?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\\\",\\n\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/41e2300068b44fa190f24272dc08dcd0?httpAccept=text/turtle;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/41e2300068b44fa190f24272dc08dcd0?httpAccept=text/turtle;profile=http://data.europa.eu/930/\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/CEDA\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for CEDA\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/Sentinel-1A\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for Sentinel-1A platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/Sentinel-1B\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for Sentinel-1B platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/a2cb7dbe-6433-5737-9d3c-b974e6f643b2\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for C-SAR instrument\\\"\\n        }\\n\n        \\     ],\\n      \\\"id\\\": \\\"41e2300068b44fa190f24272dc08dcd0\\\",\\n      \\\"updated\\\":\n        \\\"2025-04-07T23:43:57Z\\\",\\n      \\\"stac_extensions\\\": [\\\"https://stac-extensions.github.io/processing/v1.2.0/schema.json\\\"],\\n\n        \\     \\\"providers\\\": [\\n        {\\n          \\\"roles\\\": [\\\"producer\\\"],\\n\n        \\         \\\"name\\\": \\\"CEDA\\\"\\n        },\\n        {\\n          \\\"roles\\\":\n        [\\\"host\\\"],\\n          \\\"name\\\": \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\":\n        \\\"https://emc.spacebel.be/readme.html\\\"\\n        }\\n      ],\\n      \\\"summaries\\\":\n        {\\n        \\\"instruments\\\": [\\\"C-SAR\\\"],\\n        \\\"processing:lineage\\\":\n        [\\\"Data were processed by the ESA CCI Greenland Ice Sheet project team and\n        supplied to CEDA in the context of the ESA CCI Open Data Portal Project.\\\"],\\n\n        \\       \\\"platform\\\": [\\n          \\\"Sentinel-1A\\\",\\n          \\\"Sentinel-1B\\\"\\n\n        \\       ]\\n      }\\n    },\\n    {\\n      \\\"extent\\\": {\\n        \\\"spatial\\\":\n        {\\\"bbox\\\": [[\\n          -80,\\n          60,\\n          -10,\\n          90\\n\n        \\       ]]},\\n        \\\"temporal\\\": {\\\"interval\\\": [[\\n          \\\"2014-11-01T00:00:00Z\\\",\\n\n        \\         \\\"2015-12-01T23:59:59Z\\\"\\n        ]]}\\n      },\\n      \\\"stac_version\\\":\n        \\\"1.0.0\\\",\\n      \\\"keywords\\\": [\\n        \\\"DIF10\\\",\\n        \\\"greenland\\\",\\n\n        \\       \\\"ice velocity\\\",\\n        \\\"orthoimagery\\\",\\n        \\\"EARTH SCIENCE>CRYOSPHERE>GLACIERS/ICE\n        SHEETS>ICE SHEETS\\\",\\n        \\\"EARTH SCIENCE>TERRESTRIAL HYDROSPHERE>SNOW/ICE>ICE\n        VELOCITY\\\",\\n        \\\"Sentinel-1A\\\",\\n        \\\"C-SAR\\\",\\n        \\\"ice sheets\\\",\\n\n        \\       \\\"SAR-C (Sentinel-1)\\\"\\n      ],\\n      \\\"description\\\": \\\"This dataset\n        provides an ice velocity map for the whole Greenland ice-sheet for the winter\n        of 2014-2015, derived from Sentinel-1 SAR data, as part of the ESA Greenland\n        Ice Sheet Climate Change Initiative (CCI) project.The data are provided on\n        a polar stereographic grid (EPSG3413: Latitude of true scale 70N, Reference\n        Longitude 45E). The horizontal velocity is provided in true meters per day,\n        towards the EASTING(x) and NORTHING(y) directions of the grid; the vertical\n        displacement (z), derived from a digital elevation model, is also provided.\n        Please note that previous versions of this product provided the horizontal\n        velocities as true East and North velocities.\\\",\\n      \\\"type\\\": \\\"Collection\\\",\\n\n        \\     \\\"title\\\": \\\"ESA Greenland Ice Sheet Climate Change Initiative (Greenland_Ice_Sheet_cci):\n        Greenland Ice Velocity Map Winter 2014-2015, v1.0\\\",\\n      \\\"license\\\": \\\"various\\\",\\n\n        \\     \\\"assets\\\": {\\n        \\\"search\\\": {\\n          \\\"roles\\\": [\\\"search\\\"],\\n\n        \\         \\\"href\\\": \\\"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=82e4ede59fe746ba810009d9a30e0153\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Search client\\\"\\n\n        \\       },\\n        \\\"enclosure\\\": {\\n          \\\"roles\\\": [\\\"data\\\"],\\n          \\\"href\\\":\n        \\\"http://data.ceda.ac.uk/neodc/esacci/ice_sheets_greenland/data/greenland_ice_velocity/greenland_ice_velocity_map_winter_2014_2015/v1.0\\\",\\n\n        \\         \\\"type\\\": \\\"application/x-binary\\\",\\n          \\\"title\\\": \\\"DOWNLOAD\n        - Download Data\\\"\\n        },\\n        \\\"metadata_ogc_17_069r3\\\": {\\n          \\\"roles\\\":\n        [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/82e4ede59fe746ba810009d9a30e0153\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/82e4ede59fe746ba810009d9a30e0153?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/82e4ede59fe746ba810009d9a30e0153?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/82e4ede59fe746ba810009d9a30e0153?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/82e4ede59fe746ba810009d9a30e0153?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/82e4ede59fe746ba810009d9a30e0153?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/82e4ede59fe746ba810009d9a30e0153?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        }\\n\n        \\     },\\n      \\\"links\\\": [\\n        {\\n          \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/82e4ede59fe746ba810009d9a30e0153\\\",\\n\n        \\         \\\"type\\\": \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"root\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\",\\n          \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n\n        \\         \\\"title\\\": \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"items\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/82e4ede59fe746ba810009d9a30e0153/items?httpAccept=application/geo%2Bjson;profile=https://stacspec.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json\\\",\\n          \\\"title\\\": \\\"Datasets\n        search for the series 82e4ede59fe746ba810009d9a30e0153\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"http://www.opengis.net/def/rel/ogc/1.0/queryables\\\",\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/82e4ede59fe746ba810009d9a30e0153/queryables\\\",\\n\n        \\         \\\"type\\\": \\\"application/schema+json\\\",\\n          \\\"title\\\": \\\"Queryables\n        for 82e4ede59fe746ba810009d9a30e0153\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"search\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/series/items/82e4ede59fe746ba810009d9a30e0153/api\\\",\\n\n        \\         \\\"type\\\": \\\"application/opensearchdescription+xml\\\",\\n          \\\"title\\\":\n        \\\"OpenSearch Description Document\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://catalogue.ceda.ac.uk/uuid/82e4ede59fe746ba810009d9a30e0153\\\",\\n\n        \\         \\\"title\\\": \\\"CEDA Data Catalogue Page - Detail and access information\n        for the resource\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"http://www.esa-icesheets-cci.org/\\\",\\n          \\\"title\\\":\n        \\\"ESA Greenland Ice Sheet CCI Project - No further details.\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://climate.esa.int/en/projects/ice-sheets-greenland/key-documents/\\\",\\n\n        \\         \\\"title\\\": \\\"Product User Guide - No further details.\\\"\\n        },\\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\n        \\         \\\"title\\\": \\\"Sample Image - No further details.\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://climate.esa.int/\\\",\\n\n        \\         \\\"title\\\": \\\"ESA Climate Change Initiative website - No further\n        details.\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/82e4ede59fe746ba810009d9a30e0153?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/82e4ede59fe746ba810009d9a30e0153?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/82e4ede59fe746ba810009d9a30e0153?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/82e4ede59fe746ba810009d9a30e0153?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/82e4ede59fe746ba810009d9a30e0153?httpAccept=application/rdf%2Bxml;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/82e4ede59fe746ba810009d9a30e0153?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\\\",\\n\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/82e4ede59fe746ba810009d9a30e0153?httpAccept=text/turtle;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/82e4ede59fe746ba810009d9a30e0153?httpAccept=text/turtle;profile=http://data.europa.eu/930/\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/CEDA\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for CEDA\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/Sentinel-1A\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for Sentinel-1A platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/a2cb7dbe-6433-5737-9d3c-b974e6f643b2\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for C-SAR instrument\\\"\\n        }\\n\n        \\     ],\\n      \\\"id\\\": \\\"82e4ede59fe746ba810009d9a30e0153\\\",\\n      \\\"updated\\\":\n        \\\"2025-04-07T23:44:21Z\\\",\\n      \\\"stac_extensions\\\": [\\\"https://stac-extensions.github.io/processing/v1.2.0/schema.json\\\"],\\n\n        \\     \\\"providers\\\": [\\n        {\\n          \\\"roles\\\": [\\\"producer\\\"],\\n\n        \\         \\\"name\\\": \\\"CEDA\\\"\\n        },\\n        {\\n          \\\"roles\\\":\n        [\\\"host\\\"],\\n          \\\"name\\\": \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\":\n        \\\"https://emc.spacebel.be/readme.html\\\"\\n        }\\n      ],\\n      \\\"summaries\\\":\n        {\\n        \\\"instruments\\\": [\\\"C-SAR\\\"],\\n        \\\"processing:lineage\\\":\n        [\\\"Data were processed by the ESA CCI Greenland Ice Sheet project team and\n        supplied to CEDA in the context of the ESA CCI Open Data Portal Project\\\"],\\n\n        \\       \\\"platform\\\": [\\\"Sentinel-1A\\\"]\\n      }\\n    },\\n    {\\n      \\\"extent\\\":\n        {\\n        \\\"spatial\\\": {\\\"bbox\\\": [[\\n          -180,\\n          -90,\\n          180,\\n\n        \\         90\\n        ]]},\\n        \\\"temporal\\\": {\\\"interval\\\": [[\\n          \\\"1992-09-15T00:00:00Z\\\",\\n\n        \\         \\\"2019-12-31T23:59:59Z\\\"\\n        ]]}\\n      },\\n      \\\"stac_version\\\":\n        \\\"1.0.0\\\",\\n      \\\"keywords\\\": [\\n        \\\"DIF10\\\",\\n        \\\"ESA\\\",\\n\n        \\       \\\"CCI\\\",\\n        \\\"Lakes\\\",\\n        \\\"ECV\\\",\\n        \\\"orthoimagery\\\",\\n\n        \\       \\\"EARTH SCIENCE>SPECTRAL/ENGINEERING>INFRARED WAVELENGTHS\\\",\\n        \\\"EARTH\n        SCIENCE>BIOSPHERE>ECOSYSTEMS>FRESHWATER ECOSYSTEMS>LAKE/POND>MONTANE LAKE\\\",\\n\n        \\       \\\"EARTH SCIENCE>SPECTRAL/ENGINEERING>RADAR\\\",\\n        \\\"Aqua\\\",\\n\n        \\       \\\"ENVISAT\\\",\\n        \\\"ERS-2\\\",\\n        \\\"JASON-1\\\",\\n        \\\"LANDSAT-4\\\",\\n\n        \\       \\\"LANDSAT-5\\\",\\n        \\\"LANDSAT-8\\\",\\n        \\\"METOP-A\\\",\\n        \\\"METOP-B\\\",\\n\n        \\       \\\"OrbView-2\\\",\\n        \\\"Sentinel-3A\\\",\\n        \\\"Sentinel-3B\\\",\\n\n        \\       \\\"Terra\\\",\\n        \\\"TOPEX/POSEIDON\\\",\\n        \\\"AATSR\\\",\\n        \\\"ATSR-2\\\",\\n\n        \\       \\\"AVHRR-3\\\",\\n        \\\"MERIS\\\",\\n        \\\"MODIS\\\",\\n        \\\"MSS\\\",\\n\n        \\       \\\"OLI\\\",\\n        \\\"POSEIDON-2\\\",\\n        \\\"RA\\\",\\n        \\\"RA-2\\\",\\n\n        \\       \\\"SeaWiFS\\\",\\n        \\\"SSALT\\\",\\n        \\\"TM\\\",\\n        \\\"OLCI\\\",\\n\n        \\       \\\"day\\\",\\n        \\\"Collecte Localisation Satellites\\\",\\n        \\\"Laboratoire\n        d'Etudes en Geodesie et Oceanographie Spatiales\\\",\\n        \\\"Plymouth Marine\n        Laboratory\\\",\\n        \\\"Envisat\\\",\\n        \\\"GFO\\\",\\n        \\\"Jason-1\\\",\\n\n        \\       \\\"Jason-2\\\",\\n        \\\"Jason-3\\\",\\n        \\\"Landsat-4\\\",\\n        \\\"Landsat-5\\\",\\n\n        \\       \\\"Landsat-7\\\",\\n        \\\"Landsat-8\\\",\\n        \\\"Metop-A\\\",\\n        \\\"Metop-B\\\",\\n\n        \\       \\\"Orbview-2\\\",\\n        \\\"SARAL\\\",\\n        \\\"Sentinel-1A\\\",\\n        \\\"SNPP\\\",\\n\n        \\       \\\"Topex/Poseidon\\\",\\n        \\\"Level 3\\\",\\n        \\\"Level 3S\\\",\\n\n        \\       \\\"MERGED\\\",\\n        \\\"AltiKa\\\",\\n        \\\"VIIRS\\\",\\n        \\\"lakes\\\",\\n\n        \\       \\\"multiple lake products\\\",\\n        \\\"Poseidon-2\\\",\\n        \\\"Poseidon-3\\\",\\n\n        \\       \\\"SRAL\\\",\\n        \\\"University of Reading\\\",\\n        \\\"H2O Geomatics\\\",\\n\n        \\       \\\"AQUA\\\",\\n        \\\"TERRA\\\"\\n      ],\\n      \\\"description\\\": \\\"This\n        dataset contains various global lake products (1992-2019) produced by the\n        European Space Agency (ESA) Lakes Climate Change Initiative (Lakes_cci) project.\n        This is version 1.1 of the dataset.Lakes are of significant interest to the\n        scientific community, local to national governments, industries and the wider\n        public. A range of scientific disciplines including hydrology, limnology,\n        climatology, biogeochemistry and geodesy are interested in distribution and\n        \\  functioning of the millions of lakes (from small ponds to inland seas),\n        from the local to the global scale. Remote sensing provides an opportunity\n        to extend the spatio-temporal scale of lake observation. The five thematic\n        climate variables included in this dataset are:\\xE2\\\\u0080\\xA2\\\\tLake Water\n        Level (LWL): a proxy fundamental to understand the balance between water inputs\n        and water loss and their connection with regional and global climate changes.\\xE2\\\\u0080\\xA2\\\\tLake\n        Water Extent (LWE): a proxy for change in glacial regions (lake expansion)\n        and drought in many arid environments, water extent relates to local climate\n        for the cooling effect that water bodies provide.\\xE2\\\\u0080\\xA2\\\\tLake Surface\n        Water temperature (LSWT): correlated with regional air temperatures and a\n        proxy for mixing regimes, driving biogeochemical cycling and seasonality.\n        \\xE2\\\\u0080\\xA2\\\\tLake Ice Cover (LIC): freeze-up in autumn and advancing\n        break-up in spring are proxies for gradually changing climate patterns and\n        seasonality. \\xE2\\\\u0080\\xA2\\\\tLake Water-Leaving Reflectance (LWLR): a direct\n        indicator of biogeochemical processes and habitats in the visible part of\n        the water column (e.g. seasonal phytoplankton biomass fluctuations), and an\n        indicator of the frequency of extreme events (peak terrestrial run-off, changing\n        mixing conditions).Data generated in the Lakes_cci project are derived from\n        data from multiple instruments and multiple satellites including; TOPEX/Poseidon,\n        Jason, ENVISAT, SARAL, Sentinel, Landsat, ERS, Terra/Aqua, Suomi NPP, Metop\n        and Orbview. For more information please see the product user guide in the\n        documents.\\\",\\n      \\\"type\\\": \\\"Collection\\\",\\n      \\\"title\\\": \\\"ESA Lakes\n        Climate Change Initiative (Lakes_cci):  Lake products, Version 1.1\\\",\\n      \\\"license\\\":\n        \\\"various\\\",\\n      \\\"assets\\\": {\\n        \\\"search\\\": {\\n          \\\"roles\\\":\n        [\\\"search\\\"],\\n          \\\"href\\\": \\\"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=ef1627f523764eae8bbb6b81bf1f7a0a\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Search client\\\"\\n\n        \\       },\\n        \\\"enclosure\\\": {\\n          \\\"roles\\\": [\\\"data\\\"],\\n          \\\"href\\\":\n        \\\"http://data.ceda.ac.uk/neodc/esacci/lakes/data/lake_products/L3S/v1.1/\\\",\\n\n        \\         \\\"type\\\": \\\"application/x-binary\\\",\\n          \\\"title\\\": \\\"DOWNLOAD\n        - Download Data\\\"\\n        },\\n        \\\"metadata_ogc_17_069r3\\\": {\\n          \\\"roles\\\":\n        [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/ef1627f523764eae8bbb6b81bf1f7a0a\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/ef1627f523764eae8bbb6b81bf1f7a0a?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ef1627f523764eae8bbb6b81bf1f7a0a?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ef1627f523764eae8bbb6b81bf1f7a0a?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ef1627f523764eae8bbb6b81bf1f7a0a?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ef1627f523764eae8bbb6b81bf1f7a0a?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ef1627f523764eae8bbb6b81bf1f7a0a?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        }\\n\n        \\     },\\n      \\\"links\\\": [\\n        {\\n          \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/ef1627f523764eae8bbb6b81bf1f7a0a\\\",\\n\n        \\         \\\"type\\\": \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"root\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\",\\n          \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n\n        \\         \\\"title\\\": \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"items\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/ef1627f523764eae8bbb6b81bf1f7a0a/items?httpAccept=application/geo%2Bjson;profile=https://stacspec.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json\\\",\\n          \\\"title\\\": \\\"Datasets\n        search for the series ef1627f523764eae8bbb6b81bf1f7a0a\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"http://www.opengis.net/def/rel/ogc/1.0/queryables\\\",\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ef1627f523764eae8bbb6b81bf1f7a0a/queryables\\\",\\n\n        \\         \\\"type\\\": \\\"application/schema+json\\\",\\n          \\\"title\\\": \\\"Queryables\n        for ef1627f523764eae8bbb6b81bf1f7a0a\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"search\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/series/items/ef1627f523764eae8bbb6b81bf1f7a0a/api\\\",\\n\n        \\         \\\"type\\\": \\\"application/opensearchdescription+xml\\\",\\n          \\\"title\\\":\n        \\\"OpenSearch Description Document\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://catalogue.ceda.ac.uk/uuid/ef1627f523764eae8bbb6b81bf1f7a0a\\\",\\n\n        \\         \\\"title\\\": \\\"CEDA Data Catalogue Page - Detail and access information\n        for the resource\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://climate.esa.int/projects/lakes/\\\",\\n          \\\"title\\\":\n        \\\"ESA CCI Lakes project website - No further details.\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://climate.esa.int\\\",\\n\n        \\         \\\"title\\\": \\\"ESA Climate Change Initiative website - No further\n        details.\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\":\n        \\\"https://climate.esa.int/documents/1155/CCI-LAKES-0029-PUG-v1.2.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"Product User\n        Guide - No further details.\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://climate.esa.int/en/projects/lakes/key-documents-lakes/#milestone-4\\\",\\n\n        \\         \\\"title\\\": \\\"Documentation for ESA CCI Lakes project - No further\n        details.\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/ef1627f523764eae8bbb6b81bf1f7a0a?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/ef1627f523764eae8bbb6b81bf1f7a0a?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/ef1627f523764eae8bbb6b81bf1f7a0a?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/ef1627f523764eae8bbb6b81bf1f7a0a?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/ef1627f523764eae8bbb6b81bf1f7a0a?httpAccept=application/rdf%2Bxml;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/ef1627f523764eae8bbb6b81bf1f7a0a?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\\\",\\n\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/ef1627f523764eae8bbb6b81bf1f7a0a?httpAccept=text/turtle;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/ef1627f523764eae8bbb6b81bf1f7a0a?httpAccept=text/turtle;profile=http://data.europa.eu/930/\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/CEDA\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for CEDA\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/AQUA\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for AQUA platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/Envisat\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for Envisat platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/ERS-2\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for ERS-2 platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/Jason-1\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for Jason-1 platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/JASON-3\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for JASON-3 platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/Landsat-4\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for Landsat-4 platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/Landsat-5\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for Landsat-5 platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/Landsat-7\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for Landsat-7 platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/Landsat-8\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for Landsat-8 platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/Metop-A\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for Metop-A platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/Metop-B\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for Metop-B platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/OrbView-2\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for OrbView-2 platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/SARAL\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for SARAL platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/Sentinel-1A\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for Sentinel-1A platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/Sentinel-3A\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for Sentinel-3A platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/Sentinel-3B\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for Sentinel-3B platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/TERRA\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for TERRA platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/TOPEX%2FPOSEIDON\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for TOPEX/POSEIDON platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/08071848-9a68-5a42-887d-235260cadbf3\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for OLCI instrument\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/6bfc7afc-547a-57cd-818c-6d90e3e589ab\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for OLI instrument\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/003ed1d0-9f6c-59cb-a427-1fa4c4a92107\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for MERIS instrument\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/27547a00-7d37-5113-b10f-666ccbfd86d4\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for RA instrument\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/f3ef7078-65ef-5dee-8c5c-61f9706a34ad\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for ATSR-2 instrument\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/450624e5-a0b1-5f27-ac6b-74a1aea8cb9e\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for AVHRR-3 instrument\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/2ebd3948-3f88-5944-8e3c-7e60099ec941\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for RA-2 instrument\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/57b7f820-6ba2-5076-b015-39ad3fb32c55\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for TM instrument\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/2df2947d-cb3f-54e7-8f8b-352422892db9\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for POSEIDON-2 instrument\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/552b5118-99d2-5861-b6ed-7e81cabc983c\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for MSS instrument\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/7917f326-4734-5836-8709-c172236d36a9\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for SSALT instrument\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/702277a0-8a84-5af3-a8f4-31d712ff17c3\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for AATSR instrument\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/482c462e-543c-5b17-9c69-ef7327e950a9\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for SeaWiFS instrument\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/ada8f84c-48ef-50a6-b2ba-635a1bdb7d14\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for MODIS instrument\\\"\\n        }\\n\n        \\     ],\\n      \\\"id\\\": \\\"ef1627f523764eae8bbb6b81bf1f7a0a\\\",\\n      \\\"updated\\\":\n        \\\"2025-04-07T23:44:43Z\\\",\\n      \\\"stac_extensions\\\": [\\\"https://stac-extensions.github.io/processing/v1.2.0/schema.json\\\"],\\n\n        \\     \\\"providers\\\": [\\n        {\\n          \\\"roles\\\": [\\\"producer\\\"],\\n\n        \\         \\\"name\\\": \\\"CEDA\\\"\\n        },\\n        {\\n          \\\"roles\\\":\n        [\\\"host\\\"],\\n          \\\"name\\\": \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\":\n        \\\"https://emc.spacebel.be/readme.html\\\"\\n        }\\n      ],\\n      \\\"summaries\\\":\n        {\\n        \\\"instruments\\\": [\\n          \\\"OLCI\\\",\\n          \\\"OLI\\\",\\n          \\\"MERIS\\\",\\n\n        \\         \\\"RA\\\",\\n          \\\"ATSR-2\\\",\\n          \\\"AVHRR-3\\\",\\n          \\\"RA-2\\\",\\n\n        \\         \\\"TM\\\",\\n          \\\"POSEIDON-2\\\",\\n          \\\"MSS\\\",\\n          \\\"SSALT\\\",\\n\n        \\         \\\"AATSR\\\",\\n          \\\"SeaWiFS\\\",\\n          \\\"MODIS\\\"\\n        ],\\n\n        \\       \\\"processing:lineage\\\": [\\\"This dataset was generate in the framework\n        of the Lakes CCI+ project, funded by ESA. Data were produced by the project\n        team and supplied for archiving at the Centre for Environmental Data Analysis\n        (CEDA).\\\"],\\n        \\\"platform\\\": [\\n          \\\"AQUA\\\",\\n          \\\"Envisat\\\",\\n\n        \\         \\\"ERS-2\\\",\\n          \\\"Jason-1\\\",\\n          \\\"JASON-3\\\",\\n          \\\"Landsat-4\\\",\\n\n        \\         \\\"Landsat-5\\\",\\n          \\\"Landsat-7\\\",\\n          \\\"Landsat-8\\\",\\n\n        \\         \\\"Metop-A\\\",\\n          \\\"Metop-B\\\",\\n          \\\"OrbView-2\\\",\\n\n        \\         \\\"SARAL\\\",\\n          \\\"Sentinel-1A\\\",\\n          \\\"Sentinel-3A\\\",\\n\n        \\         \\\"Sentinel-3B\\\",\\n          \\\"TERRA\\\",\\n          \\\"TOPEX/POSEIDON\\\"\\n\n        \\       ]\\n      }\\n    },\\n    {\\n      \\\"extent\\\": {\\n        \\\"spatial\\\":\n        {\\\"bbox\\\": [[\\n          -180,\\n          -90,\\n          180,\\n          90\\n\n        \\       ]]},\\n        \\\"temporal\\\": {\\\"interval\\\": [[\\n          \\\"1992-09-26T00:00:00Z\\\",\\n\n        \\         \\\"2020-12-31T23:59:59Z\\\"\\n        ]]}\\n      },\\n      \\\"stac_version\\\":\n        \\\"1.0.0\\\",\\n      \\\"keywords\\\": [\\n        \\\"ESA\\\",\\n        \\\"CCI\\\",\\n        \\\"Lakes\\\",\\n\n        \\       \\\"ECV\\\",\\n        \\\"orthoimagery\\\",\\n        \\\"EARTH SCIENCE>BIOSPHERE>ECOSYSTEMS>FRESHWATER\n        ECOSYSTEMS>LAKE/POND>MONTANE LAKE\\\"\\n      ],\\n      \\\"description\\\": \\\"This\n        dataset contains the Lakes Essential Climate Variable, which is comprised\n        of processed satellite observations at the global scale, over the period 1992-2020,\n        for over 2000 inland water bodies. This dataset was produced by the European\n        Space Agency (ESA) Lakes Climate Change Initiative (Lakes_cci) project. For\n        more information about the Lakes_cci please visit the project website. This\n        is version 2.0.2 of the dataset.   The five thematic climate variables included\n        in this dataset are:\\xE2\\\\u0080\\xA2 Lake Water Level (LWL), derived from satellite\n        altimetry, is fundamental to understand the balance between water inputs and\n        water loss and their connection with regional and global climate change.\\xE2\\\\u0080\\xA2\n        Lake Water Extent (LWE), modelled from the relation between LWL and high-resolution\n        spatial extent observed at set time-points, describes the areal extent of\n        the water body. This allows the observation of drought in arid environments,\n        expansion in high Asia, or impact of large-scale atmospheric oscillations\n        on lakes in tropical regions for example. .\\xE2\\\\u0080\\xA2 Lake Surface Water\n        temperature (LSWT), derived from optical and thermal satellite observations,\n        is correlated with regional air temperatures and is informative about vertical\n        mixing regimes, driving biogeochemical cycling and seasonality.\\xE2\\\\u0080\\xA2\n        Lake Ice Cover (LIC), determined from optical observations, describes the\n        freeze-up in autumn and break-up of ice in spring, which are proxies for gradually\n        changing climate patterns and seasonality.\\xE2\\\\u0080\\xA2 Lake Water-Leaving\n        Reflectance (LWLR), derived from optical satellite observations, is a direct\n        indicator of biogeochemical processes and habitats in the visible part of\n        the water column (e.g. seasonal phytoplankton biomass fluctuations), and an\n        indicator of the frequency of extreme events (peak terrestrial run-off, changing\n        mixing conditions).Data generated in the Lakes_cci are derived from multiple\n        satellite sensors including: TOPEX/Poseidon, Jason, ENVISAT, SARAL, Sentinel\n        2-3, Landsat OLI, ERS, MODIS Terra/Aqua and Metop.Detailed information about\n        the generation and validation of this dataset is available from the Lakes_cci\n        documentation available on the project website  and in Carrea, L., Cr\\xC3\\xA9taux,\n        JF., Liu, X. et al. Satellite-derived multivariate world-wide lake physical\n        variable timeseries for climate studies. Sci Data 10, 30 (2023). https://doi.org/10.1038/s41597-022-01889-z\\\",\\n\n        \\     \\\"type\\\": \\\"Collection\\\",\\n      \\\"title\\\": \\\"ESA Lakes Climate Change\n        Initiative (Lakes_cci):  Lake products, Version 2.0.2\\\",\\n      \\\"license\\\":\n        \\\"various\\\",\\n      \\\"assets\\\": {\\n        \\\"search\\\": {\\n          \\\"roles\\\":\n        [\\\"search\\\"],\\n          \\\"href\\\": \\\"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=a07deacaffb8453e93d57ee214676304\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Search client\\\"\\n\n        \\       },\\n        \\\"enclosure\\\": {\\n          \\\"roles\\\": [\\\"data\\\"],\\n          \\\"href\\\":\n        \\\"http://data.ceda.ac.uk/neodc/esacci/lakes/data/lake_products/L3S/v2.0.2/\\\",\\n\n        \\         \\\"type\\\": \\\"application/x-binary\\\",\\n          \\\"title\\\": \\\"DOWNLOAD\n        - Download Data\\\"\\n        },\\n        \\\"metadata_ogc_17_069r3\\\": {\\n          \\\"roles\\\":\n        [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/a07deacaffb8453e93d57ee214676304\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/a07deacaffb8453e93d57ee214676304?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/a07deacaffb8453e93d57ee214676304?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/a07deacaffb8453e93d57ee214676304?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/a07deacaffb8453e93d57ee214676304?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/a07deacaffb8453e93d57ee214676304?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/a07deacaffb8453e93d57ee214676304?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        }\\n\n        \\     },\\n      \\\"links\\\": [\\n        {\\n          \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/a07deacaffb8453e93d57ee214676304\\\",\\n\n        \\         \\\"type\\\": \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"root\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\",\\n          \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n\n        \\         \\\"title\\\": \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"items\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/a07deacaffb8453e93d57ee214676304/items?httpAccept=application/geo%2Bjson;profile=https://stacspec.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json\\\",\\n          \\\"title\\\": \\\"Datasets\n        search for the series a07deacaffb8453e93d57ee214676304\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"http://www.opengis.net/def/rel/ogc/1.0/queryables\\\",\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/a07deacaffb8453e93d57ee214676304/queryables\\\",\\n\n        \\         \\\"type\\\": \\\"application/schema+json\\\",\\n          \\\"title\\\": \\\"Queryables\n        for a07deacaffb8453e93d57ee214676304\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"search\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/series/items/a07deacaffb8453e93d57ee214676304/api\\\",\\n\n        \\         \\\"type\\\": \\\"application/opensearchdescription+xml\\\",\\n          \\\"title\\\":\n        \\\"OpenSearch Description Document\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://catalogue.ceda.ac.uk/uuid/a07deacaffb8453e93d57ee214676304\\\",\\n\n        \\         \\\"title\\\": \\\"CEDA Data Catalogue Page - Detail and access information\n        for the resource\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://climate.esa.int/projects/lakes/\\\",\\n          \\\"title\\\":\n        \\\"ESA CCI Lakes project website - No further details.\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://climate.esa.int\\\",\\n\n        \\         \\\"title\\\": \\\"ESA Climate Change Initiative website - No further\n        details.\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\":\n        \\\"https://climate.esa.int/documents/1155/CCI-LAKES-0029-PUG-v1.2.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"Product User\n        Guide - No further details.\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://climate.esa.int/en/projects/lakes/key-documents-lakes/\\\",\\n\n        \\         \\\"title\\\": \\\"Documentation for ESA CCI Lakes project - No further\n        details.\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/a07deacaffb8453e93d57ee214676304?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/a07deacaffb8453e93d57ee214676304?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/a07deacaffb8453e93d57ee214676304?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/a07deacaffb8453e93d57ee214676304?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/a07deacaffb8453e93d57ee214676304?httpAccept=application/rdf%2Bxml;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/a07deacaffb8453e93d57ee214676304?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\\\",\\n\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/a07deacaffb8453e93d57ee214676304?httpAccept=text/turtle;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/a07deacaffb8453e93d57ee214676304?httpAccept=text/turtle;profile=http://data.europa.eu/930/\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/CEDA\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for CEDA\\\"\\n        }\\n      ],\\n\n        \\     \\\"id\\\": \\\"a07deacaffb8453e93d57ee214676304\\\",\\n      \\\"updated\\\": \\\"2025-04-07T23:44:43Z\\\",\\n\n        \\     \\\"stac_extensions\\\": [\\\"https://stac-extensions.github.io/processing/v1.2.0/schema.json\\\"],\\n\n        \\     \\\"providers\\\": [\\n        {\\n          \\\"roles\\\": [\\\"producer\\\"],\\n\n        \\         \\\"name\\\": \\\"CEDA\\\"\\n        },\\n        {\\n          \\\"roles\\\":\n        [\\\"host\\\"],\\n          \\\"name\\\": \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\":\n        \\\"https://emc.spacebel.be/readme.html\\\"\\n        }\\n      ],\\n      \\\"summaries\\\":\n        {\\\"processing:lineage\\\": [\\\"This dataset was generated in the framework of\n        the Lakes CCI+ project, funded by ESA. Data were produced by the project team\n        and supplied for archiving at the Centre for Environmental Data Analysis (CEDA).V2.0.2\n        of the data provides a minor update to v2.0.1, which fixes an issue with missing\n        data.\\\"]}\\n    },\\n    {\\n      \\\"extent\\\": {\\n        \\\"spatial\\\": {\\\"bbox\\\":\n        [[\\n          -1.0589250737672506,\\n          47.66030548053927,\\n          11.678098693553778,\\n\n        \\         53.67487358198095\\n        ]]},\\n        \\\"temporal\\\": {\\\"interval\\\":\n        [[\\n          \\\"2014-10-03T00:00:00Z\\\",\\n          \\\"2029-10-03T23:59:00Z\\\"\\n\n        \\       ]]}\\n      },\\n      \\\"stac_version\\\": \\\"1.0.0\\\",\\n      \\\"keywords\\\":\n        [\\n        \\\"DIF10\\\",\\n        \\\"processing\\\",\\n        \\\"RADAR BACKSCATTER\\\",\\n\n        \\       \\\"RADAR\\\",\\n        \\\"EARTH SCIENCE>SPECTRAL/ENGINEERING>RADAR>RADAR\n        BACKSCATTER\\\",\\n        \\\"EARTH SCIENCE>SPECTRAL/ENGINEERING>RADAR\\\",\\n        \\\"Sentinel-1A\\\",\\n\n        \\       \\\"Sentinel-1B\\\",\\n        \\\"Sentinel-1\\\",\\n        \\\"C-SAR\\\"\\n      ],\\n\n        \\     \\\"created\\\": \\\"2018-10-10T00:00:00.00Z\\\",\\n      \\\"description\\\": \\\"The\n        Sigma0 product describes how much of the radar signal that was sent out by\n        Sentinel-1 is reflected back to the sensor, and depends on the characteristics\n        of the surface. This product is derived from the L1-GRD product. Typical SAR\n        data processing, which produces level 1 images such as L1-GRD product, does\n        not include radiometric corrections and significant radiometric bias remains.\n        Therefore, it is necessary to apply the radiometric correction to SAR images\n        so that the pixel values of the SAR images truly represent the radar backscatter\n        of the reflecting surface. The radiometric correction is also necessary for\n        the comparison of SAR images acquired with different sensors, or acquired\n        from the same sensor but at different times, in different modes, or processed\n        by different processors. For this Sigma0 product, radiometric calibration\n        was performed using a specific Look Up Table (LUT) that is provided with each\n        original GRD product. This LUT applies a range-dependent gain including the\n        absolute calibration constant, in addition to a constant offset. Next to calibration,\n        also orbit correction, border noise removal, thermal noise removal, and range\n        doppler terrain correction steps were applied during production of Sigma0.\n        The terrain correction step is intended to compensate for distortions due\n        to topographical variations of the scene and the tilt of the satellite sensor,\n        so that the geometric representation of the image will be as close as possible\n        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\n        \\     \\\"type\\\": \\\"Collection\\\",\\n      \\\"title\\\": \\\"Sentinel-1 Level-1 Ground\n        Range Detected (GRD) SIGMA0 products.\\\",\\n      \\\"version\\\": \\\"V001\\\",\\n      \\\"license\\\":\n        \\\"various\\\",\\n      \\\"assets\\\": {\\n        \\\"search\\\": {\\n          \\\"roles\\\":\n        [\\\"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\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Search client\\\"\\n\n        \\       },\\n        \\\"enclosure\\\": {\\n          \\\"roles\\\": [\\\"data\\\"],\\n          \\\"href\\\":\n        \\\"https://services.terrascope.be/catalogue/description\\\",\\n          \\\"type\\\":\n        \\\"application/x-binary\\\",\\n          \\\"title\\\": \\\"TERRASCOPE Catalogue - Search\n        and download datasets using the VITO TERRASCOPE OpenSearch CAtalogue for Remote\n        Sensing\\\"\\n        },\\n        \\\"metadata_ogc_17_069r3\\\": {\\n          \\\"roles\\\":\n        [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/urn:eop:VITO:CGS_S1_GRD_SIGMA0_L1\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\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\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/urn:eop:VITO:CGS_S1_GRD_SIGMA0_L1?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/urn:eop:VITO:CGS_S1_GRD_SIGMA0_L1?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/urn:eop:VITO:CGS_S1_GRD_SIGMA0_L1?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/urn:eop:VITO:CGS_S1_GRD_SIGMA0_L1?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/urn:eop:VITO:CGS_S1_GRD_SIGMA0_L1?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        },\\n\n        \\       \\\"quicklook\\\": {\\n          \\\"roles\\\": [\\\"overview\\\"],\\n          \\\"href\\\":\n        \\\"https://services.terrascope.be/collectioncatalogue/images/quicklooks/SENTINEL1_GRD_QL.JPG\\\",\\n\n        \\         \\\"type\\\": \\\"image/jpeg\\\",\\n          \\\"title\\\": \\\"graphic overview\\\"\\n\n        \\       }\\n      },\\n      \\\"links\\\": [\\n        {\\n          \\\"rel\\\": \\\"self\\\",\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/urn:eop:VITO:CGS_S1_GRD_SIGMA0_L1\\\",\\n\n        \\         \\\"type\\\": \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"root\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\",\\n          \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n\n        \\         \\\"title\\\": \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"items\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/urn:eop:VITO:CGS_S1_GRD_SIGMA0_L1/items?httpAccept=application/geo%2Bjson;profile=https://stacspec.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json\\\",\\n          \\\"title\\\": \\\"Datasets\n        search for the series urn:eop:VITO:CGS_S1_GRD_SIGMA0_L1\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"http://www.opengis.net/def/rel/ogc/1.0/queryables\\\",\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/urn:eop:VITO:CGS_S1_GRD_SIGMA0_L1/queryables\\\",\\n\n        \\         \\\"type\\\": \\\"application/schema+json\\\",\\n          \\\"title\\\": \\\"Queryables\n        for urn:eop:VITO:CGS_S1_GRD_SIGMA0_L1\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"search\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/series/items/urn:eop:VITO:CGS_S1_GRD_SIGMA0_L1/api\\\",\\n\n        \\         \\\"type\\\": \\\"application/opensearchdescription+xml\\\",\\n          \\\"title\\\":\n        \\\"OpenSearch Description Document\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/urn:eop:VITO:CGS_S1_GRD_SIGMA0_L1?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/urn:eop:VITO:CGS_S1_GRD_SIGMA0_L1?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/urn:eop:VITO:CGS_S1_GRD_SIGMA0_L1?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/VITO\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for VITO\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/Flemish\n        Institute of Technological Research (VITO) - Belgium\\\",\\n          \\\"title\\\":\n        \\\"More collections for Flemish Institute of Technological Research (VITO)\n        - Belgium\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/series/eo:platform/Sentinel-1A\\\",\\n          \\\"title\\\":\n        \\\"More collections for Sentinel-1A platform\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/Sentinel-1B\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for Sentinel-1B platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/Sentinel-1\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for Sentinel-1 platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/a2cb7dbe-6433-5737-9d3c-b974e6f643b2\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for C-SAR instrument\\\"\\n        }\\n\n        \\     ],\\n      \\\"id\\\": \\\"urn:eop:VITO:CGS_S1_GRD_SIGMA0_L1\\\",\\n      \\\"updated\\\":\n        \\\"2019-08-27T11:14:44Z\\\",\\n      \\\"stac_extensions\\\": [\\n        \\\"https://stac-extensions.github.io/version/v1.2.0/schema.json\\\",\\n\n        \\       \\\"https://stac-extensions.github.io/processing/v1.2.0/schema.json\\\",\\n\n        \\       \\\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\\\"\\n\n        \\     ],\\n      \\\"providers\\\": [\\n        {\\n          \\\"roles\\\": [\\\"producer\\\"],\\n\n        \\         \\\"name\\\": \\\"Flemish Institute of Technological Research (VITO) -\n        Belgium\\\",\\n          \\\"url\\\": \\\"https://www.vito-eodata.be/\\\"\\n        },\\n\n        \\       {\\n          \\\"roles\\\": [\\\"host\\\"],\\n          \\\"name\\\": \\\"FedEO Clearinghouse\\\",\\n\n        \\         \\\"url\\\": \\\"https://emc.spacebel.be/readme.html\\\"\\n        },\\n        {\\n\n        \\         \\\"roles\\\": [\\\"producer\\\"],\\n          \\\"name\\\": \\\"VITO\\\",\\n          \\\"uri\\\":\n        \\\"https://www.vito-eodata.be/\\\"\\n        }\\n      ],\\n      \\\"summaries\\\":\n        {\\n        \\\"instruments\\\": [\\\"C-SAR\\\"],\\n        \\\"processing:lineage\\\":\n        [\\\"The Sigma0 product describes how much of the radar signal that was sent\n        out by Sentinel-1 is reflected back to the sensor, and depends on the characteristics\n        of the surface. This product is derived from the L1-GRD product. Typical SAR\n        data processing, which produces level 1 images such as L1-GRD product, does\n        not include radiometric corrections and significant radiometric bias remains.\n        Therefore, it is necessary to apply the radiometric correction to SAR images\n        so that the pixel values of the SAR images truly represent the radar backscatter\n        of the reflecting surface. The radiometric correction is also necessary for\n        the comparison of SAR images acquired with different sensors, or acquired\n        from the same sensor but at different times, in different modes, or processed\n        by different processors. For this Sigma0 product, radiometric calibration\n        was performed using a specific Look Up Table (LUT) that is provided with each\n        original GRD product. This LUT applies a range-dependent gain including the\n        absolute calibration constant, in addition to a constant offset. Next to calibration,\n        also orbit correction, border noise removal, thermal noise removal, and range\n        doppler terrain correction steps were applied during production of Sigma0.\n        The terrain correction step is intended to compensate for distortions due\n        to topographical variations of the scene and the tilt of the satellite sensor,\n        so that the geometric representation of the image will be as close as possible\n        to the real world.\\\"],\\n        \\\"platform\\\": [\\n          \\\"Sentinel-1A\\\",\\n\n        \\         \\\"Sentinel-1B\\\",\\n          \\\"Sentinel-1\\\"\\n        ]\\n      }\\n\n        \\   },\\n    {\\n      \\\"extent\\\": {\\n        \\\"spatial\\\": {\\\"bbox\\\": [[\\n          -180,\\n\n        \\         -90,\\n          180,\\n          90\\n        ]]},\\n        \\\"temporal\\\":\n        {\\\"interval\\\": [[\\n          null,\\n          null\\n        ]]}\\n      },\\n\n        \\     \\\"stac_version\\\": \\\"1.0.0\\\",\\n      \\\"keywords\\\": [\\n        \\\"Land\n        Cover\\\",\\n        \\\"Sentinel-1\\\",\\n        \\\"Sentinel-2\\\",\\n        \\\"Land\n        Cover\\\",\\n        \\\"Space\\\",\\n        \\\"Remote Sensing\\\",\\n        \\\"ESA Worldcover\\\",\\n\n        \\       \\\"Environment\\\",\\n        \\\"WorldCoverMap\\\",\\n        \\\"EARTH SCIENCE>LAND\n        SURFACE>LAND USE/LAND COVER\\\"\\n      ],\\n      \\\"created\\\": \\\"2021-07-01T00:00:00.00Z\\\",\\n\n        \\     \\\"description\\\": \\\"The ESA WorldCover product is a global land cover\n        map with 11 land cover classes. WorldCover provides worldwide coverage at\n        10 meters and is provided per 3 x 3 degree tile. Note that ocean areas and\n        inner ice sheets do not have tiles. Data is provided as Cloud Optimized GeoTIFFs.\n        The ESA WorldCover product has been produced by a consortium lead by VITO\n        (Belgium) together with Brockmann Consult (Germany), CS SI (France), Gamma\n        Remote Sensing AG (Switzerland), International Institute for Applied Systems\n        Analysis (Austria) and Wageningen University (The Netherlands).\\\\t\\\\t\\\\t\\\\tNaming\n        convention: ESA_WorldCover_10m_[YEAR]_[VERSION]_[TILE]_[LAYER].tif/ \\\\t\\\\t\\\\t\\\\t*\n        [YEAR] indicates the reference year (observation period) in four digits.\\\\t\\\\t\\\\t\\\\t*\n        [VERSION] shows the product version. The version denoted as vMmr (e.g. v201),\n        with \\xE2\\\\u0080\\\\u0098M\\xE2\\\\u0080\\\\u0099 representing the major version\n        (e.g. v2), \\xE2\\\\u0080\\\\u0098m\\xE2\\\\u0080\\\\u0099 the minor version (starting\n        from 0) and \\xE2\\\\u0080\\\\u0098r\\xE2\\\\u0080\\\\u0099 the production run number\n        (starting from 1) \\\\t\\\\t\\\\t\\\\t* [TILE] the designation of the 3 x 3 degree\n        tile, composed of the 2-digit latitude and 3-digit longitude of the lower-left\n        corner. Example:  N19W100  for the tile covering the area from 100W to 99W\n        and 19N to 20N.\\\\t\\\\t\\\\t\\\\tFor example: ESA_WorldCover_10m_2020_v100_N19W100_Map.tif/\\\",\\n\n        \\     \\\"sci:citation\\\": \\\"https://esa-worldcover.org/en/data\\\",\\n      \\\"type\\\":\n        \\\"Collection\\\",\\n      \\\"title\\\": \\\"ESA WorldCover 10 meter Land Cover Map\n        2020\\\",\\n      \\\"version\\\": \\\"V1\\\",\\n      \\\"license\\\": \\\"various\\\",\\n      \\\"assets\\\":\n        {\\n        \\\"search\\\": {\\n          \\\"roles\\\": [\\\"search\\\"],\\n          \\\"href\\\":\n        \\\"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\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Search client\\\"\\n\n        \\       },\\n        \\\"enclosure\\\": {\\n          \\\"roles\\\": [\\\"data\\\"],\\n          \\\"href\\\":\n        \\\"https://services.terrascope.be/catalogue/description\\\",\\n          \\\"type\\\":\n        \\\"application/x-binary\\\",\\n          \\\"title\\\": \\\"VITO EO Catalogue - Search\n        and download datasets using the VITO OpenSearch CAtalogue for Remote Sensing.\n        Provides interoperable access, following ISO/OGC interface guidelines, to\n        Earth Observation metadata.\\\"\\n        },\\n        \\\"metadata_ogc_17_069r3\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/urn:eop:VITO:ESA_WorldCover_10m_2020_V1\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\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\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/urn:eop:VITO:ESA_WorldCover_10m_2020_V1?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/urn:eop:VITO:ESA_WorldCover_10m_2020_V1?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/urn:eop:VITO:ESA_WorldCover_10m_2020_V1?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/urn:eop:VITO:ESA_WorldCover_10m_2020_V1?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/urn:eop:VITO:ESA_WorldCover_10m_2020_V1?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        },\\n\n        \\       \\\"quicklook\\\": {\\n          \\\"roles\\\": [\\\"overview\\\"],\\n          \\\"href\\\":\n        \\\"https://services.terrascope.be/collectioncatalogue/images/quicklooks/ESA_Worldcover_10m_QL.png\\\",\\n\n        \\         \\\"type\\\": \\\"image/png\\\",\\n          \\\"title\\\": \\\"graphic overview\\\"\\n\n        \\       }\\n      },\\n      \\\"links\\\": [\\n        {\\n          \\\"rel\\\": \\\"self\\\",\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/urn:eop:VITO:ESA_WorldCover_10m_2020_V1\\\",\\n\n        \\         \\\"type\\\": \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"root\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\",\\n          \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n\n        \\         \\\"title\\\": \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"items\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/urn:eop:VITO:ESA_WorldCover_10m_2020_V1/items?httpAccept=application/geo%2Bjson;profile=https://stacspec.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json\\\",\\n          \\\"title\\\": \\\"Datasets\n        search for the series urn:eop:VITO:ESA_WorldCover_10m_2020_V1\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"http://www.opengis.net/def/rel/ogc/1.0/queryables\\\",\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/urn:eop:VITO:ESA_WorldCover_10m_2020_V1/queryables\\\",\\n\n        \\         \\\"type\\\": \\\"application/schema+json\\\",\\n          \\\"title\\\": \\\"Queryables\n        for urn:eop:VITO:ESA_WorldCover_10m_2020_V1\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"search\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/series/items/urn:eop:VITO:ESA_WorldCover_10m_2020_V1/api\\\",\\n\n        \\         \\\"type\\\": \\\"application/opensearchdescription+xml\\\",\\n          \\\"title\\\":\n        \\\"OpenSearch Description Document\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/urn:eop:VITO:ESA_WorldCover_10m_2020_V1?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/urn:eop:VITO:ESA_WorldCover_10m_2020_V1?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/urn:eop:VITO:ESA_WorldCover_10m_2020_V1?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/VITO\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for VITO\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/Flemish\n        Institute of Technological Research (VITO) - Belgium\\\",\\n          \\\"title\\\":\n        \\\"More collections for Flemish Institute of Technological Research (VITO)\n        - Belgium\\\"\\n        }\\n      ],\\n      \\\"id\\\": \\\"urn:eop:VITO:ESA_WorldCover_10m_2020_V1\\\",\\n\n        \\     \\\"updated\\\": \\\"2021-03-01T10:57:31Z\\\",\\n      \\\"stac_extensions\\\": [\\n\n        \\       \\\"https://stac-extensions.github.io/version/v1.2.0/schema.json\\\",\\n\n        \\       \\\"https://stac-extensions.github.io/processing/v1.2.0/schema.json\\\",\\n\n        \\       \\\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\\\"\\n\n        \\     ],\\n      \\\"providers\\\": [\\n        {\\n          \\\"roles\\\": [\\\"producer\\\"],\\n\n        \\         \\\"name\\\": \\\"Flemish Institute of Technological Research (VITO) -\n        Belgium\\\",\\n          \\\"url\\\": \\\"https://services.terrascope.be/catalogue/description\\\"\\n\n        \\       },\\n        {\\n          \\\"roles\\\": [\\\"host\\\"],\\n          \\\"name\\\":\n        \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\": \\\"https://emc.spacebel.be/readme.html\\\"\\n\n        \\       },\\n        {\\n          \\\"roles\\\": [\\\"producer\\\"],\\n          \\\"name\\\":\n        \\\"VITO\\\",\\n          \\\"uri\\\": \\\"https://services.terrascope.be/catalogue/description\\\"\\n\n        \\       }\\n      ],\\n      \\\"summaries\\\": {\\\"processing:lineage\\\": [\\\"Produced\n        by VITO using Sentinel-1 and Sentinel-2 data obtained from AWS. For more info\n        please contact VITO.\\\"]}\\n    }\\n  ],\\n  \\\"numberReturned\\\": 10,\\n  \\\"links\\\":\n        [\\n    {\\n      \\\"rel\\\": \\\"self\\\",\\n      \\\"href\\\": \\\"https://emc.spacebel.be/collections?limit=10&q=sentinel\\\",\\n\n        \\     \\\"type\\\": \\\"application/json\\\",\\n      \\\"title\\\": \\\"This document\\\"\\n\n        \\   },\\n    {\\n      \\\"rel\\\": \\\"next\\\",\\n      \\\"href\\\": \\\"https://emc.spacebel.be/collections?limit=10&q=sentinel&startRecord=21\\\",\\n\n        \\     \\\"type\\\": \\\"application/json\\\",\\n      \\\"title\\\": \\\"Next results\\\"\\n\n        \\   },\\n    {\\n      \\\"rel\\\": \\\"previous\\\",\\n      \\\"href\\\": \\\"https://emc.spacebel.be/collections?limit=10&q=sentinel&startRecord=1\\\",\\n\n        \\     \\\"type\\\": \\\"application/json\\\",\\n      \\\"title\\\": \\\"Previous results\\\"\\n\n        \\   },\\n    {\\n      \\\"rel\\\": \\\"http://www.opengis.net/def/rel/ogc/1.0/queryables\\\",\\n\n        \\     \\\"href\\\": \\\"https://emc.spacebel.be/collections/queryables\\\",\\n      \\\"type\\\":\n        \\\"application/schema+json\\\",\\n      \\\"title\\\": \\\"Queryables for collection\n        search\\\"\\n    }\\n  ],\\n  \\\"numberMatched\\\": 216\\n}\"\n    headers:\n      Access-Control-Allow-Headers:\n      - X-PINGOTHER, Content-Type, Authorization, Accept\n      Access-Control-Allow-Methods:\n      - POST,GET,PUT,HEAD,OPTIONS,DELETE\n      Access-Control-Allow-Origin:\n      - '*'\n      Cache-Control:\n      - no-cache, no-store, max-age=0, must-revalidate\n      Connection:\n      - keep-alive\n      Content-Type:\n      - application/json;charset=UTF-8\n      Date:\n      - Thu, 31 Jul 2025 15:08:19 GMT\n      Expires:\n      - '0'\n      Pragma:\n      - no-cache\n      Server:\n      - openresty\n      Strict-Transport-Security:\n      - max-age=31536000 ; includeSubDomains\n      Transfer-Encoding:\n      - chunked\n      X-Content-Type-Options:\n      - nosniff\n      X-Frame-Options:\n      - DENY\n      X-Served-By:\n      - emc.spacebel.be\n      X-XSS-Protection:\n      - 1; mode=block\n    status:\n      code: 200\n      message: ''\nversion: 1\n"
  },
  {
    "path": "tests/cassettes/test_collection_search/TestCollectionSearch.test_result_paging_max_collections.yaml",
    "content": "interactions:\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://emc.spacebel.be/collections?limit=10&bbox=-92.379%2C46.662%2C-91.788%2C46.919\n  response:\n    body:\n      string: \"{\\n  \\\"collections\\\": [\\n    {\\n      \\\"extent\\\": {\\n        \\\"spatial\\\":\n        {\\\"bbox\\\": [[\\n          -180,\\n          -90,\\n          180,\\n          90\\n\n        \\       ]]},\\n        \\\"temporal\\\": {\\\"interval\\\": [[\\n          \\\"2002-05-20T00:00:00.000Z\\\",\\n\n        \\         \\\"2012-04-08T23:59:59.999Z\\\"\\n        ]]}\\n      },\\n      \\\"stac_version\\\":\n        \\\"1.0.0\\\",\\n      \\\"keywords\\\": [\\n        \\\"World\\\",\\n        \\\"800 km\\\",\\n\n        \\       \\\"5 - 1150 km\\\",\\n        \\\"Sun-synchronous\\\",\\n        \\\"Very High\n        Resolution - VHR (0 - 5m)\\\",\\n        \\\"Medium Resolution - MR (20 - 500 m)\\\",\\n\n        \\       \\\"EARTH SCIENCE > BIOSPHERE > VEGETATION\\\",\\n        \\\"EARTH SCIENCE\n        > OCEANS\\\",\\n        \\\"EARTH SCIENCE > OCEANS > OCEAN TEMPERATURE\\\",\\n        \\\"EARTH\n        SCIENCE > ATMOSPHERE\\\",\\n        \\\"EARTH SCIENCE > ATMOSPHERE > CLOUDS\\\",\\n\n        \\       \\\"EARTH SCIENCE > ATMOSPHERE > PRECIPITATION\\\",\\n        \\\"Vegetation\\\",\\n\n        \\       \\\"Oceans\\\",\\n        \\\"Ocean Temperature\\\",\\n        \\\"Atmosphere\\\",\\n\n        \\       \\\"Clouds\\\",\\n        \\\"Precipitation\\\",\\n        \\\"Imaging Spectrometers/Radiometers\\\",\\n\n        \\       \\\"Envisat\\\",\\n        \\\"AATSR\\\"\\n      ],\\n      \\\"created\\\": \\\"2019-05-21T00:00:00.00Z\\\",\\n\n        \\     \\\"description\\\": \\\"The Averaged Surface Temperature (AST) Product contains\n        averaged geophysical data at two different resolutions, and with respect to\n        two different averaging schemes. Measurement data sets at resolutions of 0.5\n        by 0.5 degrees and 10 by 10 arcmin with respect to a latitude/longitude grid\n        provide continuity with existing ATSR products.  Other data sets contain data\n        averaged over equal area cells of 50 by 50 km and 17 by 17 km aligned with\n        the satellite ground track. Both top-of-atmosphere and surface data sets are\n        provided. The surface temperature data sets provide, for sea cells, nadir\n        and dual view sea surface temperatures, and for land cells, land surface temperature\n        and NDVI. Cloud data is also included. No ADS are included in the AST product;\n        auxiliary data is contained within the MDS. The data sets of the AST product\n        are arranged by surface type and resolution.  This product is a continuation\n        of ERS ATSR data.  The 3rd reprocessing of AATSR data was performed in 2013;\n        the processing updates that have been put in place and the scientific improvements\n        are outlined in full in the User Summary Note for the Third Envisat AATSR\n        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\n        \\     \\\"type\\\": \\\"Collection\\\",\\n      \\\"title\\\": \\\"Envisat AATSR Averaged\n        Surface Temperature (AST) Product [ATS_AR__2P]\\\",\\n      \\\"license\\\": \\\"various\\\",\\n\n        \\     \\\"assets\\\": {\\n        \\\"metadata_ogc_17_069r3\\\": {\\n          \\\"roles\\\":\n        [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/ENVISAT.ATS.AR__2P\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/ENVISAT.ATS.AR__2P?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ENVISAT.ATS.AR__2P?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ENVISAT.ATS.AR__2P?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ENVISAT.ATS.AR__2P?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ENVISAT.ATS.AR__2P?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ENVISAT.ATS.AR__2P?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        }\\n\n        \\     },\\n      \\\"links\\\": [\\n        {\\n          \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/ENVISAT.ATS.AR__2P\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"root\\\",\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\": \\\"application/json\\\",\\n\n        \\         \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"title\\\":\n        \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"AATSR Product\n        Specification - Product Specifications\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://earth.esa.int/eogateway/instruments/aatsr/auxiliary-data\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"AATSR auxiliary\n        data - Auxiliary Data\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://earth.esa.int/eogateway/instruments/aatsr/products-information\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"AATSR Product Information\n        - Product Information\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://earth.esa.int/eogateway/documents/20142/37627/AATSR-product-handbook.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"AATSR Product\n        Handbook - User Manual\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://earth.esa.int/eogateway/documents/20142/37627/AATSR-Level-2-ATS_AR__2P-Product-Quality-Readme-Information.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"ATS_AR__2P\n        Product Quality Readme Information - Product Specifications\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://earth.esa.int/eogateway/search?text=&category=Document%20library&filter=envisat,aatsr\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"More AATSR Documents\n        - Product Specifications\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://earth.esa.int/eogateway/search?text=&category=Tools%20and%20toolboxes&filter=aatsr\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"(A)ATSR Software\n        Tools - Tools\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://esatellus.service-now.com/csp?id=esa_simple_request\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Get Help? - ESA\n        Earth Observation User Services Portal\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/ENVISAT.ATS.AR__2P?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/ENVISAT.ATS.AR__2P?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/ENVISAT.ATS.AR__2P?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/ENVISAT.ATS.AR__2P?httpAccept=text/turtle;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for ESA/ESRIN\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/Envisat\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for Envisat platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/702277a0-8a84-5af3-a8f4-31d712ff17c3\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for AATSR instrument\\\"\\n        }\\n\n        \\     ],\\n      \\\"id\\\": \\\"ENVISAT.ATS.AR__2P\\\",\\n      \\\"updated\\\": \\\"2022-11-11T00:00:00.00Z\\\",\\n\n        \\     \\\"providers\\\": [\\n        {\\n          \\\"roles\\\": [\\\"producer\\\"],\\n\n        \\         \\\"name\\\": \\\"ESA/ESRIN\\\",\\n          \\\"url\\\": \\\"http://www.esa.int\\\"\\n\n        \\       },\\n        {\\n          \\\"roles\\\": [\\\"host\\\"],\\n          \\\"name\\\":\n        \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\": \\\"https://emc.spacebel.be/readme.html\\\"\\n\n        \\       }\\n      ],\\n      \\\"summaries\\\": {\\n        \\\"instruments\\\": [\\\"AATSR\\\"],\\n\n        \\       \\\"platform\\\": [\\\"Envisat\\\"]\\n      }\\n    },\\n    {\\n      \\\"extent\\\":\n        {\\n        \\\"spatial\\\": {\\\"bbox\\\": [[\\n          -180,\\n          -90,\\n          180,\\n\n        \\         90\\n        ]]},\\n        \\\"temporal\\\": {\\\"interval\\\": [[\\n          \\\"2002-05-20T00:00:00.000Z\\\",\\n\n        \\         \\\"2012-04-08T23:59:59.999Z\\\"\\n        ]]}\\n      },\\n      \\\"stac_version\\\":\n        \\\"1.0.0\\\",\\n      \\\"keywords\\\": [\\n        \\\"World\\\",\\n        \\\"800 km\\\",\\n\n        \\       \\\"5 - 1150 km\\\",\\n        \\\"Sun-synchronous\\\",\\n        \\\"EARTH SCIENCE\n        > OCEANS\\\",\\n        \\\"EARTH SCIENCE > OCEANS > OCEAN TEMPERATURE\\\",\\n        \\\"Oceans\\\",\\n\n        \\       \\\"Ocean Temperature\\\",\\n        \\\"Imaging Spectrometers/Radiometers\\\",\\n\n        \\       \\\"Envisat\\\",\\n        \\\"AATSR\\\"\\n      ],\\n      \\\"created\\\": \\\"2019-05-29T00:00:00.00Z\\\",\\n\n        \\     \\\"description\\\": \\\"The L2P product contains full resolution dual-view\n        Sea Surface Temperature (SST) values. These SST use the ARC SST retrieval\n        and cloud screening which differ from the methods used to produce the Gridded\n        Surface Temperature (ATS_NR__2P) products. In addition to SST, the L2P products\n        contain the ATSR Saharan Dust Index (ASDI) and the clear-sky probability estimated\n        by the ARC cloud detection algorithm.  The L2P processor also generates L3U\n        products; these are the L2P products averaged onto a regular grid at 0.1 degree\n        resolution (they are therefore similar to the AR / Meteo Envisat-format products).\n        \\ The L2P and L3U products are provided in NetCDF-4 format following GHRSST\n        Data Specifications (GDS) v2.  The L2P/L3U archive was reprocessed in 2013\n        with a new processor based upon the ARC SST; the changes are outlined in full\n        in the L2P Reprocessing User Notehttps://earth.esa.int/eogateway/documents/20142/37627/User%20Note%20for%20%28A%29ATSR%20L2P%20Reprocessing\\\",\\n\n        \\     \\\"type\\\": \\\"Collection\\\",\\n      \\\"title\\\": \\\"Envisat AATSR ARC L2P/L3U\n        \\ [UPA-L2P_GHRSST/UPA-L3U_GHRSST]\\\",\\n      \\\"license\\\": \\\"various\\\",\\n      \\\"assets\\\":\n        {\\n        \\\"metadata_ogc_17_069r3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ENVISAT.UPA-L2P-L3U\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/ENVISAT.UPA-L2P-L3U?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ENVISAT.UPA-L2P-L3U?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ENVISAT.UPA-L2P-L3U?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ENVISAT.UPA-L2P-L3U?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ENVISAT.UPA-L2P-L3U?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ENVISAT.UPA-L2P-L3U?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        }\\n\n        \\     },\\n      \\\"links\\\": [\\n        {\\n          \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/ENVISAT.UPA-L2P-L3U\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"root\\\",\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\": \\\"application/json\\\",\\n\n        \\         \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"title\\\":\n        \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://earth.esa.int/eogateway/instruments/aatsr/auxiliary-data\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"AATSR auxiliary\n        data - Auxiliary Data\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://earth.esa.int/eogateway/documents/20142/37627/ENVISAT-1%20PRODUCTS%20SPECIFICATIONS%20-%20VOLUME%207-%20AATSR%20PRODUCTS%20SPECIFICATIONS\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"AATSR Products\n        Specifications - Product Specifications\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://earth.esa.int/eogateway/documents/20142/37627/AATSR-product-handbook.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"AATSR Product\n        Handbook - User Manual\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://earth.esa.int/eogateway/instruments/aatsr/products-information\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"AATSR Product Information\n        - Product Information\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://earth.esa.int/eogateway/documents/20142/37627/L2P-Product-Description.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"(A)ATSR SST\n        L2P/L3U Product User Guide - Product Specifications\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://www.ghrsst.org/about-ghrsst/governance-documents/\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"GHRSST data specifications\n        - Product Specifications\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://earth.esa.int/eogateway/search?text=&category=Document%20library&filter=envisat,aatsr\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"More AATSR Documents\n        - Product Specifications\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://earth.esa.int/eogateway/search?text=&category=Tools%20and%20toolboxes&filter=aatsr\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"(A)ATSR Software\n        Tools - Tools\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://esatellus.service-now.com/csp?id=esa_simple_request\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Get Help? - ESA\n        Earth Observation User Services Portal\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/ENVISAT.UPA-L2P-L3U?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/ENVISAT.UPA-L2P-L3U?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/ENVISAT.UPA-L2P-L3U?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/ENVISAT.UPA-L2P-L3U?httpAccept=text/turtle;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for ESA/ESRIN\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/Envisat\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for Envisat platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/702277a0-8a84-5af3-a8f4-31d712ff17c3\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for AATSR instrument\\\"\\n        }\\n\n        \\     ],\\n      \\\"id\\\": \\\"ENVISAT.UPA-L2P-L3U\\\",\\n      \\\"updated\\\": \\\"2022-11-11T00:00:00.00Z\\\",\\n\n        \\     \\\"providers\\\": [\\n        {\\n          \\\"roles\\\": [\\\"producer\\\"],\\n\n        \\         \\\"name\\\": \\\"ESA/ESRIN\\\",\\n          \\\"url\\\": \\\"http://www.esa.int\\\"\\n\n        \\       },\\n        {\\n          \\\"roles\\\": [\\\"host\\\"],\\n          \\\"name\\\":\n        \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\": \\\"https://emc.spacebel.be/readme.html\\\"\\n\n        \\       }\\n      ],\\n      \\\"summaries\\\": {\\n        \\\"instruments\\\": [\\\"AATSR\\\"],\\n\n        \\       \\\"platform\\\": [\\\"Envisat\\\"]\\n      }\\n    },\\n    {\\n      \\\"extent\\\":\n        {\\n        \\\"spatial\\\": {\\\"bbox\\\": [[\\n          -180,\\n          -90,\\n          180,\\n\n        \\         90\\n        ]]},\\n        \\\"temporal\\\": {\\\"interval\\\": [[\\n          \\\"2021-10-09T00:00:00.000Z\\\",\\n\n        \\         null\\n        ]]}\\n      },\\n      \\\"stac_version\\\": \\\"1.0.0\\\",\\n\n        \\     \\\"keywords\\\": [\\n        \\\"FedEO\\\",\\n        \\\"SCIHUB\\\",\\n        \\\"DIF10\\\",\\n\n        \\       \\\"Sea Surface Topography\\\",\\n        \\\"EARTH SCIENCE > OCEANS > SEA\n        SURFACE TOPOGRAPHY\\\",\\n        \\\"Radar Altimeters\\\",\\n        \\\"Radiometers\\\",\\n\n        \\       \\\"Sentinel-6\\\",\\n        \\\"POSEIDON-4\\\",\\n        \\\"AMR-C\\\"\\n      ],\\n\n        \\     \\\"created\\\": \\\"2024-01-02T00:00:00.00Z\\\",\\n      \\\"description\\\": \\\"Copernicus\n        Sentinel-6 Michael Freilich is an Earth Observation satellite mission developed\n        to provide enhanced continuity to the very stable time series of mean sea\n        level measurements and ocean sea state that started in 1992, with the TOPEX/Poseidon\n        mission, then continued by the Jason-1, Jason-2 and Jason-3 satellite missions.\\\",\\n\n        \\     \\\"type\\\": \\\"Collection\\\",\\n      \\\"title\\\": \\\"Sentinel-6 Products\\\",\\n\n        \\     \\\"license\\\": \\\"various\\\",\\n      \\\"assets\\\": {\\n        \\\"search\\\":\n        {\\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\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Search client\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_069r3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        }\\n\n        \\     },\\n      \\\"links\\\": [\\n        {\\n          \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"root\\\",\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\": \\\"application/json\\\",\\n\n        \\         \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"title\\\":\n        \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/geo+json\\\",\\n          \\\"title\\\": \\\"Datasets\n        search for the series EOP:ESA:Sentinel-6\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"http://www.opengis.net/def/rel/ogc/1.0/queryables\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/EOP:ESA:SCIHUB:S6/queryables\\\",\\n          \\\"type\\\":\n        \\\"application/schema+json\\\",\\n          \\\"title\\\": \\\"Queryables for EOP:ESA:SCIHUB:S6\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"search\\\",\\n          \\\"href\\\":\n        \\\"https://dataspace.copernicus.eu\\\",\\n          \\\"title\\\": \\\"Copernicus Data\n        Space Ecosystem - Copernicus Data Space Ecosystem\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"search\\\",\\n          \\\"href\\\": \\\"https://fedeo.ceos.org/opensearch/description.xml?parentIdentifier=EOP:ESA:SCIHUB:S6\\\",\\n\n        \\         \\\"title\\\": \\\"FedEO Clearinghouse - FedEO Clearinghouse\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"search\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/series/items/EOP:ESA:SCIHUB:S6/api\\\",\\n\n        \\         \\\"type\\\": \\\"application/opensearchdescription+xml\\\",\\n          \\\"title\\\":\n        \\\"OpenSearch Description Document\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://sentinel.esa.int/web/sentinel/missions/sentinel-6\\\",\\n\n        \\         \\\"title\\\": \\\"ESA Sentinel-6 Online\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=text/turtle;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for ESA/ESRIN\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/Sentinel-6\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for Sentinel-6 platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/700b6e99-a527-5819-b283-4656c8832ea0\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for AMR-C instrument\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/5d1512a5-cb97-5e74-8778-35cd65c06936\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for POSEIDON-4 instrument\\\"\\n        }\\n\n        \\     ],\\n      \\\"id\\\": \\\"EOP:ESA:Sentinel-6\\\",\\n      \\\"updated\\\": \\\"2020-11-21T00:00:00.00Z\\\",\\n\n        \\     \\\"providers\\\": [\\n        {\\n          \\\"roles\\\": [\\\"producer\\\"],\\n\n        \\         \\\"name\\\": \\\"ESA/ESRIN\\\"\\n        },\\n        {\\n          \\\"roles\\\":\n        [\\\"host\\\"],\\n          \\\"name\\\": \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\":\n        \\\"https://emc.spacebel.be/readme.html\\\"\\n        }\\n      ],\\n      \\\"summaries\\\":\n        {\\n        \\\"instruments\\\": [\\n          \\\"AMR-C\\\",\\n          \\\"POSEIDON-4\\\"\\n\n        \\       ],\\n        \\\"platform\\\": [\\\"Sentinel-6\\\"]\\n      }\\n    },\\n    {\\n\n        \\     \\\"extent\\\": {\\n        \\\"spatial\\\": {\\\"bbox\\\": [[\\n          -180,\\n\n        \\         -90,\\n          180,\\n          90\\n        ]]},\\n        \\\"temporal\\\":\n        {\\\"interval\\\": [[\\n          \\\"2017-10-13T00:00:00.000Z\\\",\\n          null\\n\n        \\       ]]}\\n      },\\n      \\\"stac_version\\\": \\\"1.0.0\\\",\\n      \\\"keywords\\\":\n        [\\n        \\\"FedEO\\\",\\n        \\\"SCIHUB\\\",\\n        \\\"DIF10\\\",\\n        \\\"Air\n        Quality\\\",\\n        \\\"EARTH SCIENCE > ATMOSPHERE > AIR QUALITY\\\",\\n        \\\"Sentinel-5P\\\",\\n\n        \\       \\\"TROPOMI\\\"\\n      ],\\n      \\\"created\\\": \\\"2018-10-09T00:00:00.00Z\\\",\\n\n        \\     \\\"description\\\": \\\"The Sentinel-5P data offer for the Pre-Operations\n        Open Access Hub consists of Level-1B and Level-2 user products for the TROPOMI\n        instrument.\\\",\\n      \\\"type\\\": \\\"Collection\\\",\\n      \\\"title\\\": \\\"Sentinel-5P\n        Products\\\",\\n      \\\"license\\\": \\\"various\\\",\\n      \\\"assets\\\": {\\n        \\\"search\\\":\n        {\\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\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Search client\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_069r3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        }\\n\n        \\     },\\n      \\\"links\\\": [\\n        {\\n          \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"root\\\",\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\": \\\"application/json\\\",\\n\n        \\         \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"title\\\":\n        \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/geo+json\\\",\\n          \\\"title\\\": \\\"Datasets\n        search for the series EOP:ESA:Sentinel-5P\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"http://www.opengis.net/def/rel/ogc/1.0/queryables\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/EOP:ESA:SCIHUB:S5P/queryables\\\",\\n          \\\"type\\\":\n        \\\"application/schema+json\\\",\\n          \\\"title\\\": \\\"Queryables for EOP:ESA:SCIHUB:S5P\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"search\\\",\\n          \\\"href\\\":\n        \\\"https://dataspace.copernicus.eu\\\",\\n          \\\"title\\\": \\\"Copernicus Data\n        Space Ecosystem - Copernicus Data Space Ecosystem\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"search\\\",\\n          \\\"href\\\": \\\"https://fedeo.ceos.org/opensearch/description.xml?parentIdentifier=EOP:ESA:SCIHUB:S5P\\\",\\n\n        \\         \\\"title\\\": \\\"FedEO Clearinghouse - FedEO Clearinghouse\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"search\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/series/items/EOP:ESA:SCIHUB:S5P/api\\\",\\n\n        \\         \\\"type\\\": \\\"application/opensearchdescription+xml\\\",\\n          \\\"title\\\":\n        \\\"OpenSearch Description Document\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://sentinel.esa.int/web/sentinel/missions/sentinel-5P\\\",\\n\n        \\         \\\"title\\\": \\\"ESA Sentinel-5P Online\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://sentinels.copernicus.eu/web/sentinel/user-guides/sentinel-5p-tropomi\\\",\\n\n        \\         \\\"title\\\": \\\"Sentinel-5P TROPOMI User Guide \\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=text/turtle;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for ESA/ESRIN\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/Sentinel-5P\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for Sentinel-5P platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/09f91afd-c0d2-52a9-9b50-b895a60917fa\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for TROPOMI instrument\\\"\\n        }\\n\n        \\     ],\\n      \\\"id\\\": \\\"EOP:ESA:Sentinel-5P\\\",\\n      \\\"updated\\\": \\\"2017-04-30T00:00:00.00Z\\\",\\n\n        \\     \\\"stac_extensions\\\": [\\\"https://stac-extensions.github.io/processing/v1.2.0/schema.json\\\"],\\n\n        \\     \\\"providers\\\": [\\n        {\\n          \\\"roles\\\": [\\\"producer\\\"],\\n\n        \\         \\\"name\\\": \\\"ESA/ESRIN\\\"\\n        },\\n        {\\n          \\\"roles\\\":\n        [\\\"host\\\"],\\n          \\\"name\\\": \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\":\n        \\\"https://emc.spacebel.be/readme.html\\\"\\n        }\\n      ],\\n      \\\"summaries\\\":\n        {\\n        \\\"instruments\\\": [\\\"TROPOMI\\\"],\\n        \\\"processing:lineage\\\":\n        [\\\"The Sentinel-5 Precursor objectives are to provide operational space-borne\n        observations in support to the operational monitoring of Air Quality, Climate,\n        Ozone and Surface UV. It will provide measurements of Ozone, NO_2, SO_2, Formaldehyde,\n        Aerosol, Carbonmonoxide, Methane, Clouds.\\\"],\\n        \\\"platform\\\": [\\\"Sentinel-5P\\\"]\\n\n        \\     }\\n    },\\n    {\\n      \\\"extent\\\": {\\n        \\\"spatial\\\": {\\\"bbox\\\":\n        [[\\n          -180,\\n          -90,\\n          180,\\n          90\\n        ]]},\\n\n        \\       \\\"temporal\\\": {\\\"interval\\\": [[\\n          \\\"2016-06-22T00:00:00.000Z\\\",\\n\n        \\         null\\n        ]]}\\n      },\\n      \\\"stac_version\\\": \\\"1.0.0\\\",\\n\n        \\     \\\"keywords\\\": [\\n        \\\"World\\\",\\n        \\\"Planet\\\",\\n        \\\"Land\n        Surface\\\",\\n        \\\"Mapping and Cartography\\\",\\n        \\\"Natural Hazards\n        and Disaster Risk\\\",\\n        \\\"EARTH SCIENCE > LAND SURFACE\\\",\\n        \\\"EARTH\n        SCIENCE > HUMAN DIMENSIONS > NATURAL HAZARDS\\\",\\n        \\\"VIS (0.40 - 0.75\n        \\xB5m)\\\",\\n        \\\"NIR (0.75 - 1.30 \\xB5m)\\\",\\n        \\\"Sun-synchronous\\\",\\n\n        \\       \\\"Very High Resolution - VHR (0 - 5m)\\\",\\n        \\\"475 km (reference)\\\",\\n\n        \\       \\\"25 km\\\",\\n        \\\"Imaging Spectrometers/Radiometers\\\",\\n        \\\"PlanetScope\\\",\\n\n        \\       \\\"PlanetScope Camera\\\"\\n      ],\\n      \\\"created\\\": \\\"2019-08-09T00:00:00.00Z\\\",\\n\n        \\     \\\"description\\\": \\\"The PlanetScope Level 1B Basic Scene and Level 3B\n        Ortho Scene full archive products are available as part of Planet imagery\n        offer.  The Unrectified Asset: PlanetScope Basic Analytic Radiance (TOAR)\n        product is a Scaled Top of Atmosphere Radiance (at sensor) and sensor corrected\n        product, without correction for any geometric distortions inherent in the\n        imaging processes and is not mapped to a cartographic projection. The imagery\n        data is accompanied by Rational Polynomial Coefficients (RPCs) to enable orthorectification\n        by the user.  This kind of product is designed for users with advanced image\n        processing and geometric correction capabilities.     Basic Scene Product\n        Components and Format Product Components:\\\\t - Image File (GeoTIFF format)\n        - Metadata File (XML format) - Rational Polynomial Coefficients (XML format)\n        - Thumbnail File (GeoTIFF format) - Unusable Data Mask UDM File (GeoTIFF format)\n        - Usable Data Mask UDM2 File (GeoTIFF format) Bands: 4-band multispectral\n        image (blue, green, red, near-infrared) or 8-band (coastal-blue, blue, green\n        I, green, yellow, red, Rededge, near-infrared) Ground Sampling Distance:\\\\t\n        - Approximate, satellite altitude dependent - Dove-C: 3.0 m-4.1 m - Dove-R:\n        3.0 m-4.1 m - SuperDove: 3.7 m-4.2 m Accuracy: &lt;10 m RMSE    The Rectified\n        assets: The PlanetScope Ortho Scene product is radiometrically-, sensor- and\n        geometrically- corrected and is projected to a UTM/WGS84 cartographic map\n        projection. The geometric correction uses fine Digital Elevation Models (DEMs)\n        with a post spacing of between 30 and 90 metres.  Ortho Scene Product Components\n        and Format Product Components:\\\\t - Image File (GeoTIFF format) - Metadata\n        File (XML format) - Thumbnail File (GeoTIFF format) - Unusable Data Mask UDM\n        File (GeoTIFF format) - Usable Data Mask UDM2 File (GeoTIFF format) Bands:\n        3-band natural color (red, green, blue) or 4-band multispectral image (blue,\n        green, red, near-infrared) or 8-band (costal-blue, blue, green I, green, yellow,\n        red, RedEdge, near-infrared) Ground Sampling Distance:\\\\t - Approximate, satellite\n        altitude dependent - Dove-C: 3.0 m-4.1 m - Dove-R: 3.0 m-4.1 m  - SuperDove:\n        3.7 m-4.2 m Projection: UTM WGS84 Accuracy: &lt;10 m RMSE    PlanetScope Ortho\n        Scene product is available in the following:   PlanetScope Visual Ortho Scene\n        product is orthorectified and color-corrected (using a colour curve) 3-band\n        RGB Imagery. This correction attempts to optimise colours as seen by the human\n        eye providing images as they would look if viewed from the perspective of\n        the satellite  PlanetScope  Surface Reflectance product is orthorectified,\n        4-band BGRN or 8-band Coastal Blue, Blue, Green I, Green, Yellow, Red, RedEdge,\n        NIR Imagery with geometric, radiometric and  corrected for surface reflection.\n        This data is optimal for value-added image processing such as land cover classifications.\n        \\ PlanetScope Analytic Ortho Scene Surface Reflectance product is orthorectified,\n        4-band BGRN or 8-band Coastal Blue, Blue, Green I, Green, Yellow, Red, RedEdge,\n        NIR Imagery with geometric, radiometric and calibrated to top of atmosphere\n        radiance.  _$$Planet Explorer Catalogue$$ https://www.planet.com/explorer/\n        can be accessed (Planet registration requested) to discover and check the\n        data readiness. It is worth to mention that the data distribution is based\n        on Data Voucher, corresponding to maximum amount of square kilometers can\n        be ordered and downloaded by the project in a maximum period of 15 moths (this\n        duration cannot be extended) starting from the project proposal acceptance\n        date. Each Date Voucher includes PlanetScope tile view streaming access for\n        a total of 20,000 tiles per calendar month during the project period.  All\n        details about the data provision, data access conditions and quota assignment\n        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\n        available in Resources section.\\\",\\n      \\\"type\\\": \\\"Collection\\\",\\n      \\\"title\\\":\n        \\\"PlanetScope Full Archive\\\",\\n      \\\"license\\\": \\\"various\\\",\\n      \\\"assets\\\":\n        {\\n        \\\"metadata_ogc_17_069r3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/PlanetScope.Full.Archive\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        }\\n\n        \\     },\\n      \\\"links\\\": [\\n        {\\n          \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/PlanetScope.Full.Archive\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"root\\\",\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\": \\\"application/json\\\",\\n\n        \\         \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"title\\\":\n        \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://www.planet.com/products/#satellite-imagery\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Planet products\n        - Catalogue\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://earth.esa.int/eogateway/documents/20142/37627/Planet-combined-imagery-product-specs-2020.pdf?text=Combined-Imagery-Product-Spec.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"Planet Imagery\n        Product Specifications - Product Specifications\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://developers.planet.com/docs/apps/explorer/\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"Planet Explorer\n        User Guide - User Manual\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://www.planet.com/explorer/\\\",\\n          \\\"type\\\":\n        \\\"text/html\\\",\\n          \\\"title\\\": \\\"Planet Explorer Catalogue - Catalogue\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\":\n        \\\"https://earth.esa.int/eogateway/documents/20142/37627/Access-to-ESAs-Planet-Missions-Terms-of-Applicability.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"Planet Terms\n        of Applicability - Access Guide\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://esatellus.service-now.com/csp?id=esa_simple_request\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Get Help? - ESA\n        Earth Observation User Services Portal\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?httpAccept=application/rdf%2Bxml;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?httpAccept=text/turtle;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for ESA/ESRIN\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/PlanetScope\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for PlanetScope platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/94314806-9c68-521a-87e2-8cd838eb9de0\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for PlanetScope Camera instrument\\\"\\n\n        \\       }\\n      ],\\n      \\\"id\\\": \\\"PlanetScope.Full.Archive\\\",\\n      \\\"updated\\\":\n        \\\"2023-06-13T13:23:41Z\\\",\\n      \\\"providers\\\": [\\n        {\\n          \\\"roles\\\":\n        [\\\"producer\\\"],\\n          \\\"name\\\": \\\"ESA/ESRIN\\\",\\n          \\\"url\\\": \\\"http://www.esa.int\\\"\\n\n        \\       },\\n        {\\n          \\\"roles\\\": [\\\"host\\\"],\\n          \\\"name\\\":\n        \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\": \\\"https://emc.spacebel.be/readme.html\\\"\\n\n        \\       }\\n      ],\\n      \\\"summaries\\\": {\\n        \\\"instruments\\\": [\\\"PlanetScope\n        Camera\\\"],\\n        \\\"platform\\\": [\\\"PlanetScope\\\"]\\n      }\\n    },\\n    {\\n\n        \\     \\\"extent\\\": {\\n        \\\"spatial\\\": {\\\"bbox\\\": [[\\n          -180,\\n\n        \\         -82,\\n          180,\\n          82\\n        ]]},\\n        \\\"temporal\\\":\n        {\\\"interval\\\": [[\\n          \\\"1991-08-01T00:00:00.000Z\\\",\\n          \\\"2003-06-22T23:59:59.999Z\\\"\\n\n        \\       ]]}\\n      },\\n      \\\"stac_version\\\": \\\"1.0.0\\\",\\n      \\\"keywords\\\":\n        [\\n        \\\"World\\\",\\n        \\\"Agriculture\\\",\\n        \\\"Forestry\\\",\\n        \\\"Oceans\\\",\\n\n        \\       \\\"Ocean Temperature\\\",\\n        \\\"Natural Hazards and Disaster Risk\\\",\\n\n        \\       \\\"Atmosphere\\\",\\n        \\\"Clouds\\\",\\n        \\\"Precipitation\\\",\\n\n        \\       \\\"EARTH SCIENCE > AGRICULTURE\\\",\\n        \\\"EARTH SCIENCE > BIOSPHERE\n        > ECOSYSTEMS > TERRESTRIAL ECOSYSTEMS > FORESTS\\\",\\n        \\\"EARTH SCIENCE\n        > OCEANS\\\",\\n        \\\"EARTH SCIENCE > OCEANS > OCEAN TEMPERATURE\\\",\\n        \\\"EARTH\n        SCIENCE > HUMAN DIMENSIONS > NATURAL HAZARDS\\\",\\n        \\\"EARTH SCIENCE >\n        ATMOSPHERE\\\",\\n        \\\"EARTH SCIENCE > ATMOSPHERE > CLOUDS\\\",\\n        \\\"EARTH\n        SCIENCE > ATMOSPHERE > PRECIPITATION\\\",\\n        \\\"Sun-synchronous\\\",\\n        \\\"782\n        to 785 km\\\",\\n        \\\"5 km\\\",\\n        \\\"Imaging Spectrometers/Radiometers\\\",\\n\n        \\       \\\"ERS-1\\\",\\n        \\\"ERS-2\\\",\\n        \\\"ATSR-1\\\",\\n        \\\"ATSR-2\\\"\\n\n        \\     ],\\n      \\\"created\\\": \\\"2019-05-29T00:00:00.00Z\\\",\\n      \\\"description\\\":\n        \\\"The Gridded Surface Temperature (GST) Product is the Level 2 full resolution\n        geophysical product. The product contains gridded sea-surface temperature\n        images using both nadir and dual view retrieval algorithms. The product includes\n        pixel latitude/longitude positions, X/Y offset and the results of the cloud-clearing/land-flagging.\n        \\ It contains a single measurement data set the content of which is switchable,\n        that is to say, the content of each pixel field will depend on the surface\n        type. Specifically, the contents of the data fields will depend on the setting\n        of the forward and nadir cloud flags and the land flag.  The 3rd reprocessing\n        of ATSR data was performed in 2013; the processing updates that have been\n        put in place and the scientific improvements are outlined in full in the User\n        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\n        \\     \\\"type\\\": \\\"Collection\\\",\\n      \\\"title\\\": \\\"ERS-1/2 ATSR Gridded Surface\n        Temperature [AT1/AT2_NR__2P]\\\",\\n      \\\"license\\\": \\\"various\\\",\\n      \\\"assets\\\":\n        {\\n        \\\"metadata_ogc_17_069r3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ERS.AT_NR__2P\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/ERS.AT_NR__2P?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ERS.AT_NR__2P?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ERS.AT_NR__2P?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ERS.AT_NR__2P?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ERS.AT_NR__2P?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ERS.AT_NR__2P?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        }\\n\n        \\     },\\n      \\\"links\\\": [\\n        {\\n          \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/ERS.AT_NR__2P\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"root\\\",\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\": \\\"application/json\\\",\\n\n        \\         \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"title\\\":\n        \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"Envisat-style\n        products for ATSR-1 and ATSR-2 data - Products Specification\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"AATSR Product\n        Specifications - Products Specification\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://earth.esa.int/eogateway/instruments/atsr/products-information\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"ATSR Product Information\n        - Product Information\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://earth.esa.int/eogateway/search?text=&category=Document%20library&filter=atsr-1,atsr-2\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"More ATSR Documents\n        - Product Specifications\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://earth.esa.int/eogateway/search?skipDetection=true&text=&category=Tools%20and%20toolboxes&filter=atsr-1,atsr-2\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"(A)ATSR Software\n        Tools - Tools\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://esatellus.service-now.com/csp?id=esa_simple_request\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Get Help? - ESA\n        Earth Observation User Services Portal\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/ERS.AT_NR__2P?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/ERS.AT_NR__2P?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/ERS.AT_NR__2P?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/ERS.AT_NR__2P?httpAccept=text/turtle;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for ESA/ESRIN\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/ERS-1\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for ERS-1 platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/ERS-2\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for ERS-2 platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/93343b90-3e9f-5830-abe7-151cc69401c1\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for ATSR-1 instrument\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/f3ef7078-65ef-5dee-8c5c-61f9706a34ad\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for ATSR-2 instrument\\\"\\n        }\\n\n        \\     ],\\n      \\\"id\\\": \\\"ERS.AT_NR__2P\\\",\\n      \\\"updated\\\": \\\"2023-06-13T13:23:39Z\\\",\\n\n        \\     \\\"providers\\\": [\\n        {\\n          \\\"roles\\\": [\\\"producer\\\"],\\n\n        \\         \\\"name\\\": \\\"ESA/ESRIN\\\",\\n          \\\"url\\\": \\\"http://www.esa.int\\\"\\n\n        \\       },\\n        {\\n          \\\"roles\\\": [\\\"host\\\"],\\n          \\\"name\\\":\n        \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\": \\\"https://emc.spacebel.be/readme.html\\\"\\n\n        \\       }\\n      ],\\n      \\\"summaries\\\": {\\n        \\\"instruments\\\": [\\n\n        \\         \\\"ATSR-1\\\",\\n          \\\"ATSR-2\\\"\\n        ],\\n        \\\"platform\\\":\n        [\\n          \\\"ERS-1\\\",\\n          \\\"ERS-2\\\"\\n        ]\\n      }\\n    },\\n\n        \\   {\\n      \\\"extent\\\": {\\n        \\\"spatial\\\": {\\\"bbox\\\": [[\\n          -180,\\n\n        \\         -90,\\n          180,\\n          90\\n        ]]},\\n        \\\"temporal\\\":\n        {\\\"interval\\\": [[\\n          \\\"1995-07-01T00:00:00.000Z\\\",\\n          \\\"2015-12-31T23:59:59.999Z\\\"\\n\n        \\       ]]}\\n      },\\n      \\\"stac_version\\\": \\\"1.0.0\\\",\\n      \\\"sci:doi\\\":\n        \\\"10.57780/esa-1268efe\\\",\\n      \\\"keywords\\\": [\\n        \\\"World\\\",\\n        \\\"Atmosphere\\\",\\n\n        \\       \\\"Atmospheric Chemistry\\\",\\n        \\\"Atmospheric Radiation\\\",\\n        \\\"Atmospheric\n        Temperature\\\",\\n        \\\"Climate\\\",\\n        \\\"EARTH SCIENCE > ATMOSPHERE\\\",\\n\n        \\       \\\"EARTH SCIENCE > ATMOSPHERE > ATMOSPHERIC CHEMISTRY\\\",\\n        \\\"EARTH\n        SCIENCE > ATMOSPHERE > ATMOSPHERIC RADIATION\\\",\\n        \\\"EARTH SCIENCE >\n        ATMOSPHERE > ATMOSPHERIC TEMPERATURE\\\",\\n        \\\"EARTH SCIENCE > CLIMATE\n        INDICATORS\\\",\\n        \\\"Sun-synchronous\\\",\\n        \\\"GDP 5.0\\\",\\n        \\\"782\n        to 785 km\\\",\\n        \\\"5 km\\\",\\n        \\\"Spectrometers\\\",\\n        \\\"ERS-2\\\",\\n\n        \\       \\\"GOME\\\"\\n      ],\\n      \\\"created\\\": \\\"2019-05-29T00:00:00.00Z\\\",\\n\n        \\     \\\"description\\\": \\\"The GOME Total Column Water Vapour (TCWV) Climate\n        product was generated by the Max Planck Institute for Chemistry (MPIC), and\n        the German Aerospace Center (DLR) within the ESA GOME-Evolution project. It\n        is a Level 3 type product containing homogenized time-series of the global\n        distribution of TCWV spanning over more than two decades (1995-2015).  The\n        data is provided as single netCDF file, containing monthly mean TCWV (units\n        kg/m2) with 1-degree resolution, and is based on measurements from the satellite\n        instruments ERS-2 GOME, Envisat SCIAMACHY, and MetOp-A GOME-2.  Details are\n        available in the paper by Beirle et al, 2018,.  Please also consult the GOME\n        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\n        \\     \\\"type\\\": \\\"Collection\\\",\\n      \\\"title\\\": \\\"GOME Total Column Water\n        Vapour Climate product\\\",\\n      \\\"license\\\": \\\"various\\\",\\n      \\\"assets\\\":\n        {\\n        \\\"metadata_ogc_17_069r3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/GOME_Evl_ClimateProd_TCWV\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/GOME_Evl_ClimateProd_TCWV?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/GOME_Evl_ClimateProd_TCWV?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/GOME_Evl_ClimateProd_TCWV?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/GOME_Evl_ClimateProd_TCWV?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/GOME_Evl_ClimateProd_TCWV?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/GOME_Evl_ClimateProd_TCWV?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        }\\n\n        \\     },\\n      \\\"links\\\": [\\n        {\\n          \\\"rel\\\": \\\"cite-as\\\",\\n\n        \\         \\\"href\\\": \\\"https://doi.org/10.57780/esa-1268efe\\\",\\n          \\\"type\\\":\n        \\\"text/html\\\",\\n          \\\"title\\\": \\\"Landing page\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/GOME_Evl_ClimateProd_TCWV\\\",\\n\n        \\         \\\"type\\\": \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"root\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\",\\n          \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n\n        \\         \\\"title\\\": \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\":\n        \\\"https://earth.esa.int/eogateway/documents/20142/37627/GOME-Data-Processor-DLFE-638-PSD-4B.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"GOME TCWV\n        Climate product Technical Documents - Product Specifications\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"GOME Level\n        1 to 2 Algorithms Description - Technical Note\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"Algorithm\n        Theoretical Basis Document for GOME Total Column Densities of Ozone and Nitrogen\n        Dioxide - Technical Note\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://earth.esa.int/eogateway/documents/20142/37627/GOME-Disclaimer-2004-DLFE-640.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"Disclaimer\n        for GOME Level-1 and Level-2 Data Products - Technical Note\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"GOME Software\n        Databases for Level 1 to 2 Processing - Technical Note\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"Delta Validation\n        Report for ERS-2 GOME Data Processor upgrade toversion 4.0 - Technical Note\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\":\n        \\\"https://earth.esa.int/eogateway/documents/20142/37627/GOME-Data-Processor-DLFE-656-DLR-GOME-SUM-gdp01-ex-4.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"GOME Data\n        Processor Extraction Software - User Manual\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://earth.esa.int/eogateway/search?category=Document+library&filter=gome\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"More GOME Documents\n        - Other\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\":\n        \\\"https://earth.esa.int/eogateway/instruments/gome/products-information\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Documentation related\n        to GOME data quality - Other\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://esatellus.service-now.com/csp?id=esa_simple_request\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Get Help? - ESA\n        Earth Observation User Services Portal\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/GOME_Evl_ClimateProd_TCWV?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/GOME_Evl_ClimateProd_TCWV?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/GOME_Evl_ClimateProd_TCWV?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/GOME_Evl_ClimateProd_TCWV?httpAccept=text/turtle;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for ESA/ESRIN\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/ERS-2\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for ERS-2 platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/a58b108b-492f-54a5-b807-cb97306b6aad\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for GOME instrument\\\"\\n        }\\n\n        \\     ],\\n      \\\"id\\\": \\\"GOME_Evl_ClimateProd_TCWV\\\",\\n      \\\"updated\\\":\n        \\\"2023-06-13T13:23:39Z\\\",\\n      \\\"stac_extensions\\\": [\\\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\\\"],\\n\n        \\     \\\"providers\\\": [\\n        {\\n          \\\"roles\\\": [\\\"producer\\\"],\\n\n        \\         \\\"name\\\": \\\"ESA/ESRIN\\\",\\n          \\\"url\\\": \\\"http://www.esa.int\\\"\\n\n        \\       },\\n        {\\n          \\\"roles\\\": [\\\"host\\\"],\\n          \\\"name\\\":\n        \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\": \\\"https://emc.spacebel.be/readme.html\\\"\\n\n        \\       }\\n      ],\\n      \\\"summaries\\\": {\\n        \\\"instruments\\\": [\\\"GOME\\\"],\\n\n        \\       \\\"platform\\\": [\\\"ERS-2\\\"]\\n      }\\n    },\\n    {\\n      \\\"extent\\\":\n        {\\n        \\\"spatial\\\": {\\\"bbox\\\": [[\\n          -180,\\n          -90,\\n          180,\\n\n        \\         90\\n        ]]},\\n        \\\"temporal\\\": {\\\"interval\\\": [[\\n          \\\"2001-11-01T00:00:00.000Z\\\",\\n\n        \\         \\\"2015-03-31T23:59:59.999Z\\\"\\n        ]]}\\n      },\\n      \\\"stac_version\\\":\n        \\\"1.0.0\\\",\\n      \\\"keywords\\\": [\\n        \\\"World\\\",\\n        \\\"Multispectral\\\",\\n\n        \\       \\\"Panchromatic\\\",\\n        \\\"Pan-sharpened\\\",\\n        \\\"EUSI\\\",\\n\n        \\       \\\"Maxar\\\",\\n        \\\"GeoEye\\\",\\n        \\\"WorldView\\\",\\n        \\\"Cartosat\\\",\\n\n        \\       \\\"Vegetation\\\",\\n        \\\"EARTH SCIENCE > BIOSPHERE > VEGETATION\\\",\\n\n        \\       \\\"VIS (0.40 - 0.75 \\xB5m)\\\",\\n        \\\"NIR (0.75 - 1.30 \\xB5m)\\\",\\n\n        \\       \\\"Sun-synchronous\\\",\\n        \\\"Very High Resolution - VHR (0 - 5m)\\\",\\n\n        \\       \\\"High Resolution - HR (5 - 20 m)\\\",\\n        \\\"450 km\\\",\\n        \\\"16.5\n        km\\\",\\n        \\\"Cameras\\\",\\n        \\\"QuickBird-2\\\",\\n        \\\"BGI\\\"\\n      ],\\n\n        \\     \\\"created\\\": \\\"2019-05-22T00:00:00.00Z\\\",\\n      \\\"description\\\": \\\"QuickBird\n        high resolution optical products are available as part of the Maxar Standard\n        Satellite Imagery products from the QuickBird, WorldView-1/-2/-3/-4, and GeoEye-1\n        satellites. All details about the data provision, data access conditions and\n        quota assignment procedure are described into the Terms of Applicability available\n        in Resources section.  In particular, QuickBird offers archive panchromatic\n        products up to 0.60m GSD resolution and 4-Bands Multispectral products up\n        to 2.4m GSD resolution  \\\\u2022 Panchromatic and 4-bands - Levels: STANDARD\n        (2A) / VIEW READY STANDARD (OR2A), VIEW READY STEREO, MAP-READY (ORTHO) 1:12.000\n        Orthorectified, MAP-READY (ORTHO) 1:50.000 Orthorectified - Resolutions: 0.30\n        m, 0.40 m, 0.50 m. 0.60 m \\\\u2022 8-Bands - Levels: STANDARD (2A) / VIEW READY\n        STANDARD (OR2A), VIEW READY STEREO, MAP-READY (ORTHO) 1:12.000 Orthorectified\n        - Resolutions: 0.30 m, 0.40 m, 0.50 m. 0.60 m   4-Bands being an optional\n        from: \\\\u2022\\\\u2022 4-Band Multispectral (BLUE, GREEN, RED, NIR1) \\\\u2022\n        4-Band Pan-sharpened (BLUE, GREEN, RED, NIR1) \\\\u2022 4-Band Bundle (PAN,\n        BLUE, GREEN, RED, NIR1) \\\\u2022 3-Bands Natural Colour (pan-sharpened BLUE,\n        GREEN, RED)  \\\\u2022 3-Band Colored Infrared (pan-sharpened GREEN, RED, NIR1)\n        \\\\u2022 Natural Colour / Coloured Infrared (3-Band pan-sharpened)  The list\n        of available archived data can be retrieved using the Image Library (https://www.euspaceimaging.com/image-library/)\n        catalogue.\\\",\\n      \\\"type\\\": \\\"Collection\\\",\\n      \\\"title\\\": \\\"QuickBird\n        full archive\\\",\\n      \\\"license\\\": \\\"various\\\",\\n      \\\"assets\\\": {\\n        \\\"metadata_ogc_17_069r3\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/QuickBird.full.archive\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/QuickBird.full.archive?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/QuickBird.full.archive?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/QuickBird.full.archive?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/QuickBird.full.archive?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/QuickBird.full.archive?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/QuickBird.full.archive?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        }\\n\n        \\     },\\n      \\\"links\\\": [\\n        {\\n          \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/QuickBird.full.archive\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"root\\\",\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\": \\\"application/json\\\",\\n\n        \\         \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"title\\\":\n        \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"Map Ready\n        data imagery sheet - Product Sepcification\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://earth.esa.int/eogateway/documents/20142/37627/DigitalGlobe-GeoStereo.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"GeoStereo\n        product details - Product Sepcification\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://earth.esa.int/eogateway/documents/20142/37627/DigitalGlobe-Stereo-Imagery.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"Stereo product\n        details - Product Sepcification\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://earth.esa.int/eogateway/documents/20142/37627/view-ready-imagery-data-sheet.pdf/e1476ac6-51cc-6052-c138-844dcc0200b8\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"View Ready\n        imagery data sheet - Product Sepcification\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://earth.esa.int/eogateway/documents/20142/37627/WorldView-GeoEye-QuickBird-Terms-Of-Applicability.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"Indian Data\n        Terms of Applicability - Access guide\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://esatellus.service-now.com/csp?id=esa_simple_request&sys_id=f27b38f9dbdffe40e3cedb11ce961958\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Get Help? - ESA\n        Earth Observation User Services Portal\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/QuickBird.full.archive?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/QuickBird.full.archive?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/QuickBird.full.archive?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/QuickBird.full.archive?httpAccept=application/rdf%2Bxml;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/QuickBird.full.archive?httpAccept=text/turtle;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for ESA/ESRIN\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/QuickBird-2\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for QuickBird-2 platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/aee4648e-d5cc-5e77-8354-87f45367f1a9\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for BGI instrument\\\"\\n        }\\n\n        \\     ],\\n      \\\"id\\\": \\\"QuickBird.full.archive\\\",\\n      \\\"updated\\\": \\\"2023-06-13T13:23:41Z\\\",\\n\n        \\     \\\"providers\\\": [\\n        {\\n          \\\"roles\\\": [\\\"producer\\\"],\\n\n        \\         \\\"name\\\": \\\"ESA/ESRIN\\\",\\n          \\\"url\\\": \\\"http://www.esa.int\\\"\\n\n        \\       },\\n        {\\n          \\\"roles\\\": [\\\"host\\\"],\\n          \\\"name\\\":\n        \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\": \\\"https://emc.spacebel.be/readme.html\\\"\\n\n        \\       }\\n      ],\\n      \\\"summaries\\\": {\\n        \\\"instruments\\\": [\\\"BGI\\\"],\\n\n        \\       \\\"platform\\\": [\\\"QuickBird-2\\\"]\\n      }\\n    },\\n    {\\n      \\\"extent\\\":\n        {\\n        \\\"spatial\\\": {\\\"bbox\\\": [[\\n          -180,\\n          -90,\\n          180,\\n\n        \\         90\\n        ]]},\\n        \\\"temporal\\\": {\\\"interval\\\": [[\\n          \\\"2005-01-01T00:00:00.000Z\\\",\\n\n        \\         \\\"2005-12-31T23:59:59.999Z\\\"\\n        ]]}\\n      },\\n      \\\"stac_version\\\":\n        \\\"1.0.0\\\",\\n      \\\"sci:doi\\\": \\\"10.5270/esa-6riial9\\\",\\n      \\\"keywords\\\":\n        [\\n        \\\"World\\\",\\n        \\\"Surface Radiative Properties\\\",\\n        \\\"EARTH\n        SCIENCE > LAND SURFACE > SURFACE RADIATIVE PROPERTIES\\\",\\n        \\\"UV (0.01\n        - 0.4 \\xB5m)\\\",\\n        \\\"VIS (0.40 - 0.75 \\xB5m)\\\",\\n        \\\"NIR (0.75\n        - 1.30 \\xB5m)\\\",\\n        \\\"SWIR (1.3 - 3.0 \\xB5m)\\\",\\n        \\\"MWIR (3.0\n        - 6.0 \\xB5m)\\\",\\n        \\\"4.0\\\",\\n        \\\"Very Low Resolution - VLR (>\n        1200 m)\\\",\\n        \\\"Imaging Spectrometers/Radiometers\\\",\\n        \\\"Scatterometers\\\",\\n\n        \\       \\\"TERRA\\\",\\n        \\\"AQUA\\\",\\n        \\\"QuikSCAT\\\",\\n        \\\"OrbView-2\\\",\\n\n        \\       \\\"MODIS\\\",\\n        \\\"SeaWinds\\\",\\n        \\\"SeaWiFS\\\"\\n      ],\\n\n        \\     \\\"created\\\": \\\"2019-11-21T00:00:00.00Z\\\",\\n      \\\"description\\\": \\\"ADAM\n        enables generating typical monthly variations of the global Earth surface\n        reflectance at 0.1\\xB0 spatial resolution (Plate Carree projection) and over\n        the spectral range 240-4000nm.  The ADAM product is made of gridded monthly\n        mean climatologies over land and ocean surfaces, and of a companion API toolkit\n        that enables the calculation of hyperspectral (at 1 nm resolution over the\n        whole 240-4000 nm spectral range) and multidirectional reflectances (i.e.\n        in any illumination/viewing geometry) depending on user choices.  The ADAM\n        climatologies that feed the ADAM calculation tools are:  For ocean:  monthly\n        chlorophyll concentration derived from SeaWiFS-OrbView-2 (1999-2009); it is\n        used to compute the water column reflectance (which shows large spectral variations\n        in the visible, but is insignificant in the near and mid infrared). monthly\n        wind speed derived from SeaWinds-QuikSCAT-(1999-2009); it is used to calculate\n        the ocean glint reflectance. For land:  monthly normalized surface reflectances\n        in the 7 MODIS narrow spectral bands derived from FondsdeSol processing chain\n        of MOD09A1 products (derived from Aqua and Terra observations), on which relies\n        the modelling of the hyperspectral/multidirectional surface (soil/vegetation/snow)\n        reflectance. uncertainty variance-covariance matrix for the 7 spectral bands\n        associated to the normalized surface reflectance. For sea-ice:  Sea ice pixels\n        (masked in the original MOD09A1 products) have been accounted for by a gap-filling\n        approach relying on the spatial-temporal distribution of sea ice coverage\n        provided by the CryoClim climatology for year 2005.\\\",\\n      \\\"type\\\": \\\"Collection\\\",\\n\n        \\     \\\"title\\\": \\\"ADAM Surface Reflectance Database v4.0\\\",\\n      \\\"license\\\":\n        \\\"various\\\",\\n      \\\"assets\\\": {\\n        \\\"metadata_ogc_17_069r3\\\": {\\n\n        \\         \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/ADAM.Surface.Reflectance.Database\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/ADAM.Surface.Reflectance.Database?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ADAM.Surface.Reflectance.Database?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ADAM.Surface.Reflectance.Database?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ADAM.Surface.Reflectance.Database?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ADAM.Surface.Reflectance.Database?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ADAM.Surface.Reflectance.Database?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        }\\n\n        \\     },\\n      \\\"links\\\": [\\n        {\\n          \\\"rel\\\": \\\"cite-as\\\",\\n\n        \\         \\\"href\\\": \\\"https://doi.org/10.5270/esa-6riial9\\\",\\n          \\\"type\\\":\n        \\\"text/html\\\",\\n          \\\"title\\\": \\\"Landing page\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/ADAM.Surface.Reflectance.Database\\\",\\n\n        \\         \\\"type\\\": \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"root\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\",\\n          \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n\n        \\         \\\"title\\\": \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\":\n        \\\"https://adam.noveltis.fr/\\\",\\n          \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\":\n        \\\"ADAM Database - Software Tool\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://adam.noveltis.fr/pdfs/NOV-FE-0724-NT-007-v4.2.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"ADAM Algorithm\n        Theoretical Basis Document - Technical Note\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://adam.noveltis.fr/pdfs/NOV-FE-0724-NT-008-v4.0.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"ADAM, description\n        of the web interface. Structure of the ADAM input surface database and output\n        products - Technical Note\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://adam.noveltis.fr/pdfs/NOV-FE-0724-NT-006_v2.1.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"ADAM Final\n        Report, Contract Change request 6 - Technical Note\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://esatellus.service-now.com/csp?id=esa_simple_request\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Get Help? - ESA\n        Earth Observation User Services Portal\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/ADAM.Surface.Reflectance.Database?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/ADAM.Surface.Reflectance.Database?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/ADAM.Surface.Reflectance.Database?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/ADAM.Surface.Reflectance.Database?httpAccept=text/turtle;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for ESA/ESRIN\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/TERRA\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for TERRA platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/AQUA\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for AQUA platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/QuikSCAT\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for QuikSCAT platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/OrbView-2\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for OrbView-2 platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/482c462e-543c-5b17-9c69-ef7327e950a9\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for SeaWiFS instrument\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/ada8f84c-48ef-50a6-b2ba-635a1bdb7d14\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for MODIS instrument\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/3a0e9379-9541-569c-8492-3636d0ef2a27\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for SeaWinds instrument\\\"\\n        }\\n\n        \\     ],\\n      \\\"id\\\": \\\"ADAM.Surface.Reflectance.Database\\\",\\n      \\\"updated\\\":\n        \\\"2023-06-13T13:23:39Z\\\",\\n      \\\"stac_extensions\\\": [\\\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\\\"],\\n\n        \\     \\\"providers\\\": [\\n        {\\n          \\\"roles\\\": [\\\"producer\\\"],\\n\n        \\         \\\"name\\\": \\\"ESA/ESRIN\\\",\\n          \\\"url\\\": \\\"http://www.esa.int\\\"\\n\n        \\       },\\n        {\\n          \\\"roles\\\": [\\\"host\\\"],\\n          \\\"name\\\":\n        \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\": \\\"https://emc.spacebel.be/readme.html\\\"\\n\n        \\       }\\n      ],\\n      \\\"summaries\\\": {\\n        \\\"instruments\\\": [\\n\n        \\         \\\"SeaWiFS\\\",\\n          \\\"MODIS\\\",\\n          \\\"SeaWinds\\\"\\n        ],\\n\n        \\       \\\"platform\\\": [\\n          \\\"TERRA\\\",\\n          \\\"AQUA\\\",\\n          \\\"QuikSCAT\\\",\\n\n        \\         \\\"OrbView-2\\\"\\n        ]\\n      }\\n    },\\n    {\\n      \\\"extent\\\":\n        {\\n        \\\"spatial\\\": {\\\"bbox\\\": [[\\n          -180,\\n          -82,\\n          180,\\n\n        \\         82\\n        ]]},\\n        \\\"temporal\\\": {\\\"interval\\\": [[\\n          \\\"1991-08-01T00:00:00.000Z\\\",\\n\n        \\         \\\"2011-07-04T23:59:59.999Z\\\"\\n        ]]}\\n      },\\n      \\\"stac_version\\\":\n        \\\"1.0.0\\\",\\n      \\\"sci:doi\\\": \\\"10.57780/ers-af99f2b\\\",\\n      \\\"keywords\\\":\n        [\\n        \\\"World\\\",\\n        \\\"Natural Hazards and Disaster Risk\\\",\\n        \\\"Atmosphere\\\",\\n\n        \\       \\\"Atmospheric Winds\\\",\\n        \\\"EARTH SCIENCE > HUMAN DIMENSIONS\n        > NATURAL HAZARDS\\\",\\n        \\\"EARTH SCIENCE > ATMOSPHERE\\\",\\n        \\\"EARTH\n        SCIENCE > ATMOSPHERE > ATMOSPHERIC WINDS\\\",\\n        \\\"Sun-synchronous\\\",\\n\n        \\       \\\"ASPS 10.04\\\",\\n        \\\"Very Low Resolution - VLR (> 1200 m)\\\",\\n\n        \\       \\\"782 to 785 km\\\",\\n        \\\"5 km\\\",\\n        \\\"Scatterometers\\\",\\n\n        \\       \\\"ERS-1\\\",\\n        \\\"ERS-2\\\",\\n        \\\"AMI/Scatterometer\\\"\\n      ],\\n\n        \\     \\\"created\\\": \\\"2019-05-29T00:00:00.00Z\\\",\\n      \\\"description\\\": \\\"The\n        ERS data reprocessed with the ASPS facility is also available in the UWI format\n        to maintain the compatibility with the FD (Fast Delivery) products.  The ASPS\n        UWI product is organised in frames of 500 x 500 km providing the radar backscattering\n        sigma nought for the three beams of the instrument plus the wind speed and\n        direction.  The wind retrieval is performed with the CMOD5N geophysical model\n        function derived by ECMWF to compute the neutral winds rather than 10m winds.\n        \\ ASPS UWI products are provided with a spatial resolution of 50x50km and\n        a grid spacing of 25 km. One product covers one orbit from ascending node\n        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)\n        before using the ERS ASPS data.\\\",\\n      \\\"type\\\": \\\"Collection\\\",\\n      \\\"title\\\":\n        \\\"ERS-1/2 SCATTEROMETER Nominal Resolution back-scattering measurements, Ocean\n        Wind field [UWI]\\\",\\n      \\\"license\\\": \\\"various\\\",\\n      \\\"assets\\\": {\\n\n        \\       \\\"metadata_ogc_17_069r3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ERS.UWI\\\",\\n          \\\"type\\\":\n        \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/ERS.UWI?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ERS.UWI?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ERS.UWI?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ERS.UWI?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ERS.UWI?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ERS.UWI?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        }\\n\n        \\     },\\n      \\\"links\\\": [\\n        {\\n          \\\"rel\\\": \\\"cite-as\\\",\\n\n        \\         \\\"href\\\": \\\"https://doi.org/10.57780/ers-af99f2b\\\",\\n          \\\"type\\\":\n        \\\"text/html\\\",\\n          \\\"title\\\": \\\"Landing page\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/ERS.UWI\\\",\\n\n        \\         \\\"type\\\": \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"root\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\",\\n          \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n\n        \\         \\\"title\\\": \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\":\n        \\\"https://earth.esa.int/eogateway/instruments/ws/products-information\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Documentation related\n        to SCATTEROMETER data - Product Specifications\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://earth.esa.int/web/sppa/mission-performance/esa-missions/ers-2/scatterometer/quality-control-reports\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"SCATTEROMETER Quality\n        Information - Product Specifications\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://earth.esa.int/eogateway/search?skipDetection=true&text=&category=Document%20library&filter=ami-scatterometer\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"All SCATTEROMETER\n        documents - Product Specifications\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://esatellus.service-now.com/csp?id=esa_simple_request\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Get Help? - ESA\n        Earth Observation User Services Portal\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/ERS.UWI?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/ERS.UWI?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/ERS.UWI?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/ERS.UWI?httpAccept=application/rdf%2Bxml;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/ERS.UWI?httpAccept=text/turtle;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/ERS.UWI?httpAccept=text/turtle;profile=http://data.europa.eu/930/\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for ESA/ESRIN\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/ERS-1\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for ERS-1 platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/ERS-2\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for ERS-2 platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/2659e931-c15f-5b28-82e4-36c69ee2f848\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for AMI/Scatterometer instrument\\\"\\n\n        \\       }\\n      ],\\n      \\\"id\\\": \\\"ERS.UWI\\\",\\n      \\\"updated\\\": \\\"2023-06-23T09:01:27Z\\\",\\n\n        \\     \\\"stac_extensions\\\": [\\\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\\\"],\\n\n        \\     \\\"providers\\\": [\\n        {\\n          \\\"roles\\\": [\\\"producer\\\"],\\n\n        \\         \\\"name\\\": \\\"ESA/ESRIN\\\",\\n          \\\"url\\\": \\\"http://www.esa.int\\\"\\n\n        \\       },\\n        {\\n          \\\"roles\\\": [\\\"host\\\"],\\n          \\\"name\\\":\n        \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\": \\\"https://emc.spacebel.be/readme.html\\\"\\n\n        \\       }\\n      ],\\n      \\\"summaries\\\": {\\n        \\\"instruments\\\": [\\\"AMI/Scatterometer\\\"],\\n\n        \\       \\\"platform\\\": [\\n          \\\"ERS-1\\\",\\n          \\\"ERS-2\\\"\\n        ]\\n\n        \\     }\\n    }\\n  ],\\n  \\\"numberReturned\\\": 10,\\n  \\\"links\\\": [\\n    {\\n      \\\"rel\\\":\n        \\\"self\\\",\\n      \\\"href\\\": \\\"https://emc.spacebel.be/collections?limit=10&bbox=-92.379%2C46.662%2C-91.788%2C46.919\\\",\\n\n        \\     \\\"type\\\": \\\"application/json\\\",\\n      \\\"title\\\": \\\"This document\\\"\\n\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\n        \\     \\\"type\\\": \\\"application/json\\\",\\n      \\\"title\\\": \\\"Next results\\\"\\n\n        \\   },\\n    {\\n      \\\"rel\\\": \\\"http://www.opengis.net/def/rel/ogc/1.0/queryables\\\",\\n\n        \\     \\\"href\\\": \\\"https://emc.spacebel.be/collections/queryables\\\",\\n      \\\"type\\\":\n        \\\"application/schema+json\\\",\\n      \\\"title\\\": \\\"Queryables for collection\n        search\\\"\\n    }\\n  ],\\n  \\\"numberMatched\\\": 2357\\n}\"\n    headers:\n      Access-Control-Allow-Headers:\n      - X-PINGOTHER, Content-Type, Authorization, Accept\n      Access-Control-Allow-Methods:\n      - POST,GET,PUT,HEAD,OPTIONS,DELETE\n      Access-Control-Allow-Origin:\n      - '*'\n      Cache-Control:\n      - no-cache, no-store, max-age=0, must-revalidate\n      Connection:\n      - keep-alive\n      Content-Type:\n      - application/json;charset=UTF-8\n      Date:\n      - Thu, 31 Jul 2025 15:08:25 GMT\n      Expires:\n      - '0'\n      Pragma:\n      - no-cache\n      Server:\n      - openresty\n      Strict-Transport-Security:\n      - max-age=31536000 ; includeSubDomains\n      Transfer-Encoding:\n      - chunked\n      X-Content-Type-Options:\n      - nosniff\n      X-Frame-Options:\n      - DENY\n      X-Served-By:\n      - emc.spacebel.be\n      X-XSS-Protection:\n      - 1; mode=block\n    status:\n      code: 200\n      message: ''\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://emc.spacebel.be/collections?limit=10&bbox=-92.379%2C46.662%2C-91.788%2C46.919&startRecord=11\n  response:\n    body:\n      string: \"{\\n  \\\"collections\\\": [\\n    {\\n      \\\"extent\\\": {\\n        \\\"spatial\\\":\n        {\\\"bbox\\\": [[\\n          -120,\\n          19,\\n          95,\\n          87\\n\n        \\       ]]},\\n        \\\"temporal\\\": {\\\"interval\\\": [[\\n          \\\"1987-09-08T00:00:00.000Z\\\",\\n\n        \\         \\\"1993-08-20T23:59:59.999Z\\\"\\n        ]]}\\n      },\\n      \\\"stac_version\\\":\n        \\\"1.0.0\\\",\\n      \\\"sci:doi\\\": \\\"10.5270/ESA-a36265c\\\",\\n      \\\"keywords\\\":\n        [\\n        \\\"Cryosphere\\\",\\n        \\\"Oceans\\\",\\n        \\\"Sea Ice\\\",\\n        \\\"Sea\n        Surface Topography\\\",\\n        \\\"EARTH SCIENCE > CRYOSPHERE\\\",\\n        \\\"EARTH\n        SCIENCE > OCEANS\\\",\\n        \\\"EARTH SCIENCE > CRYOSPHERE > SEA ICE\\\",\\n        \\\"EARTH\n        SCIENCE > OCEANS > SEA ICE\\\",\\n        \\\"EARTH SCIENCE > OCEANS > SEA SURFACE\n        TOPOGRAPHY\\\",\\n        \\\"VIS (0.40 - 0.75 \\xC2\\xB5m)\\\",\\n        \\\"NIR (0.75\n        - 1.30 \\xC2\\xB5m)\\\",\\n        \\\"Sun-synchronous\\\",\\n        \\\"Medium Resolution\n        - MR (20 - 500 m)\\\",\\n        \\\"MES_GEC_1P\\\",\\n        \\\"909 km\\\",\\n        \\\"100\n        km\\\",\\n        \\\"Imaging Spectrometers/Radiometers\\\",\\n        \\\"MOS-1\\\",\\n\n        \\       \\\"MOS-1B\\\",\\n        \\\"MESSR\\\"\\n      ],\\n      \\\"created\\\": \\\"2002-11-15T00:00:00.00Z\\\",\\n\n        \\     \\\"description\\\": \\\"The ESA Orthorectified Map-oriented (Level 1) Products\n        collection is composed of MOS-1/1B MESSR (Multi-spectral Electronic Self-Scanning\n        Radiometer) data products generated as part of the MOS Bulk Processing Campaign\n        using the MOS Processor v3.02.\\\\r\\\\rThe products are available in GeoTIFF\n        format and disseminated within EO-SIP packaging. Please refer to the _$$MOS\n        Product Format Specification$$ https://earth.esa.int/eogateway/documents/d/earth-online/mos-product-format-specification\n        for further details. \\\\rThe collection consists of data products of the following\n        type: \\\\r\\\\rMES_GEC_1P: Geocoded Ellipsoid GCP Corrected Level 1 MOS-1/1B\n        MESSR products which are the default products generated by the MOS MESSR processor\n        in all cases (where possible), with usage of the latest set of LANDSAT improved\n        GCP (Ground Control Points). These are orthorectified map-oriented products,\n        corresponding to the old MOS-1/1B MES_ORT_1P products with geolocation improvements.\n        \\\\r \\\\r\\\\rMESSR Instrument Characteristics\\\\rBand\\\\tWavelength Range (nm)\\\\tSpatial\n        Resolution (m)\\\\tSwath Width (km)\\\\r1 (VIS)\\\\t510 \\\\u2013 690\\\\t50\\\\t100\\\\r2\n        (VIS)\\\\t610 \\\\u2013 690\\\\t50\\\\t100\\\\r3 (NIR)\\\\t720 \\\\u2013 800\\\\t50\\\\t100\\\\r4\n        (NIR)\\\\t800 \\\\u2013 1100\\\\t50\\\\t100\\\",\\n      \\\"type\\\": \\\"Collection\\\",\\n\n        \\     \\\"title\\\": \\\"MOS-1/1B ESA Orthorectified Map-oriented Products [MES_GEC_1P]\\\",\\n\n        \\     \\\"license\\\": \\\"various\\\",\\n      \\\"assets\\\": {\\n        \\\"metadata_ogc_17_069r3\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/ESA_Orthorectified_Map_oriented_Level1_products\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/ESA_Orthorectified_Map_oriented_Level1_products?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ESA_Orthorectified_Map_oriented_Level1_products?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ESA_Orthorectified_Map_oriented_Level1_products?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ESA_Orthorectified_Map_oriented_Level1_products?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ESA_Orthorectified_Map_oriented_Level1_products?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ESA_Orthorectified_Map_oriented_Level1_products?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        }\\n\n        \\     },\\n      \\\"links\\\": [\\n        {\\n          \\\"rel\\\": \\\"cite-as\\\",\\n\n        \\         \\\"href\\\": \\\"https://doi.org/10.5270/ESA-a36265c\\\",\\n          \\\"type\\\":\n        \\\"text/html\\\",\\n          \\\"title\\\": \\\"Landing page\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/ESA_Orthorectified_Map_oriented_Level1_products\\\",\\n\n        \\         \\\"type\\\": \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"root\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\",\\n          \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n\n        \\         \\\"title\\\": \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/ESA_Orthorectified_Map_oriented_Level1_products?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/ESA_Orthorectified_Map_oriented_Level1_products?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/ESA_Orthorectified_Map_oriented_Level1_products?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for ESA/ESRIN\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/MOS-1\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for MOS-1 platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/MOS-1B\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for MOS-1B platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/512f0f9f-5eff-5a9b-bc5f-2616eb03d875\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for MESSR instrument\\\"\\n        }\\n\n        \\     ],\\n      \\\"id\\\": \\\"ESA_Orthorectified_Map_oriented_Level1_products\\\",\\n\n        \\     \\\"updated\\\": \\\"2024-01-11T15:24:06Z\\\",\\n      \\\"stac_extensions\\\": [\\\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\\\"],\\n\n        \\     \\\"providers\\\": [\\n        {\\n          \\\"roles\\\": [\\\"producer\\\"],\\n\n        \\         \\\"name\\\": \\\"ESA/ESRIN\\\",\\n          \\\"url\\\": \\\"https://earth.esa.int\\\"\\n\n        \\       },\\n        {\\n          \\\"roles\\\": [\\\"host\\\"],\\n          \\\"name\\\":\n        \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\": \\\"https://emc.spacebel.be/readme.html\\\"\\n\n        \\       }\\n      ],\\n      \\\"summaries\\\": {\\n        \\\"instruments\\\": [\\\"MESSR\\\"],\\n\n        \\       \\\"platform\\\": [\\n          \\\"MOS-1\\\",\\n          \\\"MOS-1B\\\"\\n        ]\\n\n        \\     }\\n    },\\n    {\\n      \\\"extent\\\": {\\n        \\\"spatial\\\": {\\\"bbox\\\":\n        [[\\n          -180,\\n          -90,\\n          180,\\n          90\\n        ]]},\\n\n        \\       \\\"temporal\\\": {\\\"interval\\\": [[\\n          \\\"2020-07-09T00:00:00.000Z\\\",\\n\n        \\         null\\n        ]]}\\n      },\\n      \\\"stac_version\\\": \\\"1.0.0\\\",\\n\n        \\     \\\"keywords\\\": [\\n        \\\"Level 2C assisted wind fields assimilation\n        processing\\\",\\n        \\\"Atmosphere\\\",\\n        \\\"Atmospheric Indicators\\\",\\n\n        \\       \\\"Atmospheric Winds\\\",\\n        \\\"Climate\\\",\\n        \\\"EARTH SCIENCE\n        > ATMOSPHERE\\\",\\n        \\\"EARTH SCIENCE > ATMOSPHERE > ATMOSPHERIC WINDS\\\",\\n\n        \\       \\\"EARTH SCIENCE > CLIMATE INDICATORS\\\",\\n        \\\"UV (0.01 - 0.4\n        \\xB5m)\\\",\\n        \\\"Sun-synchronous\\\",\\n        \\\"Horizontal resolution at\n        observation scale for Rayleigh/Mie: 87/10 km 250-2000 m vertical resolution\\\",\\n\n        \\       \\\"ALD_U_N_2C\\\",\\n        \\\"320 km\\\",\\n        \\\"Lidar/Laser Sounders\\\",\\n\n        \\       \\\"Aeolus\\\",\\n        \\\"ALADIN\\\"\\n      ],\\n      \\\"created\\\": \\\"2023-02-17T00:00:00.00Z\\\",\\n\n        \\     \\\"description\\\": \\\"The Level 2C wind product of the Aeolus mission provides\n        ECMWF analysis horizontal wind vectors at the geolocations of assimilated\n        L2B HLOS wind components.  The L2C can therefore be described as an Aeolus-assisted\n        horizontal wind vector product. The L2C is a distinct product, however the\n        L2C and L2B share a common Earth Explorer file template, with the L2C being\n        a superset of the L2B.  The L2C consists of extra datasets appended to the\n        L2B product with information which are relevant to the data assimilation of\n        the L2B winds.\\\",\\n      \\\"type\\\": \\\"Collection\\\",\\n      \\\"title\\\": \\\"Aeolus\n        Level 2C assisted wind fields resulting from NWP Numerical Weather Prediction\n        assimilation processing\\\",\\n      \\\"license\\\": \\\"various\\\",\\n      \\\"assets\\\":\n        {\\n        \\\"metadata_ogc_17_069r3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/L2C_Wind_products\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/L2C_Wind_products?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/L2C_Wind_products?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/L2C_Wind_products?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/L2C_Wind_products?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/L2C_Wind_products?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/L2C_Wind_products?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        }\\n\n        \\     },\\n      \\\"links\\\": [\\n        {\\n          \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/L2C_Wind_products\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"root\\\",\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\": \\\"application/json\\\",\\n\n        \\         \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"title\\\":\n        \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://earth.esa.int/eogateway/documents/20142/37627/Aeolus-Level2-Algorithm-Theoretical-Basis-Document.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"Aeolus L2B\n        Algorithm Theoretical Baseline Document - Level 2B processor algorithm description\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\":\n        \\\"https://earth.esa.int/eogateway/documents/20142/37627/Aeolus-L2B-2C-Input-Output-DD-ICD.pdf/2321b6a0-27d0-b628-771e-fcca4928bc32\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"Aeolus L2B/2C\n        Processor Input/Output Data Definitions Interface Control Document - Level\n        2B/2C data definition\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://earth.esa.int/eogateway/documents/20142/37627/Aeolus-Sensor-and-Product-Description.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"Aeolus Sensor\n        and Product Description - Aeolus Sensor and Product Description\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://esatellus.service-now.com/csp?id=esa_simple_request\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Get Help? - ESA\n        Earth Observation User Services Portal\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/L2C_Wind_products?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/L2C_Wind_products?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/L2C_Wind_products?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/L2C_Wind_products?httpAccept=application/rdf%2Bxml;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/L2C_Wind_products?httpAccept=text/turtle;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for ESA/ESRIN\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/Aeolus\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for Aeolus platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/a032cde6-16e3-5940-988e-f6d79870d14c\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for ALADIN instrument\\\"\\n        }\\n\n        \\     ],\\n      \\\"id\\\": \\\"L2C_Wind_products\\\",\\n      \\\"updated\\\": \\\"2023-06-13T13:23:39Z\\\",\\n\n        \\     \\\"providers\\\": [\\n        {\\n          \\\"roles\\\": [\\\"producer\\\"],\\n\n        \\         \\\"name\\\": \\\"ESA/ESRIN\\\",\\n          \\\"url\\\": \\\"http://www.esa.int\\\"\\n\n        \\       },\\n        {\\n          \\\"roles\\\": [\\\"host\\\"],\\n          \\\"name\\\":\n        \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\": \\\"https://emc.spacebel.be/readme.html\\\"\\n\n        \\       }\\n      ],\\n      \\\"summaries\\\": {\\n        \\\"instruments\\\": [\\\"ALADIN\\\"],\\n\n        \\       \\\"platform\\\": [\\\"Aeolus\\\"]\\n      }\\n    },\\n    {\\n      \\\"extent\\\":\n        {\\n        \\\"spatial\\\": {\\\"bbox\\\": [[\\n          -180,\\n          -90,\\n          180,\\n\n        \\         90\\n        ]]},\\n        \\\"temporal\\\": {\\\"interval\\\": [[\\n          \\\"2009-09-01T00:00:00.000Z\\\",\\n\n        \\         \\\"2012-07-31T23:59:59.999Z\\\"\\n        ]]}\\n      },\\n      \\\"stac_version\\\":\n        \\\"1.0.0\\\",\\n      \\\"sci:doi\\\": \\\"10.5270/esa-jfhe2um\\\",\\n      \\\"keywords\\\":\n        [\\n        \\\"World\\\",\\n        \\\"Solid Earth\\\",\\n        \\\"Geodetics\\\",\\n\n        \\       \\\"EARTH SCIENCE > SOLID EARTH\\\",\\n        \\\"EARTH SCIENCE > SOLID\n        EARTH > GEODETICS\\\",\\n        \\\"Sun-synchronous\\\",\\n        \\\"250 km\\\",\\n\n        \\       \\\"Accelerometers\\\",\\n        \\\"GPS\\\",\\n        \\\"Radar Altimeters\\\",\\n\n        \\       \\\"GOCE\\\",\\n        \\\"EGG\\\",\\n        \\\"SSTI\\\",\\n        \\\"STR\\\"\\n\n        \\     ],\\n      \\\"created\\\": \\\"2019-12-13T00:00:00.00Z\\\",\\n      \\\"description\\\":\n        \\\"This collection contains GOCE level 2 data: Gravity Gradients in the gradiometer\n        reference frame (EGG_NOM_2), in the terrestrial reference frame (EGG_TRF_2),\n        GPS receiver derived precise science orbits (SST_PSO_2) and the non-tidal\n        time variable gravity field potential with respect to a mean value in terms\n        of a spherical harmonic series determined from atmospheric and oceanic mass\n        variations as well as from a GRACE monthly gravity field time series (SST_AUX_2).\n        EGG_NOM_2_: latest baseline: _0203  EGG_TRF_2_: latest baseline _0101  SST_AUX_2_:\n        latest baseline _0001  SST_PSO_2_: latest baseline _0201\\\",\\n      \\\"type\\\":\n        \\\"Collection\\\",\\n      \\\"title\\\": \\\"GOCE Level 2\\\",\\n      \\\"license\\\": \\\"various\\\",\\n\n        \\     \\\"assets\\\": {\\n        \\\"search\\\": {\\n          \\\"roles\\\": [\\\"search\\\"],\\n\n        \\         \\\"href\\\": \\\"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=GOCE_Level_2\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Search client\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_069r3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/GOCE_Level_2\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/GOCE_Level_2?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/GOCE_Level_2?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/GOCE_Level_2?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/GOCE_Level_2?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/GOCE_Level_2?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/GOCE_Level_2?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        }\\n\n        \\     },\\n      \\\"links\\\": [\\n        {\\n          \\\"rel\\\": \\\"cite-as\\\",\\n\n        \\         \\\"href\\\": \\\"https://doi.org/10.5270/esa-jfhe2um\\\",\\n          \\\"type\\\":\n        \\\"text/html\\\",\\n          \\\"title\\\": \\\"Landing page\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/GOCE_Level_2\\\",\\n\n        \\         \\\"type\\\": \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"root\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\",\\n          \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n\n        \\         \\\"title\\\": \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"items\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/GOCE_Level_2/items?httpAccept=application/geo%2Bjson;profile=https://stacspec.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json\\\",\\n          \\\"title\\\": \\\"Datasets\n        search for the series GOCE_Level_2\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"http://www.opengis.net/def/rel/ogc/1.0/queryables\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/GOCE_Level_2/queryables\\\",\\n          \\\"type\\\":\n        \\\"application/schema+json\\\",\\n          \\\"title\\\": \\\"Queryables for GOCE_Level_2\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"search\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/series/items/GOCE_Level_2/api\\\",\\n          \\\"type\\\":\n        \\\"application/opensearchdescription+xml\\\",\\n          \\\"title\\\": \\\"OpenSearch\n        Description Document\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://earth.esa.int/eogateway/documents/20142/37627/GOCE-Level-2-Product-Data-Handbook.pdf/ea815111-61ac-7cda-ec3a-31f026493ebd\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"GOCE Level\n        2 Products User Handbook - User Manual\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://esatellus.service-now.com/csp?id=esa_simple_request\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Get Help? - ESA\n        Earth Observation User Services Portal\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/GOCE_Level_2?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/GOCE_Level_2?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/GOCE_Level_2?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/GOCE_Level_2?httpAccept=application/rdf%2Bxml;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/GOCE_Level_2?httpAccept=text/turtle;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for ESA/ESRIN\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/GOCE\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for GOCE platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/d199ff14-9d4f-50eb-909e-98d020e9cf9b\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for STR instrument\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/bc5654d6-8472-5509-8aa8-550a078dadd6\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for EGG instrument\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/03a1a96e-daa1-52e4-ab3f-508cbe9b5cf9\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for SSTI instrument\\\"\\n        }\\n\n        \\     ],\\n      \\\"id\\\": \\\"GOCE_Level_2\\\",\\n      \\\"updated\\\": \\\"2023-06-13T13:23:40Z\\\",\\n\n        \\     \\\"stac_extensions\\\": [\\\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\\\"],\\n\n        \\     \\\"providers\\\": [\\n        {\\n          \\\"roles\\\": [\\\"producer\\\"],\\n\n        \\         \\\"name\\\": \\\"ESA/ESRIN\\\",\\n          \\\"url\\\": \\\"http://www.esa.int\\\"\\n\n        \\       },\\n        {\\n          \\\"roles\\\": [\\\"host\\\"],\\n          \\\"name\\\":\n        \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\": \\\"https://emc.spacebel.be/readme.html\\\"\\n\n        \\       }\\n      ],\\n      \\\"summaries\\\": {\\n        \\\"instruments\\\": [\\n\n        \\         \\\"STR\\\",\\n          \\\"EGG\\\",\\n          \\\"SSTI\\\"\\n        ],\\n        \\\"platform\\\":\n        [\\\"GOCE\\\"]\\n      }\\n    },\\n    {\\n      \\\"extent\\\": {\\n        \\\"spatial\\\":\n        {\\\"bbox\\\": [[\\n          -180,\\n          -84,\\n          180,\\n          84\\n\n        \\       ]]},\\n        \\\"temporal\\\": {\\\"interval\\\": [[\\n          \\\"2013-11-13T00:00:00.000Z\\\",\\n\n        \\         null\\n        ]]}\\n      },\\n      \\\"stac_version\\\": \\\"1.0.0\\\",\\n\n        \\     \\\"keywords\\\": [\\n        \\\"World\\\",\\n        \\\"Planet\\\",\\n        \\\"Land\n        Surface\\\",\\n        \\\"Mapping and Cartography\\\",\\n        \\\"Natural Hazards\n        and Disaster Risk\\\",\\n        \\\"EARTH SCIENCE > LAND SURFACE\\\",\\n        \\\"EARTH\n        SCIENCE > HUMAN DIMENSIONS > NATURAL HAZARDS\\\",\\n        \\\"VIS (0.40 - 0.75\n        \\xB5m)\\\",\\n        \\\"NIR (0.75 - 1.30 \\xB5m)\\\",\\n        \\\"Sun-synchronous\\\",\\n\n        \\       \\\"Very High Resolution - VHR (0 - 5m)\\\",\\n        \\\"475-575 km\\\",\\n\n        \\       \\\"8 km at nadir for SkySat-1 to -2, 6.6 km at nadir for SkySat-3 to\n        -13\\\",\\n        \\\"Imaging Spectrometers/Radiometers\\\",\\n        \\\"SkySat\\\",\\n\n        \\       \\\"SkySat Camera\\\"\\n      ],\\n      \\\"created\\\": \\\"2019-08-09T00:00:00.00Z\\\",\\n\n        \\     \\\"description\\\": \\\"The SkySat Level 2B Basic Scene, Level 3B Ortho Scene\n        and Level 3B Consolidated full archive and new tasking products are available\n        as part of Planet imagery offer.  The SkySat Basic Scene product is uncalibrated\n        and in a raw digital number format, not corrected for any geometric distortions\n        inherent in the imaging process. Rational Polynomial Coefficients (RPCs) is\n        provided to enable orthorectification by the user.  Basic Scene Product Components\n        and Format  Processing levels\\\\t/\\\\t- Analytic (unorthorectified, radiometrically\n        corrected, multispectral BGRN); - Analytic DN (unorthorectified, multispectral\n        BGRN); - Panchromatic DN (unorthorectified, panchromatic)\\\\t// Product Components\n        and Format\\\\t/\\\\t- Image File (GeoTIFF format); - Metadata File (JSON format);\n        - Rational Polynomial Coefficients (Text File); - UDM File (GeoTIFF format)\\\\t//\n        Image configuration\\\\t/\\\\t- 4-band Analytic DN Image (Blue, Green, Red, NIR);\n        - 1-band Panchromatic DN Image (Pan)\\\\t// Ground Sampling Distance\\\\t/\\\\t3.7\n        m at nadir (average at reference altitude 475 km)\\\\t// Ground Sampling Distance\n        (nadir)\\\\t/\\\\t- Panchromatic 0.86m and Multispectral 1.0m for SkySat-1&amp;2;\n        - Panchromatic 0.65m and Multispectral 0.8m for SkySat-3 to 13 (0.72 m and\n        1.0m for data acquired before 30/06/2020)\\\\t// Accuracy\\\\t/\\\\t&lt;50 m RMSE\\\\t//\n        \\ The SkySat Ortho Scene is sensor- and geometrically-corrected (by using\n        DEMs with a post spacing of between 30 and 90 meters) and is projected to\n        a cartographic map projection; the accuracy of the product will vary from\n        region to region based on available GCPs. Different products are available:\n        \\ - The SkySat Visual Ortho Scene product is orthorectified, pansharpened,\n        and color-corrected (using a color curve) 3-band RGB Imagery - The SkySat\n        Pansharpened Multispectral Scene product is orthorectified, pansharpened 4-band\n        BGRN Imagery - The SkySat Analytic DN Ortho Scene product is orthorectified,\n        multispectral BGRN, uncalibrated, digital number imagery product. The product\n        has been processed to remove distortions caused by terrain; It eliminates\n        the perspective effect on the ground (not on buildings), restoring the geometry\n        of a vertical shot. Transformation to at-sensor radiance is not included -\n        The SkySat Panchromatic DN Ortho Scene product is orthorectified, panchromatic,\n        uncalibrated, digital number imagery product. It has a finer GSD than the\n        Analytic Product. Transformation to at-sensor radiance is not included. -\n        The SkySat Analytic Ortho Scene are calibrated multispectral imagery products\n        with radiometric corrections applied to correct for any sensor artifacts and\n        transformation to top-of-atmosphere radiance. - The SkySat Consolidated Product\n        are Ortho Collect product created by composing ~60 SkySat Ortho Scenes (Visual,\n        Pansharpened Multispectral, Analytic DN, Panchromatic DN) along an imaging\n        strip into segments.  Ortho Scene Product Components and Format  \\\\t/\\\\tVisual\n        Ortho\\\\t/\\\\tPansharpened Multispectral\\\\t/\\\\tAnalytic DN Ortho\\\\t/\\\\tPanchromatic\n        DN Ortho\\\\t/\\\\tAnalytic Ortho\\\\t// Product Components and Format\\\\t/\\\\tImage\n        File (GeoTIFF format); Metadata File (JSON format); Rational Polynomial Coefficients\n        (Text File); UDM File (GeoTIFF format)\\\\t/\\\\tImage File (GeoTIFF); Metadata\n        File (JSON format); Rational Polynomial Coefficients (Text File); UDM File\n        (GeoTIFF format)\\\\t/\\\\tImage File (GeoTIFF format); Metadata File (JSON format);\n        Rational Polynomial Coefficients (Text File); UDM File (GeoTIFF format);\\\\t/\\\\tImage\n        File (GeoTIFF format); Metadata File (JSON format); Rational Polynomial Coefficients\n        (Text File); UDM File (GeoTIFF format)\\\\t/\\\\tImage File (GeoTIFF format);\n        Metadata File (JSON format); Rational Polynomial Coefficients (Text File);\n        UDM File (GeoTIFF format)\\\\t// Image configuration\\\\t/\\\\t3-band Pansharpened\n        Image (PS Red, PS Green, PS Blue)\\\\t/\\\\t4-band Pansharpened Image (PS Blue,\n        PS Green, PS Red, PS NIR)\\\\t/\\\\t4-band Analytic DN Image (B, G, R, N)\\\\t/\\\\t1-band\n        Panchromatic Image\\\\t/\\\\t4-band Analytic Image (B, G, R, N)\\\\t// Ground Sampling\n        Distance\\\\t/\\\\t50 cm\\\\t/\\\\t50 cm\\\\t/\\\\t50 cm\\\\t/\\\\t50 cm\\\\t/\\\\t50 cm\\\\t//\n        Projection\\\\t/\\\\tUTM WGS84\\\\t/\\\\tUTM WGS84\\\\t/\\\\tUTM WGS84\\\\t/\\\\tUTM WGS84\\\\t/\\\\tUTM\n        WGS84\\\\t// Accuracy\\\\t/\\\\t&lt;10 m RMSE\\\\t/\\\\t&lt;10 m RMSE\\\\t/\\\\t&lt;10 m\n        RMSE\\\\t/\\\\t&lt;10 m RMSE\\\\t/\\\\tradiometric accuracy: +/- 5% Relative accuracy\n        at &lt; 10 degrees off-nadir angle\\\\t//  The products are available as part\n        of the Planet provision from RapidEye, Skysat and PlanetScope constellations.\n        SkySat collection has worldwide coverage: The Planet Explorer Catalogue can\n        be accessed (Planet registration requested) to discover and check the data\n        readiness.  All details about the data provision, data access conditions and\n        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\n        \\     \\\"type\\\": \\\"Collection\\\",\\n      \\\"title\\\": \\\"SkySat Full Archive and\n        New Tasking\\\",\\n      \\\"license\\\": \\\"various\\\",\\n      \\\"assets\\\": {\\n        \\\"metadata_ogc_17_069r3\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/SkySat.Full.Archive.and.New.Tasking\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/SkySat.Full.Archive.and.New.Tasking?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/SkySat.Full.Archive.and.New.Tasking?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/SkySat.Full.Archive.and.New.Tasking?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/SkySat.Full.Archive.and.New.Tasking?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/SkySat.Full.Archive.and.New.Tasking?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/SkySat.Full.Archive.and.New.Tasking?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        }\\n\n        \\     },\\n      \\\"links\\\": [\\n        {\\n          \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/SkySat.Full.Archive.and.New.Tasking\\\",\\n\n        \\         \\\"type\\\": \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"root\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\",\\n          \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n\n        \\         \\\"title\\\": \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\":\n        \\\"https://www.planet.com/products/#satellite-imagery\\\",\\n          \\\"type\\\":\n        \\\"text/html\\\",\\n          \\\"title\\\": \\\"Planet products - Web site\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://earth.esa.int/eogateway/documents/20142/37627/Planet-combined-imagery-product-specs-2020.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"Planet Imagery\n        Product Specifications - Product Specifications\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://developers.planet.com/docs/apps/explorer/\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"Planet Explorer\n        User Guide - User Manual\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://earth.esa.int/eogateway/documents/20142/37627/SkySat-tasking-request-form.pdf/075f845e-13bd-36e2-4743-3aeb2053c61c\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"SkySat Tasking\n        Request Form - Access guide\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\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\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"Planet Terms\n        of Applicability - Access guide\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://esatellus.service-now.com/csp?id=esa_simple_request\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Get Help? - ESA\n        Earth Observation User Services Portal\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/SkySat.Full.Archive.and.New.Tasking?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/SkySat.Full.Archive.and.New.Tasking?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/SkySat.Full.Archive.and.New.Tasking?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for ESA/ESRIN\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/SkySat\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for SkySat platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/429a0634-46aa-518a-ac92-b5bcec0315d4\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for SkySat Camera instrument\\\"\\n        }\\n\n        \\     ],\\n      \\\"id\\\": \\\"SkySat.Full.Archive.and.New.Tasking\\\",\\n      \\\"updated\\\":\n        \\\"2023-06-13T13:23:42Z\\\",\\n      \\\"providers\\\": [\\n        {\\n          \\\"roles\\\":\n        [\\\"producer\\\"],\\n          \\\"name\\\": \\\"ESA/ESRIN\\\",\\n          \\\"url\\\": \\\"https://www.esa.int\\\"\\n\n        \\       },\\n        {\\n          \\\"roles\\\": [\\\"host\\\"],\\n          \\\"name\\\":\n        \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\": \\\"https://emc.spacebel.be/readme.html\\\"\\n\n        \\       }\\n      ],\\n      \\\"summaries\\\": {\\n        \\\"instruments\\\": [\\\"SkySat\n        Camera\\\"],\\n        \\\"platform\\\": [\\\"SkySat\\\"]\\n      }\\n    },\\n    {\\n      \\\"extent\\\":\n        {\\n        \\\"spatial\\\": {\\\"bbox\\\": [[\\n          -180,\\n          -90,\\n          180,\\n\n        \\         90\\n        ]]},\\n        \\\"temporal\\\": {\\\"interval\\\": [[\\n          \\\"2002-05-14T00:00:00.000Z\\\",\\n\n        \\         \\\"2012-04-08T23:59:59.999Z\\\"\\n        ]]}\\n      },\\n      \\\"stac_version\\\":\n        \\\"1.0.0\\\",\\n      \\\"sci:doi\\\": \\\"10.5270/EN1-85m0a7b\\\",\\n      \\\"keywords\\\":\n        [\\n        \\\"World\\\",\\n        \\\"Land Surface\\\",\\n        \\\"Topography\\\",\\n\n        \\       \\\"Cryosphere\\\",\\n        \\\"Snow and Ice\\\",\\n        \\\"Oceans\\\",\\n\n        \\       \\\"Ocean Waves\\\",\\n        \\\"Sea Surface Topography\\\",\\n        \\\"Atmosphere\\\",\\n\n        \\       \\\"Atmospheric Winds\\\",\\n        \\\"EARTH SCIENCE > LAND SURFACE\\\",\\n\n        \\       \\\"EARTH SCIENCE > LAND SURFACE > TOPOGRAPHY\\\",\\n        \\\"EARTH SCIENCE\n        > CRYOSPHERE\\\",\\n        \\\"EARTH SCIENCE > CRYOSPHERE > SNOW/ICE\\\",\\n        \\\"EARTH\n        SCIENCE > TERRESTRIAL HYDROSPHERE > SNOW/ICE\\\",\\n        \\\"EARTH SCIENCE >\n        OCEANS\\\",\\n        \\\"EARTH SCIENCE > OCEANS > OCEAN WAVES\\\",\\n        \\\"EARTH\n        SCIENCE > OCEANS > SEA SURFACE TOPOGRAPHY\\\",\\n        \\\"EARTH SCIENCE > ATMOSPHERE\\\",\\n\n        \\       \\\"EARTH SCIENCE > ATMOSPHERE > ATMOSPHERIC WINDS\\\",\\n        \\\"Sun-synchronous\\\",\\n\n        \\       \\\"800 km\\\",\\n        \\\"5 - 1150 km\\\",\\n        \\\"Radar Altimeters\\\",\\n\n        \\       \\\"Envisat\\\",\\n        \\\"RA-2\\\"\\n      ],\\n      \\\"created\\\": \\\"2019-05-29T00:00:00.00Z\\\",\\n\n        \\     \\\"description\\\": \\\"This is a RA-2 Sensor and Geophysical Data Record\n        (SGDR) Full Mission Reprocessing (FMR) v3 product. This FMR follows the first\n        Envisat Altimetry reprocessing Version (V2.1) completed in 2012.  The GDR\n        and S-GDR data products were reprocessed for all cycles from 6 to 113 (May\n        2002 to April 2012) into a homogeneous standard in NetCDF format (close to\n        Sentinel-3).  The Sensor Data Record (SGDR) Product from RA-2/MWR includes\n        the data in the GDR product (https://earth.esa.int/eogateway/catalog/envisat-ra-2-geophysical-data-record-gdr-ra2_gdr__2p-)\n        (RA-2 geophysical data, MWR data) and also RA-2 averaged waveforms (18Hz)\n        and RA-2 individual waveforms (1800Hz). This product is a continuation of\n        ERS RA data.  This data product has a coverage of 1 pass, pole-pole, a spatial\n        sampling of about 390 m along track and a size of 31 to 40 MB, depending on\n        presence of individual waveforms.  The radiometric accuracy is 0.2 dB and\n        auxiliary data include: Orbit state vectors (DORIS, FOS), RA2 and MWR characterisation\n        data, Platform attitude, Gain calibration, USO frequency, ECMWF data, time\n        relation, leap second, Ionospheric corrections, geoid, mean sea surface, slope\n        data, and tide model (ocean, earth, loading, pole).  Please consult the Envisat\n        RA-2/MWR Product Quality Readme file before using the data.\\\",\\n      \\\"type\\\":\n        \\\"Collection\\\",\\n      \\\"title\\\": \\\"Envisat RA-2 Sensor and Geophysical Data\n        Record - SGDR\\_[RA2_MWS__2P]\\\",\\n      \\\"license\\\": \\\"various\\\",\\n      \\\"assets\\\":\n        {\\n        \\\"metadata_ogc_17_069r3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        }\\n\n        \\     },\\n      \\\"links\\\": [\\n        {\\n          \\\"rel\\\": \\\"cite-as\\\",\\n\n        \\         \\\"href\\\": \\\"https://doi.org/10.5270/EN1-85m0a7b\\\",\\n          \\\"type\\\":\n        \\\"text/html\\\",\\n          \\\"title\\\": \\\"Landing page\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P\\\",\\n\n        \\         \\\"type\\\": \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"root\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\",\\n          \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n\n        \\         \\\"title\\\": \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\":\n        \\\"https://earth.esa.int/web/sppa/mission-performance/esa-missions/envisat/ra2/products-and-algorithms/products-information/aux\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"RA2-MWR Auxiliary\n        Data - Auxiliary Data\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://earth.esa.int/eogateway/instruments/ra2/products-information\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Envisat RA-2 MWR\n        Sensor Performance, Products and Algorithms - Product Information\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://earth.esa.int/eogateway/documents/20142/37627/Envisat-RA-2-Level-2-Product-Handbook.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"RA-2 Product\n        Handbook - User Manual\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://earth.esa.int/eogateway/documents/20142/37627/Envisat-RA-2-product-specifications.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"RA-2 Product\n        Specifications - Product Specifications\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://earth.esa.int/eogateway/documents/20142/37627/Envisat-RA-2-MWR-Level-2-Product-Readme-3.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"ReadMe file\n        - Product Specifications\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://earth.esa.int/eogateway/documents/20142/37627/Error-Budget-Envisat-Altimetry-Mission.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"Envisat Altimetry\n        Error Budget - Technical Note\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://earth.esa.int/eogateway/search?text=&category=Tools%20and%20toolboxes&filter=ra2-mwr\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"RA-2 Software Tools\n        - Tools\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\":\n        \\\"https://esatellus.service-now.com/csp?id=esa_simple_request\\\",\\n          \\\"type\\\":\n        \\\"text/html\\\",\\n          \\\"title\\\": \\\"Get Help? - ESA Earth Observation User\n        Services Portal\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=text/turtle;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for ESA/ESRIN\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/Envisat\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for Envisat platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/2ebd3948-3f88-5944-8e3c-7e60099ec941\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for RA-2 instrument\\\"\\n        }\\n\n        \\     ],\\n      \\\"id\\\": \\\"ENVISAT.RA2.MWS_2P\\\",\\n      \\\"updated\\\": \\\"2023-06-13T13:23:41Z\\\",\\n\n        \\     \\\"stac_extensions\\\": [\\\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\\\"],\\n\n        \\     \\\"providers\\\": [\\n        {\\n          \\\"roles\\\": [\\\"producer\\\"],\\n\n        \\         \\\"name\\\": \\\"ESA/ESRIN\\\",\\n          \\\"url\\\": \\\"http://www.esa.int\\\"\\n\n        \\       },\\n        {\\n          \\\"roles\\\": [\\\"host\\\"],\\n          \\\"name\\\":\n        \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\": \\\"https://emc.spacebel.be/readme.html\\\"\\n\n        \\       }\\n      ],\\n      \\\"summaries\\\": {\\n        \\\"instruments\\\": [\\\"RA-2\\\"],\\n\n        \\       \\\"platform\\\": [\\\"Envisat\\\"]\\n      }\\n    },\\n    {\\n      \\\"extent\\\":\n        {\\n        \\\"spatial\\\": {\\\"bbox\\\": [[\\n          -180,\\n          -90,\\n          180,\\n\n        \\         90\\n        ]]},\\n        \\\"temporal\\\": {\\\"interval\\\": [[\\n          \\\"2009-08-01T00:00:00.000Z\\\",\\n\n        \\         null\\n        ]]}\\n      },\\n      \\\"stac_version\\\": \\\"1.0.0\\\",\\n\n        \\     \\\"keywords\\\": [\\n        \\\"World\\\",\\n        \\\"GEOSAT\\\",\\n        \\\"DIMAP\\\",\\n\n        \\       \\\"TIFF\\\",\\n        \\\"Vegetation\\\",\\n        \\\"Agriculture\\\",\\n        \\\"Forestry\\\",\\n\n        \\       \\\"EARTH SCIENCE > BIOSPHERE > VEGETATION\\\",\\n        \\\"EARTH SCIENCE\n        > AGRICULTURE\\\",\\n        \\\"EARTH SCIENCE > BIOSPHERE > ECOSYSTEMS > TERRESTRIAL\n        ECOSYSTEMS > FORESTS\\\",\\n        \\\"VIS (0.40 - 0.75 \\xC2\\xB5m)\\\",\\n        \\\"NIR\n        (0.75 - 1.30 \\xC2\\xB5m)\\\",\\n        \\\"Sun-synchronous\\\",\\n        \\\"Medium\n        Resolution - MR (20 - 500 m)\\\",\\n        \\\"663 km\\\",\\n        \\\"625 km\\\",\\n\n        \\       \\\"Cameras\\\",\\n        \\\"GEOSAT-1\\\",\\n        \\\"SLIM6\\\"\\n      ],\\n\n        \\     \\\"created\\\": \\\"2019-05-22T00:00:00.00Z\\\",\\n      \\\"description\\\": \\\"GEOSAT-1\n        full archive and new tasking products are available at 22 m resolution in\n        two processing levels.\\\\r\\\\rL1R (Basic Geopositioned): All 3 spectral channels\n        combined into a band-registered image. Geopositioned product based on sensor\n        model. Coefficients derived from satellite orientation parameters coming from\n        telemetry and appended to metadata\\\\rL1T (L1R orthorectified): Orthorectified\n        to sub-pixel accuracy (10 metres RMS error approximately) with respect to\n        Landsat ETM+ reference data and hole-filled seamless SRTM DEM data V3, 2006\n        (90 m)\\\\rGEOSAT-1 products are provided in DIMAP format. The image products\n        are delivered in the TIFF and GeoTIFF image formats by default. All products\n        can be provided in False Colours (R,G,NIR) or Natural Colours (R, G, Synthetic\n        Blue).\\\\r\\\\rAll details about the data provision, data access conditions and\n        quota assignment procedure are described into the Terms of Applicability available\n        in Resources section.\\\\r\\\\rThe list of available archived data can be retrieved\n        using the GEOSAT catalogue (https://catalogue.geosat.space/cscda/extcat/)\\\\rAll\n        details about the data provision, data access conditions and quota assignment\n        procedure are described into the Terms of Applicability available in Resources\n        section. \\\\r\\\\rThe list of available archived data can be retrieved using\n        the Deimos catalogue (http://www.deimos-imaging.com/catalogue).\\\",\\n      \\\"type\\\":\n        \\\"Collection\\\",\\n      \\\"title\\\": \\\"GEOSAT-1 full archive and tasking\\\",\\n\n        \\     \\\"license\\\": \\\"various\\\",\\n      \\\"assets\\\": {\\n        \\\"metadata_ogc_17_069r3\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/Geosat-1.Full.archive.and.tasking\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/Geosat-1.Full.archive.and.tasking?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/Geosat-1.Full.archive.and.tasking?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/Geosat-1.Full.archive.and.tasking?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/Geosat-1.Full.archive.and.tasking?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/Geosat-1.Full.archive.and.tasking?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/Geosat-1.Full.archive.and.tasking?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        }\\n\n        \\     },\\n      \\\"links\\\": [\\n        {\\n          \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/Geosat-1.Full.archive.and.tasking\\\",\\n\n        \\         \\\"type\\\": \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"root\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\",\\n          \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n\n        \\         \\\"title\\\": \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/Geosat-1.Full.archive.and.tasking?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/Geosat-1.Full.archive.and.tasking?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/Geosat-1.Full.archive.and.tasking?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for ESA/ESRIN\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/GEOSAT-1\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for GEOSAT-1 platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/5cc6eaab-0ddc-572f-a1b7-afa52ea5333d\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for SLIM6 instrument\\\"\\n        }\\n\n        \\     ],\\n      \\\"id\\\": \\\"Geosat-1.Full.archive.and.tasking\\\",\\n      \\\"updated\\\":\n        \\\"2023-06-13T13:23:40Z\\\",\\n      \\\"providers\\\": [\\n        {\\n          \\\"roles\\\":\n        [\\\"producer\\\"],\\n          \\\"name\\\": \\\"ESA/ESRIN\\\",\\n          \\\"url\\\": \\\"https://earth.esa.int\\\"\\n\n        \\       },\\n        {\\n          \\\"roles\\\": [\\\"host\\\"],\\n          \\\"name\\\":\n        \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\": \\\"https://emc.spacebel.be/readme.html\\\"\\n\n        \\       }\\n      ],\\n      \\\"summaries\\\": {\\n        \\\"instruments\\\": [\\\"SLIM6\\\"],\\n\n        \\       \\\"platform\\\": [\\\"GEOSAT-1\\\"]\\n      }\\n    },\\n    {\\n      \\\"extent\\\":\n        {\\n        \\\"spatial\\\": {\\\"bbox\\\": [[\\n          -180,\\n          -90,\\n          180,\\n\n        \\         90\\n        ]]},\\n        \\\"temporal\\\": {\\\"interval\\\": [[\\n          \\\"2016-06-01T00:00:00.000Z\\\",\\n\n        \\         null\\n        ]]}\\n      },\\n      \\\"stac_version\\\": \\\"1.0.0\\\",\\n\n        \\     \\\"keywords\\\": [\\n        \\\"World\\\",\\n        \\\"GNSS\\\",\\n        \\\"AIS\\\",\\n\n        \\       \\\"ADS-B\\\",\\n        \\\"Atmosphere\\\",\\n        \\\"Ionosphere and Magnetosphere\n        Dynamics\\\",\\n        \\\"Weather Events\\\",\\n        \\\"Oceans\\\",\\n        \\\"EARTH\n        SCIENCE > ATMOSPHERE\\\",\\n        \\\"EARTH SCIENCE > SUN-EARTH INTERACTIONS\n        > IONOSPHERE/MAGNETOSPHERE DYNAMICS\\\",\\n        \\\"EARTH SCIENCE > ATMOSPHERE\n        > WEATHER EVENTS\\\",\\n        \\\"EARTH SCIENCE > OCEANS\\\",\\n        \\\"Sun-synchronous\\\",\\n\n        \\       \\\"500 km\\\",\\n        \\\"Imaging Spectrometers/Radiometers\\\",\\n        \\\"Spire\\\",\\n\n        \\       \\\"AIRSAFE\\\",\\n        \\\"SENSE\\\",\\n        \\\"STRATOS\\\"\\n      ],\\n\n        \\     \\\"created\\\": \\\"2020-09-04T00:00:00.00Z\\\",\\n      \\\"description\\\": \\\"The\n        data collected by Spire from it&apos;s 110 satellites launched into Low Earth\n        Orbit (LEO) has a diverse range of applications, from analysis of global trade\n        patterns and commodity flows to aircraft routing to weather forecasting. The\n        data also provides interesting research opportunities on topics as varied\n        as ocean currents and GNSS-based planetary boundary layer height.  The following\n        products can be requested:  ADS-B Data Stream Global ADS-B satellite data\n        observed by Spire satellites and processed through the ground stations network.\n        Historical ADS-B data older than 6 months can be delivered as data cuts containing\n        CSV file(s) accessible through a Web Service or Cloud storage solutions. Live\n        ADS-B data is available through a streaming API, and recent historical data\n        can be accessed through a REST API. Data is distributed as a monthly subscription:\n        historical data can be requested starting from 3 December 2008, the time period\n        for live data starts from a user-defined date and continues for 30 days.  AIS\n        AIS messages include satellite AIS (S-AIS) as observed by Spire satellites\n        and terrestrial AIS (T-AIS) from third party sensor stations (up to 40 million\n        messages per day). Historical AIS data are delivered as a cvs file with availability\n        back to June 2016 or via Historical API from December 2018; live AIS data\n        are pushed to end users via TCP or through Messages API. Data is distributed\n        as a monthly subscription, from a user-defined date and continues for a 30\n        day period.  GNSS-Radio Occultation GNSS Radio Occultation (GNSS-RO) measurements\n        are collected globally on a continuous basis, generating profiles of the Earth\\\\u2019s\n        atmosphere. Derived Level 1 and Level 2 products include both atmospheric\n        and ionospheric products. Historical data for most of the GNSS-RO products\n        are available from December 2018 to the present. Near real-time (within 90\n        minutes or less latency from collection to delivery) GNSS-RO profiles are\n        also available upon request.  GNSS Reflectometry GNSS Reflectometry (GNSS-R)\n        is a technique to measure Earth\\\\u2019s surface properties using reflections\n        of GNSS signals in the form of a bistatic radar. Spire collects two types\n        of GNSS-R data: conventional, near-nadir incidence LHCP reflections collected\n        by the Spire GNSS-R satellites (e.g., Spire GNSS-R \\\\u201cBatch-1\\\\u201d satellites)\n        and grazing angle (i.e., low elevation angle) RHCP reflections collected by\n        the Spire GNSS-RO satellites. Derived Level 1 and Level 2 products are available,\n        as well as some special Level 0 raw intermediate frequency (IF) data. Historical\n        grazing angle GNSS-R data are available from May 2019 to the present, while\n        conventional GNSS-R data are available from December 2020 to the present.\n        \\ Name: Automatic Identification System (AIS) Description: The automatic identification\n        system (AIS) is an automatic tracking system that uses transponders on ships\n        and is used by vessel traffic services. Spire data includes satellite AIS\n        (S-AIS) as observed by Spire satellites and terrestrial AIS (T-AIS) from third\n        party sensor stations. Data format and content: .parquet.gz files The AIS\n        files contain time-series data on received AIS messages, both the raw NMEA\n        message and added post-processing data for each message. Application: Supply\n        chain analysis, commodity trading, identification of illegal fishing or dark\n        targets, ship route and fuel use optimization, analysis of global trade patterns,\n        anti-piracy, autonomous vessel software, ocean currents.  Name: Automatic\n        Dependent Surveillance-Broadcast (ADS-B) Description: Spire AirSafe ADS-B\n        products give  access to satellite and terrestrial ADS-B data from captured\n        aircrafts. Data format and content: .csv.gz files The decompressed csv file\n        contains a list of hexadecimal representations of ADS-B messages associated\n        with the timestamp they were received on the satellite. Application: Fleet\n        management, ICAO regulatory compliance, route optimization, predictive maintenance,\n        global airspace, domain awareness.  Name: Global Navigation Satellite System\n        Radio Occultation (GNSS-RO) Description: GNSS atmospheric radio occultation\n        (GNSS-RO) relies on the detection of a change in a radio signal as it passes\n        through a planet&apos;s atmosphere, i.e. as it is refracted by the atmosphere.\n        This data set contains precise orbit determination (POD) solutions, satellite\n        attitude information, high-rate occultation observations, excess phase, and\n        derived atmospheric dry temperature profiles. Data format and content: podObs*.rnx\n        This file contains raw pseudorange, carrier phase, Doppler frequency, and\n        signal-to-noise measurements for each observed GPS signal from a single Spire\n        satellite which allow to estimate the positions and velocities of each Spire\n        satellite and also used to derive ionospheric total electron content data.\n        leoOrb*.sp3 This file contains the estimated position, velocity and receiver\n        clock error of a given Spire satellite after processing of the POD observation\n        file leoAtt*.log It contains 1 Hz rate quaternion information measured from\n        a single Spire satellite describing the satellite orientation. opnGns*ro.bin,\n        opnGns*rst.bin these files contain raw measurements from the occulting GNSS\n        satellite (one for each signal frequency) and raw phase data from one or more\n        reference GNSS satellites. atmPhs* The file contains occultation excess phase\n        delay. Also contains SNR values, ransmitter and receiver positions and open\n        loop model information. atmPrf*.nc The file contains profiles of atmospheric\n        dry pressure, dry temperature and neutral refractivity as a function of altitude\n        produced from full processing of one occultation event. bfrPrf*.bufr The file\n        contains derived profiles of dry pressure, dry temperature, refractivity and\n        bending angle for each occultation. Application:\\\\tAtmospheric profiles of\n        pressure, dry temperature, bending angle, and refractivity used in numerical\n        weather prediction data assimilation and climate change studies.  Name: Raw\n        IF samples from GNSS-RO satellites Description: Raw intermediate frequency\n        (IF) sampled data (I/Q) from the GNSS receiver front-end of GNSS-RO satellites.\n        Data format and content: rocRIF*.zip Binary raw IF data and associated ancillary\n        data (e.g., POD data) in a zip archive per collection event. Application:\n        GNSS-RO studies, GNSS RFI and jamming monitoring, research.  Name: Raw IF\n        samples from GNSS-R satellites Description: Raw intermediate frequency (IF)\n        sampled data (I/Q) from the GNSS receiver front-end of conventional GNSS-R\n        satellites. Data format and content: gbrRIF*.zip Binary raw IF data and associated\n        ancillary data (e.g., POD data) in a zip archive per collection event. Application:\n        GNSS-R studies, GNSS RFI and jamming monitoring, research, etc.  Name: Grazing\n        angle GNSS-R observations Description: During grazing angle GNSS-R events,\n        signal reflection at two frequencies is observed through the limb-facing antenna\n        and is trackedusing an open-loop tracking technique thatrelies on a model\n        topredict the propagationdelay and Doppler of thereflected signal. Simultaneous\n        open-looptracking of the signaldirectly along theline-of-sight from thetransmitter\n        to thereceiver is alsoperformed to provideadditional data that maybenecessary\n        for signalcalibration. The mainoutput of the open-looptracking are in-phase\n        (I)and quadrature (Q)accumulation samples(nominally at 50 Hz),which represent\n        the residual Doppler (phase) from the model. Data format and content: grzObs*.nc\n        L1A filecontains rawopen loopcarrier phasemeasurementsat 50 Hzsampling forgrazingangleGNSS-Rreflectionscaptured\n        in the GNSS-RO RHC Pantennas, (bothdirect andreflectedsignals) on GNSS-RO\n        satellites. Application: Sea surface and sea ice height extent, and classification.\n        \\ Name: Georeferenced grazing angle GNSS-R observations Description: The low-levelobservations\n        of the high-rate grazing angle GNSS-R observationsbut withthegeoreferenced\n        bistatic radar parameters of the satellite receiver,specular reflection, and\n        GNSS transmitter included. Data format and content: grzRfl*.nc L1B file contains\n        the georeferenced grazing angle GNSS-R data collected by Spire GNSS-RO satellites,\n        including the low-level observables and bistatic radar geometries (e.g., receiver,\n        specular reflection, and the transmitter locations). Application: Sea surface\n        and sea ice height extent, and classification  Name: GNSS-R calibrated bistatic\n        radar reflectivities Description: Higher level product used to derive land-surface\n        reflectivity. Data format and content: gbrRfl*.nc L1A along-track calibrated\n        relative power between reflected and direct signals (e.g., bistatic radar\n        reflectivities) measured by Spire conventional GNSS-R satellites. Application:\n        GNSS-R studies, soil moisture, ocean wind, and sea ice applications  Name:\n        GNSS-R calibrated bistatic radar cross-sections Description: Higher level\n        product used to derive ocean surface roughness products. Data format and content:\n        gbrRCS*.nc L1B along-track calibrated and normalized bistatic radar cross-sections\n        measured by Spire conventional GNSS-R satellites. Application: GNSS-R studies,\n        ocean wind and sea ice applications  Name: Combined Surface Soil Moisture\n        Description: Combined CYGNSS and SMAP soil moisture data are provided as a\n        combined surface soil moisture (COMB-SSM) product in two data level formats:\n        L2U1 and L3U1. 6 x 6 km grid cell. L-band measurements of surface soil moisture\n        benefit from better vegetation penetration in comparison to traditional C-band\n        measurements. Data format and content: COMB-SSM.nc This file contains the\n        combined data product containing measurements from both CYGNSS and SMAP reported\n        on a 6 km global Equi7Grid grid. Application: Agriculture, crop insurance,\n        farming solutions, climatology, terrain awareness, peatlands and wetlands\n        monitoring etc.  Name: Ionosphere total electron content Description: Spire\n        routinely collects and processes a large volume of total electron content\n        (TEC) data, representing the line-of-sight integration of electron density\n        between a Spire satellite and a GNSS satellite. Each file contains line-of-sight\n        ionospheric total electron content (TEC) estimates derived for a \\\\u2018single\n        viewing arc\\\\u2019 contained in the POD observation file. Viewing arcs are\n        at least 10 minutes in duration. Data format and content: podTec*.nc This\n        file contains the line-of-sight total electron content with associated orbital\n        information. Application: Space weather research, tsunamigenic earthquakes,\n        weather applications, space situational awareness (SSA), autonomous vehicles\n        etc  Name: Ionosphere scintillation Description: The scintillation index for\n        each GNSS frequency is computed onboard the spacecraft. This index provides\n        a measure of the fluctuations of the GNSS signal over the course of 10 seconds\n        caused by propagation of the radio signals through electron density irregularities\n        in the ionosphere. After the raw indices are downlinked to the ground, they\n        are packaged along with associated metadata such as orbit position to create\n        the final scintillation data product. Data format and content: scnLv1*.nc\n        This file contains on-board computed scintillation data (S4 only) with associated\n        orbital information Application: Space weather research, solar events, TIDs,\n        weather applications positioning and navigation, communications etc.  Name:\n        Electron density profile Description: Electron density profiles are retrieved\n        as a function of altitude. Electron density profiles are processed from podTec\n        netcdf files, which span a sufficient elevation angle range. A standard Abel\n        inversion algorithm is applied to retrieve the profiles. Data format and content:\n        ionPrf*.nc This file contains electron density profile retrieved from podTec\n        files spanning appropriate elevation angle range Application: Space weather\n        research, solar events, TIDs, weather applications positioning and navigation,\n        communications.  The products are available as part of the Spire provision\n        with worldwide coverage.  All details about the data provision, data access\n        conditions and quota assignment procedure are described in the Terms of Applicability\n        (https://earth.esa.int/eogateway/documents/20142/37627/SPIRE-Terms-Of-Applicability.pdf/0dd8b3e8-05fe-3312-6471-a417c6503639).\\\",\\n\n        \\     \\\"type\\\": \\\"Collection\\\",\\n      \\\"title\\\": \\\"Spire live and historical\n        data\\\",\\n      \\\"license\\\": \\\"various\\\",\\n      \\\"assets\\\": {\\n        \\\"metadata_ogc_17_069r3\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/Spire.live.and.historical.data\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/Spire.live.and.historical.data?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/Spire.live.and.historical.data?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/Spire.live.and.historical.data?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/Spire.live.and.historical.data?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/Spire.live.and.historical.data?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/Spire.live.and.historical.data?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        }\\n\n        \\     },\\n      \\\"links\\\": [\\n        {\\n          \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/Spire.live.and.historical.data\\\",\\n\n        \\         \\\"type\\\": \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"root\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\",\\n          \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n\n        \\         \\\"title\\\": \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\":\n        \\\"https://earth.esa.int/eogateway/documents/20142/37627/Spire-Product-Guide.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"Spire Product\n        Guide - Product Description\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://earth.esa.int/eogateway/documents/20142/37627/SPIRE-Terms-Of-Applicability.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"Spire Terms\n        of Applicability - Access Guide\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://esatellus.service-now.com/csp?id=esa_simple_request\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Get Help? - ESA\n        Earth Observation User Services Portal\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/Spire.live.and.historical.data?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/Spire.live.and.historical.data?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/Spire.live.and.historical.data?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for ESA/ESRIN\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/Spire\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for Spire platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/1c3bd49f-bdc9-5c33-a273-2f0f7a5b3f88\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for STRATOS instrument\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/e5735a20-bdb8-5cff-b385-c16c84c855f4\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for SENSE instrument\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/11f58510-1770-53a7-9b13-5a5564b4e9c2\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for AIRSAFE instrument\\\"\\n        }\\n\n        \\     ],\\n      \\\"id\\\": \\\"Spire.live.and.historical.data\\\",\\n      \\\"updated\\\":\n        \\\"2023-06-13T13:23:42Z\\\",\\n      \\\"providers\\\": [\\n        {\\n          \\\"roles\\\":\n        [\\\"producer\\\"],\\n          \\\"name\\\": \\\"ESA/ESRIN\\\",\\n          \\\"url\\\": \\\"http://www.esa.int\\\"\\n\n        \\       },\\n        {\\n          \\\"roles\\\": [\\\"host\\\"],\\n          \\\"name\\\":\n        \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\": \\\"https://emc.spacebel.be/readme.html\\\"\\n\n        \\       }\\n      ],\\n      \\\"summaries\\\": {\\n        \\\"instruments\\\": [\\n\n        \\         \\\"STRATOS\\\",\\n          \\\"SENSE\\\",\\n          \\\"AIRSAFE\\\"\\n        ],\\n\n        \\       \\\"platform\\\": [\\\"Spire\\\"]\\n      }\\n    },\\n    {\\n      \\\"extent\\\":\n        {\\n        \\\"spatial\\\": {\\\"bbox\\\": [[\\n          -180,\\n          -90,\\n          180,\\n\n        \\         90\\n        ]]},\\n        \\\"temporal\\\": {\\\"interval\\\": [[\\n          \\\"2012-10-01T00:00:00.000Z\\\",\\n\n        \\         null\\n        ]]}\\n      },\\n      \\\"stac_version\\\": \\\"1.0.0\\\",\\n\n        \\     \\\"keywords\\\": [\\n        \\\"World\\\",\\n        \\\"Multispectral\\\",\\n        \\\"Panchromatic\\\",\\n\n        \\       \\\"Pansharpened\\\",\\n        \\\"Pleiades\\\",\\n        \\\"Agriculture\\\",\\n\n        \\       \\\"Afforestation/Reforestation\\\",\\n        \\\"Crops and Yields\\\",\\n\n        \\       \\\"Forest Fires\\\",\\n        \\\"Landscape\\\",\\n        \\\"Topography\\\",\\n\n        \\       \\\"Weather Events\\\",\\n        \\\"EARTH SCIENCE > AGRICULTURE\\\",\\n        \\\"EARTH\n        SCIENCE > AGRICULTURE > FOREST SCIENCE > AFFORESTATION/REFORESTATION\\\",\\n\n        \\       \\\"EARTH SCIENCE > AGRICULTURE > AGRICULTURAL PLANT SCIENCE > CROP/PLANT\n        YIELDS\\\",\\n        \\\"EARTH SCIENCE > AGRICULTURE > FOREST SCIENCE > FOREST\n        FIRE SCIENCE\\\",\\n        \\\"EARTH SCIENCE > LAND SURFACE > LANDSCAPE\\\",\\n        \\\"EARTH\n        SCIENCE > LAND SURFACE > TOPOGRAPHY\\\",\\n        \\\"EARTH SCIENCE > ATMOSPHERE\n        > WEATHER EVENTS\\\",\\n        \\\"VIS (0.40 - 0.75 \\xB5m)\\\",\\n        \\\"NIR (0.75\n        - 1.30 \\xB5m)\\\",\\n        \\\"SWIR (1.3 - 3.0 \\xB5m)\\\",\\n        \\\"Sun-synchronous\\\",\\n\n        \\       \\\"Very High Resolution - VHR (0 - 5m)\\\",\\n        \\\"High Resolution\n        - HR (5 - 20 m)\\\",\\n        \\\"832 km for SPOT-1 to 5, 694 km for SPOT-6 and\n        7\\\",\\n        \\\"60 km\\\",\\n        \\\"Cameras\\\",\\n        \\\"SPOT 6\\\",\\n        \\\"SPOT\n        7\\\",\\n        \\\"NAOMI\\\"\\n      ],\\n      \\\"created\\\": \\\"2019-07-16T00:00:00.00Z\\\",\\n\n        \\     \\\"description\\\": \\\"The SPOT 6 and 7 satellites ensure data continuity\n        with the no longer operational SPOT 5 satellite and provide an archive of\n        very high resolution optical acquisition as well as the possibility to task\n        the satellites for new acquisitions. Following the completion of the SPOT\n        7 mission in March 2023, new acquisition tasking is only available for the\n        SPOT 6 satellite.  The ortho-products are automatically generated by the SPOT\n        6 and 7 ground segment, based on SRTM database or Reference3D when available.\n        The projection available for SPOT 6 and 7 ortho-products is UTM, datum WGS84.\n        \\ Bands combinations: - Pansharpened: colour image at 1.5 m resolution - Bundle:\n        1.5 m panchromatic image and 6 m multispectral image  Geometric processing\n        levels: - Primary: The Primary product is the processing level closest to\n        the natural image acquired by the sensor. This product restores perfect collection\n        conditions: the sensor is placed in rectilinear geometry, and the image is\n        clear of all radiometric distortion. - Standard Ortho: The Ortho product is\n        a georeferenced image in Earth geometry, corrected from acquisition and terrain\n        off-nadir effects. - Tailored ortho: Aside from the Standard Ortho product,\n        when different specifications are needed, a custom orthorectification, with\n        a more precise 3D model provided by the client or acquired for the purpose,\n        can be provided on demand.\\\",\\n      \\\"type\\\": \\\"Collection\\\",\\n      \\\"title\\\":\n        \\\"SPOT 6 &amp; 7 full archive and tasking\\\",\\n      \\\"license\\\": \\\"various\\\",\\n\n        \\     \\\"assets\\\": {\\n        \\\"metadata_ogc_17_069r3\\\": {\\n          \\\"roles\\\":\n        [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        }\\n\n        \\     },\\n      \\\"links\\\": [\\n        {\\n          \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"root\\\",\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\": \\\"application/json\\\",\\n\n        \\         \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"title\\\":\n        \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://www.intelligence-airbusds.com/satellite-data/\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"SPOT-6 to 7 products\n        description - Other\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"http://www.intelligence-airbusds.com/spotmaps/\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"SPOTMaps technical\n        information - Other\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://earth.esa.int/eogateway/documents/20142/1586698/SPOTMaps2.5.kmz\\\",\\n\n        \\         \\\"title\\\": \\\"SPOTMaps 2.5 geographical coverage - Other\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://earth.esa.int/eogateway/documents/20142/37627/SPOT-6-7-imagery-user-guide.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"SPOT 6&7\n        Imagery User Guide - Product Specification\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://www.intelligence-airbusds.com/imagery/constellation/pleiades-neo/how-to-order/\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"OneAtlas guides\n        - Data Access Information\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://www.intelligence-airbusds.com/en/4871-geostore-ordering\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"GeoStore Catalogue\n        - Catalogue\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n\n        \\         \\\"href\\\": \\\"https://oneatlas.airbus.com/\\\",\\n          \\\"type\\\":\n        \\\"text/html\\\",\\n          \\\"title\\\": \\\"OneAtlas Living Library - Catalogue\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\":\n        \\\"https://earth.esa.int/eogateway/documents/20142/37627/SPOT-Pleiades-data-terms-of-applicability.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"SPOT and\n        Pleiades Terms of Applicability - Access Guide\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://esatellus.service-now.com/csp?id=esa_simple_request\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Get Help? - ESA\n        Earth Observation User Services Portal\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1?httpAccept=application/rdf%2Bxml;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\\\",\\n\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1?httpAccept=text/turtle;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1?httpAccept=text/turtle;profile=http://data.europa.eu/930/\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for ESA/ESRIN\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/SPOT%206\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for SPOT 6 platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/SPOT%207\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for SPOT 7 platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/ec73a747-76a7-56f1-a011-0465a3ed4a87\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for NAOMI instrument\\\"\\n        }\\n\n        \\     ],\\n      \\\"id\\\": \\\"SPOT67fullarchiveandtasking1\\\",\\n      \\\"updated\\\":\n        \\\"2023-06-13T13:23:42Z\\\",\\n      \\\"providers\\\": [\\n        {\\n          \\\"roles\\\":\n        [\\\"producer\\\"],\\n          \\\"name\\\": \\\"ESA/ESRIN\\\",\\n          \\\"url\\\": \\\"https://www.esa.int\\\"\\n\n        \\       },\\n        {\\n          \\\"roles\\\": [\\\"host\\\"],\\n          \\\"name\\\":\n        \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\": \\\"https://emc.spacebel.be/readme.html\\\"\\n\n        \\       }\\n      ],\\n      \\\"summaries\\\": {\\n        \\\"instruments\\\": [\\\"NAOMI\\\"],\\n\n        \\       \\\"platform\\\": [\\n          \\\"SPOT 6\\\",\\n          \\\"SPOT 7\\\"\\n        ]\\n\n        \\     }\\n    },\\n    {\\n      \\\"extent\\\": {\\n        \\\"spatial\\\": {\\\"bbox\\\":\n        [[\\n          -180,\\n          -90,\\n          180,\\n          90\\n        ]]},\\n\n        \\       \\\"temporal\\\": {\\\"interval\\\": [[\\n          \\\"2020-04-20T00:00:00.000Z\\\",\\n\n        \\         null\\n        ]]}\\n      },\\n      \\\"stac_version\\\": \\\"1.0.0\\\",\\n\n        \\     \\\"keywords\\\": [\\n        \\\"global\\\",\\n        \\\"tropics\\\",\\n        \\\"polar\n        regions\\\",\\n        \\\"atmospheric winds\\\",\\n        \\\"atmospheric dynamic\\\",\\n\n        \\       \\\"troposphere\\\",\\n        \\\"stratosphere\\\",\\n        \\\"air quality\\\",\\n\n        \\       \\\"mie\\\",\\n        \\\"rayleigh\\\",\\n        \\\"clouds\\\",\\n        \\\"aerosols\\\",\\n\n        \\       \\\"wind profiles\\\",\\n        \\\"weather\\\",\\n        \\\"climate\\\",\\n        \\\"weather\n        forecast\\\",\\n        \\\"Atmospheric Winds\\\",\\n        \\\"Atmospheric Indicators\\\",\\n\n        \\       \\\"EARTH SCIENCE > ATMOSPHERE > ATMOSPHERIC WINDS\\\",\\n        \\\"UV\n        (0.01 - 0.4 \\xB5m)\\\",\\n        \\\"Sun-synchronous\\\",\\n        \\\"Horizontal\n        resolution at measurement scale: 3 km; Horizontal resolution at observation\n        scale for Rayleigh/Mie: 87/10 km\\\",\\n        \\\"250-2000 m vertical resolution\\\",\\n\n        \\       \\\"ALD_U_N_1B\\\",\\n        \\\"320 km\\\",\\n        \\\"Lidar/Laser Sounders\\\",\\n\n        \\       \\\"Aeolus\\\",\\n        \\\"ALADIN\\\"\\n      ],\\n      \\\"created\\\": \\\"2020-04-30T00:00:00.00Z\\\",\\n\n        \\     \\\"description\\\": \\\"The Level 1B wind product of the Aeolus mission contains\n        the preliminary HLOS (horizontal line-of-sight) wind observations for Rayleigh\n        and Mie receivers, which are generated in Near Real Time. Standard atmospheric\n        correction (Rayleigh channel), receiver response and bias correction is applied.\n        The product is generated within 3 hours after data acquisition.\\\",\\n      \\\"type\\\":\n        \\\"Collection\\\",\\n      \\\"title\\\": \\\"Aeolus preliminary HLOS (horizontal line-of-sight)\n        wind observations for Rayleigh and Mie receivers\\\",\\n      \\\"license\\\": \\\"various\\\",\\n\n        \\     \\\"assets\\\": {\\n        \\\"metadata_ogc_17_069r3\\\": {\\n          \\\"roles\\\":\n        [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/L1B_Wind_Products\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/L1B_Wind_Products?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/L1B_Wind_Products?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/L1B_Wind_Products?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/L1B_Wind_Products?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/L1B_Wind_Products?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/L1B_Wind_Products?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        }\\n\n        \\     },\\n      \\\"links\\\": [\\n        {\\n          \\\"rel\\\": \\\"self\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/L1B_Wind_Products\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"root\\\",\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\": \\\"application/json\\\",\\n\n        \\         \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"title\\\":\n        \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://earth.esa.int/eogateway/documents/20142/37627/Aeolus-Sensor-and-Product-Description.pdf\\\",\\n\n        \\         \\\"type\\\": \\\"application/pdf\\\",\\n          \\\"title\\\": \\\"Aeolus Sensor\n        and Product Description - Aeolus Sensor and Product Description\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://esatellus.service-now.com/csp?id=esa_simple_request\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Get Help? - ESA\n        Earth Observation User Services Portal\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/L1B_Wind_Products?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/L1B_Wind_Products?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/L1B_Wind_Products?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/L1B_Wind_Products?httpAccept=application/rdf%2Bxml;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/L1B_Wind_Products?httpAccept=text/turtle;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for ESA/ESRIN\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:platform/Aeolus\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for Aeolus platform\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/concepts/instruments/a032cde6-16e3-5940-988e-f6d79870d14c\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for ALADIN instrument\\\"\\n        }\\n\n        \\     ],\\n      \\\"id\\\": \\\"L1B_Wind_Products\\\",\\n      \\\"updated\\\": \\\"2023-06-15T11:50:19Z\\\",\\n\n        \\     \\\"providers\\\": [\\n        {\\n          \\\"roles\\\": [\\\"producer\\\"],\\n\n        \\         \\\"name\\\": \\\"ESA/ESRIN\\\",\\n          \\\"url\\\": \\\"http://www.esa.int\\\"\\n\n        \\       },\\n        {\\n          \\\"roles\\\": [\\\"host\\\"],\\n          \\\"name\\\":\n        \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\": \\\"https://emc.spacebel.be/readme.html\\\"\\n\n        \\       }\\n      ],\\n      \\\"summaries\\\": {\\n        \\\"instruments\\\": [\\\"ALADIN\\\"],\\n\n        \\       \\\"platform\\\": [\\\"Aeolus\\\"]\\n      }\\n    },\\n    {\\n      \\\"extent\\\":\n        {\\n        \\\"spatial\\\": {\\\"bbox\\\": [[\\n          -180,\\n          -60,\\n          180,\\n\n        \\         80\\n        ]]},\\n        \\\"temporal\\\": {\\\"interval\\\": [[\\n          \\\"1999-01-01T00:00:00Z\\\",\\n\n        \\         \\\"2019-12-31T23:59:59Z\\\"\\n        ]]}\\n      },\\n      \\\"stac_version\\\":\n        \\\"1.0.0\\\",\\n      \\\"keywords\\\": [\\n        \\\"Orthoimagery\\\",\\n        \\\"vegetation\\\",\\n\n        \\       \\\"density\\\",\\n        \\\"cover\\\",\\n        \\\"growth\\\",\\n        \\\"ndvi\\\",\\n\n        \\       \\\"GLOBAL\\\",\\n        \\\"Dekad\\\",\\n        \\\"10-daily\\\",\\n        \\\"EARTH\n        SCIENCE>BIOSPHERE>VEGETATION\\\",\\n        \\\"EARTH SCIENCE>OCEANS>SALINITY/DENSITY>DENSITY\\\",\\n\n        \\       \\\"EARTH SCIENCE>LAND SURFACE>LAND USE/LAND COVER>LAND USE/LAND COVER\n        CLASSIFICATION>VEGETATION INDEX\\\"\\n      ],\\n      \\\"created\\\": \\\"2019-12-31T00:00:00.00Z\\\",\\n\n        \\     \\\"description\\\": \\\"The Normalised Difference Vegetation Index (NDVI)\n        is a widely used, dimensionless index that is indicative for vegetation density\n        and is defined as NDVI=(NIR-Red)/(NIR+Red) where NIR corresponds to the reflectance\n        in the near infrared bands, and Red to the reflectance in the red bands. The\n        time series of 10-daily NDVI 1km version 3 observations is used to calculate\n        Long Term Statistics (LTS), over the 20-year period 1999-2019, and Short Term\n        Statistics (STS), over the 5-year period (2015-2019), for each of the 36 10-daily\n        periods (dekads) of the year. The calculated statistics include the minimum,\n        median, maximum, mean, standard deviation and the number of observations in\n        the covered time series period. These statistics can be used as a reference\n        for actual NDVI observations, which allows monitoring of anomalous vegetation\n        conditions.\\\",\\n      \\\"sci:citation\\\": \\\"https://land.copernicus.eu/global/documents/ndvi/v3/pum\\\",\\n\n        \\     \\\"type\\\": \\\"Collection\\\",\\n      \\\"title\\\": \\\"Normalised Difference\n        Vegetation Index Statistics 1999-2019 (raster 1 km), global, 10-daily - version\n        3\\\",\\n      \\\"version\\\": \\\"V3.0\\\",\\n      \\\"license\\\": \\\"various\\\",\\n      \\\"assets\\\":\n        {\\n        \\\"search\\\": {\\n          \\\"roles\\\": [\\\"search\\\"],\\n          \\\"href\\\":\n        \\\"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=urn:cgls:global:ndvi_stats_all\\\",\\n\n        \\         \\\"type\\\": \\\"text/html\\\",\\n          \\\"title\\\": \\\"Search client\\\"\\n\n        \\       },\\n        \\\"enclosure\\\": {\\n          \\\"roles\\\": [\\\"data\\\"],\\n          \\\"href\\\":\n        \\\"https://land.copernicus.eu/global/access\\\",\\n          \\\"type\\\": \\\"application/x-binary\\\",\\n\n        \\         \\\"title\\\": \\\"Copernicus Global Land Service - Information on how\n        to search, download, order products or subscribe to future products\\\"\\n        },\\n\n        \\       \\\"metadata_ogc_17_069r3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/urn:cgls:global:ndvi_stats_all\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-069r3 metadata\\\"\\n        },\\n        \\\"metadata_iso_19139\\\":\n        {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/urn:cgls:global:ndvi_stats_all?httpAccept=application/vnd.iso.19139%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19139_2\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/urn:cgls:global:ndvi_stats_all?httpAccept=application/vnd.iso.19139-2%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19139-2 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19139-2+xml\\\"\\n\n        \\       },\\n        \\\"metadata_dif_10\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/urn:cgls:global:ndvi_stats_all?httpAccept=application/dif10%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"DIF-10 metadata\\\",\\n          \\\"type\\\": \\\"application/dif10+xml\\\"\\n\n        \\       },\\n        \\\"metadata_iso_19115_3\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/urn:cgls:global:ndvi_stats_all?httpAccept=application/vnd.iso.19115-3%2Bxml\\\",\\n\n        \\         \\\"title\\\": \\\"ISO 19115-3 metadata\\\",\\n          \\\"type\\\": \\\"application/vnd.iso.19115-3+xml\\\"\\n\n        \\       },\\n        \\\"metadata_ogc_17_084r1\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/urn:cgls:global:ndvi_stats_all?mode=owc\\\",\\n\n        \\         \\\"title\\\": \\\"OGC 17-084r1 metadata\\\",\\n          \\\"type\\\": \\\"application/geo+json;profile=\\\\\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\\\\\"\\\"\\n\n        \\       },\\n        \\\"metadata_html\\\": {\\n          \\\"roles\\\": [\\\"metadata\\\"],\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/urn:cgls:global:ndvi_stats_all?httpAccept=text/html\\\",\\n\n        \\         \\\"title\\\": \\\"HTML\\\",\\n          \\\"type\\\": \\\"text/html\\\"\\n        },\\n\n        \\       \\\"quicklook\\\": {\\n          \\\"roles\\\": [\\\"overview\\\"],\\n          \\\"href\\\":\n        \\\"https://land.copernicus.vgt.vito.be/geonetwork/srv/api/records/urn:cgls:global:ndvi_v2_1km/attachments/ndvi300_v1_333m_with-legend.png\\\",\\n\n        \\         \\\"type\\\": \\\"image/png\\\",\\n          \\\"title\\\": \\\"graphic overview\\\"\\n\n        \\       }\\n      },\\n      \\\"links\\\": [\\n        {\\n          \\\"rel\\\": \\\"self\\\",\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/urn:cgls:global:ndvi_stats_all\\\",\\n\n        \\         \\\"type\\\": \\\"application/json\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"root\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n          \\\"type\\\":\n        \\\"application/json\\\",\\n          \\\"title\\\": \\\"FedEO Clearinghouse\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"parent\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be\\\",\\n\n        \\         \\\"title\\\": \\\"collections\\\",\\n          \\\"type\\\": \\\"application/json\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"items\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/urn:cgls:global:ndvi_stats_all/items?httpAccept=application/geo%2Bjson;profile=https://stacspec.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/geo+json\\\",\\n          \\\"title\\\": \\\"Datasets\n        search for the series urn:cgls:global:ndvi_stats_all\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"http://www.opengis.net/def/rel/ogc/1.0/queryables\\\",\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/urn:cgls:global:ndvi_stats_all/queryables\\\",\\n\n        \\         \\\"type\\\": \\\"application/schema+json\\\",\\n          \\\"title\\\": \\\"Queryables\n        for urn:cgls:global:ndvi_stats_all\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"search\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/collections/series/items/urn:cgls:global:ndvi_stats_all/api\\\",\\n\n        \\         \\\"type\\\": \\\"application/opensearchdescription+xml\\\",\\n          \\\"title\\\":\n        \\\"OpenSearch Description Document\\\"\\n        },\\n        {\\n          \\\"rel\\\":\n        \\\"related\\\",\\n          \\\"href\\\": \\\"http://eoportal.eumetsat.int\\\",\\n          \\\"title\\\":\n        \\\"gc - Register to receive products via EUMETCast telecom satellite\\\"\\n        },\\n\n        \\       {\\n          \\\"rel\\\": \\\"describedby\\\",\\n          \\\"href\\\": \\\"https://land.copernicus.eu/global/products/ndvi\\\",\\n\n        \\         \\\"title\\\": \\\"Copernicus Global Land Service - Product information\n        and documentation\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n\n        \\         \\\"href\\\": \\\"https://emc.spacebel.be/collections/urn:cgls:global:ndvi_stats_all?httpAccept=application/atom%2Bxml\\\",\\n\n        \\         \\\"type\\\": \\\"application/atom+xml\\\",\\n          \\\"title\\\": \\\"Atom\n        format\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/urn:cgls:global:ndvi_stats_all?httpAccept=application/xml\\\",\\n\n        \\         \\\"type\\\": \\\"application/xml\\\",\\n          \\\"title\\\": \\\"Dublin Core\n        metadata\\\"\\n        },\\n        {\\n          \\\"rel\\\": \\\"alternate\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/collections/urn:cgls:global:ndvi_stats_all?httpAccept=application/ld%2Bjson;profile=https://schema.org\\\",\\n\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/ld+json;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"JSON-LD (GeoDCAT-AP) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"application/rdf+xml;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"RDF/XML (GeoDCAT-AP) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"https://schema.org\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (schema.org) metadata\\\"\\n        },\\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\n        \\         \\\"type\\\": \\\"text/turtle;profile=\\\\\\\"http://data.europa.eu/930/\\\\\\\"\\\",\\n\n        \\         \\\"title\\\": \\\"Turtle (GeoDCAT-AP) metadata\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/VITO\\\",\\n\n        \\         \\\"title\\\": \\\"More collections for VITO\\\"\\n        },\\n        {\\n\n        \\         \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\": \\\"https://emc.spacebel.be/series/eo:organisationName/European\n        Commission Directorate-General for Internal Market, Industry, Entrepreneurship\n        and SMEs\\\",\\n          \\\"title\\\": \\\"More collections for European Commission\n        Directorate-General for Internal Market, Industry, Entrepreneurship and SMEs\\\"\\n\n        \\       },\\n        {\\n          \\\"rel\\\": \\\"related\\\",\\n          \\\"href\\\":\n        \\\"https://emc.spacebel.be/series/eo:organisationName/European Commission Directorate-General\n        Joint Research Centre\\\",\\n          \\\"title\\\": \\\"More collections for European\n        Commission Directorate-General Joint Research Centre\\\"\\n        }\\n      ],\\n\n        \\     \\\"id\\\": \\\"urn:cgls:global:ndvi_stats_all\\\",\\n      \\\"updated\\\": \\\"2023-09-22T19:28:10Z\\\",\\n\n        \\     \\\"stac_extensions\\\": [\\n        \\\"https://stac-extensions.github.io/version/v1.2.0/schema.json\\\",\\n\n        \\       \\\"https://stac-extensions.github.io/processing/v1.2.0/schema.json\\\",\\n\n        \\       \\\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\\\"\\n\n        \\     ],\\n      \\\"providers\\\": [\\n        {\\n          \\\"roles\\\": [\\\"producer\\\"],\\n\n        \\         \\\"name\\\": \\\"VITO\\\",\\n          \\\"url\\\": \\\"https://land.copernicus.eu/global/\\\"\\n\n        \\       },\\n        {\\n          \\\"roles\\\": [\\\"host\\\"],\\n          \\\"name\\\":\n        \\\"FedEO Clearinghouse\\\",\\n          \\\"url\\\": \\\"https://emc.spacebel.be/readme.html\\\"\\n\n        \\       }\\n      ],\\n      \\\"summaries\\\": {\\\"processing:lineage\\\": [\\\"The\n        input data are the 10-daily NDVI products, at 1km resolution, measured by\n        the SPOT-VEGETATION and PROBA-V sensors, for the reference period 1999-2019.\n        From the time series of valid NDVI observations, a set of Long Term Statistics\n        are calculated, one per dekad (10-daily period) of the year. Sea pixels are\n        specifically masked.\\\"]}\\n    }\\n  ],\\n  \\\"numberReturned\\\": 10,\\n  \\\"links\\\":\n        [\\n    {\\n      \\\"rel\\\": \\\"self\\\",\\n      \\\"href\\\": \\\"https://emc.spacebel.be/collections?limit=10&bbox=-92.379%2C46.662%2C-91.788%2C46.919\\\",\\n\n        \\     \\\"type\\\": \\\"application/json\\\",\\n      \\\"title\\\": \\\"This document\\\"\\n\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\n        \\     \\\"type\\\": \\\"application/json\\\",\\n      \\\"title\\\": \\\"Next results\\\"\\n\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\n        \\     \\\"type\\\": \\\"application/json\\\",\\n      \\\"title\\\": \\\"Previous results\\\"\\n\n        \\   },\\n    {\\n      \\\"rel\\\": \\\"http://www.opengis.net/def/rel/ogc/1.0/queryables\\\",\\n\n        \\     \\\"href\\\": \\\"https://emc.spacebel.be/collections/queryables\\\",\\n      \\\"type\\\":\n        \\\"application/schema+json\\\",\\n      \\\"title\\\": \\\"Queryables for collection\n        search\\\"\\n    }\\n  ],\\n  \\\"numberMatched\\\": 2357\\n}\"\n    headers:\n      Access-Control-Allow-Headers:\n      - X-PINGOTHER, Content-Type, Authorization, Accept\n      Access-Control-Allow-Methods:\n      - POST,GET,PUT,HEAD,OPTIONS,DELETE\n      Access-Control-Allow-Origin:\n      - '*'\n      Cache-Control:\n      - no-cache, no-store, max-age=0, must-revalidate\n      Connection:\n      - keep-alive\n      Content-Type:\n      - application/json;charset=UTF-8\n      Date:\n      - Thu, 31 Jul 2025 15:08:26 GMT\n      Expires:\n      - '0'\n      Pragma:\n      - no-cache\n      Server:\n      - openresty\n      Strict-Transport-Security:\n      - max-age=31536000 ; includeSubDomains\n      Transfer-Encoding:\n      - chunked\n      X-Content-Type-Options:\n      - nosniff\n      X-Frame-Options:\n      - DENY\n      X-Served-By:\n      - emc.spacebel.be\n      X-XSS-Protection:\n      - 1; mode=block\n    status:\n      code: 200\n      message: ''\nversion: 1\n"
  },
  {
    "path": "tests/cassettes/test_item_search/TestItemSearch.test_datetime_results.yaml",
    "content": "interactions:\n- request:\n    body: '{\"datetime\": \"2019-01-01T00:00:01Z/2019-01-01T00:00:10Z\", \"collections\":\n      [\"sentinel-2-l2a\"]}'\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '92'\n      Content-Type:\n      - application/json\n      User-Agent:\n      - python-requests/2.32.4\n    method: POST\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/search\n  response:\n    body:\n      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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Aerosol\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        1 - Coastal aerosol - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        2 - Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        3 - Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        4 - Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        5 - Vegetation red edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"description\":\"Band\n        5 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        6 - Vegetation red edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"description\":\"Band\n        6 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        7 - Vegetation red edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"description\":\"Band\n        7 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8 - NIR - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        9 - Water vapor - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"description\":\"Band 9 - Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        11 - SWIR (1.6) - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        12 - SWIR (2.2) - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8A - Vegetation red edge 4 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"rededge\",\"description\":\"Band\n        8A - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Scene\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"True\n        color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        4 - Red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        3 - Green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Aerosol\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        1 - Coastal aerosol - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        2 - Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        3 - Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        4 - Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        5 - Vegetation red edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"description\":\"Band\n        5 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        6 - Vegetation red edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"description\":\"Band\n        6 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        7 - Vegetation red edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"description\":\"Band\n        7 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8 - NIR - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        9 - Water vapor - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"description\":\"Band 9 - Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        11 - SWIR (1.6) - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        12 - SWIR (2.2) - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8A - Vegetation red edge 4 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"rededge\",\"description\":\"Band\n        8A - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Scene\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"True\n        color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        4 - Red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        3 - Green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Aerosol\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        1 - Coastal aerosol - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        2 - Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        3 - Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        4 - Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        5 - Vegetation red edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"description\":\"Band\n        5 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        6 - Vegetation red edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"description\":\"Band\n        6 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        7 - Vegetation red edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"description\":\"Band\n        7 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8 - NIR - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        9 - Water vapor - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"description\":\"Band 9 - Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        11 - SWIR (1.6) - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        12 - SWIR (2.2) - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8A - Vegetation red edge 4 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"rededge\",\"description\":\"Band\n        8A - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Scene\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"True\n        color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        4 - Red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        3 - Green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Aerosol\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        1 - Coastal aerosol - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        2 - Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        3 - Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        4 - Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        5 - Vegetation red edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"description\":\"Band\n        5 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        6 - Vegetation red edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"description\":\"Band\n        6 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        7 - Vegetation red edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"description\":\"Band\n        7 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8 - NIR - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        9 - Water vapor - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"description\":\"Band 9 - Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        11 - SWIR (1.6) - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        12 - SWIR (2.2) - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8A - Vegetation red edge 4 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"rededge\",\"description\":\"Band\n        8A - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Scene\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"True\n        color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        4 - Red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        3 - Green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Aerosol\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        1 - Coastal aerosol - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        2 - Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        3 - Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        4 - Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        5 - Vegetation red edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"description\":\"Band\n        5 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        6 - Vegetation red edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"description\":\"Band\n        6 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        7 - Vegetation red edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"description\":\"Band\n        7 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8 - NIR - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        9 - Water vapor - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"description\":\"Band 9 - Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        11 - SWIR (1.6) - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        12 - SWIR (2.2) - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8A - Vegetation red edge 4 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"rededge\",\"description\":\"Band\n        8A - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Scene\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"True\n        color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        4 - Red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        3 - Green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Aerosol\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        1 - Coastal aerosol - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        2 - Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        3 - Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        4 - Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        5 - Vegetation red edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"description\":\"Band\n        5 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        6 - Vegetation red edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"description\":\"Band\n        6 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        7 - Vegetation red edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"description\":\"Band\n        7 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8 - NIR - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        9 - Water vapor - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"description\":\"Band 9 - Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        11 - SWIR (1.6) - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        12 - SWIR (2.2) - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8A - Vegetation red edge 4 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"rededge\",\"description\":\"Band\n        8A - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Scene\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"True\n        color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        4 - Red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        3 - Green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Aerosol\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        1 - Coastal aerosol - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        2 - Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        3 - Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        4 - Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        5 - Vegetation red edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"description\":\"Band\n        5 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        6 - Vegetation red edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"description\":\"Band\n        6 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        7 - Vegetation red edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"description\":\"Band\n        7 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8 - NIR - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        9 - Water vapor - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"description\":\"Band 9 - Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        11 - SWIR (1.6) - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        12 - SWIR (2.2) - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8A - Vegetation red edge 4 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"rededge\",\"description\":\"Band\n        8A - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Scene\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"True\n        color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        4 - Red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        3 - Green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Aerosol\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        1 - Coastal aerosol - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        2 - Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        3 - Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        4 - Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        5 - Vegetation red edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"description\":\"Band\n        5 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        6 - Vegetation red edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"description\":\"Band\n        6 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        7 - Vegetation red edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"description\":\"Band\n        7 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8 - NIR - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        9 - Water vapor - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"description\":\"Band 9 - Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        11 - SWIR (1.6) - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        12 - SWIR (2.2) - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8A - Vegetation red edge 4 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"rededge\",\"description\":\"Band\n        8A - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Scene\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"True\n        color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        4 - Red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        3 - Green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Aerosol\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        1 - Coastal aerosol - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        2 - Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        3 - Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        4 - Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        5 - Vegetation red edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"description\":\"Band\n        5 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        6 - Vegetation red edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"description\":\"Band\n        6 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        7 - Vegetation red edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"description\":\"Band\n        7 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8 - NIR - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        9 - Water vapor - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"description\":\"Band 9 - Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        11 - SWIR (1.6) - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        12 - SWIR (2.2) - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8A - Vegetation red edge 4 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"rededge\",\"description\":\"Band\n        8A - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Scene\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"True\n        color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        4 - Red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        3 - Green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Aerosol\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        1 - Coastal aerosol - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        2 - Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        3 - Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        4 - Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        5 - Vegetation red edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"description\":\"Band\n        5 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        6 - Vegetation red edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"description\":\"Band\n        6 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        7 - Vegetation red edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"description\":\"Band\n        7 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8 - NIR - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        9 - Water vapor - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"description\":\"Band 9 - Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        11 - SWIR (1.6) - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        12 - SWIR (2.2) - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8A - Vegetation red edge 4 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"rededge\",\"description\":\"Band\n        8A - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Scene\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"True\n        color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        4 - Red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        3 - Green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Aerosol\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        1 - Coastal aerosol - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        2 - Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        3 - Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        4 - Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        5 - Vegetation red edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"description\":\"Band\n        5 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        6 - Vegetation red edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"description\":\"Band\n        6 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        7 - Vegetation red edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"description\":\"Band\n        7 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8 - NIR - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        9 - Water vapor - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"description\":\"Band 9 - Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        11 - SWIR (1.6) - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        12 - SWIR (2.2) - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8A - Vegetation red edge 4 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"rededge\",\"description\":\"Band\n        8A - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Scene\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"True\n        color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        4 - Red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        3 - Green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Aerosol\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        1 - Coastal aerosol - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        2 - Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        3 - Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        4 - Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        5 - Vegetation red edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"description\":\"Band\n        5 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        6 - Vegetation red edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"description\":\"Band\n        6 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        7 - Vegetation red edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"description\":\"Band\n        7 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8 - NIR - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        9 - Water vapor - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"description\":\"Band 9 - Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        11 - SWIR (1.6) - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        12 - SWIR (2.2) - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8A - Vegetation red edge 4 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"rededge\",\"description\":\"Band\n        8A - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Scene\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"True\n        color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        4 - Red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        3 - Green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Aerosol\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        1 - Coastal aerosol - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        2 - Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        3 - Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        4 - Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        5 - Vegetation red edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"description\":\"Band\n        5 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        6 - Vegetation red edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"description\":\"Band\n        6 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        7 - Vegetation red edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"description\":\"Band\n        7 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8 - NIR - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        9 - Water vapor - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"description\":\"Band 9 - Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        11 - SWIR (1.6) - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        12 - SWIR (2.2) - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8A - Vegetation red edge 4 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"rededge\",\"description\":\"Band\n        8A - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Scene\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"True\n        color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        4 - Red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        3 - Green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Aerosol\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        1 - Coastal aerosol - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        2 - Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        3 - Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        4 - Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        5 - Vegetation red edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"description\":\"Band\n        5 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        6 - Vegetation red edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"description\":\"Band\n        6 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        7 - Vegetation red edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"description\":\"Band\n        7 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8 - NIR - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        9 - Water vapor - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"description\":\"Band 9 - Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        11 - SWIR (1.6) - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        12 - SWIR (2.2) - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8A - Vegetation red edge 4 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"rededge\",\"description\":\"Band\n        8A - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Scene\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"True\n        color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        4 - Red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        3 - Green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Aerosol\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        1 - Coastal aerosol - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        2 - Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        3 - Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        4 - Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        5 - Vegetation red edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"description\":\"Band\n        5 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        6 - Vegetation red edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"description\":\"Band\n        6 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        7 - Vegetation red edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"description\":\"Band\n        7 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8 - NIR - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        9 - Water vapor - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"description\":\"Band 9 - Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        11 - SWIR (1.6) - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        12 - SWIR (2.2) - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8A - Vegetation red edge 4 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"rededge\",\"description\":\"Band\n        8A - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Scene\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"True\n        color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        4 - Red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        3 - Green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Aerosol\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        1 - Coastal aerosol - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        2 - Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        3 - Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        4 - Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        5 - Vegetation red edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"description\":\"Band\n        5 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        6 - Vegetation red edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"description\":\"Band\n        6 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        7 - Vegetation red edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"description\":\"Band\n        7 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8 - NIR - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        9 - Water vapor - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"description\":\"Band 9 - Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        11 - SWIR (1.6) - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        12 - SWIR (2.2) - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8A - Vegetation red edge 4 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"rededge\",\"description\":\"Band\n        8A - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Scene\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"True\n        color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        4 - Red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        3 - Green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Aerosol\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        1 - Coastal aerosol - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        2 - Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        3 - Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        4 - Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        5 - Vegetation red edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"description\":\"Band\n        5 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        6 - Vegetation red edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"description\":\"Band\n        6 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        7 - Vegetation red edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"description\":\"Band\n        7 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8 - NIR - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        9 - Water vapor - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"description\":\"Band 9 - Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        11 - SWIR (1.6) - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        12 - SWIR (2.2) - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8A - Vegetation red edge 4 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"rededge\",\"description\":\"Band\n        8A - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Scene\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"True\n        color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        4 - Red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        3 - Green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Aerosol\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        1 - Coastal aerosol - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        2 - Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        3 - Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        4 - Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        5 - Vegetation red edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"description\":\"Band\n        5 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        6 - Vegetation red edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"description\":\"Band\n        6 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        7 - Vegetation red edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"description\":\"Band\n        7 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8 - NIR - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        9 - Water vapor - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"description\":\"Band 9 - Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        11 - SWIR (1.6) - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        12 - SWIR (2.2) - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8A - Vegetation red edge 4 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"rededge\",\"description\":\"Band\n        8A - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Scene\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"True\n        color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        4 - Red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        3 - Green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Aerosol\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        1 - Coastal aerosol - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        2 - Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        3 - Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        4 - Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        5 - Vegetation red edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"description\":\"Band\n        5 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        6 - Vegetation red edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"description\":\"Band\n        6 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        7 - Vegetation red edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"description\":\"Band\n        7 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8 - NIR - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        9 - Water vapor - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"description\":\"Band 9 - Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        11 - SWIR (1.6) - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        12 - SWIR (2.2) - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8A - Vegetation red edge 4 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"rededge\",\"description\":\"Band\n        8A - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Scene\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"True\n        color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        4 - Red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        3 - Green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Aerosol\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        1 - Coastal aerosol - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        2 - Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        3 - Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        4 - Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        5 - Vegetation red edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"description\":\"Band\n        5 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        6 - Vegetation red edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"description\":\"Band\n        6 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        7 - Vegetation red edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"description\":\"Band\n        7 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8 - NIR - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        9 - Water vapor - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"description\":\"Band 9 - Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        11 - SWIR (1.6) - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        12 - SWIR (2.2) - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8A - Vegetation red edge 4 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"rededge\",\"description\":\"Band\n        8A - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Scene\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"True\n        color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        4 - Red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        3 - Green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Aerosol\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        1 - Coastal aerosol - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        2 - Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        3 - Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        4 - Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        5 - Vegetation red edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"description\":\"Band\n        5 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        6 - Vegetation red edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"description\":\"Band\n        6 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        7 - Vegetation red edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"description\":\"Band\n        7 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8 - NIR - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        9 - Water vapor - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"description\":\"Band 9 - Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        11 - SWIR (1.6) - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        12 - SWIR (2.2) - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8A - Vegetation red edge 4 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"rededge\",\"description\":\"Band\n        8A - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Scene\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"True\n        color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        4 - Red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        3 - Green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Aerosol\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        1 - Coastal aerosol - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        2 - Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        3 - Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        4 - Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        5 - Vegetation red edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"description\":\"Band\n        5 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        6 - Vegetation red edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"description\":\"Band\n        6 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        7 - Vegetation red edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"description\":\"Band\n        7 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8 - NIR - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        9 - Water vapor - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"description\":\"Band 9 - Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        11 - SWIR (1.6) - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        12 - SWIR (2.2) - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8A - Vegetation red edge 4 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"rededge\",\"description\":\"Band\n        8A - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Scene\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"True\n        color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        4 - Red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        3 - Green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Aerosol\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        1 - Coastal aerosol - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        2 - Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        3 - Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        4 - Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        5 - Vegetation red edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"description\":\"Band\n        5 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        6 - Vegetation red edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"description\":\"Band\n        6 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        7 - Vegetation red edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"description\":\"Band\n        7 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8 - NIR - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        9 - Water vapor - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"description\":\"Band 9 - Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        11 - SWIR (1.6) - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        12 - SWIR (2.2) - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8A - Vegetation red edge 4 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"rededge\",\"description\":\"Band\n        8A - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Scene\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"True\n        color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        4 - Red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        3 - Green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Aerosol\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        1 - Coastal aerosol - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        2 - Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        3 - Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        4 - Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        5 - Vegetation red edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"description\":\"Band\n        5 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        6 - Vegetation red edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"description\":\"Band\n        6 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        7 - Vegetation red edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"description\":\"Band\n        7 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8 - NIR - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        9 - Water vapor - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"description\":\"Band 9 - Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        11 - SWIR (1.6) - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        12 - SWIR (2.2) - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8A - Vegetation red edge 4 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"rededge\",\"description\":\"Band\n        8A - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Scene\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"True\n        color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        4 - Red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        3 - Green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Aerosol\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        1 - Coastal aerosol - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        2 - Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        3 - Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        4 - Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        5 - Vegetation red edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"description\":\"Band\n        5 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        6 - Vegetation red edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"description\":\"Band\n        6 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        7 - Vegetation red edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"description\":\"Band\n        7 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8 - NIR - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        9 - Water vapor - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"description\":\"Band 9 - Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        11 - SWIR (1.6) - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        12 - SWIR (2.2) - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8A - Vegetation red edge 4 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"rededge\",\"description\":\"Band\n        8A - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Scene\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"True\n        color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        4 - Red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        3 - Green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Aerosol\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        1 - Coastal aerosol - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        2 - Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        3 - Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        4 - Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        5 - Vegetation red edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"description\":\"Band\n        5 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        6 - Vegetation red edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"description\":\"Band\n        6 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        7 - Vegetation red edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"description\":\"Band\n        7 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8 - NIR - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        9 - Water vapor - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"description\":\"Band 9 - Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        11 - SWIR (1.6) - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        12 - SWIR (2.2) - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8A - Vegetation red edge 4 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"rededge\",\"description\":\"Band\n        8A - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Scene\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"True\n        color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        4 - Red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        3 - Green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Aerosol\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        1 - Coastal aerosol - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        2 - Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        3 - Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        4 - Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        5 - Vegetation red edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"description\":\"Band\n        5 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        6 - Vegetation red edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"description\":\"Band\n        6 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        7 - Vegetation red edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"description\":\"Band\n        7 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8 - NIR - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        9 - Water vapor - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"description\":\"Band 9 - Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        11 - SWIR (1.6) - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        12 - SWIR (2.2) - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8A - Vegetation red edge 4 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"rededge\",\"description\":\"Band\n        8A - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Scene\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"True\n        color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        4 - Red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        3 - Green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Aerosol\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        1 - Coastal aerosol - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        2 - Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        3 - Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        4 - Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        5 - Vegetation red edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"description\":\"Band\n        5 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        6 - Vegetation red edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"description\":\"Band\n        6 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        7 - Vegetation red edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"description\":\"Band\n        7 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8 - NIR - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        9 - Water vapor - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"description\":\"Band 9 - Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        11 - SWIR (1.6) - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        12 - SWIR (2.2) - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8A - Vegetation red edge 4 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"rededge\",\"description\":\"Band\n        8A - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Scene\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"True\n        color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        4 - Red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        3 - Green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Aerosol\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        1 - Coastal aerosol - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        2 - Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        3 - Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        4 - Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        5 - Vegetation red edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"description\":\"Band\n        5 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        6 - Vegetation red edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"description\":\"Band\n        6 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        7 - Vegetation red edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"description\":\"Band\n        7 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8 - NIR - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        9 - Water vapor - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"description\":\"Band 9 - Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        11 - SWIR (1.6) - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        12 - SWIR (2.2) - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8A - Vegetation red edge 4 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"rededge\",\"description\":\"Band\n        8A - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Scene\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"True\n        color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        4 - Red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        3 - Green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Aerosol\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        1 - Coastal aerosol - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        2 - Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        3 - Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        4 - Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        5 - Vegetation red edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"description\":\"Band\n        5 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        6 - Vegetation red edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"description\":\"Band\n        6 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        7 - Vegetation red edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"description\":\"Band\n        7 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8 - NIR - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        9 - Water vapor - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"description\":\"Band 9 - Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        11 - SWIR (1.6) - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        12 - SWIR (2.2) - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8A - Vegetation red edge 4 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"rededge\",\"description\":\"Band\n        8A - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Scene\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"True\n        color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        4 - Red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        3 - Green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Aerosol\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        1 - Coastal aerosol - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        2 - Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        3 - Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        4 - Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        5 - Vegetation red edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"description\":\"Band\n        5 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        6 - Vegetation red edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"description\":\"Band\n        6 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        7 - Vegetation red edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"description\":\"Band\n        7 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8 - NIR - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        9 - Water vapor - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"description\":\"Band 9 - Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        11 - SWIR (1.6) - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        12 - SWIR (2.2) - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8A - Vegetation red edge 4 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"rededge\",\"description\":\"Band\n        8A - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Scene\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"True\n        color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        4 - Red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        3 - Green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Aerosol\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        1 - Coastal aerosol - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        2 - Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        3 - Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        4 - Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        5 - Vegetation red edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"description\":\"Band\n        5 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        6 - Vegetation red edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"description\":\"Band\n        6 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        7 - Vegetation red edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"description\":\"Band\n        7 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8 - NIR - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        9 - Water vapor - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"description\":\"Band 9 - Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        11 - SWIR (1.6) - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        12 - SWIR (2.2) - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8A - Vegetation red edge 4 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"rededge\",\"description\":\"Band\n        8A - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Scene\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"True\n        color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        4 - Red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        3 - Green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Aerosol\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        1 - Coastal aerosol - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        2 - Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        3 - Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        4 - Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        5 - Vegetation red edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"description\":\"Band\n        5 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        6 - Vegetation red edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"description\":\"Band\n        6 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        7 - Vegetation red edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"description\":\"Band\n        7 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8 - NIR - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        9 - Water vapor - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"description\":\"Band 9 - Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        11 - SWIR (1.6) - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        12 - SWIR (2.2) - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8A - Vegetation red edge 4 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"rededge\",\"description\":\"Band\n        8A - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Scene\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"True\n        color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        4 - Red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        3 - Green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\"}]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '20547'\n      Content-Type:\n      - application/geo+json\n      Date:\n      - Thu, 31 Jul 2025 15:11:34 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T151133Z-r17d779659cxsjnnhC1DENgtwc0000000260000000001fw6\n    status:\n      code: 200\n      message: OK\n- request:\n    body: '{\"datetime\": \"2019-01-01T00:00:01Z/2019-01-01T00:00:10Z\", \"collections\":\n      [\"sentinel-2-l2a\"]}'\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '92'\n      Content-Type:\n      - application/json\n      User-Agent:\n      - python-requests/2.32.4\n    method: POST\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/search\n  response:\n    body:\n      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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Aerosol\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        1 - Coastal aerosol - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        2 - Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        3 - Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        4 - Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        5 - Vegetation red edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"description\":\"Band\n        5 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        6 - Vegetation red edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"description\":\"Band\n        6 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        7 - Vegetation red edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"description\":\"Band\n        7 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8 - NIR - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        9 - Water vapor - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"description\":\"Band 9 - Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        11 - SWIR (1.6) - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        12 - SWIR (2.2) - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8A - Vegetation red edge 4 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"rededge\",\"description\":\"Band\n        8A - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Scene\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"True\n        color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        4 - Red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        3 - Green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Aerosol\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        1 - Coastal aerosol - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        2 - Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        3 - Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        4 - Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        5 - Vegetation red edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"description\":\"Band\n        5 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        6 - Vegetation red edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"description\":\"Band\n        6 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        7 - Vegetation red edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"description\":\"Band\n        7 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8 - NIR - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        9 - Water vapor - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"description\":\"Band 9 - Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        11 - SWIR (1.6) - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        12 - SWIR (2.2) - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8A - Vegetation red edge 4 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"rededge\",\"description\":\"Band\n        8A - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Scene\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"True\n        color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        4 - Red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        3 - Green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Aerosol\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        1 - Coastal aerosol - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        2 - Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        3 - Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        4 - Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        5 - Vegetation red edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"description\":\"Band\n        5 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        6 - Vegetation red edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"description\":\"Band\n        6 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        7 - Vegetation red edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"description\":\"Band\n        7 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8 - NIR - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        9 - Water vapor - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"description\":\"Band 9 - Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        11 - SWIR (1.6) - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        12 - SWIR (2.2) - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8A - Vegetation red edge 4 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"rededge\",\"description\":\"Band\n        8A - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Scene\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"True\n        color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        4 - Red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        3 - Green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Aerosol\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        1 - Coastal aerosol - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        2 - Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        3 - Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        4 - Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        5 - Vegetation red edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"description\":\"Band\n        5 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        6 - Vegetation red edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"description\":\"Band\n        6 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        7 - Vegetation red edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"description\":\"Band\n        7 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8 - NIR - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        9 - Water vapor - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"description\":\"Band 9 - Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        11 - SWIR (1.6) - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        12 - SWIR (2.2) - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8A - Vegetation red edge 4 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"rededge\",\"description\":\"Band\n        8A - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Scene\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"True\n        color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        4 - Red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        3 - Green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Aerosol\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        1 - Coastal aerosol - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        2 - Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        3 - Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        4 - Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        5 - Vegetation red edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"description\":\"Band\n        5 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        6 - Vegetation red edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"description\":\"Band\n        6 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        7 - Vegetation red edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"description\":\"Band\n        7 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8 - NIR - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        9 - Water vapor - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"description\":\"Band 9 - Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        11 - SWIR (1.6) - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        12 - SWIR (2.2) - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8A - Vegetation red edge 4 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"rededge\",\"description\":\"Band\n        8A - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Scene\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"True\n        color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        4 - Red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        3 - Green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Aerosol\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        1 - Coastal aerosol - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        2 - Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        3 - Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        4 - Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        5 - Vegetation red edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"description\":\"Band\n        5 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        6 - Vegetation red edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"description\":\"Band\n        6 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        7 - Vegetation red edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"description\":\"Band\n        7 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8 - NIR - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        9 - Water vapor - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"description\":\"Band 9 - Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        11 - SWIR (1.6) - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        12 - SWIR (2.2) - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8A - Vegetation red edge 4 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"rededge\",\"description\":\"Band\n        8A - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Scene\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"True\n        color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        4 - Red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        3 - Green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Aerosol\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        1 - Coastal aerosol - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        2 - Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        3 - Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        4 - Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        5 - Vegetation red edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"description\":\"Band\n        5 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        6 - Vegetation red edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"description\":\"Band\n        6 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        7 - Vegetation red edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"description\":\"Band\n        7 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8 - NIR - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        9 - Water vapor - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"description\":\"Band 9 - Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        11 - SWIR (1.6) - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        12 - SWIR (2.2) - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8A - Vegetation red edge 4 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"rededge\",\"description\":\"Band\n        8A - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Scene\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"True\n        color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        4 - Red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        3 - Green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Aerosol\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        1 - Coastal aerosol - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        2 - Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        3 - Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        4 - Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        5 - Vegetation red edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"description\":\"Band\n        5 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        6 - Vegetation red edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"description\":\"Band\n        6 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        7 - Vegetation red edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"description\":\"Band\n        7 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8 - NIR - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        9 - Water vapor - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"description\":\"Band 9 - Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        11 - SWIR (1.6) - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        12 - SWIR (2.2) - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8A - Vegetation red edge 4 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"rededge\",\"description\":\"Band\n        8A - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Scene\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"True\n        color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        4 - Red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        3 - Green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Aerosol\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        1 - Coastal aerosol - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        2 - Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        3 - Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        4 - Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        5 - Vegetation red edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"description\":\"Band\n        5 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        6 - Vegetation red edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"description\":\"Band\n        6 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        7 - Vegetation red edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"description\":\"Band\n        7 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8 - NIR - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        9 - Water vapor - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"description\":\"Band 9 - Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        11 - SWIR (1.6) - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        12 - SWIR (2.2) - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8A - Vegetation red edge 4 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"rededge\",\"description\":\"Band\n        8A - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Scene\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"True\n        color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        4 - Red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        3 - Green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Aerosol\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        1 - Coastal aerosol - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        2 - Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        3 - Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        4 - Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        5 - Vegetation red edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"description\":\"Band\n        5 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        6 - Vegetation red edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"description\":\"Band\n        6 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        7 - Vegetation red edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"description\":\"Band\n        7 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8 - NIR - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        9 - Water vapor - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"description\":\"Band 9 - Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        11 - SWIR (1.6) - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        12 - SWIR (2.2) - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8A - Vegetation red edge 4 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"rededge\",\"description\":\"Band\n        8A - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Scene\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"True\n        color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        4 - Red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        3 - Green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Aerosol\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        1 - Coastal aerosol - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        2 - Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        3 - Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        4 - Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        5 - Vegetation red edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"description\":\"Band\n        5 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        6 - Vegetation red edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"description\":\"Band\n        6 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        7 - Vegetation red edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"description\":\"Band\n        7 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8 - NIR - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        9 - Water vapor - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"description\":\"Band 9 - Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        11 - SWIR (1.6) - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        12 - SWIR (2.2) - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8A - Vegetation red edge 4 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"rededge\",\"description\":\"Band\n        8A - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Scene\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"True\n        color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        4 - Red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        3 - Green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Aerosol\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        1 - Coastal aerosol - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        2 - Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        3 - Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        4 - Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        5 - Vegetation red edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"description\":\"Band\n        5 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        6 - Vegetation red edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"description\":\"Band\n        6 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        7 - Vegetation red edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"description\":\"Band\n        7 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8 - NIR - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        9 - Water vapor - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"description\":\"Band 9 - Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        11 - SWIR (1.6) - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        12 - SWIR (2.2) - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8A - Vegetation red edge 4 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"rededge\",\"description\":\"Band\n        8A - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Scene\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"True\n        color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        4 - Red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        3 - Green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Aerosol\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        1 - Coastal aerosol - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        2 - Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        3 - Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        4 - Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        5 - Vegetation red edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"description\":\"Band\n        5 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        6 - Vegetation red edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"description\":\"Band\n        6 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        7 - Vegetation red edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"description\":\"Band\n        7 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8 - NIR - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        9 - Water vapor - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"description\":\"Band 9 - Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        11 - SWIR (1.6) - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        12 - SWIR (2.2) - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8A - Vegetation red edge 4 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"rededge\",\"description\":\"Band\n        8A - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Scene\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"True\n        color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        4 - Red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        3 - Green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Aerosol\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        1 - Coastal aerosol - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        2 - Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        3 - Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        4 - Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        5 - Vegetation red edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"description\":\"Band\n        5 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        6 - Vegetation red edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"description\":\"Band\n        6 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        7 - Vegetation red edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"description\":\"Band\n        7 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8 - NIR - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        9 - Water vapor - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"description\":\"Band 9 - Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        11 - SWIR (1.6) - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        12 - SWIR (2.2) - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8A - Vegetation red edge 4 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"rededge\",\"description\":\"Band\n        8A - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Scene\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"True\n        color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        4 - Red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        3 - Green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Aerosol\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        1 - Coastal aerosol - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        2 - Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        3 - Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        4 - Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        5 - Vegetation red edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"description\":\"Band\n        5 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        6 - Vegetation red edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"description\":\"Band\n        6 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        7 - Vegetation red edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"description\":\"Band\n        7 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8 - NIR - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        9 - Water vapor - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"description\":\"Band 9 - Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        11 - SWIR (1.6) - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        12 - SWIR (2.2) - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8A - Vegetation red edge 4 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"rededge\",\"description\":\"Band\n        8A - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Scene\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"True\n        color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        4 - Red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        3 - Green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Aerosol\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        1 - Coastal aerosol - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        2 - Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        3 - Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        4 - Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        5 - Vegetation red edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"description\":\"Band\n        5 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        6 - Vegetation red edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"description\":\"Band\n        6 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        7 - Vegetation red edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"description\":\"Band\n        7 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8 - NIR - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        9 - Water vapor - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"description\":\"Band 9 - Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        11 - SWIR (1.6) - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        12 - SWIR (2.2) - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8A - Vegetation red edge 4 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"rededge\",\"description\":\"Band\n        8A - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Scene\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"True\n        color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        4 - Red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        3 - Green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Aerosol\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        1 - Coastal aerosol - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        2 - Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        3 - Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        4 - Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        5 - Vegetation red edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"description\":\"Band\n        5 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        6 - Vegetation red edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"description\":\"Band\n        6 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        7 - Vegetation red edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"description\":\"Band\n        7 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8 - NIR - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        9 - Water vapor - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"description\":\"Band 9 - Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        11 - SWIR (1.6) - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        12 - SWIR (2.2) - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8A - Vegetation red edge 4 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"rededge\",\"description\":\"Band\n        8A - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Scene\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"True\n        color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        4 - Red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        3 - Green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Aerosol\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        1 - Coastal aerosol - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        2 - Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        3 - Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        4 - Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        5 - Vegetation red edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"description\":\"Band\n        5 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        6 - Vegetation red edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"description\":\"Band\n        6 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        7 - Vegetation red edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"description\":\"Band\n        7 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8 - NIR - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        9 - Water vapor - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"description\":\"Band 9 - Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        11 - SWIR (1.6) - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        12 - SWIR (2.2) - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8A - Vegetation red edge 4 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"rededge\",\"description\":\"Band\n        8A - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Scene\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"True\n        color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        4 - Red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        3 - Green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Aerosol\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        1 - Coastal aerosol - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        2 - Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        3 - Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        4 - Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        5 - Vegetation red edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"description\":\"Band\n        5 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        6 - Vegetation red edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"description\":\"Band\n        6 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        7 - Vegetation red edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"description\":\"Band\n        7 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8 - NIR - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        9 - Water vapor - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"description\":\"Band 9 - Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        11 - SWIR (1.6) - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        12 - SWIR (2.2) - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8A - Vegetation red edge 4 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"rededge\",\"description\":\"Band\n        8A - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Scene\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"True\n        color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        4 - Red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        3 - Green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Aerosol\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        1 - Coastal aerosol - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        2 - Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        3 - Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        4 - Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        5 - Vegetation red edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"description\":\"Band\n        5 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        6 - Vegetation red edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"description\":\"Band\n        6 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        7 - Vegetation red edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"description\":\"Band\n        7 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8 - NIR - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        9 - Water vapor - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"description\":\"Band 9 - Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        11 - SWIR (1.6) - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        12 - SWIR (2.2) - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8A - Vegetation red edge 4 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"rededge\",\"description\":\"Band\n        8A - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Scene\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"True\n        color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        4 - Red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        3 - Green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Aerosol\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        1 - Coastal aerosol - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        2 - Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        3 - Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        4 - Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        5 - Vegetation red edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"description\":\"Band\n        5 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        6 - Vegetation red edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"description\":\"Band\n        6 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        7 - Vegetation red edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"description\":\"Band\n        7 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8 - NIR - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        9 - Water vapor - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"description\":\"Band 9 - Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        11 - SWIR (1.6) - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        12 - SWIR (2.2) - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8A - Vegetation red edge 4 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"rededge\",\"description\":\"Band\n        8A - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Scene\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"True\n        color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        4 - Red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        3 - Green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Aerosol\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        1 - Coastal aerosol - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        2 - Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        3 - Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        4 - Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        5 - Vegetation red edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"description\":\"Band\n        5 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        6 - Vegetation red edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"description\":\"Band\n        6 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        7 - Vegetation red edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"description\":\"Band\n        7 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8 - NIR - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        9 - Water vapor - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"description\":\"Band 9 - Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        11 - SWIR (1.6) - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        12 - SWIR (2.2) - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8A - Vegetation red edge 4 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"rededge\",\"description\":\"Band\n        8A - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Scene\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"True\n        color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        4 - Red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        3 - Green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Aerosol\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        1 - Coastal aerosol - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        2 - Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        3 - Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        4 - Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        5 - Vegetation red edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"description\":\"Band\n        5 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        6 - Vegetation red edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"description\":\"Band\n        6 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        7 - Vegetation red edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"description\":\"Band\n        7 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8 - NIR - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        9 - Water vapor - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"description\":\"Band 9 - Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        11 - SWIR (1.6) - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        12 - SWIR (2.2) - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8A - Vegetation red edge 4 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"rededge\",\"description\":\"Band\n        8A - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Scene\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"True\n        color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        4 - Red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        3 - Green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Aerosol\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        1 - Coastal aerosol - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        2 - Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        3 - Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        4 - Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        5 - Vegetation red edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"description\":\"Band\n        5 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        6 - Vegetation red edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"description\":\"Band\n        6 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        7 - Vegetation red edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"description\":\"Band\n        7 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8 - NIR - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        9 - Water vapor - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"description\":\"Band 9 - Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        11 - SWIR (1.6) - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        12 - SWIR (2.2) - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8A - Vegetation red edge 4 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"rededge\",\"description\":\"Band\n        8A - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Scene\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"True\n        color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        4 - Red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        3 - Green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Aerosol\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        1 - Coastal aerosol - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        2 - Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        3 - Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        4 - Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        5 - Vegetation red edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"description\":\"Band\n        5 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        6 - Vegetation red edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"description\":\"Band\n        6 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        7 - Vegetation red edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"description\":\"Band\n        7 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8 - NIR - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        9 - Water vapor - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"description\":\"Band 9 - Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        11 - SWIR (1.6) - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        12 - SWIR (2.2) - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8A - Vegetation red edge 4 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"rededge\",\"description\":\"Band\n        8A - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Scene\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"True\n        color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        4 - Red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        3 - Green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Aerosol\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        1 - Coastal aerosol - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        2 - Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        3 - Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        4 - Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        5 - Vegetation red edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"description\":\"Band\n        5 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        6 - Vegetation red edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"description\":\"Band\n        6 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        7 - Vegetation red edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"description\":\"Band\n        7 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8 - NIR - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        9 - Water vapor - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"description\":\"Band 9 - Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        11 - SWIR (1.6) - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        12 - SWIR (2.2) - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8A - Vegetation red edge 4 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"rededge\",\"description\":\"Band\n        8A - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Scene\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"True\n        color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        4 - Red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        3 - Green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Aerosol\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        1 - Coastal aerosol - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        2 - Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        3 - Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        4 - Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        5 - Vegetation red edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"description\":\"Band\n        5 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        6 - Vegetation red edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"description\":\"Band\n        6 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        7 - Vegetation red edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"description\":\"Band\n        7 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8 - NIR - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        9 - Water vapor - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"description\":\"Band 9 - Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        11 - SWIR (1.6) - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        12 - SWIR (2.2) - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8A - Vegetation red edge 4 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"rededge\",\"description\":\"Band\n        8A - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Scene\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"True\n        color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        4 - Red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        3 - Green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Aerosol\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        1 - Coastal aerosol - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        2 - Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        3 - Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        4 - Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        5 - Vegetation red edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"description\":\"Band\n        5 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        6 - Vegetation red edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"description\":\"Band\n        6 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        7 - Vegetation red edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"description\":\"Band\n        7 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8 - NIR - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        9 - Water vapor - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"description\":\"Band 9 - Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        11 - SWIR (1.6) - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        12 - SWIR (2.2) - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8A - Vegetation red edge 4 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"rededge\",\"description\":\"Band\n        8A - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Scene\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"True\n        color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        4 - Red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        3 - Green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Aerosol\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        1 - Coastal aerosol - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        2 - Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        3 - Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        4 - Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        5 - Vegetation red edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"description\":\"Band\n        5 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        6 - Vegetation red edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"description\":\"Band\n        6 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        7 - Vegetation red edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"description\":\"Band\n        7 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8 - NIR - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        9 - Water vapor - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"description\":\"Band 9 - Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        11 - SWIR (1.6) - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        12 - SWIR (2.2) - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8A - Vegetation red edge 4 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"rededge\",\"description\":\"Band\n        8A - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Scene\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"True\n        color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        4 - Red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        3 - Green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Aerosol\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        1 - Coastal aerosol - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        2 - Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        3 - Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        4 - Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        5 - Vegetation red edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"description\":\"Band\n        5 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        6 - Vegetation red edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"description\":\"Band\n        6 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        7 - Vegetation red edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"description\":\"Band\n        7 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8 - NIR - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        9 - Water vapor - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"description\":\"Band 9 - Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        11 - SWIR (1.6) - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        12 - SWIR (2.2) - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8A - Vegetation red edge 4 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"rededge\",\"description\":\"Band\n        8A - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Scene\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"True\n        color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        4 - Red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        3 - Green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Aerosol\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        1 - Coastal aerosol - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        2 - Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        3 - Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        4 - Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        5 - Vegetation red edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"description\":\"Band\n        5 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        6 - Vegetation red edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"description\":\"Band\n        6 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        7 - Vegetation red edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"description\":\"Band\n        7 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8 - NIR - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        9 - Water vapor - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"description\":\"Band 9 - Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        11 - SWIR (1.6) - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        12 - SWIR (2.2) - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8A - Vegetation red edge 4 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"rededge\",\"description\":\"Band\n        8A - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Scene\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"True\n        color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        4 - Red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        3 - Green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Aerosol\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        1 - Coastal aerosol - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        2 - Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        3 - Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        4 - Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        5 - Vegetation red edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"description\":\"Band\n        5 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        6 - Vegetation red edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"description\":\"Band\n        6 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        7 - Vegetation red edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"description\":\"Band\n        7 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8 - NIR - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        9 - Water vapor - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"description\":\"Band 9 - Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        11 - SWIR (1.6) - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        12 - SWIR (2.2) - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8A - Vegetation red edge 4 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"rededge\",\"description\":\"Band\n        8A - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Scene\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"True\n        color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        4 - Red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        3 - Green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Aerosol\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        1 - Coastal aerosol - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        2 - Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        3 - Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        4 - Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        5 - Vegetation red edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"description\":\"Band\n        5 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        6 - Vegetation red edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"description\":\"Band\n        6 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        7 - Vegetation red edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"description\":\"Band\n        7 - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8 - NIR - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        9 - Water vapor - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"description\":\"Band 9 - Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        11 - SWIR (1.6) - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        12 - SWIR (2.2) - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"description\":\"Band\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band\n        8A - Vegetation red edge 4 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"rededge\",\"description\":\"Band\n        8A - 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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Scene\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Water\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"True\n        color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band\n        4 - Red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band\n        3 - Green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band\n        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;\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\"}]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '20547'\n      Content-Type:\n      - application/geo+json\n      Date:\n      - Thu, 31 Jul 2025 15:11:35 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T151134Z-r17d779659cgb75vhC1DEN1dss000000064g00000000103f\n    status:\n      code: 200\n      message: OK\nversion: 1\n"
  },
  {
    "path": "tests/cassettes/test_item_search/TestItemSearch.test_deprecations[get_all_items-item_collection-False-True].yaml",
    "content": "interactions:\n- request:\n    body: '{\"limit\": 10, \"bbox\": [-73.21, 43.99, -73.12, 44.05], \"collections\": [\"naip\"]}'\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '78'\n      Content-Type:\n      - application/json\n      User-Agent:\n      - python-requests/2.32.4\n    method: POST\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/search\n  response:\n    body:\n      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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\"}]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '2443'\n      Content-Type:\n      - application/geo+json\n      Date:\n      - Thu, 31 Jul 2025 15:09:08 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150908Z-r17d779659c8vbd8hC1DENmu9s00000001zg000000009kvu\n    status:\n      code: 200\n      message: OK\n- request:\n    body: '{\"limit\": 10, \"bbox\": [-73.21, 43.99, -73.12, 44.05], \"collections\": [\"naip\"],\n      \"token\": \"next:naip:vt_m_4307307_nw_18_060_20211029\"}'\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '132'\n      Content-Type:\n      - application/json\n      User-Agent:\n      - python-requests/2.32.4\n    method: POST\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/search\n  response:\n    body:\n      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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\"}]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '2423'\n      Content-Type:\n      - application/geo+json\n      Date:\n      - Thu, 31 Jul 2025 15:09:09 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150908Z-r17d779659c6gjnhhC1DENcrvc000000022g0000000050nk\n    status:\n      code: 200\n      message: OK\nversion: 1\n"
  },
  {
    "path": "tests/cassettes/test_item_search/TestItemSearch.test_deprecations[get_all_items_as_dict-item_collection_as_dict-False-False].yaml",
    "content": "interactions:\n- request:\n    body: '{\"limit\": 10, \"bbox\": [-73.21, 43.99, -73.12, 44.05], \"collections\": [\"naip\"]}'\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '78'\n      Content-Type:\n      - application/json\n      User-Agent:\n      - python-requests/2.32.4\n    method: POST\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/search\n  response:\n    body:\n      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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\"}]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '2443'\n      Content-Type:\n      - application/geo+json\n      Date:\n      - Thu, 31 Jul 2025 15:09:10 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150909Z-r17d779659c9xxfhhC1DEN13nn0000000620000000004cwv\n    status:\n      code: 200\n      message: OK\n- request:\n    body: '{\"limit\": 10, \"bbox\": [-73.21, 43.99, -73.12, 44.05], \"collections\": [\"naip\"],\n      \"token\": \"next:naip:vt_m_4307307_nw_18_060_20211029\"}'\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '132'\n      Content-Type:\n      - application/json\n      User-Agent:\n      - python-requests/2.32.4\n    method: POST\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/search\n  response:\n    body:\n      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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\"}]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '2423'\n      Content-Type:\n      - application/geo+json\n      Date:\n      - Thu, 31 Jul 2025 15:09:11 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150910Z-r17d779659c9xxfhhC1DEN13nn0000000640000000001s92\n    status:\n      code: 200\n      message: OK\nversion: 1\n"
  },
  {
    "path": "tests/cassettes/test_item_search/TestItemSearch.test_deprecations[get_item_collections-pages-True-True].yaml",
    "content": "interactions:\n- request:\n    body: '{\"limit\": 10, \"bbox\": [-73.21, 43.99, -73.12, 44.05], \"collections\": [\"naip\"]}'\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '78'\n      Content-Type:\n      - application/json\n      User-Agent:\n      - python-requests/2.32.4\n    method: POST\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/search\n  response:\n    body:\n      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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\"}]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '2443'\n      Content-Type:\n      - application/geo+json\n      Date:\n      - Thu, 31 Jul 2025 15:08:37 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150836Z-r17d779659cmbwwwhC1DENxr0c00000003mg000000006gv9\n    status:\n      code: 200\n      message: OK\n- request:\n    body: '{\"limit\": 10, \"bbox\": [-73.21, 43.99, -73.12, 44.05], \"collections\": [\"naip\"],\n      \"token\": \"next:naip:vt_m_4307307_nw_18_060_20211029\"}'\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '132'\n      Content-Type:\n      - application/json\n      User-Agent:\n      - python-requests/2.32.4\n    method: POST\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/search\n  response:\n    body:\n      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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\"}]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '2423'\n      Content-Type:\n      - application/geo+json\n      Date:\n      - Thu, 31 Jul 2025 15:08:38 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150837Z-r17d779659cdp9hwhC1DEN390s00000003m0000000005f24\n    status:\n      code: 200\n      message: OK\n- request:\n    body: '{\"limit\": 10, \"bbox\": [-73.21, 43.99, -73.12, 44.05], \"collections\": [\"naip\"]}'\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '78'\n      Content-Type:\n      - application/json\n      User-Agent:\n      - python-requests/2.32.4\n    method: POST\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/search\n  response:\n    body:\n      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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\"}]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '2443'\n      Content-Type:\n      - application/geo+json\n      Date:\n      - Thu, 31 Jul 2025 15:08:38 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150838Z-r17d779659cgv7lqhC1DENzvbg00000003h0000000008v6w\n    status:\n      code: 200\n      message: OK\n- request:\n    body: '{\"limit\": 10, \"bbox\": [-73.21, 43.99, -73.12, 44.05], \"collections\": [\"naip\"],\n      \"token\": \"next:naip:vt_m_4307307_nw_18_060_20211029\"}'\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '132'\n      Content-Type:\n      - application/json\n      User-Agent:\n      - python-requests/2.32.4\n    method: POST\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/search\n  response:\n    body:\n      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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\"}]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '2423'\n      Content-Type:\n      - application/geo+json\n      Date:\n      - Thu, 31 Jul 2025 15:08:39 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150838Z-r17d779659cgv7lqhC1DENzvbg00000003gg000000009b0p\n    status:\n      code: 200\n      message: OK\nversion: 1\n"
  },
  {
    "path": "tests/cassettes/test_item_search/TestItemSearch.test_deprecations[get_items-items-True-True].yaml",
    "content": "interactions:\n- request:\n    body: '{\"limit\": 10, \"bbox\": [-73.21, 43.99, -73.12, 44.05], \"collections\": [\"naip\"]}'\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '78'\n      Content-Type:\n      - application/json\n      User-Agent:\n      - python-requests/2.32.4\n    method: POST\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/search\n  response:\n    body:\n      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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\"}]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '2443'\n      Content-Type:\n      - application/geo+json\n      Date:\n      - Thu, 31 Jul 2025 15:08:42 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150842Z-r17d779659csvfh6hC1DENnnr400000004q0000000000zxd\n    status:\n      code: 200\n      message: OK\n- request:\n    body: '{\"limit\": 10, \"bbox\": [-73.21, 43.99, -73.12, 44.05], \"collections\": [\"naip\"],\n      \"token\": \"next:naip:vt_m_4307307_nw_18_060_20211029\"}'\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '132'\n      Content-Type:\n      - application/json\n      User-Agent:\n      - python-requests/2.32.4\n    method: POST\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/search\n  response:\n    body:\n      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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\"}]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '2423'\n      Content-Type:\n      - application/geo+json\n      Date:\n      - Thu, 31 Jul 2025 15:08:43 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150842Z-r17d779659cxsjnnhC1DENgtwc00000002300000000068dq\n    status:\n      code: 200\n      message: OK\n- request:\n    body: '{\"limit\": 10, \"bbox\": [-73.21, 43.99, -73.12, 44.05], \"collections\": [\"naip\"]}'\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '78'\n      Content-Type:\n      - application/json\n      User-Agent:\n      - python-requests/2.32.4\n    method: POST\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/search\n  response:\n    body:\n      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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\"}]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '2443'\n      Content-Type:\n      - application/geo+json\n      Date:\n      - Thu, 31 Jul 2025 15:08:44 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150843Z-r17d779659cqdtckhC1DENvakn0000000250000000002zrt\n    status:\n      code: 200\n      message: OK\n- request:\n    body: '{\"limit\": 10, \"bbox\": [-73.21, 43.99, -73.12, 44.05], \"collections\": [\"naip\"],\n      \"token\": \"next:naip:vt_m_4307307_nw_18_060_20211029\"}'\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '132'\n      Content-Type:\n      - application/json\n      User-Agent:\n      - python-requests/2.32.4\n    method: POST\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/search\n  response:\n    body:\n      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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\"}]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '2423'\n      Content-Type:\n      - application/geo+json\n      Date:\n      - Thu, 31 Jul 2025 15:08:44 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150844Z-r17d779659cz4m9lhC1DENepy00000000250000000002f8p\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Connection:\n      - close\n      Host:\n      - planetarycomputer.microsoft.com\n      User-Agent:\n      - Python-urllib/3.12\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/\n  response:\n    body:\n      string: '{\"type\":\"Catalog\",\"id\":\"microsoft-pc\",\"title\":\"Microsoft Planetary\n        Computer STAC API\",\"description\":\"Searchable spatiotemporal metadata describing\n        Earth science datasets hosted by the Microsoft Planetary Computer\",\"stac_version\":\"1.0.0\",\"conformsTo\":[\"https://api.stacspec.org/v1.0.0/item-search#fields\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30\",\"https://api.stacspec.org/v1.0.0/item-search\",\"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/collections\",\"https://api.stacspec.org/v1.0.0-rc.2/item-search#filter\",\"http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-text\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-json\",\"http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter\",\"https://api.stacspec.org/v1.0.0/core\",\"https://api.stacspec.org/v1.0.0/item-search#sort\",\"https://api.stacspec.org/v1.0.0/ogcapi-features\"],\"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\n        conformance classes implemented by this server\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/conformance\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        search\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/search\",\"method\":\"GET\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        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\n        Annual Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Seamless DEMs\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Surface Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Forest\n        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\n        Annual North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Annual Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Tables\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HGB:\n        Harmonized Global Biomass for 2010\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        DEM GLO-30\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        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\n        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\n        IMERG\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Rasters\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Height above Ground\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        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\n        1 Radiometrically Terrain Corrected (RTC)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Intensity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Source\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MTBS:\n        Monitoring Trends in Burn Severity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"C-CAP\n        Regional Land Cover and Change\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Cloud\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Burned Area Monthly\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        Forest/Non-Forest Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Returns\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MoBI:\n        Map of Biodiversity Importance\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ERA5\n        - PDS\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chloris\n        Biomass\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HydroForecast\n        - Kwando & Upper Zambezi Rivers\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Planet-NICFI\n        Basemaps (Analytic)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Gross Primary Productivity 8-Day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Daily Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        3DEP Lidar Classification\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Terrain Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        Gap Land Cover\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Basemaps (Visual)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Global\n        Biodiversity Information Facility (GBIF)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        World 3D-30m\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        PALSAR Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Water Availability\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Net Evapotranspiration Yearly Gap-Filled\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Census\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"JRC\n        Global Surface Water\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Flood Maps\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Thermal Anomalies/Fire Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HREA:\n        High Resolution Electricity Access\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Vegetation Indices 16-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Level-2A\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Land Surface Temperature/Emissivity Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Vegetation Indices 16-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Land\n        Cover of Canada\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Snow Cover 8-day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ECMWF\n        Open Data (real-time)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        HGT v001\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Esri\n        10-Meter Land Cover (10-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-1\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Denver\n        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\n        Land Cover (7-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Cover (13-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Use\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        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\n        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\n        Cropland Data Layers (CDLs)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Urban\n        Innovation Eclipse Sensor Data\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ESA\n        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\n        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\n        National Wetlands Inventory\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        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\n        US Tabular Climate Normals\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        Lightning Detection\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel\n        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\n        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\n        L1T\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"CIL\n        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:\n        National Agriculture Imagery Program\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        Intactness\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sea\n        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\n        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\n        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\n        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\n        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\n        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\n        Snow Cover Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-5P\n        Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        Building Footprints\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        service description\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json\"},{\"rel\":\"service-doc\",\"type\":\"text/html\",\"title\":\"OpenAPI\n        service documentation\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/docs\"}],\"stac_extensions\":[]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - close\n      Content-Length:\n      - '24872'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:08:45 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      x-azure-ref:\n      - 20250731T150845Z-r17d779659cjc42zhC1DENr5f800000005z00000000083te\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Connection:\n      - close\n      Host:\n      - planetarycomputer.microsoft.com\n      User-Agent:\n      - Python-urllib/3.12\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/\n  response:\n    body:\n      string: '{\"type\":\"Catalog\",\"id\":\"microsoft-pc\",\"title\":\"Microsoft Planetary\n        Computer STAC API\",\"description\":\"Searchable spatiotemporal metadata describing\n        Earth science datasets hosted by the Microsoft Planetary Computer\",\"stac_version\":\"1.0.0\",\"conformsTo\":[\"https://api.stacspec.org/v1.0.0/item-search#fields\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30\",\"https://api.stacspec.org/v1.0.0/item-search\",\"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/collections\",\"https://api.stacspec.org/v1.0.0-rc.2/item-search#filter\",\"http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-text\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-json\",\"http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter\",\"https://api.stacspec.org/v1.0.0/core\",\"https://api.stacspec.org/v1.0.0/item-search#sort\",\"https://api.stacspec.org/v1.0.0/ogcapi-features\"],\"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\n        conformance classes implemented by this server\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/conformance\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        search\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/search\",\"method\":\"GET\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        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\n        Annual Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Seamless DEMs\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Surface Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Forest\n        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\n        Annual North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Annual Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Tables\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HGB:\n        Harmonized Global Biomass for 2010\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        DEM GLO-30\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        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\n        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\n        IMERG\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Rasters\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Height above Ground\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        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\n        1 Radiometrically Terrain Corrected (RTC)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Intensity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Source\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MTBS:\n        Monitoring Trends in Burn Severity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"C-CAP\n        Regional Land Cover and Change\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Cloud\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Burned Area Monthly\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        Forest/Non-Forest Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Returns\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MoBI:\n        Map of Biodiversity Importance\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ERA5\n        - PDS\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chloris\n        Biomass\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HydroForecast\n        - Kwando & Upper Zambezi Rivers\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Planet-NICFI\n        Basemaps (Analytic)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Gross Primary Productivity 8-Day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Daily Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        3DEP Lidar Classification\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Terrain Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        Gap Land Cover\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Basemaps (Visual)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Global\n        Biodiversity Information Facility (GBIF)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        World 3D-30m\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        PALSAR Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Water Availability\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Net Evapotranspiration Yearly Gap-Filled\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Census\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"JRC\n        Global Surface Water\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Flood Maps\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Thermal Anomalies/Fire Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HREA:\n        High Resolution Electricity Access\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Vegetation Indices 16-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Level-2A\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Land Surface Temperature/Emissivity Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Vegetation Indices 16-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Land\n        Cover of Canada\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Snow Cover 8-day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ECMWF\n        Open Data (real-time)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        HGT v001\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Esri\n        10-Meter Land Cover (10-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-1\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Denver\n        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\n        Land Cover (7-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Cover (13-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Use\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        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\n        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\n        Cropland Data Layers (CDLs)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Urban\n        Innovation Eclipse Sensor Data\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ESA\n        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\n        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\n        National Wetlands Inventory\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        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\n        US Tabular Climate Normals\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        Lightning Detection\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel\n        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\n        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\n        L1T\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"CIL\n        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:\n        National Agriculture Imagery Program\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        Intactness\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sea\n        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\n        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\n        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\n        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\n        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\n        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\n        Snow Cover Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-5P\n        Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        Building Footprints\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        service description\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json\"},{\"rel\":\"service-doc\",\"type\":\"text/html\",\"title\":\"OpenAPI\n        service documentation\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/docs\"}],\"stac_extensions\":[]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - close\n      Content-Length:\n      - '24872'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:08:46 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      x-azure-ref:\n      - 20250731T150845Z-r17d779659cxsjnnhC1DENgtwc000000020g000000008c0e\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Connection:\n      - close\n      Host:\n      - planetarycomputer.microsoft.com\n      User-Agent:\n      - Python-urllib/3.12\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/\n  response:\n    body:\n      string: '{\"type\":\"Catalog\",\"id\":\"microsoft-pc\",\"title\":\"Microsoft Planetary\n        Computer STAC API\",\"description\":\"Searchable spatiotemporal metadata describing\n        Earth science datasets hosted by the Microsoft Planetary Computer\",\"stac_version\":\"1.0.0\",\"conformsTo\":[\"https://api.stacspec.org/v1.0.0/item-search#fields\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30\",\"https://api.stacspec.org/v1.0.0/item-search\",\"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/collections\",\"https://api.stacspec.org/v1.0.0-rc.2/item-search#filter\",\"http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-text\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-json\",\"http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter\",\"https://api.stacspec.org/v1.0.0/core\",\"https://api.stacspec.org/v1.0.0/item-search#sort\",\"https://api.stacspec.org/v1.0.0/ogcapi-features\"],\"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\n        conformance classes implemented by this server\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/conformance\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        search\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/search\",\"method\":\"GET\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        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\n        Annual Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Seamless DEMs\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Surface Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Forest\n        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\n        Annual North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Annual Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Tables\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HGB:\n        Harmonized Global Biomass for 2010\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        DEM GLO-30\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        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\n        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\n        IMERG\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Rasters\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Height above Ground\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        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\n        1 Radiometrically Terrain Corrected (RTC)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Intensity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Source\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MTBS:\n        Monitoring Trends in Burn Severity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"C-CAP\n        Regional Land Cover and Change\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Cloud\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Burned Area Monthly\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        Forest/Non-Forest Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Returns\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MoBI:\n        Map of Biodiversity Importance\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ERA5\n        - PDS\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chloris\n        Biomass\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HydroForecast\n        - Kwando & Upper Zambezi Rivers\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Planet-NICFI\n        Basemaps (Analytic)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Gross Primary Productivity 8-Day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Daily Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        3DEP Lidar Classification\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Terrain Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        Gap Land Cover\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Basemaps (Visual)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Global\n        Biodiversity Information Facility (GBIF)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        World 3D-30m\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        PALSAR Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Water Availability\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Net Evapotranspiration Yearly Gap-Filled\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Census\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"JRC\n        Global Surface Water\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Flood Maps\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Thermal Anomalies/Fire Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HREA:\n        High Resolution Electricity Access\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Vegetation Indices 16-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Level-2A\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Land Surface Temperature/Emissivity Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Vegetation Indices 16-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Land\n        Cover of Canada\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Snow Cover 8-day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ECMWF\n        Open Data (real-time)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        HGT v001\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Esri\n        10-Meter Land Cover (10-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-1\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Denver\n        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\n        Land Cover (7-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Cover (13-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Use\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        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\n        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\n        Cropland Data Layers (CDLs)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Urban\n        Innovation Eclipse Sensor Data\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ESA\n        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\n        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\n        National Wetlands Inventory\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        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\n        US Tabular Climate Normals\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        Lightning Detection\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel\n        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\n        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\n        L1T\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"CIL\n        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:\n        National Agriculture Imagery Program\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        Intactness\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sea\n        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\n        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\n        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\n        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\n        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\n        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\n        Snow Cover Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-5P\n        Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        Building Footprints\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        service description\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json\"},{\"rel\":\"service-doc\",\"type\":\"text/html\",\"title\":\"OpenAPI\n        service documentation\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/docs\"}],\"stac_extensions\":[]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - close\n      Content-Length:\n      - '24872'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:08:46 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      x-azure-ref:\n      - 20250731T150846Z-r17d779659cnj9cghC1DENr2m800000004fg000000008r53\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Connection:\n      - close\n      Host:\n      - planetarycomputer.microsoft.com\n      User-Agent:\n      - Python-urllib/3.12\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/\n  response:\n    body:\n      string: '{\"type\":\"Catalog\",\"id\":\"microsoft-pc\",\"title\":\"Microsoft Planetary\n        Computer STAC API\",\"description\":\"Searchable spatiotemporal metadata describing\n        Earth science datasets hosted by the Microsoft Planetary Computer\",\"stac_version\":\"1.0.0\",\"conformsTo\":[\"https://api.stacspec.org/v1.0.0/item-search#fields\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30\",\"https://api.stacspec.org/v1.0.0/item-search\",\"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/collections\",\"https://api.stacspec.org/v1.0.0-rc.2/item-search#filter\",\"http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-text\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-json\",\"http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter\",\"https://api.stacspec.org/v1.0.0/core\",\"https://api.stacspec.org/v1.0.0/item-search#sort\",\"https://api.stacspec.org/v1.0.0/ogcapi-features\"],\"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\n        conformance classes implemented by this server\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/conformance\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        search\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/search\",\"method\":\"GET\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        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\n        Annual Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Seamless DEMs\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Surface Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Forest\n        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\n        Annual North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Annual Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Tables\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HGB:\n        Harmonized Global Biomass for 2010\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        DEM GLO-30\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        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\n        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\n        IMERG\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Rasters\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Height above Ground\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        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\n        1 Radiometrically Terrain Corrected (RTC)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Intensity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Source\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MTBS:\n        Monitoring Trends in Burn Severity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"C-CAP\n        Regional Land Cover and Change\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Cloud\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Burned Area Monthly\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        Forest/Non-Forest Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Returns\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MoBI:\n        Map of Biodiversity Importance\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ERA5\n        - PDS\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chloris\n        Biomass\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HydroForecast\n        - Kwando & Upper Zambezi Rivers\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Planet-NICFI\n        Basemaps (Analytic)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Gross Primary Productivity 8-Day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Daily Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        3DEP Lidar Classification\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Terrain Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        Gap Land Cover\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Basemaps (Visual)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Global\n        Biodiversity Information Facility (GBIF)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        World 3D-30m\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        PALSAR Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Water Availability\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Net Evapotranspiration Yearly Gap-Filled\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Census\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"JRC\n        Global Surface Water\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Flood Maps\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Thermal Anomalies/Fire Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HREA:\n        High Resolution Electricity Access\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Vegetation Indices 16-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Level-2A\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Land Surface Temperature/Emissivity Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Vegetation Indices 16-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Land\n        Cover of Canada\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Snow Cover 8-day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ECMWF\n        Open Data (real-time)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        HGT v001\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Esri\n        10-Meter Land Cover (10-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-1\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Denver\n        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\n        Land Cover (7-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Cover (13-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Use\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        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\n        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\n        Cropland Data Layers (CDLs)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Urban\n        Innovation Eclipse Sensor Data\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ESA\n        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\n        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\n        National Wetlands Inventory\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        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\n        US Tabular Climate Normals\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        Lightning Detection\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel\n        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\n        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\n        L1T\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"CIL\n        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:\n        National Agriculture Imagery Program\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        Intactness\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sea\n        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\n        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\n        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\n        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\n        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\n        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\n        Snow Cover Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-5P\n        Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        Building Footprints\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        service description\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json\"},{\"rel\":\"service-doc\",\"type\":\"text/html\",\"title\":\"OpenAPI\n        service documentation\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/docs\"}],\"stac_extensions\":[]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - close\n      Content-Length:\n      - '24872'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:08:47 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      x-azure-ref:\n      - 20250731T150846Z-r17d779659c7hhsdhC1DEN7tww0000000620000000003ukg\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Connection:\n      - close\n      Host:\n      - planetarycomputer.microsoft.com\n      User-Agent:\n      - Python-urllib/3.12\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/\n  response:\n    body:\n      string: '{\"type\":\"Catalog\",\"id\":\"microsoft-pc\",\"title\":\"Microsoft Planetary\n        Computer STAC API\",\"description\":\"Searchable spatiotemporal metadata describing\n        Earth science datasets hosted by the Microsoft Planetary Computer\",\"stac_version\":\"1.0.0\",\"conformsTo\":[\"https://api.stacspec.org/v1.0.0/item-search#fields\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30\",\"https://api.stacspec.org/v1.0.0/item-search\",\"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/collections\",\"https://api.stacspec.org/v1.0.0-rc.2/item-search#filter\",\"http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-text\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-json\",\"http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter\",\"https://api.stacspec.org/v1.0.0/core\",\"https://api.stacspec.org/v1.0.0/item-search#sort\",\"https://api.stacspec.org/v1.0.0/ogcapi-features\"],\"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\n        conformance classes implemented by this server\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/conformance\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        search\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/search\",\"method\":\"GET\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        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\n        Annual Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Seamless DEMs\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Surface Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Forest\n        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\n        Annual North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Annual Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Tables\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HGB:\n        Harmonized Global Biomass for 2010\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        DEM GLO-30\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        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\n        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\n        IMERG\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Rasters\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Height above Ground\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        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\n        1 Radiometrically Terrain Corrected (RTC)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Intensity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Source\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MTBS:\n        Monitoring Trends in Burn Severity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"C-CAP\n        Regional Land Cover and Change\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Cloud\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Burned Area Monthly\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        Forest/Non-Forest Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Returns\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MoBI:\n        Map of Biodiversity Importance\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ERA5\n        - PDS\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chloris\n        Biomass\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HydroForecast\n        - Kwando & Upper Zambezi Rivers\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Planet-NICFI\n        Basemaps (Analytic)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Gross Primary Productivity 8-Day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Daily Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        3DEP Lidar Classification\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Terrain Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        Gap Land Cover\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Basemaps (Visual)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Global\n        Biodiversity Information Facility (GBIF)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        World 3D-30m\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        PALSAR Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Water Availability\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Net Evapotranspiration Yearly Gap-Filled\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Census\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"JRC\n        Global Surface Water\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Flood Maps\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Thermal Anomalies/Fire Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HREA:\n        High Resolution Electricity Access\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Vegetation Indices 16-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Level-2A\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Land Surface Temperature/Emissivity Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Vegetation Indices 16-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Land\n        Cover of Canada\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Snow Cover 8-day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ECMWF\n        Open Data (real-time)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        HGT v001\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Esri\n        10-Meter Land Cover (10-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-1\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Denver\n        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\n        Land Cover (7-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Cover (13-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Use\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        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\n        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\n        Cropland Data Layers (CDLs)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Urban\n        Innovation Eclipse Sensor Data\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ESA\n        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\n        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\n        National Wetlands Inventory\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        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\n        US Tabular Climate Normals\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        Lightning Detection\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel\n        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\n        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\n        L1T\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"CIL\n        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:\n        National Agriculture Imagery Program\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        Intactness\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sea\n        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\n        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\n        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\n        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\n        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\n        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\n        Snow Cover Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-5P\n        Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        Building Footprints\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        service description\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json\"},{\"rel\":\"service-doc\",\"type\":\"text/html\",\"title\":\"OpenAPI\n        service documentation\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/docs\"}],\"stac_extensions\":[]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - close\n      Content-Length:\n      - '24872'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:08:47 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      x-azure-ref:\n      - 20250731T150847Z-r17d779659cjc42zhC1DENr5f800000005z00000000083z9\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Connection:\n      - close\n      Host:\n      - planetarycomputer.microsoft.com\n      User-Agent:\n      - Python-urllib/3.12\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/\n  response:\n    body:\n      string: '{\"type\":\"Catalog\",\"id\":\"microsoft-pc\",\"title\":\"Microsoft Planetary\n        Computer STAC API\",\"description\":\"Searchable spatiotemporal metadata describing\n        Earth science datasets hosted by the Microsoft Planetary Computer\",\"stac_version\":\"1.0.0\",\"conformsTo\":[\"https://api.stacspec.org/v1.0.0/item-search#fields\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30\",\"https://api.stacspec.org/v1.0.0/item-search\",\"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/collections\",\"https://api.stacspec.org/v1.0.0-rc.2/item-search#filter\",\"http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-text\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-json\",\"http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter\",\"https://api.stacspec.org/v1.0.0/core\",\"https://api.stacspec.org/v1.0.0/item-search#sort\",\"https://api.stacspec.org/v1.0.0/ogcapi-features\"],\"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\n        conformance classes implemented by this server\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/conformance\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        search\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/search\",\"method\":\"GET\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        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\n        Annual Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Seamless DEMs\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Surface Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Forest\n        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\n        Annual North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Annual Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Tables\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HGB:\n        Harmonized Global Biomass for 2010\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        DEM GLO-30\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        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\n        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\n        IMERG\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Rasters\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Height above Ground\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        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\n        1 Radiometrically Terrain Corrected (RTC)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Intensity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Source\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MTBS:\n        Monitoring Trends in Burn Severity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"C-CAP\n        Regional Land Cover and Change\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Cloud\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Burned Area Monthly\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        Forest/Non-Forest Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Returns\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MoBI:\n        Map of Biodiversity Importance\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ERA5\n        - PDS\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chloris\n        Biomass\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HydroForecast\n        - Kwando & Upper Zambezi Rivers\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Planet-NICFI\n        Basemaps (Analytic)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Gross Primary Productivity 8-Day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Daily Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        3DEP Lidar Classification\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Terrain Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        Gap Land Cover\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Basemaps (Visual)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Global\n        Biodiversity Information Facility (GBIF)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        World 3D-30m\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        PALSAR Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Water Availability\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Net Evapotranspiration Yearly Gap-Filled\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Census\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"JRC\n        Global Surface Water\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Flood Maps\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Thermal Anomalies/Fire Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HREA:\n        High Resolution Electricity Access\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Vegetation Indices 16-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Level-2A\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Land Surface Temperature/Emissivity Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Vegetation Indices 16-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Land\n        Cover of Canada\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Snow Cover 8-day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ECMWF\n        Open Data (real-time)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        HGT v001\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Esri\n        10-Meter Land Cover (10-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-1\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Denver\n        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\n        Land Cover (7-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Cover (13-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Use\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        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\n        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\n        Cropland Data Layers (CDLs)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Urban\n        Innovation Eclipse Sensor Data\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ESA\n        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\n        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\n        National Wetlands Inventory\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        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\n        US Tabular Climate Normals\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        Lightning Detection\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel\n        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\n        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\n        L1T\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"CIL\n        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:\n        National Agriculture Imagery Program\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        Intactness\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sea\n        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\n        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\n        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\n        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\n        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\n        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\n        Snow Cover Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-5P\n        Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        Building Footprints\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        service description\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json\"},{\"rel\":\"service-doc\",\"type\":\"text/html\",\"title\":\"OpenAPI\n        service documentation\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/docs\"}],\"stac_extensions\":[]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - close\n      Content-Length:\n      - '24872'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:08:48 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      x-azure-ref:\n      - 20250731T150847Z-r17d779659cgv7lqhC1DENzvbg00000003p0000000003f9s\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Connection:\n      - close\n      Host:\n      - planetarycomputer.microsoft.com\n      User-Agent:\n      - Python-urllib/3.12\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/\n  response:\n    body:\n      string: '{\"type\":\"Catalog\",\"id\":\"microsoft-pc\",\"title\":\"Microsoft Planetary\n        Computer STAC API\",\"description\":\"Searchable spatiotemporal metadata describing\n        Earth science datasets hosted by the Microsoft Planetary Computer\",\"stac_version\":\"1.0.0\",\"conformsTo\":[\"https://api.stacspec.org/v1.0.0/item-search#fields\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30\",\"https://api.stacspec.org/v1.0.0/item-search\",\"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/collections\",\"https://api.stacspec.org/v1.0.0-rc.2/item-search#filter\",\"http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-text\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-json\",\"http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter\",\"https://api.stacspec.org/v1.0.0/core\",\"https://api.stacspec.org/v1.0.0/item-search#sort\",\"https://api.stacspec.org/v1.0.0/ogcapi-features\"],\"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\n        conformance classes implemented by this server\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/conformance\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        search\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/search\",\"method\":\"GET\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        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\n        Annual Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Seamless DEMs\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Surface Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Forest\n        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\n        Annual North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Annual Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Tables\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HGB:\n        Harmonized Global Biomass for 2010\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        DEM GLO-30\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        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\n        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\n        IMERG\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Rasters\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Height above Ground\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        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\n        1 Radiometrically Terrain Corrected (RTC)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Intensity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Source\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MTBS:\n        Monitoring Trends in Burn Severity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"C-CAP\n        Regional Land Cover and Change\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Cloud\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Burned Area Monthly\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        Forest/Non-Forest Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Returns\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MoBI:\n        Map of Biodiversity Importance\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ERA5\n        - PDS\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chloris\n        Biomass\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HydroForecast\n        - Kwando & Upper Zambezi Rivers\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Planet-NICFI\n        Basemaps (Analytic)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Gross Primary Productivity 8-Day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Daily Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        3DEP Lidar Classification\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Terrain Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        Gap Land Cover\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Basemaps (Visual)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Global\n        Biodiversity Information Facility (GBIF)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        World 3D-30m\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        PALSAR Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Water Availability\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Net Evapotranspiration Yearly Gap-Filled\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Census\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"JRC\n        Global Surface Water\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Flood Maps\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Thermal Anomalies/Fire Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HREA:\n        High Resolution Electricity Access\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Vegetation Indices 16-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Level-2A\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Land Surface Temperature/Emissivity Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Vegetation Indices 16-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Land\n        Cover of Canada\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Snow Cover 8-day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ECMWF\n        Open Data (real-time)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        HGT v001\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Esri\n        10-Meter Land Cover (10-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-1\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Denver\n        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\n        Land Cover (7-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Cover (13-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Use\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        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\n        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\n        Cropland Data Layers (CDLs)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Urban\n        Innovation Eclipse Sensor Data\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ESA\n        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\n        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\n        National Wetlands Inventory\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        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\n        US Tabular Climate Normals\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        Lightning Detection\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel\n        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\n        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\n        L1T\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"CIL\n        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:\n        National Agriculture Imagery Program\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        Intactness\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sea\n        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\n        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\n        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\n        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\n        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\n        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\n        Snow Cover Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-5P\n        Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        Building Footprints\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        service description\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json\"},{\"rel\":\"service-doc\",\"type\":\"text/html\",\"title\":\"OpenAPI\n        service documentation\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/docs\"}],\"stac_extensions\":[]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - close\n      Content-Length:\n      - '24872'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:08:48 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      x-azure-ref:\n      - 20250731T150848Z-r17d779659cgb75vhC1DEN1dss000000061000000000598h\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Connection:\n      - close\n      Host:\n      - planetarycomputer.microsoft.com\n      User-Agent:\n      - Python-urllib/3.12\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/\n  response:\n    body:\n      string: '{\"type\":\"Catalog\",\"id\":\"microsoft-pc\",\"title\":\"Microsoft Planetary\n        Computer STAC API\",\"description\":\"Searchable spatiotemporal metadata describing\n        Earth science datasets hosted by the Microsoft Planetary Computer\",\"stac_version\":\"1.0.0\",\"conformsTo\":[\"https://api.stacspec.org/v1.0.0/item-search#fields\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30\",\"https://api.stacspec.org/v1.0.0/item-search\",\"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/collections\",\"https://api.stacspec.org/v1.0.0-rc.2/item-search#filter\",\"http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-text\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-json\",\"http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter\",\"https://api.stacspec.org/v1.0.0/core\",\"https://api.stacspec.org/v1.0.0/item-search#sort\",\"https://api.stacspec.org/v1.0.0/ogcapi-features\"],\"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\n        conformance classes implemented by this server\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/conformance\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        search\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/search\",\"method\":\"GET\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        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\n        Annual Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Seamless DEMs\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Surface Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Forest\n        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\n        Annual North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Annual Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Tables\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HGB:\n        Harmonized Global Biomass for 2010\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        DEM GLO-30\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        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\n        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\n        IMERG\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Rasters\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Height above Ground\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        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\n        1 Radiometrically Terrain Corrected (RTC)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Intensity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Source\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MTBS:\n        Monitoring Trends in Burn Severity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"C-CAP\n        Regional Land Cover and Change\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Cloud\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Burned Area Monthly\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        Forest/Non-Forest Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Returns\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MoBI:\n        Map of Biodiversity Importance\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ERA5\n        - PDS\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chloris\n        Biomass\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HydroForecast\n        - Kwando & Upper Zambezi Rivers\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Planet-NICFI\n        Basemaps (Analytic)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Gross Primary Productivity 8-Day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Daily Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        3DEP Lidar Classification\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Terrain Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        Gap Land Cover\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Basemaps (Visual)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Global\n        Biodiversity Information Facility (GBIF)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        World 3D-30m\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        PALSAR Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Water Availability\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Net Evapotranspiration Yearly Gap-Filled\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Census\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"JRC\n        Global Surface Water\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Flood Maps\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Thermal Anomalies/Fire Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HREA:\n        High Resolution Electricity Access\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Vegetation Indices 16-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Level-2A\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Land Surface Temperature/Emissivity Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Vegetation Indices 16-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Land\n        Cover of Canada\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Snow Cover 8-day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ECMWF\n        Open Data (real-time)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        HGT v001\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Esri\n        10-Meter Land Cover (10-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-1\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Denver\n        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\n        Land Cover (7-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Cover (13-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Use\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        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\n        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\n        Cropland Data Layers (CDLs)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Urban\n        Innovation Eclipse Sensor Data\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ESA\n        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\n        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\n        National Wetlands Inventory\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        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\n        US Tabular Climate Normals\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        Lightning Detection\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel\n        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\n        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\n        L1T\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"CIL\n        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:\n        National Agriculture Imagery Program\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        Intactness\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sea\n        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\n        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\n        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\n        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\n        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\n        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\n        Snow Cover Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-5P\n        Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        Building Footprints\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        service description\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json\"},{\"rel\":\"service-doc\",\"type\":\"text/html\",\"title\":\"OpenAPI\n        service documentation\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/docs\"}],\"stac_extensions\":[]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - close\n      Content-Length:\n      - '24872'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:08:49 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      x-azure-ref:\n      - 20250731T150848Z-r17d779659c6gjnhhC1DENcrvc0000000200000000008ng3\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Connection:\n      - close\n      Host:\n      - planetarycomputer.microsoft.com\n      User-Agent:\n      - Python-urllib/3.12\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/\n  response:\n    body:\n      string: '{\"type\":\"Catalog\",\"id\":\"microsoft-pc\",\"title\":\"Microsoft Planetary\n        Computer STAC API\",\"description\":\"Searchable spatiotemporal metadata describing\n        Earth science datasets hosted by the Microsoft Planetary Computer\",\"stac_version\":\"1.0.0\",\"conformsTo\":[\"https://api.stacspec.org/v1.0.0/item-search#fields\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30\",\"https://api.stacspec.org/v1.0.0/item-search\",\"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/collections\",\"https://api.stacspec.org/v1.0.0-rc.2/item-search#filter\",\"http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-text\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-json\",\"http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter\",\"https://api.stacspec.org/v1.0.0/core\",\"https://api.stacspec.org/v1.0.0/item-search#sort\",\"https://api.stacspec.org/v1.0.0/ogcapi-features\"],\"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\n        conformance classes implemented by this server\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/conformance\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        search\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/search\",\"method\":\"GET\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        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\n        Annual Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Seamless DEMs\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Surface Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Forest\n        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\n        Annual North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Annual Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Tables\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HGB:\n        Harmonized Global Biomass for 2010\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        DEM GLO-30\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        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\n        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\n        IMERG\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Rasters\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Height above Ground\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        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\n        1 Radiometrically Terrain Corrected (RTC)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Intensity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Source\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MTBS:\n        Monitoring Trends in Burn Severity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"C-CAP\n        Regional Land Cover and Change\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Cloud\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Burned Area Monthly\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        Forest/Non-Forest Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Returns\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MoBI:\n        Map of Biodiversity Importance\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ERA5\n        - PDS\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chloris\n        Biomass\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HydroForecast\n        - Kwando & Upper Zambezi Rivers\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Planet-NICFI\n        Basemaps (Analytic)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Gross Primary Productivity 8-Day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Daily Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        3DEP Lidar Classification\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Terrain Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        Gap Land Cover\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Basemaps (Visual)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Global\n        Biodiversity Information Facility (GBIF)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        World 3D-30m\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        PALSAR Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Water Availability\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Net Evapotranspiration Yearly Gap-Filled\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Census\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"JRC\n        Global Surface Water\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Flood Maps\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Thermal Anomalies/Fire Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HREA:\n        High Resolution Electricity Access\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Vegetation Indices 16-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Level-2A\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Land Surface Temperature/Emissivity Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Vegetation Indices 16-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Land\n        Cover of Canada\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Snow Cover 8-day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ECMWF\n        Open Data (real-time)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        HGT v001\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Esri\n        10-Meter Land Cover (10-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-1\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Denver\n        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\n        Land Cover (7-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Cover (13-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Use\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        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\n        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\n        Cropland Data Layers (CDLs)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Urban\n        Innovation Eclipse Sensor Data\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ESA\n        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\n        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\n        National Wetlands Inventory\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        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\n        US Tabular Climate Normals\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        Lightning Detection\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel\n        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\n        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\n        L1T\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"CIL\n        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:\n        National Agriculture Imagery Program\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        Intactness\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sea\n        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\n        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\n        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\n        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\n        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\n        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\n        Snow Cover Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-5P\n        Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        Building Footprints\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        service description\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json\"},{\"rel\":\"service-doc\",\"type\":\"text/html\",\"title\":\"OpenAPI\n        service documentation\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/docs\"}],\"stac_extensions\":[]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - close\n      Content-Length:\n      - '24872'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:08:49 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      x-azure-ref:\n      - 20250731T150849Z-r17d779659cqdtckhC1DENvakn0000000210000000007t03\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Connection:\n      - close\n      Host:\n      - planetarycomputer.microsoft.com\n      User-Agent:\n      - Python-urllib/3.12\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/\n  response:\n    body:\n      string: '{\"type\":\"Catalog\",\"id\":\"microsoft-pc\",\"title\":\"Microsoft Planetary\n        Computer STAC API\",\"description\":\"Searchable spatiotemporal metadata describing\n        Earth science datasets hosted by the Microsoft Planetary Computer\",\"stac_version\":\"1.0.0\",\"conformsTo\":[\"https://api.stacspec.org/v1.0.0/item-search#fields\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30\",\"https://api.stacspec.org/v1.0.0/item-search\",\"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/collections\",\"https://api.stacspec.org/v1.0.0-rc.2/item-search#filter\",\"http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-text\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-json\",\"http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter\",\"https://api.stacspec.org/v1.0.0/core\",\"https://api.stacspec.org/v1.0.0/item-search#sort\",\"https://api.stacspec.org/v1.0.0/ogcapi-features\"],\"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\n        conformance classes implemented by this server\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/conformance\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        search\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/search\",\"method\":\"GET\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        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\n        Annual Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Seamless DEMs\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Surface Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Forest\n        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\n        Annual North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Annual Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Tables\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HGB:\n        Harmonized Global Biomass for 2010\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        DEM GLO-30\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        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\n        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\n        IMERG\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Rasters\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Height above Ground\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        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\n        1 Radiometrically Terrain Corrected (RTC)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Intensity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Source\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MTBS:\n        Monitoring Trends in Burn Severity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"C-CAP\n        Regional Land Cover and Change\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Cloud\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Burned Area Monthly\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        Forest/Non-Forest Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Returns\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MoBI:\n        Map of Biodiversity Importance\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ERA5\n        - PDS\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chloris\n        Biomass\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HydroForecast\n        - Kwando & Upper Zambezi Rivers\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Planet-NICFI\n        Basemaps (Analytic)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Gross Primary Productivity 8-Day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Daily Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        3DEP Lidar Classification\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Terrain Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        Gap Land Cover\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Basemaps (Visual)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Global\n        Biodiversity Information Facility (GBIF)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        World 3D-30m\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        PALSAR Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Water Availability\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Net Evapotranspiration Yearly Gap-Filled\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Census\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"JRC\n        Global Surface Water\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Flood Maps\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Thermal Anomalies/Fire Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HREA:\n        High Resolution Electricity Access\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Vegetation Indices 16-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Level-2A\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Land Surface Temperature/Emissivity Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Vegetation Indices 16-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Land\n        Cover of Canada\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Snow Cover 8-day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ECMWF\n        Open Data (real-time)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        HGT v001\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Esri\n        10-Meter Land Cover (10-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-1\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Denver\n        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\n        Land Cover (7-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Cover (13-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Use\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        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\n        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\n        Cropland Data Layers (CDLs)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Urban\n        Innovation Eclipse Sensor Data\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ESA\n        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\n        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\n        National Wetlands Inventory\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        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\n        US Tabular Climate Normals\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        Lightning Detection\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel\n        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\n        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\n        L1T\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"CIL\n        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:\n        National Agriculture Imagery Program\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        Intactness\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sea\n        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\n        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\n        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\n        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\n        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\n        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\n        Snow Cover Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-5P\n        Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        Building Footprints\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        service description\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json\"},{\"rel\":\"service-doc\",\"type\":\"text/html\",\"title\":\"OpenAPI\n        service documentation\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/docs\"}],\"stac_extensions\":[]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - close\n      Content-Length:\n      - '24872'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:08:50 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      x-azure-ref:\n      - 20250731T150850Z-r17d779659cqhh64hC1DEN1czn00000004ng0000000054b4\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Connection:\n      - close\n      Host:\n      - planetarycomputer.microsoft.com\n      User-Agent:\n      - Python-urllib/3.12\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/\n  response:\n    body:\n      string: '{\"type\":\"Catalog\",\"id\":\"microsoft-pc\",\"title\":\"Microsoft Planetary\n        Computer STAC API\",\"description\":\"Searchable spatiotemporal metadata describing\n        Earth science datasets hosted by the Microsoft Planetary Computer\",\"stac_version\":\"1.0.0\",\"conformsTo\":[\"https://api.stacspec.org/v1.0.0/item-search#fields\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30\",\"https://api.stacspec.org/v1.0.0/item-search\",\"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/collections\",\"https://api.stacspec.org/v1.0.0-rc.2/item-search#filter\",\"http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-text\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-json\",\"http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter\",\"https://api.stacspec.org/v1.0.0/core\",\"https://api.stacspec.org/v1.0.0/item-search#sort\",\"https://api.stacspec.org/v1.0.0/ogcapi-features\"],\"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\n        conformance classes implemented by this server\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/conformance\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        search\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/search\",\"method\":\"GET\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        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\n        Annual Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Seamless DEMs\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Surface Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Forest\n        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\n        Annual North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Annual Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Tables\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HGB:\n        Harmonized Global Biomass for 2010\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        DEM GLO-30\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        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\n        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\n        IMERG\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Rasters\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Height above Ground\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        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\n        1 Radiometrically Terrain Corrected (RTC)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Intensity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Source\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MTBS:\n        Monitoring Trends in Burn Severity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"C-CAP\n        Regional Land Cover and Change\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Cloud\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Burned Area Monthly\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        Forest/Non-Forest Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Returns\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MoBI:\n        Map of Biodiversity Importance\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ERA5\n        - PDS\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chloris\n        Biomass\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HydroForecast\n        - Kwando & Upper Zambezi Rivers\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Planet-NICFI\n        Basemaps (Analytic)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Gross Primary Productivity 8-Day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Daily Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        3DEP Lidar Classification\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Terrain Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        Gap Land Cover\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Basemaps (Visual)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Global\n        Biodiversity Information Facility (GBIF)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        World 3D-30m\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        PALSAR Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Water Availability\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Net Evapotranspiration Yearly Gap-Filled\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Census\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"JRC\n        Global Surface Water\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Flood Maps\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Thermal Anomalies/Fire Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HREA:\n        High Resolution Electricity Access\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Vegetation Indices 16-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Level-2A\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Land Surface Temperature/Emissivity Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Vegetation Indices 16-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Land\n        Cover of Canada\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Snow Cover 8-day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ECMWF\n        Open Data (real-time)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        HGT v001\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Esri\n        10-Meter Land Cover (10-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-1\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Denver\n        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\n        Land Cover (7-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Cover (13-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Use\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        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\n        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\n        Cropland Data Layers (CDLs)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Urban\n        Innovation Eclipse Sensor Data\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ESA\n        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\n        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\n        National Wetlands Inventory\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        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\n        US Tabular Climate Normals\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        Lightning Detection\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel\n        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\n        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\n        L1T\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"CIL\n        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:\n        National Agriculture Imagery Program\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        Intactness\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sea\n        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\n        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\n        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\n        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\n        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\n        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\n        Snow Cover Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-5P\n        Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        Building Footprints\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        service description\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json\"},{\"rel\":\"service-doc\",\"type\":\"text/html\",\"title\":\"OpenAPI\n        service documentation\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/docs\"}],\"stac_extensions\":[]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - close\n      Content-Length:\n      - '24872'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:08:51 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      x-azure-ref:\n      - 20250731T150850Z-r17d779659clwxzchC1DEN2z9w000000021g00000000717c\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Connection:\n      - close\n      Host:\n      - planetarycomputer.microsoft.com\n      User-Agent:\n      - Python-urllib/3.12\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/\n  response:\n    body:\n      string: '{\"type\":\"Catalog\",\"id\":\"microsoft-pc\",\"title\":\"Microsoft Planetary\n        Computer STAC API\",\"description\":\"Searchable spatiotemporal metadata describing\n        Earth science datasets hosted by the Microsoft Planetary Computer\",\"stac_version\":\"1.0.0\",\"conformsTo\":[\"https://api.stacspec.org/v1.0.0/item-search#fields\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30\",\"https://api.stacspec.org/v1.0.0/item-search\",\"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/collections\",\"https://api.stacspec.org/v1.0.0-rc.2/item-search#filter\",\"http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-text\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-json\",\"http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter\",\"https://api.stacspec.org/v1.0.0/core\",\"https://api.stacspec.org/v1.0.0/item-search#sort\",\"https://api.stacspec.org/v1.0.0/ogcapi-features\"],\"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\n        conformance classes implemented by this server\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/conformance\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        search\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/search\",\"method\":\"GET\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        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\n        Annual Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Seamless DEMs\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Surface Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Forest\n        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\n        Annual North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Annual Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Tables\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HGB:\n        Harmonized Global Biomass for 2010\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        DEM GLO-30\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        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\n        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\n        IMERG\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Rasters\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Height above Ground\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        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\n        1 Radiometrically Terrain Corrected (RTC)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Intensity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Source\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MTBS:\n        Monitoring Trends in Burn Severity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"C-CAP\n        Regional Land Cover and Change\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Cloud\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Burned Area Monthly\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        Forest/Non-Forest Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Returns\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MoBI:\n        Map of Biodiversity Importance\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ERA5\n        - PDS\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chloris\n        Biomass\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HydroForecast\n        - Kwando & Upper Zambezi Rivers\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Planet-NICFI\n        Basemaps (Analytic)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Gross Primary Productivity 8-Day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Daily Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        3DEP Lidar Classification\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Terrain Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        Gap Land Cover\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Basemaps (Visual)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Global\n        Biodiversity Information Facility (GBIF)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        World 3D-30m\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        PALSAR Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Water Availability\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Net Evapotranspiration Yearly Gap-Filled\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Census\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"JRC\n        Global Surface Water\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Flood Maps\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Thermal Anomalies/Fire Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HREA:\n        High Resolution Electricity Access\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Vegetation Indices 16-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Level-2A\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Land Surface Temperature/Emissivity Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Vegetation Indices 16-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Land\n        Cover of Canada\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Snow Cover 8-day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ECMWF\n        Open Data (real-time)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        HGT v001\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Esri\n        10-Meter Land Cover (10-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-1\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Denver\n        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\n        Land Cover (7-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Cover (13-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Use\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        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\n        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\n        Cropland Data Layers (CDLs)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Urban\n        Innovation Eclipse Sensor Data\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ESA\n        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\n        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\n        National Wetlands Inventory\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        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\n        US Tabular Climate Normals\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        Lightning Detection\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel\n        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\n        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\n        L1T\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"CIL\n        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:\n        National Agriculture Imagery Program\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        Intactness\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sea\n        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\n        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\n        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\n        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\n        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\n        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\n        Snow Cover Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-5P\n        Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        Building Footprints\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        service description\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json\"},{\"rel\":\"service-doc\",\"type\":\"text/html\",\"title\":\"OpenAPI\n        service documentation\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/docs\"}],\"stac_extensions\":[]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - close\n      Content-Length:\n      - '24872'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:08:51 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      x-azure-ref:\n      - 20250731T150851Z-r17d779659cdp9hwhC1DEN390s00000003rg0000000007yg\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Connection:\n      - close\n      Host:\n      - planetarycomputer.microsoft.com\n      User-Agent:\n      - Python-urllib/3.12\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/\n  response:\n    body:\n      string: '{\"type\":\"Catalog\",\"id\":\"microsoft-pc\",\"title\":\"Microsoft Planetary\n        Computer STAC API\",\"description\":\"Searchable spatiotemporal metadata describing\n        Earth science datasets hosted by the Microsoft Planetary Computer\",\"stac_version\":\"1.0.0\",\"conformsTo\":[\"https://api.stacspec.org/v1.0.0/item-search#fields\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30\",\"https://api.stacspec.org/v1.0.0/item-search\",\"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/collections\",\"https://api.stacspec.org/v1.0.0-rc.2/item-search#filter\",\"http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-text\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-json\",\"http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter\",\"https://api.stacspec.org/v1.0.0/core\",\"https://api.stacspec.org/v1.0.0/item-search#sort\",\"https://api.stacspec.org/v1.0.0/ogcapi-features\"],\"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\n        conformance classes implemented by this server\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/conformance\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        search\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/search\",\"method\":\"GET\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        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\n        Annual Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Seamless DEMs\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Surface Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Forest\n        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\n        Annual North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Annual Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Tables\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HGB:\n        Harmonized Global Biomass for 2010\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        DEM GLO-30\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        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\n        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\n        IMERG\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Rasters\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Height above Ground\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        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\n        1 Radiometrically Terrain Corrected (RTC)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Intensity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Source\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MTBS:\n        Monitoring Trends in Burn Severity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"C-CAP\n        Regional Land Cover and Change\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Cloud\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Burned Area Monthly\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        Forest/Non-Forest Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Returns\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MoBI:\n        Map of Biodiversity Importance\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ERA5\n        - PDS\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chloris\n        Biomass\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HydroForecast\n        - Kwando & Upper Zambezi Rivers\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Planet-NICFI\n        Basemaps (Analytic)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Gross Primary Productivity 8-Day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Daily Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        3DEP Lidar Classification\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Terrain Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        Gap Land Cover\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Basemaps (Visual)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Global\n        Biodiversity Information Facility (GBIF)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        World 3D-30m\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        PALSAR Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Water Availability\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Net Evapotranspiration Yearly Gap-Filled\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Census\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"JRC\n        Global Surface Water\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Flood Maps\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Thermal Anomalies/Fire Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HREA:\n        High Resolution Electricity Access\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Vegetation Indices 16-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Level-2A\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Land Surface Temperature/Emissivity Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Vegetation Indices 16-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Land\n        Cover of Canada\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Snow Cover 8-day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ECMWF\n        Open Data (real-time)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        HGT v001\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Esri\n        10-Meter Land Cover (10-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-1\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Denver\n        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\n        Land Cover (7-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Cover (13-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Use\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        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\n        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\n        Cropland Data Layers (CDLs)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Urban\n        Innovation Eclipse Sensor Data\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ESA\n        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\n        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\n        National Wetlands Inventory\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        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\n        US Tabular Climate Normals\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        Lightning Detection\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel\n        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\n        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\n        L1T\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"CIL\n        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:\n        National Agriculture Imagery Program\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        Intactness\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sea\n        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\n        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\n        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\n        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\n        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\n        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\n        Snow Cover Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-5P\n        Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        Building Footprints\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        service description\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json\"},{\"rel\":\"service-doc\",\"type\":\"text/html\",\"title\":\"OpenAPI\n        service documentation\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/docs\"}],\"stac_extensions\":[]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - close\n      Content-Length:\n      - '24872'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:08:52 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      x-azure-ref:\n      - 20250731T150852Z-r17d779659c44ntghC1DEN26ng0000000210000000008s02\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Connection:\n      - close\n      Host:\n      - planetarycomputer.microsoft.com\n      User-Agent:\n      - Python-urllib/3.12\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/\n  response:\n    body:\n      string: '{\"type\":\"Catalog\",\"id\":\"microsoft-pc\",\"title\":\"Microsoft Planetary\n        Computer STAC API\",\"description\":\"Searchable spatiotemporal metadata describing\n        Earth science datasets hosted by the Microsoft Planetary Computer\",\"stac_version\":\"1.0.0\",\"conformsTo\":[\"https://api.stacspec.org/v1.0.0/item-search#fields\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30\",\"https://api.stacspec.org/v1.0.0/item-search\",\"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/collections\",\"https://api.stacspec.org/v1.0.0-rc.2/item-search#filter\",\"http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-text\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-json\",\"http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter\",\"https://api.stacspec.org/v1.0.0/core\",\"https://api.stacspec.org/v1.0.0/item-search#sort\",\"https://api.stacspec.org/v1.0.0/ogcapi-features\"],\"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\n        conformance classes implemented by this server\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/conformance\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        search\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/search\",\"method\":\"GET\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        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\n        Annual Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Seamless DEMs\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Surface Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Forest\n        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\n        Annual North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Annual Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Tables\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HGB:\n        Harmonized Global Biomass for 2010\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        DEM GLO-30\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        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\n        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\n        IMERG\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Rasters\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Height above Ground\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        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\n        1 Radiometrically Terrain Corrected (RTC)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Intensity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Source\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MTBS:\n        Monitoring Trends in Burn Severity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"C-CAP\n        Regional Land Cover and Change\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Cloud\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Burned Area Monthly\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        Forest/Non-Forest Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Returns\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MoBI:\n        Map of Biodiversity Importance\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ERA5\n        - PDS\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chloris\n        Biomass\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HydroForecast\n        - Kwando & Upper Zambezi Rivers\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Planet-NICFI\n        Basemaps (Analytic)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Gross Primary Productivity 8-Day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Daily Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        3DEP Lidar Classification\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Terrain Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        Gap Land Cover\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Basemaps (Visual)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Global\n        Biodiversity Information Facility (GBIF)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        World 3D-30m\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        PALSAR Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Water Availability\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Net Evapotranspiration Yearly Gap-Filled\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Census\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"JRC\n        Global Surface Water\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Flood Maps\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Thermal Anomalies/Fire Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HREA:\n        High Resolution Electricity Access\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Vegetation Indices 16-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Level-2A\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Land Surface Temperature/Emissivity Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Vegetation Indices 16-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Land\n        Cover of Canada\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Snow Cover 8-day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ECMWF\n        Open Data (real-time)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        HGT v001\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Esri\n        10-Meter Land Cover (10-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-1\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Denver\n        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\n        Land Cover (7-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Cover (13-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Use\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        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\n        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\n        Cropland Data Layers (CDLs)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Urban\n        Innovation Eclipse Sensor Data\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ESA\n        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\n        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\n        National Wetlands Inventory\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        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\n        US Tabular Climate Normals\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        Lightning Detection\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel\n        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\n        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\n        L1T\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"CIL\n        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:\n        National Agriculture Imagery Program\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        Intactness\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sea\n        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\n        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\n        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\n        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\n        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\n        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\n        Snow Cover Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-5P\n        Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        Building Footprints\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        service description\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json\"},{\"rel\":\"service-doc\",\"type\":\"text/html\",\"title\":\"OpenAPI\n        service documentation\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/docs\"}],\"stac_extensions\":[]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - close\n      Content-Length:\n      - '24872'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:08:53 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      x-azure-ref:\n      - 20250731T150852Z-r17d779659cswp4rhC1DENr00400000003q00000000026qh\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Connection:\n      - close\n      Host:\n      - planetarycomputer.microsoft.com\n      User-Agent:\n      - Python-urllib/3.12\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/\n  response:\n    body:\n      string: '{\"type\":\"Catalog\",\"id\":\"microsoft-pc\",\"title\":\"Microsoft Planetary\n        Computer STAC API\",\"description\":\"Searchable spatiotemporal metadata describing\n        Earth science datasets hosted by the Microsoft Planetary Computer\",\"stac_version\":\"1.0.0\",\"conformsTo\":[\"https://api.stacspec.org/v1.0.0/item-search#fields\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30\",\"https://api.stacspec.org/v1.0.0/item-search\",\"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/collections\",\"https://api.stacspec.org/v1.0.0-rc.2/item-search#filter\",\"http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-text\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-json\",\"http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter\",\"https://api.stacspec.org/v1.0.0/core\",\"https://api.stacspec.org/v1.0.0/item-search#sort\",\"https://api.stacspec.org/v1.0.0/ogcapi-features\"],\"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\n        conformance classes implemented by this server\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/conformance\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        search\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/search\",\"method\":\"GET\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        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\n        Annual Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Seamless DEMs\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Surface Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Forest\n        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\n        Annual North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Annual Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Tables\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HGB:\n        Harmonized Global Biomass for 2010\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        DEM GLO-30\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        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\n        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\n        IMERG\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Rasters\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Height above Ground\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        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\n        1 Radiometrically Terrain Corrected (RTC)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Intensity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Source\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MTBS:\n        Monitoring Trends in Burn Severity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"C-CAP\n        Regional Land Cover and Change\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Cloud\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Burned Area Monthly\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        Forest/Non-Forest Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Returns\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MoBI:\n        Map of Biodiversity Importance\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ERA5\n        - PDS\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chloris\n        Biomass\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HydroForecast\n        - Kwando & Upper Zambezi Rivers\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Planet-NICFI\n        Basemaps (Analytic)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Gross Primary Productivity 8-Day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Daily Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        3DEP Lidar Classification\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Terrain Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        Gap Land Cover\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Basemaps (Visual)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Global\n        Biodiversity Information Facility (GBIF)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        World 3D-30m\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        PALSAR Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Water Availability\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Net Evapotranspiration Yearly Gap-Filled\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Census\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"JRC\n        Global Surface Water\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Flood Maps\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Thermal Anomalies/Fire Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HREA:\n        High Resolution Electricity Access\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Vegetation Indices 16-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Level-2A\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Land Surface Temperature/Emissivity Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Vegetation Indices 16-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Land\n        Cover of Canada\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Snow Cover 8-day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ECMWF\n        Open Data (real-time)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        HGT v001\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Esri\n        10-Meter Land Cover (10-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-1\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Denver\n        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\n        Land Cover (7-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Cover (13-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Use\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        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\n        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\n        Cropland Data Layers (CDLs)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Urban\n        Innovation Eclipse Sensor Data\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ESA\n        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\n        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\n        National Wetlands Inventory\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        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\n        US Tabular Climate Normals\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        Lightning Detection\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel\n        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\n        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\n        L1T\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"CIL\n        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:\n        National Agriculture Imagery Program\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        Intactness\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sea\n        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\n        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\n        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\n        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\n        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\n        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\n        Snow Cover Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-5P\n        Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        Building Footprints\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        service description\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json\"},{\"rel\":\"service-doc\",\"type\":\"text/html\",\"title\":\"OpenAPI\n        service documentation\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/docs\"}],\"stac_extensions\":[]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - close\n      Content-Length:\n      - '24872'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:08:53 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      x-azure-ref:\n      - 20250731T150853Z-r17d779659c9xxfhhC1DEN13nn000000064g000000000sg3\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Connection:\n      - close\n      Host:\n      - planetarycomputer.microsoft.com\n      User-Agent:\n      - Python-urllib/3.12\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/\n  response:\n    body:\n      string: '{\"type\":\"Catalog\",\"id\":\"microsoft-pc\",\"title\":\"Microsoft Planetary\n        Computer STAC API\",\"description\":\"Searchable spatiotemporal metadata describing\n        Earth science datasets hosted by the Microsoft Planetary Computer\",\"stac_version\":\"1.0.0\",\"conformsTo\":[\"https://api.stacspec.org/v1.0.0/item-search#fields\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30\",\"https://api.stacspec.org/v1.0.0/item-search\",\"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/collections\",\"https://api.stacspec.org/v1.0.0-rc.2/item-search#filter\",\"http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-text\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-json\",\"http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter\",\"https://api.stacspec.org/v1.0.0/core\",\"https://api.stacspec.org/v1.0.0/item-search#sort\",\"https://api.stacspec.org/v1.0.0/ogcapi-features\"],\"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\n        conformance classes implemented by this server\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/conformance\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        search\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/search\",\"method\":\"GET\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        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\n        Annual Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Seamless DEMs\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Surface Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Forest\n        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\n        Annual North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Annual Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Tables\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HGB:\n        Harmonized Global Biomass for 2010\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        DEM GLO-30\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        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\n        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\n        IMERG\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Rasters\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Height above Ground\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        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\n        1 Radiometrically Terrain Corrected (RTC)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Intensity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Source\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MTBS:\n        Monitoring Trends in Burn Severity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"C-CAP\n        Regional Land Cover and Change\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Cloud\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Burned Area Monthly\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        Forest/Non-Forest Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Returns\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MoBI:\n        Map of Biodiversity Importance\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ERA5\n        - PDS\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chloris\n        Biomass\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HydroForecast\n        - Kwando & Upper Zambezi Rivers\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Planet-NICFI\n        Basemaps (Analytic)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Gross Primary Productivity 8-Day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Daily Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        3DEP Lidar Classification\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Terrain Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        Gap Land Cover\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Basemaps (Visual)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Global\n        Biodiversity Information Facility (GBIF)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        World 3D-30m\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        PALSAR Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Water Availability\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Net Evapotranspiration Yearly Gap-Filled\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Census\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"JRC\n        Global Surface Water\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Flood Maps\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Thermal Anomalies/Fire Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HREA:\n        High Resolution Electricity Access\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Vegetation Indices 16-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Level-2A\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Land Surface Temperature/Emissivity Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Vegetation Indices 16-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Land\n        Cover of Canada\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Snow Cover 8-day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ECMWF\n        Open Data (real-time)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        HGT v001\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Esri\n        10-Meter Land Cover (10-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-1\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Denver\n        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\n        Land Cover (7-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Cover (13-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Use\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        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\n        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\n        Cropland Data Layers (CDLs)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Urban\n        Innovation Eclipse Sensor Data\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ESA\n        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\n        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\n        National Wetlands Inventory\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        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\n        US Tabular Climate Normals\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        Lightning Detection\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel\n        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\n        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\n        L1T\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"CIL\n        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:\n        National Agriculture Imagery Program\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        Intactness\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sea\n        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\n        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\n        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\n        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\n        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\n        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\n        Snow Cover Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-5P\n        Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        Building Footprints\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        service description\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json\"},{\"rel\":\"service-doc\",\"type\":\"text/html\",\"title\":\"OpenAPI\n        service documentation\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/docs\"}],\"stac_extensions\":[]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - close\n      Content-Length:\n      - '24872'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:08:54 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      x-azure-ref:\n      - 20250731T150853Z-r17d779659c8vbd8hC1DENmu9s000000020g000000008qkv\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Connection:\n      - close\n      Host:\n      - planetarycomputer.microsoft.com\n      User-Agent:\n      - Python-urllib/3.12\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/\n  response:\n    body:\n      string: '{\"type\":\"Catalog\",\"id\":\"microsoft-pc\",\"title\":\"Microsoft Planetary\n        Computer STAC API\",\"description\":\"Searchable spatiotemporal metadata describing\n        Earth science datasets hosted by the Microsoft Planetary Computer\",\"stac_version\":\"1.0.0\",\"conformsTo\":[\"https://api.stacspec.org/v1.0.0/item-search#fields\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30\",\"https://api.stacspec.org/v1.0.0/item-search\",\"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/collections\",\"https://api.stacspec.org/v1.0.0-rc.2/item-search#filter\",\"http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-text\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-json\",\"http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter\",\"https://api.stacspec.org/v1.0.0/core\",\"https://api.stacspec.org/v1.0.0/item-search#sort\",\"https://api.stacspec.org/v1.0.0/ogcapi-features\"],\"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\n        conformance classes implemented by this server\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/conformance\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        search\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/search\",\"method\":\"GET\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        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\n        Annual Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Seamless DEMs\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Surface Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Forest\n        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\n        Annual North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Annual Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Tables\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HGB:\n        Harmonized Global Biomass for 2010\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        DEM GLO-30\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        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\n        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\n        IMERG\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Rasters\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Height above Ground\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        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\n        1 Radiometrically Terrain Corrected (RTC)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Intensity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Source\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MTBS:\n        Monitoring Trends in Burn Severity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"C-CAP\n        Regional Land Cover and Change\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Cloud\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Burned Area Monthly\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        Forest/Non-Forest Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Returns\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MoBI:\n        Map of Biodiversity Importance\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ERA5\n        - PDS\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chloris\n        Biomass\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HydroForecast\n        - Kwando & Upper Zambezi Rivers\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Planet-NICFI\n        Basemaps (Analytic)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Gross Primary Productivity 8-Day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Daily Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        3DEP Lidar Classification\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Terrain Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        Gap Land Cover\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Basemaps (Visual)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Global\n        Biodiversity Information Facility (GBIF)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        World 3D-30m\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        PALSAR Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Water Availability\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Net Evapotranspiration Yearly Gap-Filled\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Census\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"JRC\n        Global Surface Water\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Flood Maps\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Thermal Anomalies/Fire Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HREA:\n        High Resolution Electricity Access\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Vegetation Indices 16-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Level-2A\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Land Surface Temperature/Emissivity Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Vegetation Indices 16-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Land\n        Cover of Canada\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Snow Cover 8-day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ECMWF\n        Open Data (real-time)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        HGT v001\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Esri\n        10-Meter Land Cover (10-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-1\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Denver\n        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\n        Land Cover (7-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Cover (13-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Use\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        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\n        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\n        Cropland Data Layers (CDLs)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Urban\n        Innovation Eclipse Sensor Data\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ESA\n        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\n        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\n        National Wetlands Inventory\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        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\n        US Tabular Climate Normals\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        Lightning Detection\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel\n        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\n        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\n        L1T\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"CIL\n        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:\n        National Agriculture Imagery Program\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        Intactness\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sea\n        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\n        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\n        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\n        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\n        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\n        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\n        Snow Cover Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-5P\n        Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        Building Footprints\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        service description\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json\"},{\"rel\":\"service-doc\",\"type\":\"text/html\",\"title\":\"OpenAPI\n        service documentation\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/docs\"}],\"stac_extensions\":[]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - close\n      Content-Length:\n      - '24872'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:08:54 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      x-azure-ref:\n      - 20250731T150854Z-r17d779659cpfvwjhC1DENcxb000000005z0000000006yyw\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Connection:\n      - close\n      Host:\n      - planetarycomputer.microsoft.com\n      User-Agent:\n      - Python-urllib/3.12\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/\n  response:\n    body:\n      string: '{\"type\":\"Catalog\",\"id\":\"microsoft-pc\",\"title\":\"Microsoft Planetary\n        Computer STAC API\",\"description\":\"Searchable spatiotemporal metadata describing\n        Earth science datasets hosted by the Microsoft Planetary Computer\",\"stac_version\":\"1.0.0\",\"conformsTo\":[\"https://api.stacspec.org/v1.0.0/item-search#fields\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30\",\"https://api.stacspec.org/v1.0.0/item-search\",\"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/collections\",\"https://api.stacspec.org/v1.0.0-rc.2/item-search#filter\",\"http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-text\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-json\",\"http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter\",\"https://api.stacspec.org/v1.0.0/core\",\"https://api.stacspec.org/v1.0.0/item-search#sort\",\"https://api.stacspec.org/v1.0.0/ogcapi-features\"],\"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\n        conformance classes implemented by this server\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/conformance\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        search\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/search\",\"method\":\"GET\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        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\n        Annual Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Seamless DEMs\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Surface Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Forest\n        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\n        Annual North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Annual Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Tables\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HGB:\n        Harmonized Global Biomass for 2010\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        DEM GLO-30\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        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\n        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\n        IMERG\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Rasters\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Height above Ground\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        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\n        1 Radiometrically Terrain Corrected (RTC)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Intensity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Source\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MTBS:\n        Monitoring Trends in Burn Severity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"C-CAP\n        Regional Land Cover and Change\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Cloud\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Burned Area Monthly\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        Forest/Non-Forest Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Returns\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MoBI:\n        Map of Biodiversity Importance\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ERA5\n        - PDS\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chloris\n        Biomass\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HydroForecast\n        - Kwando & Upper Zambezi Rivers\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Planet-NICFI\n        Basemaps (Analytic)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Gross Primary Productivity 8-Day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Daily Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        3DEP Lidar Classification\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Terrain Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        Gap Land Cover\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Basemaps (Visual)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Global\n        Biodiversity Information Facility (GBIF)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        World 3D-30m\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        PALSAR Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Water Availability\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Net Evapotranspiration Yearly Gap-Filled\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Census\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"JRC\n        Global Surface Water\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Flood Maps\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Thermal Anomalies/Fire Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HREA:\n        High Resolution Electricity Access\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Vegetation Indices 16-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Level-2A\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Land Surface Temperature/Emissivity Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Vegetation Indices 16-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Land\n        Cover of Canada\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Snow Cover 8-day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ECMWF\n        Open Data (real-time)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        HGT v001\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Esri\n        10-Meter Land Cover (10-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-1\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Denver\n        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\n        Land Cover (7-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Cover (13-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Use\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        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\n        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\n        Cropland Data Layers (CDLs)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Urban\n        Innovation Eclipse Sensor Data\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ESA\n        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\n        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\n        National Wetlands Inventory\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        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\n        US Tabular Climate Normals\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        Lightning Detection\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel\n        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\n        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\n        L1T\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"CIL\n        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:\n        National Agriculture Imagery Program\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        Intactness\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sea\n        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\n        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\n        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\n        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\n        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\n        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\n        Snow Cover Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-5P\n        Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        Building Footprints\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        service description\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json\"},{\"rel\":\"service-doc\",\"type\":\"text/html\",\"title\":\"OpenAPI\n        service documentation\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/docs\"}],\"stac_extensions\":[]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - close\n      Content-Length:\n      - '24872'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:08:55 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      x-azure-ref:\n      - 20250731T150854Z-r17d779659cjc42zhC1DENr5f800000006500000000006uz\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Connection:\n      - close\n      Host:\n      - planetarycomputer.microsoft.com\n      User-Agent:\n      - Python-urllib/3.12\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/\n  response:\n    body:\n      string: '{\"type\":\"Catalog\",\"id\":\"microsoft-pc\",\"title\":\"Microsoft Planetary\n        Computer STAC API\",\"description\":\"Searchable spatiotemporal metadata describing\n        Earth science datasets hosted by the Microsoft Planetary Computer\",\"stac_version\":\"1.0.0\",\"conformsTo\":[\"https://api.stacspec.org/v1.0.0/item-search#fields\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30\",\"https://api.stacspec.org/v1.0.0/item-search\",\"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/collections\",\"https://api.stacspec.org/v1.0.0-rc.2/item-search#filter\",\"http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-text\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-json\",\"http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter\",\"https://api.stacspec.org/v1.0.0/core\",\"https://api.stacspec.org/v1.0.0/item-search#sort\",\"https://api.stacspec.org/v1.0.0/ogcapi-features\"],\"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\n        conformance classes implemented by this server\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/conformance\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        search\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/search\",\"method\":\"GET\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        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\n        Annual Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Seamless DEMs\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Surface Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Forest\n        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\n        Annual North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Annual Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Tables\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HGB:\n        Harmonized Global Biomass for 2010\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        DEM GLO-30\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        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\n        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\n        IMERG\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Rasters\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Height above Ground\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        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\n        1 Radiometrically Terrain Corrected (RTC)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Intensity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Source\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MTBS:\n        Monitoring Trends in Burn Severity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"C-CAP\n        Regional Land Cover and Change\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Cloud\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Burned Area Monthly\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        Forest/Non-Forest Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Returns\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MoBI:\n        Map of Biodiversity Importance\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ERA5\n        - PDS\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chloris\n        Biomass\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HydroForecast\n        - Kwando & Upper Zambezi Rivers\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Planet-NICFI\n        Basemaps (Analytic)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Gross Primary Productivity 8-Day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Daily Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        3DEP Lidar Classification\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Terrain Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        Gap Land Cover\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Basemaps (Visual)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Global\n        Biodiversity Information Facility (GBIF)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        World 3D-30m\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        PALSAR Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Water Availability\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Net Evapotranspiration Yearly Gap-Filled\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Census\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"JRC\n        Global Surface Water\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Flood Maps\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Thermal Anomalies/Fire Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HREA:\n        High Resolution Electricity Access\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Vegetation Indices 16-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Level-2A\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Land Surface Temperature/Emissivity Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Vegetation Indices 16-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Land\n        Cover of Canada\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Snow Cover 8-day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ECMWF\n        Open Data (real-time)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        HGT v001\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Esri\n        10-Meter Land Cover (10-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-1\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Denver\n        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\n        Land Cover (7-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Cover (13-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Use\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        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\n        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\n        Cropland Data Layers (CDLs)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Urban\n        Innovation Eclipse Sensor Data\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ESA\n        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\n        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\n        National Wetlands Inventory\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        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\n        US Tabular Climate Normals\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        Lightning Detection\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel\n        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\n        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\n        L1T\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"CIL\n        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:\n        National Agriculture Imagery Program\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        Intactness\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sea\n        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\n        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\n        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\n        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\n        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\n        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\n        Snow Cover Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-5P\n        Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        Building Footprints\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        service description\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json\"},{\"rel\":\"service-doc\",\"type\":\"text/html\",\"title\":\"OpenAPI\n        service documentation\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/docs\"}],\"stac_extensions\":[]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - close\n      Content-Length:\n      - '24872'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:08:55 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      x-azure-ref:\n      - 20250731T150855Z-r17d779659cz4m9lhC1DENepy0000000023g000000004new\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Connection:\n      - close\n      Host:\n      - planetarycomputer.microsoft.com\n      User-Agent:\n      - Python-urllib/3.12\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/\n  response:\n    body:\n      string: '{\"type\":\"Catalog\",\"id\":\"microsoft-pc\",\"title\":\"Microsoft Planetary\n        Computer STAC API\",\"description\":\"Searchable spatiotemporal metadata describing\n        Earth science datasets hosted by the Microsoft Planetary Computer\",\"stac_version\":\"1.0.0\",\"conformsTo\":[\"https://api.stacspec.org/v1.0.0/item-search#fields\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30\",\"https://api.stacspec.org/v1.0.0/item-search\",\"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/collections\",\"https://api.stacspec.org/v1.0.0-rc.2/item-search#filter\",\"http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-text\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-json\",\"http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter\",\"https://api.stacspec.org/v1.0.0/core\",\"https://api.stacspec.org/v1.0.0/item-search#sort\",\"https://api.stacspec.org/v1.0.0/ogcapi-features\"],\"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\n        conformance classes implemented by this server\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/conformance\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        search\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/search\",\"method\":\"GET\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        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\n        Annual Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Seamless DEMs\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Surface Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Forest\n        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\n        Annual North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Annual Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Tables\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HGB:\n        Harmonized Global Biomass for 2010\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        DEM GLO-30\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        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\n        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\n        IMERG\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Rasters\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Height above Ground\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        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\n        1 Radiometrically Terrain Corrected (RTC)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Intensity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Source\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MTBS:\n        Monitoring Trends in Burn Severity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"C-CAP\n        Regional Land Cover and Change\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Cloud\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Burned Area Monthly\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        Forest/Non-Forest Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Returns\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MoBI:\n        Map of Biodiversity Importance\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ERA5\n        - PDS\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chloris\n        Biomass\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HydroForecast\n        - Kwando & Upper Zambezi Rivers\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Planet-NICFI\n        Basemaps (Analytic)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Gross Primary Productivity 8-Day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Daily Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        3DEP Lidar Classification\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Terrain Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        Gap Land Cover\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Basemaps (Visual)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Global\n        Biodiversity Information Facility (GBIF)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        World 3D-30m\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        PALSAR Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Water Availability\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Net Evapotranspiration Yearly Gap-Filled\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Census\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"JRC\n        Global Surface Water\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Flood Maps\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Thermal Anomalies/Fire Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HREA:\n        High Resolution Electricity Access\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Vegetation Indices 16-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Level-2A\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Land Surface Temperature/Emissivity Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Vegetation Indices 16-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Land\n        Cover of Canada\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Snow Cover 8-day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ECMWF\n        Open Data (real-time)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        HGT v001\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Esri\n        10-Meter Land Cover (10-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-1\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Denver\n        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\n        Land Cover (7-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Cover (13-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Use\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        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\n        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\n        Cropland Data Layers (CDLs)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Urban\n        Innovation Eclipse Sensor Data\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ESA\n        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\n        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\n        National Wetlands Inventory\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        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\n        US Tabular Climate Normals\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        Lightning Detection\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel\n        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\n        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\n        L1T\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"CIL\n        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:\n        National Agriculture Imagery Program\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        Intactness\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sea\n        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\n        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\n        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\n        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\n        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\n        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\n        Snow Cover Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-5P\n        Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        Building Footprints\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        service description\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json\"},{\"rel\":\"service-doc\",\"type\":\"text/html\",\"title\":\"OpenAPI\n        service documentation\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/docs\"}],\"stac_extensions\":[]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - close\n      Content-Length:\n      - '24872'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:08:56 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      x-azure-ref:\n      - 20250731T150856Z-r17d779659cl2jdhhC1DENntbs000000022g000000006d1r\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Connection:\n      - close\n      Host:\n      - planetarycomputer.microsoft.com\n      User-Agent:\n      - Python-urllib/3.12\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/\n  response:\n    body:\n      string: '{\"type\":\"Catalog\",\"id\":\"microsoft-pc\",\"title\":\"Microsoft Planetary\n        Computer STAC API\",\"description\":\"Searchable spatiotemporal metadata describing\n        Earth science datasets hosted by the Microsoft Planetary Computer\",\"stac_version\":\"1.0.0\",\"conformsTo\":[\"https://api.stacspec.org/v1.0.0/item-search#fields\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30\",\"https://api.stacspec.org/v1.0.0/item-search\",\"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/collections\",\"https://api.stacspec.org/v1.0.0-rc.2/item-search#filter\",\"http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-text\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-json\",\"http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter\",\"https://api.stacspec.org/v1.0.0/core\",\"https://api.stacspec.org/v1.0.0/item-search#sort\",\"https://api.stacspec.org/v1.0.0/ogcapi-features\"],\"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\n        conformance classes implemented by this server\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/conformance\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        search\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/search\",\"method\":\"GET\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        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\n        Annual Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Seamless DEMs\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Surface Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Forest\n        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\n        Annual North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Annual Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Tables\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HGB:\n        Harmonized Global Biomass for 2010\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        DEM GLO-30\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        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\n        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\n        IMERG\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Rasters\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Height above Ground\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        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\n        1 Radiometrically Terrain Corrected (RTC)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Intensity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Source\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MTBS:\n        Monitoring Trends in Burn Severity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"C-CAP\n        Regional Land Cover and Change\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Cloud\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Burned Area Monthly\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        Forest/Non-Forest Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Returns\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MoBI:\n        Map of Biodiversity Importance\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ERA5\n        - PDS\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chloris\n        Biomass\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HydroForecast\n        - Kwando & Upper Zambezi Rivers\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Planet-NICFI\n        Basemaps (Analytic)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Gross Primary Productivity 8-Day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Daily Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        3DEP Lidar Classification\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Terrain Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        Gap Land Cover\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Basemaps (Visual)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Global\n        Biodiversity Information Facility (GBIF)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        World 3D-30m\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        PALSAR Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Water Availability\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Net Evapotranspiration Yearly Gap-Filled\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Census\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"JRC\n        Global Surface Water\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Flood Maps\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Thermal Anomalies/Fire Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HREA:\n        High Resolution Electricity Access\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Vegetation Indices 16-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Level-2A\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Land Surface Temperature/Emissivity Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Vegetation Indices 16-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Land\n        Cover of Canada\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Snow Cover 8-day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ECMWF\n        Open Data (real-time)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        HGT v001\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Esri\n        10-Meter Land Cover (10-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-1\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Denver\n        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\n        Land Cover (7-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Cover (13-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Use\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        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\n        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\n        Cropland Data Layers (CDLs)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Urban\n        Innovation Eclipse Sensor Data\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ESA\n        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\n        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\n        National Wetlands Inventory\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        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\n        US Tabular Climate Normals\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        Lightning Detection\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel\n        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\n        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\n        L1T\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"CIL\n        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:\n        National Agriculture Imagery Program\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        Intactness\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sea\n        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\n        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\n        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\n        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\n        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\n        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\n        Snow Cover Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-5P\n        Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        Building Footprints\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        service description\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json\"},{\"rel\":\"service-doc\",\"type\":\"text/html\",\"title\":\"OpenAPI\n        service documentation\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/docs\"}],\"stac_extensions\":[]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - close\n      Content-Length:\n      - '24872'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:08:57 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      x-azure-ref:\n      - 20250731T150856Z-r17d779659cs8gcnhC1DEN5tpw00000006500000000005ua\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Connection:\n      - close\n      Host:\n      - planetarycomputer.microsoft.com\n      User-Agent:\n      - Python-urllib/3.12\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/\n  response:\n    body:\n      string: '{\"type\":\"Catalog\",\"id\":\"microsoft-pc\",\"title\":\"Microsoft Planetary\n        Computer STAC API\",\"description\":\"Searchable spatiotemporal metadata describing\n        Earth science datasets hosted by the Microsoft Planetary Computer\",\"stac_version\":\"1.0.0\",\"conformsTo\":[\"https://api.stacspec.org/v1.0.0/item-search#fields\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30\",\"https://api.stacspec.org/v1.0.0/item-search\",\"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/collections\",\"https://api.stacspec.org/v1.0.0-rc.2/item-search#filter\",\"http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-text\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-json\",\"http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter\",\"https://api.stacspec.org/v1.0.0/core\",\"https://api.stacspec.org/v1.0.0/item-search#sort\",\"https://api.stacspec.org/v1.0.0/ogcapi-features\"],\"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\n        conformance classes implemented by this server\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/conformance\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        search\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/search\",\"method\":\"GET\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        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\n        Annual Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Seamless DEMs\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Surface Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Forest\n        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\n        Annual North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Annual Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Tables\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HGB:\n        Harmonized Global Biomass for 2010\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        DEM GLO-30\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        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\n        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\n        IMERG\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Rasters\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Height above Ground\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        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\n        1 Radiometrically Terrain Corrected (RTC)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Intensity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Source\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MTBS:\n        Monitoring Trends in Burn Severity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"C-CAP\n        Regional Land Cover and Change\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Cloud\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Burned Area Monthly\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        Forest/Non-Forest Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Returns\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MoBI:\n        Map of Biodiversity Importance\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ERA5\n        - PDS\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chloris\n        Biomass\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HydroForecast\n        - Kwando & Upper Zambezi Rivers\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Planet-NICFI\n        Basemaps (Analytic)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Gross Primary Productivity 8-Day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Daily Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        3DEP Lidar Classification\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Terrain Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        Gap Land Cover\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Basemaps (Visual)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Global\n        Biodiversity Information Facility (GBIF)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        World 3D-30m\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        PALSAR Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Water Availability\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Net Evapotranspiration Yearly Gap-Filled\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Census\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"JRC\n        Global Surface Water\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Flood Maps\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Thermal Anomalies/Fire Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HREA:\n        High Resolution Electricity Access\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Vegetation Indices 16-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Level-2A\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Land Surface Temperature/Emissivity Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Vegetation Indices 16-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Land\n        Cover of Canada\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Snow Cover 8-day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ECMWF\n        Open Data (real-time)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        HGT v001\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Esri\n        10-Meter Land Cover (10-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-1\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Denver\n        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\n        Land Cover (7-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Cover (13-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Use\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        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\n        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\n        Cropland Data Layers (CDLs)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Urban\n        Innovation Eclipse Sensor Data\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ESA\n        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\n        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\n        National Wetlands Inventory\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        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\n        US Tabular Climate Normals\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        Lightning Detection\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel\n        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\n        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\n        L1T\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"CIL\n        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:\n        National Agriculture Imagery Program\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        Intactness\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sea\n        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\n        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\n        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\n        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\n        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\n        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\n        Snow Cover Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-5P\n        Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        Building Footprints\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        service description\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json\"},{\"rel\":\"service-doc\",\"type\":\"text/html\",\"title\":\"OpenAPI\n        service documentation\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/docs\"}],\"stac_extensions\":[]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - close\n      Content-Length:\n      - '24872'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:08:57 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      x-azure-ref:\n      - 20250731T150857Z-r17d779659csvfh6hC1DENnnr400000004hg0000000070cy\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Connection:\n      - close\n      Host:\n      - planetarycomputer.microsoft.com\n      User-Agent:\n      - Python-urllib/3.12\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/\n  response:\n    body:\n      string: '{\"type\":\"Catalog\",\"id\":\"microsoft-pc\",\"title\":\"Microsoft Planetary\n        Computer STAC API\",\"description\":\"Searchable spatiotemporal metadata describing\n        Earth science datasets hosted by the Microsoft Planetary Computer\",\"stac_version\":\"1.0.0\",\"conformsTo\":[\"https://api.stacspec.org/v1.0.0/item-search#fields\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30\",\"https://api.stacspec.org/v1.0.0/item-search\",\"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/collections\",\"https://api.stacspec.org/v1.0.0-rc.2/item-search#filter\",\"http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-text\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-json\",\"http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter\",\"https://api.stacspec.org/v1.0.0/core\",\"https://api.stacspec.org/v1.0.0/item-search#sort\",\"https://api.stacspec.org/v1.0.0/ogcapi-features\"],\"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\n        conformance classes implemented by this server\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/conformance\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        search\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/search\",\"method\":\"GET\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        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\n        Annual Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Seamless DEMs\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Surface Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Forest\n        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\n        Annual North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Annual Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Tables\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HGB:\n        Harmonized Global Biomass for 2010\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        DEM GLO-30\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        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\n        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\n        IMERG\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Rasters\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Height above Ground\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        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\n        1 Radiometrically Terrain Corrected (RTC)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Intensity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Source\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MTBS:\n        Monitoring Trends in Burn Severity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"C-CAP\n        Regional Land Cover and Change\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Cloud\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Burned Area Monthly\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        Forest/Non-Forest Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Returns\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MoBI:\n        Map of Biodiversity Importance\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ERA5\n        - PDS\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chloris\n        Biomass\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HydroForecast\n        - Kwando & Upper Zambezi Rivers\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Planet-NICFI\n        Basemaps (Analytic)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Gross Primary Productivity 8-Day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Daily Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        3DEP Lidar Classification\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Terrain Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        Gap Land Cover\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Basemaps (Visual)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Global\n        Biodiversity Information Facility (GBIF)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        World 3D-30m\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        PALSAR Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Water Availability\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Net Evapotranspiration Yearly Gap-Filled\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Census\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"JRC\n        Global Surface Water\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Flood Maps\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Thermal Anomalies/Fire Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HREA:\n        High Resolution Electricity Access\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Vegetation Indices 16-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Level-2A\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Land Surface Temperature/Emissivity Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Vegetation Indices 16-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Land\n        Cover of Canada\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Snow Cover 8-day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ECMWF\n        Open Data (real-time)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        HGT v001\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Esri\n        10-Meter Land Cover (10-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-1\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Denver\n        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\n        Land Cover (7-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Cover (13-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Use\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        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\n        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\n        Cropland Data Layers (CDLs)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Urban\n        Innovation Eclipse Sensor Data\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ESA\n        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\n        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\n        National Wetlands Inventory\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        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\n        US Tabular Climate Normals\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        Lightning Detection\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel\n        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\n        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\n        L1T\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"CIL\n        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:\n        National Agriculture Imagery Program\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        Intactness\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sea\n        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\n        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\n        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\n        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\n        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\n        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\n        Snow Cover Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-5P\n        Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        Building Footprints\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        service description\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json\"},{\"rel\":\"service-doc\",\"type\":\"text/html\",\"title\":\"OpenAPI\n        service documentation\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/docs\"}],\"stac_extensions\":[]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - close\n      Content-Length:\n      - '24872'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:08:58 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      x-azure-ref:\n      - 20250731T150857Z-r17d779659c8fdq2hC1DEN4mwn00000003m00000000081bq\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Connection:\n      - close\n      Host:\n      - planetarycomputer.microsoft.com\n      User-Agent:\n      - Python-urllib/3.12\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/\n  response:\n    body:\n      string: '{\"type\":\"Catalog\",\"id\":\"microsoft-pc\",\"title\":\"Microsoft Planetary\n        Computer STAC API\",\"description\":\"Searchable spatiotemporal metadata describing\n        Earth science datasets hosted by the Microsoft Planetary Computer\",\"stac_version\":\"1.0.0\",\"conformsTo\":[\"https://api.stacspec.org/v1.0.0/item-search#fields\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30\",\"https://api.stacspec.org/v1.0.0/item-search\",\"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/collections\",\"https://api.stacspec.org/v1.0.0-rc.2/item-search#filter\",\"http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-text\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-json\",\"http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter\",\"https://api.stacspec.org/v1.0.0/core\",\"https://api.stacspec.org/v1.0.0/item-search#sort\",\"https://api.stacspec.org/v1.0.0/ogcapi-features\"],\"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\n        conformance classes implemented by this server\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/conformance\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        search\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/search\",\"method\":\"GET\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        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\n        Annual Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Seamless DEMs\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Surface Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Forest\n        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\n        Annual North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Annual Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Tables\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HGB:\n        Harmonized Global Biomass for 2010\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        DEM GLO-30\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        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\n        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\n        IMERG\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Rasters\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Height above Ground\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        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\n        1 Radiometrically Terrain Corrected (RTC)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Intensity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Source\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MTBS:\n        Monitoring Trends in Burn Severity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"C-CAP\n        Regional Land Cover and Change\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Cloud\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Burned Area Monthly\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        Forest/Non-Forest Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Returns\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MoBI:\n        Map of Biodiversity Importance\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ERA5\n        - PDS\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chloris\n        Biomass\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HydroForecast\n        - Kwando & Upper Zambezi Rivers\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Planet-NICFI\n        Basemaps (Analytic)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Gross Primary Productivity 8-Day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Daily Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        3DEP Lidar Classification\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Terrain Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        Gap Land Cover\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Basemaps (Visual)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Global\n        Biodiversity Information Facility (GBIF)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        World 3D-30m\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        PALSAR Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Water Availability\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Net Evapotranspiration Yearly Gap-Filled\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Census\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"JRC\n        Global Surface Water\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Flood Maps\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Thermal Anomalies/Fire Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HREA:\n        High Resolution Electricity Access\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Vegetation Indices 16-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Level-2A\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Land Surface Temperature/Emissivity Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Vegetation Indices 16-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Land\n        Cover of Canada\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Snow Cover 8-day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ECMWF\n        Open Data (real-time)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        HGT v001\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Esri\n        10-Meter Land Cover (10-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-1\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Denver\n        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\n        Land Cover (7-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Cover (13-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Use\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        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\n        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\n        Cropland Data Layers (CDLs)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Urban\n        Innovation Eclipse Sensor Data\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ESA\n        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\n        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\n        National Wetlands Inventory\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        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\n        US Tabular Climate Normals\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        Lightning Detection\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel\n        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\n        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\n        L1T\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"CIL\n        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:\n        National Agriculture Imagery Program\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        Intactness\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sea\n        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\n        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\n        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\n        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\n        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\n        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\n        Snow Cover Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-5P\n        Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        Building Footprints\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        service description\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json\"},{\"rel\":\"service-doc\",\"type\":\"text/html\",\"title\":\"OpenAPI\n        service documentation\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/docs\"}],\"stac_extensions\":[]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - close\n      Content-Length:\n      - '24872'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:08:58 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      x-azure-ref:\n      - 20250731T150858Z-r17d779659c6gjnhhC1DENcrvc000000026g000000000qxt\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Connection:\n      - close\n      Host:\n      - planetarycomputer.microsoft.com\n      User-Agent:\n      - Python-urllib/3.12\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/\n  response:\n    body:\n      string: '{\"type\":\"Catalog\",\"id\":\"microsoft-pc\",\"title\":\"Microsoft Planetary\n        Computer STAC API\",\"description\":\"Searchable spatiotemporal metadata describing\n        Earth science datasets hosted by the Microsoft Planetary Computer\",\"stac_version\":\"1.0.0\",\"conformsTo\":[\"https://api.stacspec.org/v1.0.0/item-search#fields\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30\",\"https://api.stacspec.org/v1.0.0/item-search\",\"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/collections\",\"https://api.stacspec.org/v1.0.0-rc.2/item-search#filter\",\"http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-text\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-json\",\"http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter\",\"https://api.stacspec.org/v1.0.0/core\",\"https://api.stacspec.org/v1.0.0/item-search#sort\",\"https://api.stacspec.org/v1.0.0/ogcapi-features\"],\"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\n        conformance classes implemented by this server\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/conformance\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        search\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/search\",\"method\":\"GET\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        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\n        Annual Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Seamless DEMs\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Surface Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Forest\n        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\n        Annual North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Annual Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Tables\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HGB:\n        Harmonized Global Biomass for 2010\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        DEM GLO-30\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        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\n        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\n        IMERG\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Rasters\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Height above Ground\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        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\n        1 Radiometrically Terrain Corrected (RTC)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Intensity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Source\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MTBS:\n        Monitoring Trends in Burn Severity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"C-CAP\n        Regional Land Cover and Change\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Cloud\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Burned Area Monthly\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        Forest/Non-Forest Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Returns\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MoBI:\n        Map of Biodiversity Importance\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ERA5\n        - PDS\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chloris\n        Biomass\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HydroForecast\n        - Kwando & Upper Zambezi Rivers\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Planet-NICFI\n        Basemaps (Analytic)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Gross Primary Productivity 8-Day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Daily Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        3DEP Lidar Classification\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Terrain Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        Gap Land Cover\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Basemaps (Visual)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Global\n        Biodiversity Information Facility (GBIF)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        World 3D-30m\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        PALSAR Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Water Availability\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Net Evapotranspiration Yearly Gap-Filled\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Census\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"JRC\n        Global Surface Water\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Flood Maps\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Thermal Anomalies/Fire Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HREA:\n        High Resolution Electricity Access\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Vegetation Indices 16-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Level-2A\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Land Surface Temperature/Emissivity Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Vegetation Indices 16-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Land\n        Cover of Canada\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Snow Cover 8-day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ECMWF\n        Open Data (real-time)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        HGT v001\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Esri\n        10-Meter Land Cover (10-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-1\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Denver\n        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\n        Land Cover (7-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Cover (13-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Use\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        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\n        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\n        Cropland Data Layers (CDLs)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Urban\n        Innovation Eclipse Sensor Data\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ESA\n        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\n        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\n        National Wetlands Inventory\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        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\n        US Tabular Climate Normals\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        Lightning Detection\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel\n        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\n        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\n        L1T\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"CIL\n        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:\n        National Agriculture Imagery Program\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        Intactness\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sea\n        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\n        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\n        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\n        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\n        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\n        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\n        Snow Cover Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-5P\n        Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        Building Footprints\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        service description\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json\"},{\"rel\":\"service-doc\",\"type\":\"text/html\",\"title\":\"OpenAPI\n        service documentation\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/docs\"}],\"stac_extensions\":[]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - close\n      Content-Length:\n      - '24872'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:08:59 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      x-azure-ref:\n      - 20250731T150859Z-r17d779659cgb75vhC1DEN1dss00000005xg000000009gv5\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Connection:\n      - close\n      Host:\n      - planetarycomputer.microsoft.com\n      User-Agent:\n      - Python-urllib/3.12\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/\n  response:\n    body:\n      string: '{\"type\":\"Catalog\",\"id\":\"microsoft-pc\",\"title\":\"Microsoft Planetary\n        Computer STAC API\",\"description\":\"Searchable spatiotemporal metadata describing\n        Earth science datasets hosted by the Microsoft Planetary Computer\",\"stac_version\":\"1.0.0\",\"conformsTo\":[\"https://api.stacspec.org/v1.0.0/item-search#fields\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30\",\"https://api.stacspec.org/v1.0.0/item-search\",\"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/collections\",\"https://api.stacspec.org/v1.0.0-rc.2/item-search#filter\",\"http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-text\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-json\",\"http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter\",\"https://api.stacspec.org/v1.0.0/core\",\"https://api.stacspec.org/v1.0.0/item-search#sort\",\"https://api.stacspec.org/v1.0.0/ogcapi-features\"],\"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\n        conformance classes implemented by this server\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/conformance\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        search\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/search\",\"method\":\"GET\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        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\n        Annual Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Seamless DEMs\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Surface Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Forest\n        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\n        Annual North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Annual Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Tables\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HGB:\n        Harmonized Global Biomass for 2010\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        DEM GLO-30\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        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\n        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\n        IMERG\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Rasters\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Height above Ground\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        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\n        1 Radiometrically Terrain Corrected (RTC)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Intensity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Source\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MTBS:\n        Monitoring Trends in Burn Severity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"C-CAP\n        Regional Land Cover and Change\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Cloud\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Burned Area Monthly\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        Forest/Non-Forest Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Returns\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MoBI:\n        Map of Biodiversity Importance\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ERA5\n        - PDS\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chloris\n        Biomass\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HydroForecast\n        - Kwando & Upper Zambezi Rivers\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Planet-NICFI\n        Basemaps (Analytic)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Gross Primary Productivity 8-Day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Daily Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        3DEP Lidar Classification\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Terrain Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        Gap Land Cover\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Basemaps (Visual)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Global\n        Biodiversity Information Facility (GBIF)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        World 3D-30m\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        PALSAR Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Water Availability\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Net Evapotranspiration Yearly Gap-Filled\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Census\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"JRC\n        Global Surface Water\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Flood Maps\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Thermal Anomalies/Fire Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HREA:\n        High Resolution Electricity Access\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Vegetation Indices 16-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Level-2A\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Land Surface Temperature/Emissivity Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Vegetation Indices 16-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Land\n        Cover of Canada\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Snow Cover 8-day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ECMWF\n        Open Data (real-time)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        HGT v001\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Esri\n        10-Meter Land Cover (10-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-1\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Denver\n        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\n        Land Cover (7-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Cover (13-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Use\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        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\n        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\n        Cropland Data Layers (CDLs)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Urban\n        Innovation Eclipse Sensor Data\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ESA\n        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\n        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\n        National Wetlands Inventory\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        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\n        US Tabular Climate Normals\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        Lightning Detection\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel\n        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\n        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\n        L1T\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"CIL\n        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:\n        National Agriculture Imagery Program\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        Intactness\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sea\n        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\n        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\n        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\n        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\n        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\n        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\n        Snow Cover Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-5P\n        Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        Building Footprints\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        service description\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json\"},{\"rel\":\"service-doc\",\"type\":\"text/html\",\"title\":\"OpenAPI\n        service documentation\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/docs\"}],\"stac_extensions\":[]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - close\n      Content-Length:\n      - '24872'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:08:59 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      x-azure-ref:\n      - 20250731T150859Z-r17d779659clwxzchC1DEN2z9w0000000220000000006dyy\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Connection:\n      - close\n      Host:\n      - planetarycomputer.microsoft.com\n      User-Agent:\n      - Python-urllib/3.12\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/\n  response:\n    body:\n      string: '{\"type\":\"Catalog\",\"id\":\"microsoft-pc\",\"title\":\"Microsoft Planetary\n        Computer STAC API\",\"description\":\"Searchable spatiotemporal metadata describing\n        Earth science datasets hosted by the Microsoft Planetary Computer\",\"stac_version\":\"1.0.0\",\"conformsTo\":[\"https://api.stacspec.org/v1.0.0/item-search#fields\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30\",\"https://api.stacspec.org/v1.0.0/item-search\",\"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/collections\",\"https://api.stacspec.org/v1.0.0-rc.2/item-search#filter\",\"http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-text\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-json\",\"http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter\",\"https://api.stacspec.org/v1.0.0/core\",\"https://api.stacspec.org/v1.0.0/item-search#sort\",\"https://api.stacspec.org/v1.0.0/ogcapi-features\"],\"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\n        conformance classes implemented by this server\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/conformance\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        search\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/search\",\"method\":\"GET\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        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\n        Annual Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Seamless DEMs\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Surface Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Forest\n        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\n        Annual North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Annual Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Tables\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HGB:\n        Harmonized Global Biomass for 2010\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        DEM GLO-30\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        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\n        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\n        IMERG\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Rasters\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Height above Ground\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        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\n        1 Radiometrically Terrain Corrected (RTC)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Intensity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Source\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MTBS:\n        Monitoring Trends in Burn Severity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"C-CAP\n        Regional Land Cover and Change\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Cloud\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Burned Area Monthly\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        Forest/Non-Forest Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Returns\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MoBI:\n        Map of Biodiversity Importance\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ERA5\n        - PDS\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chloris\n        Biomass\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HydroForecast\n        - Kwando & Upper Zambezi Rivers\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Planet-NICFI\n        Basemaps (Analytic)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Gross Primary Productivity 8-Day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Daily Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        3DEP Lidar Classification\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Terrain Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        Gap Land Cover\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Basemaps (Visual)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Global\n        Biodiversity Information Facility (GBIF)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        World 3D-30m\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        PALSAR Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Water Availability\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Net Evapotranspiration Yearly Gap-Filled\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Census\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"JRC\n        Global Surface Water\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Flood Maps\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Thermal Anomalies/Fire Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HREA:\n        High Resolution Electricity Access\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Vegetation Indices 16-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Level-2A\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Land Surface Temperature/Emissivity Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Vegetation Indices 16-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Land\n        Cover of Canada\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Snow Cover 8-day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ECMWF\n        Open Data (real-time)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        HGT v001\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Esri\n        10-Meter Land Cover (10-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-1\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Denver\n        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\n        Land Cover (7-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Cover (13-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Use\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        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\n        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\n        Cropland Data Layers (CDLs)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Urban\n        Innovation Eclipse Sensor Data\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ESA\n        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\n        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\n        National Wetlands Inventory\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        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\n        US Tabular Climate Normals\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        Lightning Detection\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel\n        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\n        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\n        L1T\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"CIL\n        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:\n        National Agriculture Imagery Program\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        Intactness\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sea\n        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\n        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\n        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\n        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\n        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\n        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\n        Snow Cover Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-5P\n        Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        Building Footprints\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        service description\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json\"},{\"rel\":\"service-doc\",\"type\":\"text/html\",\"title\":\"OpenAPI\n        service documentation\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/docs\"}],\"stac_extensions\":[]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - close\n      Content-Length:\n      - '24872'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:09:00 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      x-azure-ref:\n      - 20250731T150859Z-r17d779659cz4m9lhC1DENepy00000000240000000004a31\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Connection:\n      - close\n      Host:\n      - planetarycomputer.microsoft.com\n      User-Agent:\n      - Python-urllib/3.12\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/\n  response:\n    body:\n      string: '{\"type\":\"Catalog\",\"id\":\"microsoft-pc\",\"title\":\"Microsoft Planetary\n        Computer STAC API\",\"description\":\"Searchable spatiotemporal metadata describing\n        Earth science datasets hosted by the Microsoft Planetary Computer\",\"stac_version\":\"1.0.0\",\"conformsTo\":[\"https://api.stacspec.org/v1.0.0/item-search#fields\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30\",\"https://api.stacspec.org/v1.0.0/item-search\",\"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/collections\",\"https://api.stacspec.org/v1.0.0-rc.2/item-search#filter\",\"http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-text\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-json\",\"http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter\",\"https://api.stacspec.org/v1.0.0/core\",\"https://api.stacspec.org/v1.0.0/item-search#sort\",\"https://api.stacspec.org/v1.0.0/ogcapi-features\"],\"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\n        conformance classes implemented by this server\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/conformance\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        search\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/search\",\"method\":\"GET\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        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\n        Annual Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Seamless DEMs\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Surface Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Forest\n        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\n        Annual North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Annual Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Tables\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HGB:\n        Harmonized Global Biomass for 2010\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        DEM GLO-30\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        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\n        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\n        IMERG\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Rasters\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Height above Ground\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        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\n        1 Radiometrically Terrain Corrected (RTC)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Intensity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Source\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MTBS:\n        Monitoring Trends in Burn Severity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"C-CAP\n        Regional Land Cover and Change\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Cloud\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Burned Area Monthly\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        Forest/Non-Forest Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Returns\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MoBI:\n        Map of Biodiversity Importance\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ERA5\n        - PDS\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chloris\n        Biomass\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HydroForecast\n        - Kwando & Upper Zambezi Rivers\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Planet-NICFI\n        Basemaps (Analytic)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Gross Primary Productivity 8-Day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Daily Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        3DEP Lidar Classification\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Terrain Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        Gap Land Cover\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Basemaps (Visual)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Global\n        Biodiversity Information Facility (GBIF)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        World 3D-30m\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        PALSAR Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Water Availability\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Net Evapotranspiration Yearly Gap-Filled\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Census\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"JRC\n        Global Surface Water\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Flood Maps\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Thermal Anomalies/Fire Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HREA:\n        High Resolution Electricity Access\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Vegetation Indices 16-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Level-2A\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Land Surface Temperature/Emissivity Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Vegetation Indices 16-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Land\n        Cover of Canada\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Snow Cover 8-day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ECMWF\n        Open Data (real-time)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        HGT v001\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Esri\n        10-Meter Land Cover (10-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-1\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Denver\n        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\n        Land Cover (7-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Cover (13-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Use\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        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\n        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\n        Cropland Data Layers (CDLs)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Urban\n        Innovation Eclipse Sensor Data\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ESA\n        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\n        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\n        National Wetlands Inventory\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        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\n        US Tabular Climate Normals\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        Lightning Detection\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel\n        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\n        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\n        L1T\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"CIL\n        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:\n        National Agriculture Imagery Program\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        Intactness\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sea\n        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\n        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\n        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\n        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\n        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\n        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\n        Snow Cover Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-5P\n        Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        Building Footprints\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        service description\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json\"},{\"rel\":\"service-doc\",\"type\":\"text/html\",\"title\":\"OpenAPI\n        service documentation\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/docs\"}],\"stac_extensions\":[]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - close\n      Content-Length:\n      - '24872'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:09:00 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      x-azure-ref:\n      - 20250731T150900Z-r17d779659chjt9hhC1DEN373s0000000260000000001eca\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Connection:\n      - close\n      Host:\n      - planetarycomputer.microsoft.com\n      User-Agent:\n      - Python-urllib/3.12\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/\n  response:\n    body:\n      string: '{\"type\":\"Catalog\",\"id\":\"microsoft-pc\",\"title\":\"Microsoft Planetary\n        Computer STAC API\",\"description\":\"Searchable spatiotemporal metadata describing\n        Earth science datasets hosted by the Microsoft Planetary Computer\",\"stac_version\":\"1.0.0\",\"conformsTo\":[\"https://api.stacspec.org/v1.0.0/item-search#fields\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30\",\"https://api.stacspec.org/v1.0.0/item-search\",\"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/collections\",\"https://api.stacspec.org/v1.0.0-rc.2/item-search#filter\",\"http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-text\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-json\",\"http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter\",\"https://api.stacspec.org/v1.0.0/core\",\"https://api.stacspec.org/v1.0.0/item-search#sort\",\"https://api.stacspec.org/v1.0.0/ogcapi-features\"],\"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\n        conformance classes implemented by this server\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/conformance\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        search\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/search\",\"method\":\"GET\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        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\n        Annual Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Seamless DEMs\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Surface Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Forest\n        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\n        Annual North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Annual Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Tables\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HGB:\n        Harmonized Global Biomass for 2010\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        DEM GLO-30\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        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\n        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\n        IMERG\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Rasters\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Height above Ground\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        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\n        1 Radiometrically Terrain Corrected (RTC)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Intensity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Source\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MTBS:\n        Monitoring Trends in Burn Severity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"C-CAP\n        Regional Land Cover and Change\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Cloud\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Burned Area Monthly\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        Forest/Non-Forest Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Returns\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MoBI:\n        Map of Biodiversity Importance\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ERA5\n        - PDS\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chloris\n        Biomass\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HydroForecast\n        - Kwando & Upper Zambezi Rivers\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Planet-NICFI\n        Basemaps (Analytic)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Gross Primary Productivity 8-Day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Daily Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        3DEP Lidar Classification\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Terrain Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        Gap Land Cover\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Basemaps (Visual)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Global\n        Biodiversity Information Facility (GBIF)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        World 3D-30m\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        PALSAR Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Water Availability\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Net Evapotranspiration Yearly Gap-Filled\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Census\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"JRC\n        Global Surface Water\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Flood Maps\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Thermal Anomalies/Fire Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HREA:\n        High Resolution Electricity Access\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Vegetation Indices 16-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Level-2A\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Land Surface Temperature/Emissivity Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Vegetation Indices 16-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Land\n        Cover of Canada\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Snow Cover 8-day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ECMWF\n        Open Data (real-time)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        HGT v001\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Esri\n        10-Meter Land Cover (10-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-1\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Denver\n        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\n        Land Cover (7-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Cover (13-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Use\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        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\n        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\n        Cropland Data Layers (CDLs)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Urban\n        Innovation Eclipse Sensor Data\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ESA\n        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\n        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\n        National Wetlands Inventory\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        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\n        US Tabular Climate Normals\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        Lightning Detection\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel\n        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\n        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\n        L1T\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"CIL\n        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:\n        National Agriculture Imagery Program\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        Intactness\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sea\n        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\n        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\n        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\n        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\n        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\n        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\n        Snow Cover Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-5P\n        Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        Building Footprints\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        service description\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json\"},{\"rel\":\"service-doc\",\"type\":\"text/html\",\"title\":\"OpenAPI\n        service documentation\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/docs\"}],\"stac_extensions\":[]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - close\n      Content-Length:\n      - '24872'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:09:01 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      x-azure-ref:\n      - 20250731T150900Z-r17d779659cl2jdhhC1DENntbs000000025g0000000024x9\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Connection:\n      - close\n      Host:\n      - planetarycomputer.microsoft.com\n      User-Agent:\n      - Python-urllib/3.12\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/\n  response:\n    body:\n      string: '{\"type\":\"Catalog\",\"id\":\"microsoft-pc\",\"title\":\"Microsoft Planetary\n        Computer STAC API\",\"description\":\"Searchable spatiotemporal metadata describing\n        Earth science datasets hosted by the Microsoft Planetary Computer\",\"stac_version\":\"1.0.0\",\"conformsTo\":[\"https://api.stacspec.org/v1.0.0/item-search#fields\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30\",\"https://api.stacspec.org/v1.0.0/item-search\",\"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/collections\",\"https://api.stacspec.org/v1.0.0-rc.2/item-search#filter\",\"http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-text\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-json\",\"http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter\",\"https://api.stacspec.org/v1.0.0/core\",\"https://api.stacspec.org/v1.0.0/item-search#sort\",\"https://api.stacspec.org/v1.0.0/ogcapi-features\"],\"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\n        conformance classes implemented by this server\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/conformance\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        search\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/search\",\"method\":\"GET\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        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\n        Annual Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Seamless DEMs\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Surface Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Forest\n        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\n        Annual North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Annual Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Tables\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HGB:\n        Harmonized Global Biomass for 2010\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        DEM GLO-30\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        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\n        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\n        IMERG\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Rasters\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Height above Ground\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        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\n        1 Radiometrically Terrain Corrected (RTC)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Intensity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Source\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MTBS:\n        Monitoring Trends in Burn Severity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"C-CAP\n        Regional Land Cover and Change\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Cloud\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Burned Area Monthly\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        Forest/Non-Forest Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Returns\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MoBI:\n        Map of Biodiversity Importance\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ERA5\n        - PDS\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chloris\n        Biomass\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HydroForecast\n        - Kwando & Upper Zambezi Rivers\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Planet-NICFI\n        Basemaps (Analytic)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Gross Primary Productivity 8-Day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Daily Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        3DEP Lidar Classification\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Terrain Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        Gap Land Cover\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Basemaps (Visual)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Global\n        Biodiversity Information Facility (GBIF)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        World 3D-30m\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        PALSAR Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Water Availability\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Net Evapotranspiration Yearly Gap-Filled\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Census\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"JRC\n        Global Surface Water\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Flood Maps\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Thermal Anomalies/Fire Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HREA:\n        High Resolution Electricity Access\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Vegetation Indices 16-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Level-2A\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Land Surface Temperature/Emissivity Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Vegetation Indices 16-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Land\n        Cover of Canada\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Snow Cover 8-day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ECMWF\n        Open Data (real-time)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        HGT v001\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Esri\n        10-Meter Land Cover (10-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-1\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Denver\n        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\n        Land Cover (7-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Cover (13-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Use\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        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\n        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\n        Cropland Data Layers (CDLs)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Urban\n        Innovation Eclipse Sensor Data\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ESA\n        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\n        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\n        National Wetlands Inventory\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        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\n        US Tabular Climate Normals\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        Lightning Detection\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel\n        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\n        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\n        L1T\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"CIL\n        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:\n        National Agriculture Imagery Program\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        Intactness\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sea\n        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\n        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\n        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\n        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\n        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\n        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\n        Snow Cover Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-5P\n        Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        Building Footprints\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        service description\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json\"},{\"rel\":\"service-doc\",\"type\":\"text/html\",\"title\":\"OpenAPI\n        service documentation\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/docs\"}],\"stac_extensions\":[]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - close\n      Content-Length:\n      - '24872'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:09:01 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      x-azure-ref:\n      - 20250731T150901Z-r17d779659c22gb9hC1DENxd5s00000004pg000000001n7g\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Connection:\n      - close\n      Host:\n      - planetarycomputer.microsoft.com\n      User-Agent:\n      - Python-urllib/3.12\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/\n  response:\n    body:\n      string: '{\"type\":\"Catalog\",\"id\":\"microsoft-pc\",\"title\":\"Microsoft Planetary\n        Computer STAC API\",\"description\":\"Searchable spatiotemporal metadata describing\n        Earth science datasets hosted by the Microsoft Planetary Computer\",\"stac_version\":\"1.0.0\",\"conformsTo\":[\"https://api.stacspec.org/v1.0.0/item-search#fields\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30\",\"https://api.stacspec.org/v1.0.0/item-search\",\"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/collections\",\"https://api.stacspec.org/v1.0.0-rc.2/item-search#filter\",\"http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-text\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-json\",\"http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter\",\"https://api.stacspec.org/v1.0.0/core\",\"https://api.stacspec.org/v1.0.0/item-search#sort\",\"https://api.stacspec.org/v1.0.0/ogcapi-features\"],\"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\n        conformance classes implemented by this server\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/conformance\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        search\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/search\",\"method\":\"GET\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        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\n        Annual Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Seamless DEMs\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Surface Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Forest\n        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\n        Annual North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Annual Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Tables\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HGB:\n        Harmonized Global Biomass for 2010\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        DEM GLO-30\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        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\n        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\n        IMERG\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Rasters\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Height above Ground\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        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\n        1 Radiometrically Terrain Corrected (RTC)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Intensity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Source\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MTBS:\n        Monitoring Trends in Burn Severity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"C-CAP\n        Regional Land Cover and Change\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Cloud\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Burned Area Monthly\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        Forest/Non-Forest Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Returns\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MoBI:\n        Map of Biodiversity Importance\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ERA5\n        - PDS\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chloris\n        Biomass\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HydroForecast\n        - Kwando & Upper Zambezi Rivers\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Planet-NICFI\n        Basemaps (Analytic)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Gross Primary Productivity 8-Day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Daily Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        3DEP Lidar Classification\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Terrain Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        Gap Land Cover\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Basemaps (Visual)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Global\n        Biodiversity Information Facility (GBIF)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        World 3D-30m\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        PALSAR Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Water Availability\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Net Evapotranspiration Yearly Gap-Filled\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Census\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"JRC\n        Global Surface Water\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Flood Maps\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Thermal Anomalies/Fire Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HREA:\n        High Resolution Electricity Access\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Vegetation Indices 16-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Level-2A\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Land Surface Temperature/Emissivity Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Vegetation Indices 16-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Land\n        Cover of Canada\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Snow Cover 8-day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ECMWF\n        Open Data (real-time)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        HGT v001\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Esri\n        10-Meter Land Cover (10-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-1\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Denver\n        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\n        Land Cover (7-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Cover (13-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Use\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        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\n        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\n        Cropland Data Layers (CDLs)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Urban\n        Innovation Eclipse Sensor Data\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ESA\n        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\n        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\n        National Wetlands Inventory\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        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\n        US Tabular Climate Normals\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        Lightning Detection\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel\n        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\n        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\n        L1T\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"CIL\n        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:\n        National Agriculture Imagery Program\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        Intactness\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sea\n        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\n        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\n        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\n        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\n        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\n        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\n        Snow Cover Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-5P\n        Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        Building Footprints\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        service description\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json\"},{\"rel\":\"service-doc\",\"type\":\"text/html\",\"title\":\"OpenAPI\n        service documentation\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/docs\"}],\"stac_extensions\":[]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - close\n      Content-Length:\n      - '24872'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:09:02 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      x-azure-ref:\n      - 20250731T150902Z-r17d779659cgb75vhC1DEN1dss000000060g000000005cmy\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Connection:\n      - close\n      Host:\n      - planetarycomputer.microsoft.com\n      User-Agent:\n      - Python-urllib/3.12\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/\n  response:\n    body:\n      string: '{\"type\":\"Catalog\",\"id\":\"microsoft-pc\",\"title\":\"Microsoft Planetary\n        Computer STAC API\",\"description\":\"Searchable spatiotemporal metadata describing\n        Earth science datasets hosted by the Microsoft Planetary Computer\",\"stac_version\":\"1.0.0\",\"conformsTo\":[\"https://api.stacspec.org/v1.0.0/item-search#fields\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30\",\"https://api.stacspec.org/v1.0.0/item-search\",\"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/collections\",\"https://api.stacspec.org/v1.0.0-rc.2/item-search#filter\",\"http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-text\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-json\",\"http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter\",\"https://api.stacspec.org/v1.0.0/core\",\"https://api.stacspec.org/v1.0.0/item-search#sort\",\"https://api.stacspec.org/v1.0.0/ogcapi-features\"],\"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\n        conformance classes implemented by this server\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/conformance\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        search\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/search\",\"method\":\"GET\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        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\n        Annual Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Seamless DEMs\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Surface Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Forest\n        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\n        Annual North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Annual Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Tables\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HGB:\n        Harmonized Global Biomass for 2010\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        DEM GLO-30\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        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\n        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\n        IMERG\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Rasters\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Height above Ground\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        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\n        1 Radiometrically Terrain Corrected (RTC)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Intensity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Source\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MTBS:\n        Monitoring Trends in Burn Severity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"C-CAP\n        Regional Land Cover and Change\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Cloud\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Burned Area Monthly\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        Forest/Non-Forest Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Returns\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MoBI:\n        Map of Biodiversity Importance\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ERA5\n        - PDS\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chloris\n        Biomass\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HydroForecast\n        - Kwando & Upper Zambezi Rivers\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Planet-NICFI\n        Basemaps (Analytic)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Gross Primary Productivity 8-Day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Daily Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        3DEP Lidar Classification\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Terrain Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        Gap Land Cover\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Basemaps (Visual)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Global\n        Biodiversity Information Facility (GBIF)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        World 3D-30m\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        PALSAR Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Water Availability\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Net Evapotranspiration Yearly Gap-Filled\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Census\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"JRC\n        Global Surface Water\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Flood Maps\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Thermal Anomalies/Fire Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HREA:\n        High Resolution Electricity Access\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Vegetation Indices 16-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Level-2A\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Land Surface Temperature/Emissivity Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Vegetation Indices 16-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Land\n        Cover of Canada\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Snow Cover 8-day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ECMWF\n        Open Data (real-time)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        HGT v001\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Esri\n        10-Meter Land Cover (10-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-1\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Denver\n        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\n        Land Cover (7-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Cover (13-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Use\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        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\n        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\n        Cropland Data Layers (CDLs)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Urban\n        Innovation Eclipse Sensor Data\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ESA\n        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\n        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\n        National Wetlands Inventory\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        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\n        US Tabular Climate Normals\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        Lightning Detection\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel\n        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\n        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\n        L1T\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"CIL\n        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:\n        National Agriculture Imagery Program\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        Intactness\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sea\n        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\n        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\n        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\n        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\n        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\n        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\n        Snow Cover Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-5P\n        Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        Building Footprints\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        service description\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json\"},{\"rel\":\"service-doc\",\"type\":\"text/html\",\"title\":\"OpenAPI\n        service documentation\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/docs\"}],\"stac_extensions\":[]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - close\n      Content-Length:\n      - '24872'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:09:03 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      x-azure-ref:\n      - 20250731T150902Z-r17d779659clwxzchC1DEN2z9w000000023g0000000045r3\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Connection:\n      - close\n      Host:\n      - planetarycomputer.microsoft.com\n      User-Agent:\n      - Python-urllib/3.12\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/\n  response:\n    body:\n      string: '{\"type\":\"Catalog\",\"id\":\"microsoft-pc\",\"title\":\"Microsoft Planetary\n        Computer STAC API\",\"description\":\"Searchable spatiotemporal metadata describing\n        Earth science datasets hosted by the Microsoft Planetary Computer\",\"stac_version\":\"1.0.0\",\"conformsTo\":[\"https://api.stacspec.org/v1.0.0/item-search#fields\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30\",\"https://api.stacspec.org/v1.0.0/item-search\",\"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/collections\",\"https://api.stacspec.org/v1.0.0-rc.2/item-search#filter\",\"http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-text\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-json\",\"http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter\",\"https://api.stacspec.org/v1.0.0/core\",\"https://api.stacspec.org/v1.0.0/item-search#sort\",\"https://api.stacspec.org/v1.0.0/ogcapi-features\"],\"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\n        conformance classes implemented by this server\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/conformance\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        search\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/search\",\"method\":\"GET\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        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\n        Annual Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Seamless DEMs\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Surface Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Forest\n        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\n        Annual North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Annual Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Tables\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HGB:\n        Harmonized Global Biomass for 2010\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        DEM GLO-30\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        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\n        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\n        IMERG\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Rasters\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Height above Ground\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        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\n        1 Radiometrically Terrain Corrected (RTC)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Intensity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Source\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MTBS:\n        Monitoring Trends in Burn Severity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"C-CAP\n        Regional Land Cover and Change\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Cloud\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Burned Area Monthly\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        Forest/Non-Forest Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Returns\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MoBI:\n        Map of Biodiversity Importance\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ERA5\n        - PDS\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chloris\n        Biomass\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HydroForecast\n        - Kwando & Upper Zambezi Rivers\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Planet-NICFI\n        Basemaps (Analytic)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Gross Primary Productivity 8-Day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Daily Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        3DEP Lidar Classification\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Terrain Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        Gap Land Cover\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Basemaps (Visual)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Global\n        Biodiversity Information Facility (GBIF)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        World 3D-30m\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        PALSAR Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Water Availability\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Net Evapotranspiration Yearly Gap-Filled\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Census\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"JRC\n        Global Surface Water\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Flood Maps\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Thermal Anomalies/Fire Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HREA:\n        High Resolution Electricity Access\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Vegetation Indices 16-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Level-2A\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Land Surface Temperature/Emissivity Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Vegetation Indices 16-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Land\n        Cover of Canada\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Snow Cover 8-day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ECMWF\n        Open Data (real-time)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        HGT v001\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Esri\n        10-Meter Land Cover (10-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-1\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Denver\n        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\n        Land Cover (7-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Cover (13-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Use\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        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\n        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\n        Cropland Data Layers (CDLs)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Urban\n        Innovation Eclipse Sensor Data\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ESA\n        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\n        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\n        National Wetlands Inventory\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        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\n        US Tabular Climate Normals\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        Lightning Detection\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel\n        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\n        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\n        L1T\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"CIL\n        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:\n        National Agriculture Imagery Program\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        Intactness\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sea\n        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\n        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\n        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\n        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\n        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\n        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\n        Snow Cover Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-5P\n        Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        Building Footprints\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        service description\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json\"},{\"rel\":\"service-doc\",\"type\":\"text/html\",\"title\":\"OpenAPI\n        service documentation\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/docs\"}],\"stac_extensions\":[]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - close\n      Content-Length:\n      - '24872'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:09:04 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      x-azure-ref:\n      - 20250731T150903Z-r17d779659cdp9hwhC1DEN390s00000003p000000000397k\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Connection:\n      - close\n      Host:\n      - planetarycomputer.microsoft.com\n      User-Agent:\n      - Python-urllib/3.12\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/\n  response:\n    body:\n      string: '{\"type\":\"Catalog\",\"id\":\"microsoft-pc\",\"title\":\"Microsoft Planetary\n        Computer STAC API\",\"description\":\"Searchable spatiotemporal metadata describing\n        Earth science datasets hosted by the Microsoft Planetary Computer\",\"stac_version\":\"1.0.0\",\"conformsTo\":[\"https://api.stacspec.org/v1.0.0/item-search#fields\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30\",\"https://api.stacspec.org/v1.0.0/item-search\",\"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/collections\",\"https://api.stacspec.org/v1.0.0-rc.2/item-search#filter\",\"http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-text\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-json\",\"http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter\",\"https://api.stacspec.org/v1.0.0/core\",\"https://api.stacspec.org/v1.0.0/item-search#sort\",\"https://api.stacspec.org/v1.0.0/ogcapi-features\"],\"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\n        conformance classes implemented by this server\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/conformance\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        search\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/search\",\"method\":\"GET\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        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\n        Annual Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Seamless DEMs\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Surface Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Forest\n        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\n        Annual North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Annual Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Tables\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HGB:\n        Harmonized Global Biomass for 2010\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        DEM GLO-30\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        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\n        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\n        IMERG\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Rasters\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Height above Ground\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        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\n        1 Radiometrically Terrain Corrected (RTC)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Intensity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Source\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MTBS:\n        Monitoring Trends in Burn Severity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"C-CAP\n        Regional Land Cover and Change\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Cloud\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Burned Area Monthly\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        Forest/Non-Forest Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Returns\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MoBI:\n        Map of Biodiversity Importance\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ERA5\n        - PDS\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chloris\n        Biomass\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HydroForecast\n        - Kwando & Upper Zambezi Rivers\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Planet-NICFI\n        Basemaps (Analytic)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Gross Primary Productivity 8-Day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Daily Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        3DEP Lidar Classification\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Terrain Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        Gap Land Cover\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Basemaps (Visual)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Global\n        Biodiversity Information Facility (GBIF)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        World 3D-30m\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        PALSAR Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Water Availability\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Net Evapotranspiration Yearly Gap-Filled\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Census\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"JRC\n        Global Surface Water\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Flood Maps\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Thermal Anomalies/Fire Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HREA:\n        High Resolution Electricity Access\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Vegetation Indices 16-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Level-2A\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Land Surface Temperature/Emissivity Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Vegetation Indices 16-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Land\n        Cover of Canada\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Snow Cover 8-day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ECMWF\n        Open Data (real-time)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        HGT v001\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Esri\n        10-Meter Land Cover (10-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-1\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Denver\n        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\n        Land Cover (7-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Cover (13-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Use\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        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\n        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\n        Cropland Data Layers (CDLs)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Urban\n        Innovation Eclipse Sensor Data\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ESA\n        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\n        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\n        National Wetlands Inventory\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        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\n        US Tabular Climate Normals\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        Lightning Detection\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel\n        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\n        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\n        L1T\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"CIL\n        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:\n        National Agriculture Imagery Program\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        Intactness\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sea\n        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\n        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\n        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\n        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\n        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\n        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\n        Snow Cover Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-5P\n        Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        Building Footprints\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        service description\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json\"},{\"rel\":\"service-doc\",\"type\":\"text/html\",\"title\":\"OpenAPI\n        service documentation\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/docs\"}],\"stac_extensions\":[]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - close\n      Content-Length:\n      - '24872'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:09:04 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      x-azure-ref:\n      - 20250731T150904Z-r17d779659c44ntghC1DEN26ng000000025000000000482a\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Connection:\n      - close\n      Host:\n      - planetarycomputer.microsoft.com\n      User-Agent:\n      - Python-urllib/3.12\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/\n  response:\n    body:\n      string: '{\"type\":\"Catalog\",\"id\":\"microsoft-pc\",\"title\":\"Microsoft Planetary\n        Computer STAC API\",\"description\":\"Searchable spatiotemporal metadata describing\n        Earth science datasets hosted by the Microsoft Planetary Computer\",\"stac_version\":\"1.0.0\",\"conformsTo\":[\"https://api.stacspec.org/v1.0.0/item-search#fields\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30\",\"https://api.stacspec.org/v1.0.0/item-search\",\"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/collections\",\"https://api.stacspec.org/v1.0.0-rc.2/item-search#filter\",\"http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-text\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-json\",\"http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter\",\"https://api.stacspec.org/v1.0.0/core\",\"https://api.stacspec.org/v1.0.0/item-search#sort\",\"https://api.stacspec.org/v1.0.0/ogcapi-features\"],\"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\n        conformance classes implemented by this server\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/conformance\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        search\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/search\",\"method\":\"GET\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        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\n        Annual Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Seamless DEMs\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Surface Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Forest\n        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\n        Annual North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Annual Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Tables\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HGB:\n        Harmonized Global Biomass for 2010\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        DEM GLO-30\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        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\n        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\n        IMERG\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Rasters\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Height above Ground\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        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\n        1 Radiometrically Terrain Corrected (RTC)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Intensity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Source\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MTBS:\n        Monitoring Trends in Burn Severity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"C-CAP\n        Regional Land Cover and Change\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Cloud\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Burned Area Monthly\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        Forest/Non-Forest Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Returns\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MoBI:\n        Map of Biodiversity Importance\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ERA5\n        - PDS\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chloris\n        Biomass\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HydroForecast\n        - Kwando & Upper Zambezi Rivers\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Planet-NICFI\n        Basemaps (Analytic)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Gross Primary Productivity 8-Day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Daily Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        3DEP Lidar Classification\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Terrain Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        Gap Land Cover\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Basemaps (Visual)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Global\n        Biodiversity Information Facility (GBIF)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        World 3D-30m\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        PALSAR Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Water Availability\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Net Evapotranspiration Yearly Gap-Filled\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Census\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"JRC\n        Global Surface Water\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Flood Maps\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Thermal Anomalies/Fire Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HREA:\n        High Resolution Electricity Access\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Vegetation Indices 16-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Level-2A\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Land Surface Temperature/Emissivity Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Vegetation Indices 16-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Land\n        Cover of Canada\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Snow Cover 8-day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ECMWF\n        Open Data (real-time)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        HGT v001\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Esri\n        10-Meter Land Cover (10-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-1\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Denver\n        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\n        Land Cover (7-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Cover (13-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Use\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        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\n        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\n        Cropland Data Layers (CDLs)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Urban\n        Innovation Eclipse Sensor Data\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ESA\n        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\n        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\n        National Wetlands Inventory\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        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\n        US Tabular Climate Normals\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        Lightning Detection\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel\n        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\n        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\n        L1T\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"CIL\n        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:\n        National Agriculture Imagery Program\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        Intactness\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sea\n        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\n        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\n        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\n        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\n        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\n        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\n        Snow Cover Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-5P\n        Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        Building Footprints\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        service description\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json\"},{\"rel\":\"service-doc\",\"type\":\"text/html\",\"title\":\"OpenAPI\n        service documentation\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/docs\"}],\"stac_extensions\":[]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - close\n      Content-Length:\n      - '24872'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:09:05 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      x-azure-ref:\n      - 20250731T150904Z-r17d779659cc6ljlhC1DEN6s8000000004k00000000068w3\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Connection:\n      - close\n      Host:\n      - planetarycomputer.microsoft.com\n      User-Agent:\n      - Python-urllib/3.12\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/\n  response:\n    body:\n      string: '{\"type\":\"Catalog\",\"id\":\"microsoft-pc\",\"title\":\"Microsoft Planetary\n        Computer STAC API\",\"description\":\"Searchable spatiotemporal metadata describing\n        Earth science datasets hosted by the Microsoft Planetary Computer\",\"stac_version\":\"1.0.0\",\"conformsTo\":[\"https://api.stacspec.org/v1.0.0/item-search#fields\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30\",\"https://api.stacspec.org/v1.0.0/item-search\",\"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/collections\",\"https://api.stacspec.org/v1.0.0-rc.2/item-search#filter\",\"http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-text\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-json\",\"http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter\",\"https://api.stacspec.org/v1.0.0/core\",\"https://api.stacspec.org/v1.0.0/item-search#sort\",\"https://api.stacspec.org/v1.0.0/ogcapi-features\"],\"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\n        conformance classes implemented by this server\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/conformance\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        search\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/search\",\"method\":\"GET\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        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\n        Annual Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Seamless DEMs\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Surface Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Forest\n        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\n        Annual North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Annual Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Tables\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HGB:\n        Harmonized Global Biomass for 2010\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        DEM GLO-30\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        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\n        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\n        IMERG\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Rasters\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Height above Ground\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        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\n        1 Radiometrically Terrain Corrected (RTC)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Intensity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Source\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MTBS:\n        Monitoring Trends in Burn Severity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"C-CAP\n        Regional Land Cover and Change\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Cloud\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Burned Area Monthly\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        Forest/Non-Forest Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Returns\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MoBI:\n        Map of Biodiversity Importance\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ERA5\n        - PDS\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chloris\n        Biomass\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HydroForecast\n        - Kwando & Upper Zambezi Rivers\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Planet-NICFI\n        Basemaps (Analytic)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Gross Primary Productivity 8-Day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Daily Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        3DEP Lidar Classification\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Terrain Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        Gap Land Cover\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Basemaps (Visual)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Global\n        Biodiversity Information Facility (GBIF)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        World 3D-30m\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        PALSAR Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Water Availability\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Net Evapotranspiration Yearly Gap-Filled\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Census\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"JRC\n        Global Surface Water\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Flood Maps\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Thermal Anomalies/Fire Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HREA:\n        High Resolution Electricity Access\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Vegetation Indices 16-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Level-2A\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Land Surface Temperature/Emissivity Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Vegetation Indices 16-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Land\n        Cover of Canada\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Snow Cover 8-day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ECMWF\n        Open Data (real-time)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        HGT v001\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Esri\n        10-Meter Land Cover (10-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-1\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Denver\n        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\n        Land Cover (7-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Cover (13-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Use\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        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\n        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\n        Cropland Data Layers (CDLs)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Urban\n        Innovation Eclipse Sensor Data\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ESA\n        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\n        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\n        National Wetlands Inventory\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        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\n        US Tabular Climate Normals\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        Lightning Detection\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel\n        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\n        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\n        L1T\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"CIL\n        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:\n        National Agriculture Imagery Program\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        Intactness\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sea\n        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\n        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\n        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\n        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\n        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\n        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\n        Snow Cover Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-5P\n        Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        Building Footprints\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        service description\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json\"},{\"rel\":\"service-doc\",\"type\":\"text/html\",\"title\":\"OpenAPI\n        service documentation\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/docs\"}],\"stac_extensions\":[]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - close\n      Content-Length:\n      - '24872'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:09:05 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      x-azure-ref:\n      - 20250731T150905Z-r17d779659cspvb8hC1DENa2x400000004q00000000017w8\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Connection:\n      - close\n      Host:\n      - planetarycomputer.microsoft.com\n      User-Agent:\n      - Python-urllib/3.12\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/\n  response:\n    body:\n      string: '{\"type\":\"Catalog\",\"id\":\"microsoft-pc\",\"title\":\"Microsoft Planetary\n        Computer STAC API\",\"description\":\"Searchable spatiotemporal metadata describing\n        Earth science datasets hosted by the Microsoft Planetary Computer\",\"stac_version\":\"1.0.0\",\"conformsTo\":[\"https://api.stacspec.org/v1.0.0/item-search#fields\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30\",\"https://api.stacspec.org/v1.0.0/item-search\",\"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/collections\",\"https://api.stacspec.org/v1.0.0-rc.2/item-search#filter\",\"http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-text\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-json\",\"http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter\",\"https://api.stacspec.org/v1.0.0/core\",\"https://api.stacspec.org/v1.0.0/item-search#sort\",\"https://api.stacspec.org/v1.0.0/ogcapi-features\"],\"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\n        conformance classes implemented by this server\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/conformance\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        search\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/search\",\"method\":\"GET\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        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\n        Annual Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Seamless DEMs\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Surface Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Forest\n        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\n        Annual North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Annual Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Tables\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HGB:\n        Harmonized Global Biomass for 2010\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        DEM GLO-30\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        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\n        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\n        IMERG\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Rasters\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Height above Ground\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        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\n        1 Radiometrically Terrain Corrected (RTC)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Intensity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Source\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MTBS:\n        Monitoring Trends in Burn Severity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"C-CAP\n        Regional Land Cover and Change\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Cloud\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Burned Area Monthly\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        Forest/Non-Forest Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Returns\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MoBI:\n        Map of Biodiversity Importance\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ERA5\n        - PDS\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chloris\n        Biomass\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HydroForecast\n        - Kwando & Upper Zambezi Rivers\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Planet-NICFI\n        Basemaps (Analytic)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Gross Primary Productivity 8-Day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Daily Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        3DEP Lidar Classification\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Terrain Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        Gap Land Cover\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Basemaps (Visual)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Global\n        Biodiversity Information Facility (GBIF)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        World 3D-30m\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        PALSAR Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Water Availability\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Net Evapotranspiration Yearly Gap-Filled\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Census\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"JRC\n        Global Surface Water\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Flood Maps\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Thermal Anomalies/Fire Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HREA:\n        High Resolution Electricity Access\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Vegetation Indices 16-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Level-2A\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Land Surface Temperature/Emissivity Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Vegetation Indices 16-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Land\n        Cover of Canada\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Snow Cover 8-day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ECMWF\n        Open Data (real-time)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        HGT v001\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Esri\n        10-Meter Land Cover (10-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-1\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Denver\n        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\n        Land Cover (7-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Cover (13-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Use\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        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\n        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\n        Cropland Data Layers (CDLs)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Urban\n        Innovation Eclipse Sensor Data\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ESA\n        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\n        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\n        National Wetlands Inventory\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        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\n        US Tabular Climate Normals\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        Lightning Detection\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel\n        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\n        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\n        L1T\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"CIL\n        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:\n        National Agriculture Imagery Program\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        Intactness\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sea\n        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\n        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\n        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\n        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\n        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\n        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\n        Snow Cover Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-5P\n        Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        Building Footprints\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        service description\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json\"},{\"rel\":\"service-doc\",\"type\":\"text/html\",\"title\":\"OpenAPI\n        service documentation\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/docs\"}],\"stac_extensions\":[]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - close\n      Content-Length:\n      - '24872'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:09:06 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      x-azure-ref:\n      - 20250731T150906Z-r17d779659cqdtckhC1DENvakn0000000210000000007tfx\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Connection:\n      - close\n      Host:\n      - planetarycomputer.microsoft.com\n      User-Agent:\n      - Python-urllib/3.12\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/\n  response:\n    body:\n      string: '{\"type\":\"Catalog\",\"id\":\"microsoft-pc\",\"title\":\"Microsoft Planetary\n        Computer STAC API\",\"description\":\"Searchable spatiotemporal metadata describing\n        Earth science datasets hosted by the Microsoft Planetary Computer\",\"stac_version\":\"1.0.0\",\"conformsTo\":[\"https://api.stacspec.org/v1.0.0/item-search#fields\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30\",\"https://api.stacspec.org/v1.0.0/item-search\",\"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/collections\",\"https://api.stacspec.org/v1.0.0-rc.2/item-search#filter\",\"http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-text\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-json\",\"http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter\",\"https://api.stacspec.org/v1.0.0/core\",\"https://api.stacspec.org/v1.0.0/item-search#sort\",\"https://api.stacspec.org/v1.0.0/ogcapi-features\"],\"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\n        conformance classes implemented by this server\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/conformance\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        search\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/search\",\"method\":\"GET\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        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\n        Annual Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Seamless DEMs\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Surface Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Forest\n        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\n        Annual North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Annual Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Tables\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HGB:\n        Harmonized Global Biomass for 2010\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        DEM GLO-30\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        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\n        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\n        IMERG\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Rasters\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Height above Ground\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        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\n        1 Radiometrically Terrain Corrected (RTC)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Intensity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Source\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MTBS:\n        Monitoring Trends in Burn Severity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"C-CAP\n        Regional Land Cover and Change\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Cloud\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Burned Area Monthly\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        Forest/Non-Forest Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Returns\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MoBI:\n        Map of Biodiversity Importance\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ERA5\n        - PDS\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chloris\n        Biomass\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HydroForecast\n        - Kwando & Upper Zambezi Rivers\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Planet-NICFI\n        Basemaps (Analytic)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Gross Primary Productivity 8-Day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Daily Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        3DEP Lidar Classification\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Terrain Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        Gap Land Cover\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Basemaps (Visual)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Global\n        Biodiversity Information Facility (GBIF)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        World 3D-30m\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        PALSAR Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Water Availability\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Net Evapotranspiration Yearly Gap-Filled\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Census\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"JRC\n        Global Surface Water\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Flood Maps\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Thermal Anomalies/Fire Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HREA:\n        High Resolution Electricity Access\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Vegetation Indices 16-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Level-2A\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Land Surface Temperature/Emissivity Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Vegetation Indices 16-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Land\n        Cover of Canada\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Snow Cover 8-day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ECMWF\n        Open Data (real-time)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        HGT v001\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Esri\n        10-Meter Land Cover (10-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-1\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Denver\n        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\n        Land Cover (7-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Cover (13-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Use\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        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\n        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\n        Cropland Data Layers (CDLs)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Urban\n        Innovation Eclipse Sensor Data\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ESA\n        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\n        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\n        National Wetlands Inventory\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        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\n        US Tabular Climate Normals\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        Lightning Detection\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel\n        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\n        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\n        L1T\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"CIL\n        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:\n        National Agriculture Imagery Program\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        Intactness\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sea\n        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\n        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\n        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\n        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\n        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\n        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\n        Snow Cover Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-5P\n        Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        Building Footprints\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        service description\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json\"},{\"rel\":\"service-doc\",\"type\":\"text/html\",\"title\":\"OpenAPI\n        service documentation\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/docs\"}],\"stac_extensions\":[]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - close\n      Content-Length:\n      - '24872'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:09:06 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      x-azure-ref:\n      - 20250731T150906Z-r17d779659c6jjw2hC1DEN3gnw00000004n0000000005b9g\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Connection:\n      - close\n      Host:\n      - planetarycomputer.microsoft.com\n      User-Agent:\n      - Python-urllib/3.12\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/\n  response:\n    body:\n      string: '{\"type\":\"Catalog\",\"id\":\"microsoft-pc\",\"title\":\"Microsoft Planetary\n        Computer STAC API\",\"description\":\"Searchable spatiotemporal metadata describing\n        Earth science datasets hosted by the Microsoft Planetary Computer\",\"stac_version\":\"1.0.0\",\"conformsTo\":[\"https://api.stacspec.org/v1.0.0/item-search#fields\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30\",\"https://api.stacspec.org/v1.0.0/item-search\",\"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/collections\",\"https://api.stacspec.org/v1.0.0-rc.2/item-search#filter\",\"http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-text\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-json\",\"http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter\",\"https://api.stacspec.org/v1.0.0/core\",\"https://api.stacspec.org/v1.0.0/item-search#sort\",\"https://api.stacspec.org/v1.0.0/ogcapi-features\"],\"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\n        conformance classes implemented by this server\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/conformance\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        search\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/search\",\"method\":\"GET\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        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\n        Annual Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Seamless DEMs\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Surface Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Forest\n        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\n        Annual North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Annual Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Tables\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HGB:\n        Harmonized Global Biomass for 2010\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        DEM GLO-30\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        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\n        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\n        IMERG\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Rasters\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Height above Ground\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        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\n        1 Radiometrically Terrain Corrected (RTC)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Intensity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Source\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MTBS:\n        Monitoring Trends in Burn Severity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"C-CAP\n        Regional Land Cover and Change\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Cloud\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Burned Area Monthly\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        Forest/Non-Forest Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Returns\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MoBI:\n        Map of Biodiversity Importance\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ERA5\n        - PDS\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chloris\n        Biomass\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HydroForecast\n        - Kwando & Upper Zambezi Rivers\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Planet-NICFI\n        Basemaps (Analytic)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Gross Primary Productivity 8-Day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Daily Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        3DEP Lidar Classification\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Terrain Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        Gap Land Cover\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Basemaps (Visual)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Global\n        Biodiversity Information Facility (GBIF)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        World 3D-30m\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        PALSAR Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Water Availability\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Net Evapotranspiration Yearly Gap-Filled\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Census\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"JRC\n        Global Surface Water\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Flood Maps\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Thermal Anomalies/Fire Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HREA:\n        High Resolution Electricity Access\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Vegetation Indices 16-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Level-2A\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Land Surface Temperature/Emissivity Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Vegetation Indices 16-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Land\n        Cover of Canada\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Snow Cover 8-day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ECMWF\n        Open Data (real-time)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        HGT v001\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Esri\n        10-Meter Land Cover (10-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-1\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Denver\n        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\n        Land Cover (7-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Cover (13-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Use\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        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\n        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\n        Cropland Data Layers (CDLs)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Urban\n        Innovation Eclipse Sensor Data\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ESA\n        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\n        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\n        National Wetlands Inventory\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        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\n        US Tabular Climate Normals\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        Lightning Detection\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel\n        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\n        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\n        L1T\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"CIL\n        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:\n        National Agriculture Imagery Program\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        Intactness\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sea\n        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\n        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\n        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\n        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\n        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\n        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\n        Snow Cover Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-5P\n        Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        Building Footprints\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        service description\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json\"},{\"rel\":\"service-doc\",\"type\":\"text/html\",\"title\":\"OpenAPI\n        service documentation\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/docs\"}],\"stac_extensions\":[]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - close\n      Content-Length:\n      - '24872'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:09:07 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      x-azure-ref:\n      - 20250731T150906Z-r17d779659cl2jdhhC1DENntbs000000021000000000803v\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Connection:\n      - close\n      Host:\n      - planetarycomputer.microsoft.com\n      User-Agent:\n      - Python-urllib/3.12\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/\n  response:\n    body:\n      string: '{\"type\":\"Catalog\",\"id\":\"microsoft-pc\",\"title\":\"Microsoft Planetary\n        Computer STAC API\",\"description\":\"Searchable spatiotemporal metadata describing\n        Earth science datasets hosted by the Microsoft Planetary Computer\",\"stac_version\":\"1.0.0\",\"conformsTo\":[\"https://api.stacspec.org/v1.0.0/item-search#fields\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30\",\"https://api.stacspec.org/v1.0.0/item-search\",\"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/collections\",\"https://api.stacspec.org/v1.0.0-rc.2/item-search#filter\",\"http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-text\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-json\",\"http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter\",\"https://api.stacspec.org/v1.0.0/core\",\"https://api.stacspec.org/v1.0.0/item-search#sort\",\"https://api.stacspec.org/v1.0.0/ogcapi-features\"],\"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\n        conformance classes implemented by this server\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/conformance\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        search\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/search\",\"method\":\"GET\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        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\n        Annual Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Seamless DEMs\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Surface Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Forest\n        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\n        Annual North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Annual Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Tables\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HGB:\n        Harmonized Global Biomass for 2010\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        DEM GLO-30\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        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\n        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\n        IMERG\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Rasters\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Height above Ground\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        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\n        1 Radiometrically Terrain Corrected (RTC)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Intensity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Source\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MTBS:\n        Monitoring Trends in Burn Severity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"C-CAP\n        Regional Land Cover and Change\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Cloud\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Burned Area Monthly\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        Forest/Non-Forest Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Returns\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MoBI:\n        Map of Biodiversity Importance\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ERA5\n        - PDS\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chloris\n        Biomass\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HydroForecast\n        - Kwando & Upper Zambezi Rivers\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Planet-NICFI\n        Basemaps (Analytic)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Gross Primary Productivity 8-Day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Daily Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        3DEP Lidar Classification\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Terrain Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        Gap Land Cover\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Basemaps (Visual)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Global\n        Biodiversity Information Facility (GBIF)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        World 3D-30m\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        PALSAR Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Water Availability\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Net Evapotranspiration Yearly Gap-Filled\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Census\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"JRC\n        Global Surface Water\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Flood Maps\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Thermal Anomalies/Fire Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HREA:\n        High Resolution Electricity Access\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Vegetation Indices 16-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Level-2A\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Land Surface Temperature/Emissivity Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Vegetation Indices 16-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Land\n        Cover of Canada\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Snow Cover 8-day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ECMWF\n        Open Data (real-time)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        HGT v001\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Esri\n        10-Meter Land Cover (10-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-1\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Denver\n        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\n        Land Cover (7-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Cover (13-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Use\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        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\n        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\n        Cropland Data Layers (CDLs)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Urban\n        Innovation Eclipse Sensor Data\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ESA\n        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\n        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\n        National Wetlands Inventory\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        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\n        US Tabular Climate Normals\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        Lightning Detection\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel\n        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\n        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\n        L1T\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"CIL\n        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:\n        National Agriculture Imagery Program\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        Intactness\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sea\n        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\n        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\n        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\n        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\n        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\n        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\n        Snow Cover Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-5P\n        Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        Building Footprints\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        service description\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json\"},{\"rel\":\"service-doc\",\"type\":\"text/html\",\"title\":\"OpenAPI\n        service documentation\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/docs\"}],\"stac_extensions\":[]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - close\n      Content-Length:\n      - '24872'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:09:07 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      x-azure-ref:\n      - 20250731T150907Z-r17d779659csvfh6hC1DENnnr400000004fg000000008xkr\n    status:\n      code: 200\n      message: OK\nversion: 1\n"
  },
  {
    "path": "tests/cassettes/test_item_search/TestItemSearch.test_deprecations[item_collections-pages-True-True].yaml",
    "content": "interactions:\n- request:\n    body: '{\"limit\": 10, \"bbox\": [-73.21, 43.99, -73.12, 44.05], \"collections\": [\"naip\"]}'\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '78'\n      Content-Type:\n      - application/json\n      User-Agent:\n      - python-requests/2.32.4\n    method: POST\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/search\n  response:\n    body:\n      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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\"}]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '2443'\n      Content-Type:\n      - application/geo+json\n      Date:\n      - Thu, 31 Jul 2025 15:08:40 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150839Z-r17d779659c6jjw2hC1DEN3gnw00000004m0000000006gvb\n    status:\n      code: 200\n      message: OK\n- request:\n    body: '{\"limit\": 10, \"bbox\": [-73.21, 43.99, -73.12, 44.05], \"collections\": [\"naip\"],\n      \"token\": \"next:naip:vt_m_4307307_nw_18_060_20211029\"}'\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '132'\n      Content-Type:\n      - application/json\n      User-Agent:\n      - python-requests/2.32.4\n    method: POST\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/search\n  response:\n    body:\n      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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\"}]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '2423'\n      Content-Type:\n      - application/geo+json\n      Date:\n      - Thu, 31 Jul 2025 15:08:40 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150840Z-r17d779659cgv7lqhC1DENzvbg00000003gg000000009b27\n    status:\n      code: 200\n      message: OK\n- request:\n    body: '{\"limit\": 10, \"bbox\": [-73.21, 43.99, -73.12, 44.05], \"collections\": [\"naip\"]}'\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '78'\n      Content-Type:\n      - application/json\n      User-Agent:\n      - python-requests/2.32.4\n    method: POST\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/search\n  response:\n    body:\n      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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\"}]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '2443'\n      Content-Type:\n      - application/geo+json\n      Date:\n      - Thu, 31 Jul 2025 15:08:41 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150841Z-r17d779659cz4m9lhC1DENepy00000000240000000004987\n    status:\n      code: 200\n      message: OK\n- request:\n    body: '{\"limit\": 10, \"bbox\": [-73.21, 43.99, -73.12, 44.05], \"collections\": [\"naip\"],\n      \"token\": \"next:naip:vt_m_4307307_nw_18_060_20211029\"}'\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '132'\n      Content-Type:\n      - application/json\n      User-Agent:\n      - python-requests/2.32.4\n    method: POST\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/search\n  response:\n    body:\n      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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\"}]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '2423'\n      Content-Type:\n      - application/geo+json\n      Date:\n      - Thu, 31 Jul 2025 15:08:42 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150841Z-r17d779659cswp4rhC1DENr00400000003ng000000004ge3\n    status:\n      code: 200\n      message: OK\nversion: 1\n"
  },
  {
    "path": "tests/cassettes/test_item_search/TestItemSearch.test_get_all_items.yaml",
    "content": "interactions:\n- request:\n    body: '{\"limit\": 10, \"bbox\": [-73.21, 43.99, -73.12, 44.05], \"collections\": [\"naip\"]}'\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '78'\n      Content-Type:\n      - application/json\n      User-Agent:\n      - python-requests/2.25.1\n    method: POST\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/search\n  response:\n    body:\n      string: !!binary |\n        H4sIAGfKlmEC/+2cbY+buBaA/0qUD/1yM8QvYExWo5W2V1vtlXa76vbTHUURSZyELgEEzNtW/e97\n        bCBxEoYkkxmFBEZtNTXGPuf4+PBgjv29mz5Hojvo/irc9D4WH0PfF5PUC4NurzvLypLu4O5715tC\n        rYd0tByZJrIpM0fJ4wjzEWJoRBDmGGFH/uIgQiy4eTwOn+DGG5samCLeM6nhOAw7pCeLkMUYcXqm\n        aSDGKLKHvS1BoAXfC/7O+o6FD1cmumx5bTeKfG/iysL+t0RdWcRiBlcWaRolg34/8t1ApG78PAmX\n        0X0qYmPpTeIwCWepAUV9N/L6SepO+g+4v+4h6QeuF3V/9IrOIzcWQXqGjuMwfLdutW4S4c/Ku5mL\n        8D9vr2HfS8Uy6R/sUGtJXR96CtxUVFol9VJfXko9Hxz4nKL3MxE0V4rFgyceXyfU1E1dKZSUob90\n        o5/X0t1K4T7IC7dHzNPCUL+7USecdeTta8Om4intL9Kl3/0BM9RNEpHCjIRgsHTnQv6ypYGUQNw/\n        iiQ1xn44BqljYTx6wTR8TAzQLbPfA0IEzNeX4kgzgmiTpRKur2TuV8lupJ7mqEoQsPBs9lNH84Jb\n        cNqsMIrDGdj/duKH99ObMEq9pfePmEILceir0NaVJu0O15b48umX3750Pn7+1JEjBzVFOBi7wTSL\n        RYG7VJVUGzAqyzAY5WUxlMlhzv/7KRYi2Kk0V6VatV/8e7FTaywLtUp//PZlp07gxVA2Fckk9iIV\n        FqFMuPGNF8xiVwkz/NHrLsGllIpvNVyz+XRy+Gg9pVvuBF7uBbr9VwJqY/Drp/9+7PwuUlUOSqSL\n        ++UYpPHP5HQEIeNbNN92vG+RmOuqrMXUdPm6KpSKgEupEAV6rCpA2f/++vxH59FLF52pmLn3ftqB\n        581UxF4wf4NAUfRqyH9KQ0ZycMz4kIWBW2WBD2Nv+nSLe6RHK8Px2kIqGEq/zPQT01ERDzWLfMmv\n        ddax8q1jZ96SEQXz9zPISu3wQcRK8OGWB0H33R9gDQhYMA/iZ2WFrMKfof88D7MIEsZTTz7zZGN3\n        dxlBca5R1bB3t81VFkZWXowJZ5TouLUFZjbVmthseCgHS2MvCDKSUHowFmEk4tQT6pEwTwAQkcF6\n        Mp4KCLNSBWmrG4xusPMVoYH683+4UzYweIZQlVfJGvs2yJmRmQ5njoF6Jrcp4RgaZZbFKIdfTM6R\n        YyIDDfN7RJTMuwPCHMzzhuG5nQoFq0W7ycKVFr3DxGZmD9Rixd1p7AbJLIyXcFUKDw33Vt3L/9wg\n        vdNe8ReDAGAWiQgjGNokMwyUGqibF0OsE4G8oByg8FN56WZ9yZjDlL8fG17YFyH4pmygn0wWYuka\n        BXTtvVNqkg1OWQtD+RjR6B2GH4Z9FBxB7zZnyiEoBTOv+J1ayqEQ5Yi1/N5kfj/AperK7/tFPx+/\n        HzRTa8bvNEepF2Vv+b1G/H7AaF0Cv+9XozH8vj9mNIzfTzLIe/M7WWOVBvAFWBGGTA3gCdV5a4fN\n        TO7oBK83fQaEt0B826BO8QMMDYpRJ2N5jrBh69fg/cPhp0E9MSuhfkcgje7z3q+G7u0td0cOoS/Q\n        PYEXK8vKfUUaUrkVx7ZdeJtNaUv3jaf7apeqNd1Xin5mut83U+tM92Wyt3RfV7ovH62Lo/tSNZpF\n        95Uxo4l0/1qDvCPdY065JKgCqwpe18CKMFwsuROLMsp13tphM5Nzumpkq+2T8R45N4Qet0KPELLU\n        Cj1jGN6vzR4zLZvBi7bCadt+/Qq9hQHmVUZIxQp93v0Gw6tOr4Hh1ScnuvXJCTnYrGL44pMNYWzF\n        8IDz2ScfQs2W4RufYVPtUrXOsKkU/cwZNvtmap0zbMpkbxm+rhk25aN1cRk2pWo0K8OmMmY0McPm\n        tQZ5Z4ZnGlZpDF+AlYUx1Rne1nlrh81syk2N4TfafguGx+ZRDE8dbvE8ywYxnDE8w8zgKuHFxuQk\n        hrccXsnwRfcbWTaq02tieHEgw2OHEkoLhyB2xvDYkQnzuU/ZpGX4luErXaruDC9qzPDighletAx/\n        QQwvroPhRcvwomX4NzDIezI8wRLKC6oq6FvjKkD4otQBmuc6be2QGRD86jVgq+UzALxpckbzFXfM\n        1CK8hRjJmJ4jTmBGvhbguVyErwb4ovsNgFedXlMizaZH8xcTaaSbEFx8lSGsAHioXXzYsXEL8G0i\n        TaVL1T2R5mXRz59IUzlTa55IsyN7C/A1TqQpGa1LTKTZVaNxiTQvx4yGJtK8yiDvDfDmGqvWBL8C\n        K8KQoyO8jls7aAaMaukErzd9OsLzo/NoLISZQngm3yIyhLe5tZ0dzzk5jeX3bXnN5dhIqFGdXt2W\n        14X0aHi3Qe0+1xbgT9gsqvnRRWxuXctbkx2tGxPxvHzONlCJvbCjcC1wS+dnpHOm0/khY1VDNj/a\n        4Zq5gXVtgCbvWj3ICs3cqor0H2JuIzmTSI6sKiRn5TtXzd0Nq/yd96lu66JtWzVXYL5RxyHXuXlV\n        VHJ6u9DecvoRq9WXwum78tZkSf1iOH1X4JbT68rpZWN1cZxeokQzV9CbzelHWaGZa+UbbOuwt+D0\n        F5fO+TuvmG/rUraAbjnaD7fM61pP3zgTdeX1Znvqe0vprz06XfOiizjqfS1vTc5335iGNaP00vO1\n        1wK3lF4jSt87VpdA6fuUaOZx7msDNPkM94Os0LyD2zeI1bGtckQ3j0P0M53jvqNL6bHuu0vpV3TK\n        +8am6pcQvT04poX0Y05fuRRIp3WDdHppkE5bSL8YSKfXAOm06ZBOW0g/1goNPftlY/3ZdN4C1M92\n        FMy2LmUnw2zQvI34pR8UM9zl50A8VZMkeO8ilHT/5+e/vp6GTwm4wWQhXwTCqZoQPjya0+4Ao813\n        g+wjkJO9E2SvoPBWqvmpMqTyVDntwr9FkGsy2IOONSLo07vJzQmP/H8B68I/5Ux3AAA=\n    headers:\n      Content-Encoding:\n      - gzip\n      Content-Length:\n      - '2216'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 18 Nov 2021 21:49:28 GMT\n      Strict-Transport-Security:\n      - max-age=15724800; includeSubDomains\n      Vary:\n      - Accept-Encoding\n      X-Azure-Ref:\n      - 0Z8qWYQAAAAChFl5OScMLRapCgghEzr8VQk9TMzIxMDAwMTEwMDExADkyN2FiZmE2LTE5ZjYtNGFmMS1hMDlkLWM5NTlkOWExZTY0NA==\n      X-Cache:\n      - CONFIG_NOCACHE\n    status:\n      code: 200\n      message: OK\n- request:\n    body: '{\"limit\": 10, \"bbox\": [-73.21, 43.99, -73.12, 44.05], \"collections\": [\"naip\"],\n      \"token\": \"next:vt_m_4407363_sw_18_h_20160804\"}'\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '125'\n      Content-Type:\n      - application/json\n      User-Agent:\n      - python-requests/2.25.1\n    method: POST\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/search\n  response:\n    body:\n      string: !!binary |\n        H4sIAGjKlmEC/+2dbY/iOBKA/wriw3w5OvglcRxOrZN2Tjvak3ZnNTufboRQGgxkNiRREvrlVvPf\n        r+wkxCR0GujuJUBa0yPaMa5yuWweV7vcf/XTp0j0R/2fhZuuY/Ex9H0xTb0w6A/686ws6Y++/dX3\n        ZlDrPp2sJqaJbMroJBETzCfLCUGYIY5MeMfdXfgItW9samCHEkoHJjUchxFiD1QhdrBDBqZpIMaI\n        TcaDinxow/eCPzORsfDhyVRXKa/tRpHvTV1ZOPyeqCfLWMzhyTJNo2Q0HEa+G4jUjZ+m4SpapyI2\n        Vt40DpNwnhpQNHQjb5ik7nR4j4elhGQYuF7U/zEohEduLIL0BILjMHw3sZqYRPjz3WIWIvzH2/dw\n        6KVilQyb/ahUz/Wh+cBNRaMpUi/15aPU88FZ/3Z9h5lczWlice+Jh+M0mbmpKzWRgocrN/pXqdKt\n        1OiDfHD70kQsTPKrG/XCeU++pzRhKh7T4TJd+f0fMAHdJBEpTDiY4it3IeSLitpSrFg/iCQ17vzw\n        DlSNhfHgBbPwITGgQ5ml7hEiYKih1EIaDDE0XSmdhkrR4fMKG6mneaFSA4w6n/+zp432LXhkVhjF\n        4RxMfjv1w/XsJoxSb+X9T8yghTj01XLVl1bsj0s7fPn00y9feh8/f+rJwYKaIhzducEsW2gCd6Uq\n        qTZgIFZhMMnLYiiTI5v/+CkWIqhVWqhSrdpP/lrUat3JQq3Sb798qdUJvBjKZiKZxl6k1jwoE258\n        4wXz2FXKjH8M+ivwItXFtxqs+WI23XesHtOKK4Fbe4Fu/Y162gj8/OnfH3u/ilSVQxfS5Xp1B7r4\n        J3E4gpDxPVpUne57JBZ6R0oltZ583RTKboA7qWUIerGpAGX/+ePzb70HL132ZmLurv20Bx8kMxF7\n        weIN1oVCqiH/27lCJM1LxIds1t+qbn+482aPt3hABrRxnS3NohY86YhZp8RsUqx5mhm+5M965Xr4\n        1utj3pIRBYs3tsKmr+G9iJW244qvgMz+DzABLEvg7/GT6npW4ffQf1qE2ToRxjNPfoLJxr5lZEQw\n        tUswGg++VdHIwrgodTCmXAemGlzZlLOiuNLyWA6Rxk+wlkjKGMAIhJGIU0+odX+RANshgyH9y3QG\n        chUVsLjKLkmT3SB+g8yvCI3Uv/9CQ7K90RMsUHmVrO3voxwEmWlyRg3oFrcpZo5hDpiFGOEGgiKO\n        OIGpOM7fI6Jk0R8R5mCeNwyfyqlQ2Fm0myxdaeFvmNgWHzgwisW709gNknkYr+Dpjr4gkLjRRv5w\n        gwzL0b64ZZYqqRryGxtI2lDiwQQcIcmsCKUG6ufFsAKKQD5Q7lK4snx0Uz4yFrAUrO8MLxyKENxX\n        NjBMpkuxco2Csl58p+xnNpK7WhjLjxaN0in4PLInwYPm8zaxtymdWBazLOUylNrMzCidY9umyukQ\n        tSntKP2aKf05P2orpT+j7+ko/fmJ2DJKpzk0PaNwR+ktovQXx+ocKP2lTlwNpT9jgCuj9MOt8J6U\n        zim3aUlGBWJrbEQYLoCcWLC/4Doy1fAK4JJuGqm0fRiob3GrY5EdoG7fEPswUAdMthSVMwZbEQnq\n        pmUDsWfsbtuAm8eCOpagbu8G9VpfMlDPtdkF6jbipUqXAOpqc2pOEuX2WLq9CbsQpl5ghFglrk5l\n        /9UWD/Msqo4s2Bua+SaRKkt3vH7dUfUmd2p1eL1B8RPH2Ztn6GlR3pQmBE0ysjIr8c+65h3KnxDl\n        TR3l9xmrFqL8wQ53XQH3hrXiGiPvx5njHeEeWZzbVolROZfrIGVhZG3C6pxRovNVhcRsqjVRafkQ\n        tAdWrLK8KYPuhDWxvFljeYcDuCNFyYTLRmETwqiTB90d80iWt5nlDCzg7l0oj3MQ30hX7I51mRcT\n        Vef5HnUfWLcdnG/0GGcbXKdFeJ0j1uH61YfXmxyq1XH2BsVPHHBvnqMtw/WtQGhd8w7XW4TrL47V\n        OeD6S524rsh7w1pxjSH448zxzrjOS4rSaJ1uQvHI1GidcB2vaigGRGppvK43fQJct0B9Ow+9U0Xp\n        gOsckZzgHYe/DtetRlwvpGu4nsu8mNg6rWw/kfMMrqtf1xTRdcLI5jQMw8URLGp2uN6dWW9wqLYf\n        Xn9O8dOfYm+Yo22Ortc173C9rdH1XWN1dtH1HZ24uuPsz60VV3qu/QhzvPPRGcZKjNKOzhQgZWFM\n        9aMzts5XNRazKcfa0Zmttt8C2JFzELBTh1s8J2XEVHzdtBi281i3jcnRwI4B2C2nEdgL6VvxdSXz\n        koBd7AXsKg/C2mQ8mLuSTDte73i9wZ/OItm0lbwuzpbXRcfrZ8Pr4hJ4XVw7r4uO119pjr8tIdXc\n        mZAqEy03Gakm1uiqBmJA63RnQqp5CljPcj7RJgMV1TNQj4V1C2CdNUfXC+lbsK5kXlyK6X7R9TLX\n        FJe5pqzLNe1ofS+HOouk01bR+h5ztM2HYeqad7Te1sMwu8bq7A7D7OjEdaahdrT+CnO8d2IqKzFK\n        T0xlxyWm2o6emKq3fQpgr2SioiITFb0uEzWPrstM3iZg1zNPsS7zkoB9/+g62aQpE1JG1zcOxZwO\n        2Dtgb3CotgO7aC2wi7MF9i68fj7ALi4B2MW1A3sXXn+tOd47vI5LjNLj63xzfN3Wb3ykOl/VWMzk\n        5XGYatunAHYLYZYDO1FnyZmFbM5yeOacvCrC/lK6aS59C9iVzMu8G4bIsz7ZC6d6m2N3N0yH6wde\n        sVJxp/O5G2Zb8TbdDVOboafFdbJFT6Tpqg6leYfrJ8R1ouP6PmPVQlw/2OGu+G6Y7bXi6u+G2dsc\n        3d0w0kjynkdMmmCddHfDnPLseiOsd2fXO1o/8Aj4OdF6g+JtOrt+VrRe17yj9bbS+q6xOjta39GJ\n        Kz673tH6cebozq4fCevd2fU3hPVxnZ0D8dhMkeCMy1AS/u+f//j6OmJKYJynS7kHCGfKv3347E3B\n        V9D2KfnstzlOth3IfFiOkwZc0pDK9+QsCv8UQd6T0b7YWAGvcJ1chhFkb0Yv/G3RFm0hXi8mNyeA\n        zf8B7eQrXsl3AAA=\n    headers:\n      Content-Encoding:\n      - gzip\n      Content-Length:\n      - '2291'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 18 Nov 2021 21:49:28 GMT\n      Strict-Transport-Security:\n      - max-age=15724800; includeSubDomains\n      Vary:\n      - Accept-Encoding\n      X-Azure-Ref:\n      - 0aMqWYQAAAAD+PEqsE6O7Tq6yrVwLeQcbQk9TMzIxMDAwMTEwMDExADkyN2FiZmE2LTE5ZjYtNGFmMS1hMDlkLWM5NTlkOWExZTY0NA==\n      X-Cache:\n      - CONFIG_NOCACHE\n    status:\n      code: 200\n      message: OK\nversion: 1\n"
  },
  {
    "path": "tests/cassettes/test_item_search/TestItemSearch.test_get_all_items_deprecated.yaml",
    "content": "interactions:\n- request:\n    body: '{\"limit\": 10, \"bbox\": [-73.21, 43.99, -73.12, 44.05], \"collections\": [\"naip\"]}'\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '78'\n      Content-Type:\n      - application/json\n      User-Agent:\n      - python-requests/2.28.1\n    method: POST\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/search\n  response:\n    body:\n      string: !!binary |\n        H4sIAN9c4WIC/+2cW4/iNhSA/wpC6r6USXxJHIdqVKlTddVK7VbbfeoIoQAGsg1JlGRurfa/99hJ\n        wIEMDAsst6BhBI5jn1vMF+fY/7Wzl1i0u+1fhJc9JOIuCgIxzPwobHfa47wsbXfv/2v7I6j1mPVn\n        fctCDmVWP33qY95HDPUJwhwj7MoPLiLEhpMHg+gZTrxxqIEp4h2LGq7LsEs6sgjZjBG3Y1kGYowi\n        p9dZEgRaCPzwn7zvRARwZKjLVtT24jjwh54sND+n6sg0EWM4Ms2yOO2aZhx4oci85GUYzeKHTCTG\n        zB8mURqNMwOKTC/2zTTzhuYjNhc9pGbo+XH7S6fsPPYSEWZH6DiJooN1q3WTimBc381ERN/vX0PT\n        z8QsNd8cUJonEvHoi6evE2fkZZ4UR/Zuzrz4x4Vct1Ksd/LA7RZhnvlZIC32uxe3onFLnr4wYyae\n        M3OazYL2FwhwL01FBgEN19LMmwj5YUkDKYF4eBJpZgyCaABSJ8J48sNR9JQaoFtuuUeECBjOlOJI\n        A4Jow5kSzlQym+tkNzJf87MSxISi8Q8tzee34PO8ME6isR+I22EQPYxuojjzZ/6/YgQtJFGgRoa2\n        NGm7t7DEx/c//fqxdffhfSuDM6GmiLoDLxzll3LozVQl1QZ4ZRaF/aIsgTLp5uLr+0SIcKXSRJVq\n        1X4KHsRKrYEs1Cr98evHlTqhn0DZSKTDxI/VqAJlwktu/HCceEqY3pdOewYhpVTcl7vGk9Hw7d56\n        zpbCCaLcD3X7zwXUfPDL+5/vWr+LTJWDEtn0YTYAaYIjBR1ByPgcT5YD73MsJroqCzE1XT7NC6Ui\n        EFJqMAI95hWg7Le/PvzRevKzaWskxt5DkLVguB6JxA8nexgoyl4N+W+3IeNdPgrcKgPkX/oDf/Sc\n        F3zn3OHvyB2BN1076C9M5ssPMlBzhcWoXw6Qmok+Fsdai8Fz34Np0ZIRh5NvaKG5HaJHkShNeksx\n        BvK0v4B5YEiDKyV5UWbJK/wZBS+TKB9jomTkh16mGru/zxGFcw1bep37ZXCxMbKLYkw4o0TnmSXy\n        cajWRLXhnvSeBjcwDEkE6IBzolgkmS/Uj8YkBQJDBuvIEVfAQCxVkNa7wegGu58Q6qq/v+FM2UD3\n        BQazokre2OduAWXMcjlzDdSxuEMJx9Aos21GOXywOEeuhQzUK84RcTppdwlzMS8aht/0TCgaLNtN\n        p5606D0mDrM6oBYrz84SL0zHUTKDo1J4aLgz715+uUF6p53yjUEAMIvEhz4MeyJMJTpIT5cRKg/d\n        LA4ZE7j6HwaGH5kigqg0oBUzHU7FzDNKfNl4phQ590JdC71CHgi1NHeUqqN+aDQ8BveD2/vhFnjs\n        cKYCglIw8xyQqa0CClGOWAPI1wzIbwipIwDymwL9xACZFqzyquwNIJ8QIL/BW+cAyJvVuBZA3jxk\n        XDsg79lChwZksuAWjZBLciEMWRohE6oDzQr8WNzVEVlv+giMbIP4jkHd8gWQCopRN4dljrDh6McA\n        8F2+GzUTay01rwik4XPR+8Xgs7N0ASCX0FfwmcCdi20XsSINqcKKY8cpo82htMHnq8fn9SF1LHze\n        FOinjM91sjf4fKr4XO+ts8PnWjWuCp/XDhkNPu/VQgfEZ8wpl4hScksJxBq5EIbLSWNiU0a5DjQr\n        8GNxTueNLLW9Mz8j94bQ7eaYEUK2mmNmDMMtrtVhlu0wuNdVvOo4Xz/HbGOgZZU0sGaOuei+Asmq\n        00uAZPUYhS49RkEuttZBcvnQgTA2h2Tg5fyhBaFWA8lXn4SxPqSOlYSxKdBPOQmjTvYGkk81CaPe\n        W2eXhFGrxlUlYawdMpokjL1a6MCQzDRu0SC5JBcbY6pDsqMDzQr8OJRbGiRX2t4HJGNrK0imLrd5\n        kYiBGM4hmWFmcJUT4WCyEyTbLl8LyWX3lUQM1eklQbJ4IyRjlxJKy4AgTg7J2JVJy0VMOaSB5AaS\n        14bUESFZnDEkiwaSzwiSxWVAsrh6SBYNJH8bCx0SkgmW1FtiS4m3GrgAI5elLuAy13FmBX0Akeec\n        vdTyEQjZsjijxZwxZmoa2UaM5NDMESdwzX4tIXM5jbyekMvuK4SsOr2kXItqjPNXcy1kmBBcPlcg\n        rCRkqF0+mnBwQ8hNrsXakDpirsXaQD/xXIsV2RtCPuFcixpvnWOuxaoa15Zr8fqQ0eRa7NVChyZk\n        a8EtC0SekwthyNUZWeeZFfYBCLR1RNab3p2R+dapFjbCTDEyk5ieM7LD7eUMZc7JbrC8aV1fIUcl\n        50J1enHr+qYyxuHmATWL+RpC3mExnxZHx17BVwnp47Iwq2AJe2UF1ULghoSPSMJMJ+G3+OoEOXjr\n        gLvKBXsL/Rv03d0s17k0D+kvYi3jL5P4i+x1+MvqV+pZqwv0+IHX5S3roi3Ts+YQXKnjkstcrCfW\n        MnEza9ww8RazxifAxLUhfcpMvCpww8SnysR1vjo7Jq5R4ipnhhsm3qdZrnMOuMKRLtsHE786JcwP\n        PBO8rEvdxLDtai9uW5c1T1zZ4nB+HVjNnsgNEX/tnshaFB17I+RKQJ8YEdduRLsQuCHiEyLijb46\n        ByLepMRV7nu80L9JId7dLNe3w3GFDl3HrsdhazscPtKGxyu61O5/vDpFfEHbIVcWm76Gw83+FA0Q\n        b7M/xQkAMT03IKYNEJ8NENNLAGJ65UBMGyA+gFmudLeJyryq5e4Dio+2+cSyLnV7UVTI2UH83Lem\n        6K2yaiies404BRE8jSRN//nhr0+74VUKoTCcSvCORuqiCOAHPGt3MaqyeP6Aw80ZPL/lg7tALVaV\n        jVW0yksv+keEhTbdDah2QsS6ezeFOQEM/gcWYCvyRnEAAA==\n    headers:\n      Content-Encoding:\n      - gzip\n      Content-Length:\n      - '2143'\n      Content-Type:\n      - application/geo+json\n      Date:\n      - Wed, 27 Jul 2022 15:42:23 GMT\n      Strict-Transport-Security:\n      - max-age=15724800; includeSubDomains\n      Vary:\n      - Accept-Encoding\n      X-Azure-Ref:\n      - 031zhYgAAAAD9FbUHh3kmTaVZNPXhmQ4vRE0yQUExMDkxMjA4MDQ3ADkyN2FiZmE2LTE5ZjYtNGFmMS1hMDlkLWM5NTlkOWExZTY0NA==\n      X-Cache:\n      - CONFIG_NOCACHE\n    status:\n      code: 200\n      message: OK\n- request:\n    body: '{\"limit\": 10, \"bbox\": [-73.21, 43.99, -73.12, 44.05], \"collections\": [\"naip\"],\n      \"token\": \"next:vt_m_4407363_sw_18_h_20160804\"}'\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '125'\n      Content-Type:\n      - application/json\n      User-Agent:\n      - python-requests/2.28.1\n    method: POST\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/search\n  response:\n    body:\n      string: !!binary |\n        H4sIAN9c4WIC/+2dbW+rxhKA/4plqf1SB/YFlsVVVKm56lGv1J7q9HzqkWVhe21zigEBebvV+e93\n        dgGzxg52Ert+I0oie1l2Z2aH9cNkhvzTzZ5j0e13fxFedp+IuygIxDjzo7Db607ztrTb//JP159A\n        r4dsuBhaFnIoo8NUDDEfzocEYYY4suCM0Sh6gt43DjWwSwmlPYsarssIcXqqEbvYJT3LMhBjxCGD\n        Xm1+GCPww7/zKRMRwJGxLlLR24vjwB97stH8mqoj80RM4cg8y+K0b5px4IUi85LncbSI7zORGAt/\n        nERpNM0MaDK92DfTzBubD9isZkjN0PPj7rdeOXnsJSLMjjBxEkUHm1abJhXBdPM0MxH9sH8NTT8T\n        i9Rs9iPN/Il48MXj22SYeJknZZBTmgsv/qkS5lbK8r08cLvNpTM/C6RtfvPiTjTtyHMqg2XiKTPn\n        2SLofgNX9tJUZOC6cLEsvJmQL2piy2nF/aNIM2MURCMQNRHGox9OosfUAIVyGz0gRMBEppRCmgox\n        NF4omUwlqPmywEbma+upxDChafpjR1vbW1jbvDFOoqkfiNtxEN1PbqI48xf+/8QERkiiQF34XWnF\n        7qCyw6cPP//6qXP38UMngzOhp4j6Iy+c5Jds6C1UJzUGLMQiCodFWwJtcmWLtx8SIcK1TjPVqnX7\n        ObgXa71GslHr9Puvn9b6hH4CbRORjhM/VrsHtAkvufHDaeIpYQbfet0FeJFScV+LNZ1Nxruu1VNW\n        cyVwaz/Urb8UT1uBXz78567zm8hUO6iQze8XI5AlOIrDEYSMr/Gs7nRfYzHTFamE1DT5vGyUaoA7\n        qQ0HtFh2gLb//vnx986jn807EzH17oOsA1vyRCR+ONvDvlDOashfb9ghvs8v+luldf5mOPInT3nD\n        d84d/o7cEfihjbt5ZSdfvpCemWspJsNyE9Ts8qk41qk2yH1vmMVIRhzODm2WpfLRg0iU+IOaN4EQ\n        3W9gE9i44IpInpUt8g5/RMHzLMp3kiiZ+KGXqcG+5BRCMHUqCBn0vtQxxMa4bHUxplyHkzWQcShn\n        ZXNt5IFcM41VYLeRn+g9WJIoFknmC/XJMEuBo5DBkP5luT25zwrYfqVK0og3iN8g6zNCffX9Fwwk\n        x+s/wxZWdMnH/tovoItZFmfUALW4QzFzDavHbMQINxA0ccQJXKyD4hwRp7NunzAX82Jg+MTOhEK8\n        ctx07kkLf8HEsXnPhXUtz84SL0ynUbKAoxt0QTDjUhr55gYZtqt9cduqRFI95A82kLShRIchbIYi\n        TCU2SL8onVgeuqkOGTPYFe5Hhh+ZIgLHNWAUMx3PxcIzSnTZeqZUKF+yTSMMCnnAMdN8VVUf9eGj\n        ETGFqwA5w/BRuwoc4qwSMbFtZtvKZSh1mJUTMceOQ5XTIepQ2hLxNRPxS350BCJ+2aVPjIhpASgv\n        CNwS8QkR8da1Ogci3qbEtRDxC/pfOxHvwyyHJGJOuUMrCilxVuMQwnAJv8QGuuc6nqyhDIAcXQ5S\n        G/t1ULzCiK5NNkCxc0Oc10ExIKmtCJgxwH4JxZbtAB3nnOw4QHNvhWIsodjZDMVruuRQXEizCYod\n        xCuRLgGK1a2hNUzVhYDlhWAB8TP1AiPEavFiKvVXt1OY59FiZMN9mFXckFFl6ZaNrzta3OROxwob\n        N7v4cWnZksYDSXJ4sWrhvHXJW1o+Ii1bOi3vslYnSMuvdririh83bBVtIHmP9jkgPyObc8euSKVA\n        X51VbIzsZZSYM0p0hKnBjkO1IWojv4aegcDquGzJGDJhTbhsreGyy4GNkQJRwuWgwPmMukUM2bXe\n        iMsOs92eDWi7iZZxwbrL2RUeY33OiwkS8+LGcBcedlxc3EsxzpZETMtoMUesJeKrjxY3OdSxwsbN\n        Tn5iRLwSzluXvCXiEyLirWt1DkS8TYmrih83bBVtIHmP9jkwEfMKVDQgpsuAMrI0ICZcJ5g12gHo\n        szUk1oc+AhHbIL5TBJCpAmEgYo5IAcmuy99HxHYjEZeza0RczHkxEWJau+dD7gtErP7oUMaICSPL\n        /AmGy6QdarVE3GYUNzjUEVOLG5z8lGPE65K3RHyqMeJNa3V2MeINSlxbjvFLW0UbI96jfQ6cY8FY\n        RSpajkXJKjbGVM+xcHSEWcMdh3Ks5VisjL0PJkbuq5iYutzmBYwipqLEls2wU0RsHUzezMQYmNh2\n        G5m4nH0lSqzmvCQmFjsxsUpOt5dp6NamKrsWiVskbvCnY1fbnSUSixaJzwaJxSUgsbhyJBYtEh/e\n        Pv9aIZ61sRBPFpgtK/EsrAHMGusAENONhXjWMXg4r3VDy8o7tF5591YetoGHWXOMuJx9hYfVnBdX\n        WrdbjLiqscNVjR1ra+xaIN7JoY5dbHcWQLyxCKoF4tPPmti0VmeXNbFBiausumuB+LD2OXQdHqtI\n        Ra/DY2+rw3NcvQ5PH/sYTFwrvENl4R16X+FdESOWhYtNTKwX2mF9zkti4t1jxGRZlUlIFSNeOhRz\n        WyZumbjBoY7IxOJsmbgNEp8PE4tLYGJx5UzcBon/BfscOkiMK1LRo8R8mUrs6M9rozrCrOGOxau8\n        ifrYx2BiG2FWMDFReb3MRg5nBZ9yTt4VJ95WXVfMvsLEas7LfNoEkUkh+Qu3/iy29mkTLRG/8mkT\n        NXc6iadNrLn4cYmYrAAKaSr+V5K3RHxEIiY6Ee+yVidIxK92uOt92sTqVtGmTezRPu3TJqTZ5MPZ\n        MGniYdI+beKYecSNPNzmEbdA/Mo84hMB4mYfP2UgXpe8BeJTBeJNa3V2QLxBievNI26B+GD2afOI\n        38jDbR7xHnl4sI6noXjKthIUOOQ8kiD9x8c/P7+PqFJY6/FconY0UT4ewCd0Bv6CVrOW879LuDl1\n        534s10oDMmlj5X/ySor+FmGhTX9XOqvhWXSfXo4hpEb9Lf9T7oRo/f3TFOYEBPo/eJV6O8FxAAA=\n    headers:\n      Content-Encoding:\n      - gzip\n      Content-Length:\n      - '2222'\n      Content-Type:\n      - application/geo+json\n      Date:\n      - Wed, 27 Jul 2022 15:42:23 GMT\n      Strict-Transport-Security:\n      - max-age=15724800; includeSubDomains\n      Vary:\n      - Accept-Encoding\n      X-Azure-Ref:\n      - 031zhYgAAAABamV4PH8y7Q6apw9PxKH7lRE0yQUExMDkxMjA4MDQ3ADkyN2FiZmE2LTE5ZjYtNGFmMS1hMDlkLWM5NTlkOWExZTY0NA==\n      X-Cache:\n      - CONFIG_NOCACHE\n    status:\n      code: 200\n      message: OK\nversion: 1\n"
  },
  {
    "path": "tests/cassettes/test_item_search/TestItemSearch.test_ids_results.yaml",
    "content": "interactions:\n- request:\n    body: '{\"ids\": [\"S2B_MSIL2A_20210610T115639_N0212_R066_T33XXG_20210613T185024.SAFE\",\n      \"fl_m_2608004_nw_17_060_20191215_20200113\"], \"collections\": [\"naip\"]}'\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '147'\n      Content-Type:\n      - application/json\n      User-Agent:\n      - python-requests/2.32.4\n    method: POST\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/search\n  response:\n    body:\n      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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\"}]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '996'\n      Content-Type:\n      - application/geo+json\n      Date:\n      - Thu, 31 Jul 2025 15:08:29 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150828Z-r17d779659c8vbd8hC1DENmu9s000000020g000000008nx8\n    status:\n      code: 200\n      message: OK\nversion: 1\n"
  },
  {
    "path": "tests/cassettes/test_item_search/TestItemSearch.test_intersects_results.yaml",
    "content": "interactions:\n- request:\n    body: '{\"collections\": [\"naip\"], \"intersects\": {\"type\": \"Polygon\", \"coordinates\":\n      [[[-73.21, 43.99], [-73.21, 44.05], [-73.12, 44.05], [-73.12, 43.99], [-73.21,\n      43.99]]]}}'\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '164'\n      Content-Type:\n      - application/json\n      User-Agent:\n      - python-requests/2.32.4\n    method: POST\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/search\n  response:\n    body:\n      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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\"}]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '5665'\n      Content-Type:\n      - application/geo+json\n      Date:\n      - Thu, 31 Jul 2025 15:08:30 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150830Z-r17d779659c22gb9hC1DENxd5s00000004m0000000004wmq\n    status:\n      code: 200\n      message: OK\n- request:\n    body: '{\"collections\": [\"naip\"], \"intersects\": {\"type\": \"Polygon\", \"coordinates\":\n      [[[-73.21, 43.99], [-73.21, 44.05], [-73.12, 44.05], [-73.12, 43.99], [-73.21,\n      43.99]]]}}'\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '164'\n      Content-Type:\n      - application/json\n      User-Agent:\n      - python-requests/2.32.4\n    method: POST\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/search\n  response:\n    body:\n      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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\"}]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '5665'\n      Content-Type:\n      - application/geo+json\n      Date:\n      - Thu, 31 Jul 2025 15:08:31 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150830Z-r17d779659chjt9hhC1DEN373s0000000240000000003r45\n    status:\n      code: 200\n      message: OK\nversion: 1\n"
  },
  {
    "path": "tests/cassettes/test_item_search/TestItemSearch.test_item_collection.yaml",
    "content": "interactions:\n- request:\n    body: '{\"limit\": 10, \"bbox\": [-73.21, 43.99, -73.12, 44.05], \"collections\": [\"naip\"]}'\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '78'\n      Content-Type:\n      - application/json\n      User-Agent:\n      - python-requests/2.32.4\n    method: POST\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/search\n  response:\n    body:\n      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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\"}]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '2443'\n      Content-Type:\n      - application/geo+json\n      Date:\n      - Thu, 31 Jul 2025 15:08:35 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150835Z-r17d779659cz4m9lhC1DENepy00000000260000000001eec\n    status:\n      code: 200\n      message: OK\n- request:\n    body: '{\"limit\": 10, \"bbox\": [-73.21, 43.99, -73.12, 44.05], \"collections\": [\"naip\"],\n      \"token\": \"next:naip:vt_m_4307307_nw_18_060_20211029\"}'\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '132'\n      Content-Type:\n      - application/json\n      User-Agent:\n      - python-requests/2.32.4\n    method: POST\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/search\n  response:\n    body:\n      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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\"}]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '2423'\n      Content-Type:\n      - application/geo+json\n      Date:\n      - Thu, 31 Jul 2025 15:08:36 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150836Z-r17d779659cgb75vhC1DEN1dss0000000620000000004721\n    status:\n      code: 200\n      message: OK\nversion: 1\n"
  },
  {
    "path": "tests/cassettes/test_item_search/TestItemSearch.test_items_as_dicts.yaml",
    "content": "interactions:\n- request:\n    body: '{\"limit\": 10, \"bbox\": [-73.21, 43.99, -73.12, 44.05], \"collections\": [\"naip\"]}'\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '78'\n      Content-Type:\n      - application/json\n      User-Agent:\n      - python-requests/2.32.4\n    method: POST\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/search\n  response:\n    body:\n      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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\"}]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '2443'\n      Content-Type:\n      - application/geo+json\n      Date:\n      - Thu, 31 Jul 2025 15:09:11 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150911Z-r17d779659c6jjw2hC1DEN3gnw00000004qg000000001s6m\n    status:\n      code: 200\n      message: OK\n- request:\n    body: '{\"limit\": 10, \"bbox\": [-73.21, 43.99, -73.12, 44.05], \"collections\": [\"naip\"],\n      \"token\": \"next:naip:vt_m_4307307_nw_18_060_20211029\"}'\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '132'\n      Content-Type:\n      - application/json\n      User-Agent:\n      - python-requests/2.32.4\n    method: POST\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/search\n  response:\n    body:\n      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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\"}]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '2423'\n      Content-Type:\n      - application/geo+json\n      Date:\n      - Thu, 31 Jul 2025 15:09:12 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150912Z-r17d779659cnzmbkhC1DENc1cg000000063g0000000022wg\n    status:\n      code: 200\n      message: OK\nversion: 1\n"
  },
  {
    "path": "tests/cassettes/test_item_search/TestItemSearch.test_result_paging.yaml",
    "content": "interactions:\n- request:\n    body: '{\"limit\": 10, \"bbox\": [-73.21, 43.99, -73.12, 44.05], \"collections\": [\"naip\"]}'\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '78'\n      Content-Type:\n      - application/json\n      User-Agent:\n      - python-requests/2.32.4\n    method: POST\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/search\n  response:\n    body:\n      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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\"}]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '2443'\n      Content-Type:\n      - application/geo+json\n      Date:\n      - Thu, 31 Jul 2025 15:08:32 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150831Z-r17d779659cdp9hwhC1DEN390s00000003r0000000000uar\n    status:\n      code: 200\n      message: OK\n- request:\n    body: '{\"limit\": 10, \"bbox\": [-73.21, 43.99, -73.12, 44.05], \"collections\": [\"naip\"],\n      \"token\": \"next:naip:vt_m_4307307_nw_18_060_20211029\"}'\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '132'\n      Content-Type:\n      - application/json\n      User-Agent:\n      - python-requests/2.32.4\n    method: POST\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/search\n  response:\n    body:\n      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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\"}]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '2423'\n      Content-Type:\n      - application/geo+json\n      Date:\n      - Thu, 31 Jul 2025 15:08:33 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150832Z-r17d779659c9xxfhhC1DEN13nn00000006500000000008qd\n    status:\n      code: 200\n      message: OK\nversion: 1\n"
  },
  {
    "path": "tests/cassettes/test_item_search/TestItemSearch.test_result_paging_max_items.yaml",
    "content": "interactions:\n- request:\n    body: '{\"limit\": 10, \"collections\": [\"naip\"]}'\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '38'\n      Content-Type:\n      - application/json\n      User-Agent:\n      - python-requests/2.32.4\n    method: POST\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/search\n  response:\n    body:\n      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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\"}]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '2376'\n      Content-Type:\n      - application/geo+json\n      Date:\n      - Thu, 31 Jul 2025 15:08:33 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150833Z-r17d779659cz4m9lhC1DENepy0000000024g0000000039db\n    status:\n      code: 200\n      message: OK\n- request:\n    body: '{\"limit\": 10, \"collections\": [\"naip\"], \"token\": \"next:naip:mt_m_4811501_se_11_060_20231117_20240103\"}'\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '101'\n      Content-Type:\n      - application/json\n      User-Agent:\n      - python-requests/2.32.4\n    method: POST\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/search\n  response:\n    body:\n      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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\"}]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '2426'\n      Content-Type:\n      - application/geo+json\n      Date:\n      - Thu, 31 Jul 2025 15:08:34 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150834Z-r17d779659cnzmbkhC1DENc1cg00000005yg0000000083xd\n    status:\n      code: 200\n      message: OK\n- request:\n    body: '{\"limit\": 10, \"collections\": [\"naip\"], \"token\": \"next:naip:mt_m_4511355_sw_12_060_20231117_20240103\"}'\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '101'\n      Content-Type:\n      - application/json\n      User-Agent:\n      - python-requests/2.32.4\n    method: POST\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/search\n  response:\n    body:\n      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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\"}]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '2360'\n      Content-Type:\n      - application/geo+json\n      Date:\n      - Thu, 31 Jul 2025 15:08:35 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150834Z-r17d779659cbwrpkhC1DEN2qus000000063g0000000023qm\n    status:\n      code: 200\n      message: OK\nversion: 1\n"
  },
  {
    "path": "tests/cassettes/test_item_search/TestItemSearch.test_results.yaml",
    "content": "interactions:\n- request:\n    body: '{\"limit\": 10, \"collections\": [\"naip\"]}'\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '38'\n      Content-Type:\n      - application/json\n      User-Agent:\n      - python-requests/2.32.4\n    method: POST\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/search\n  response:\n    body:\n      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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\"}]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '2376'\n      Content-Type:\n      - application/geo+json\n      Date:\n      - Thu, 31 Jul 2025 15:08:28 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150827Z-r17d779659cs8gcnhC1DEN5tpw000000060g000000005mrn\n    status:\n      code: 200\n      message: OK\n- request:\n    body: '{\"limit\": 10, \"collections\": [\"naip\"], \"token\": \"next:naip:mt_m_4811501_se_11_060_20231117_20240103\"}'\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '101'\n      Content-Type:\n      - application/json\n      User-Agent:\n      - python-requests/2.32.4\n    method: POST\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/search\n  response:\n    body:\n      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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\"}]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '2426'\n      Content-Type:\n      - application/geo+json\n      Date:\n      - Thu, 31 Jul 2025 15:08:28 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150828Z-r17d779659c7hhsdhC1DEN7tww00000005yg000000007t80\n    status:\n      code: 200\n      message: OK\nversion: 1\n"
  },
  {
    "path": "tests/cassettes/test_item_search/TestItemSearchParams.test_collection_object.yaml",
    "content": "interactions:\n- request:\n    body: null\n    headers:\n      Connection:\n      - close\n      Host:\n      - planetarycomputer.microsoft.com\n      User-Agent:\n      - Python-urllib/3.9\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t\n  response:\n    body:\n      string: '{\"id\":\"aster-l1t\",\"description\":\"The [ASTER](https://terra.nasa.gov/about/terra-instruments/aster)\n        instrument, launched on-board NASA''s [Terra](https://terra.nasa.gov/) satellite\n        in 1999, provides multispectral images of the Earth at 15m-90m resolution.  ASTER\n        images provide information about land surface temperature, color, elevation,\n        and mineral composition.\\n\\nThis dataset represents ASTER [L1T](https://lpdaac.usgs.gov/products/ast_l1tv003/)\n        data from 2000-2006.  L1T images have been terrain-corrected and rotated to\n        a north-up UTM projection.  Images are in [cloud-optimized GeoTIFF](https://www.cogeo.org/)\n        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\n        domain\"}],\"stac_extensions\":[\"item-assets\",\"collection-assets\"],\"title\":\"ASTER\n        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\n        yellow/green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.08},{\"gsd\":15,\"name\":\"VNIR_Band2\",\"common_name\":\"red\",\"description\":\"visible\n        red\",\"center_wavelength\":0.66,\"full_width_half_max\":0.06},{\"gsd\":15,\"name\":\"VNIR_Band3N\",\"common_name\":\"near\n        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\n        infrared\",\"center_wavelength\":1.65,\"full_width_half_max\":0.1},{\"gsd\":30,\"name\":\"SWIR_Band5\",\"common_name\":\"swir\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.165,\"full_width_half_max\":0.04},{\"gsd\":30,\"name\":\"SWIR_Band6\",\"common_name\":\"swir\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.205,\"full_width_half_max\":0.04},{\"gsd\":30,\"name\":\"SWIR_Band7\",\"common_name\":\"swir\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.26,\"full_width_half_max\":0.05},{\"gsd\":30,\"name\":\"SWIR_Band8\",\"common_name\":\"swir\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.339,\"full_width_half_max\":0.07},{\"gsd\":30,\"name\":\"SWIR_Band9\",\"common_name\":\"swir\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.395,\"full_width_half_max\":0.07},{\"gsd\":90,\"name\":\"TIR_Band10\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":8.3,\"full_width_half_max\":0.35},{\"gsd\":90,\"name\":\"TIR_Band11\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":8.65,\"full_width_half_max\":0.35},{\"gsd\":90,\"name\":\"TIR_Band12\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":9.11,\"full_width_half_max\":0.35},{\"gsd\":90,\"name\":\"TIR_Band13\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":10.6,\"full_width_half_max\":0.7},{\"gsd\":90,\"name\":\"TIR_Band14\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":11.3,\"full_width_half_max\":0.7}],\"platform\":[\"terra\"],\"instruments\":[\"aster\"]},\"msft:short_description\":\"The\n        ASTER instrument, launched on-board NASA''s Terra satellite in 1999, provides\n        multispectral images of the Earth at 15m-90m resolution.  This dataset contains\n        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\n        Swath data\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"TIR_Band10\",\"common_name\":\"lwir\",\"center_wavelength\":8.3,\"full_width_half_max\":0.35,\"description\":\"thermal\n        infrared\"},{\"name\":\"TIR_Band11\",\"common_name\":\"lwir\",\"center_wavelength\":8.65,\"full_width_half_max\":0.35,\"description\":\"thermal\n        infrared\"},{\"name\":\"TIR_Band12\",\"common_name\":\"lwir\",\"center_wavelength\":9.11,\"full_width_half_max\":0.35,\"description\":\"thermal\n        infrared\"},{\"name\":\"TIR_Band13\",\"common_name\":\"lwir\",\"center_wavelength\":10.6,\"full_width_half_max\":0.7,\"description\":\"thermal\n        infrared\"},{\"name\":\"TIR_Band14\",\"common_name\":\"lwir\",\"center_wavelength\":11.3,\"full_width_half_max\":0.7,\"description\":\"thermal\n        infrared\"}]},\"xml\":{\"title\":\"XML metadata\",\"type\":\"application/xml\",\"roles\":[\"metadata\"]},\"SWIR\":{\"title\":\"SWIR\n        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\n        infrared\"},{\"name\":\"SWIR_Band5\",\"common_name\":\"swir\",\"center_wavelength\":2.165,\"full_width_half_max\":0.04,\"description\":\"short-wave\n        infrared\"},{\"name\":\"SWIR_Band6\",\"common_name\":\"swir\",\"center_wavelength\":2.205,\"full_width_half_max\":0.04,\"description\":\"short-wave\n        infrared\"},{\"name\":\"SWIR_Band7\",\"common_name\":\"swir\",\"center_wavelength\":2.26,\"full_width_half_max\":0.05,\"description\":\"short-wave\n        infrared\"},{\"name\":\"SWIR_Band8\",\"common_name\":\"swir\",\"center_wavelength\":2.339,\"full_width_half_max\":0.07,\"description\":\"short-wave\n        infrared\"},{\"name\":\"SWIR_Band9\",\"common_name\":\"swir\",\"center_wavelength\":2.395,\"full_width_half_max\":0.07,\"description\":\"short-wave\n        infrared\"}]},\"VNIR\":{\"title\":\"VNIR Swath data\",\"type\":\"image/tiff; application=geotiff;\n        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\n        yellow/green\"},{\"name\":\"VNIR_Band2\",\"common_name\":\"red\",\"center_wavelength\":0.66,\"full_width_half_max\":0.06,\"description\":\"visible\n        red\"},{\"name\":\"VNIR_Band3N\",\"common_name\":\"near infrared\",\"center_wavelength\":0.82,\"full_width_half_max\":0.08,\"description\":\"near\n        infrared\"}]},\"qa-txt\":{\"title\":\"QA browse file\",\"description\":\"Geometric quality\n        assessment report.\",\"type\":\"text/plain\",\"roles\":[\"metadata\"]},\"qa-browse\":{\"title\":\"QA\n        browse file\",\"description\":\"Single-band black and white reduced resolution\n        browse overlaid with red, green, and blue (RGB) markers for GCPs used during\n        the geometric verification quality check.\",\"type\":\"image/jpeg\",\"roles\":[\"thumbnail\"]},\"tir-browse\":{\"title\":\"Standalone\n        reduced resolution TIR\",\"type\":\"image/jpeg\",\"roles\":[\"thumbnail\"]},\"vnir-browse\":{\"title\":\"VNIR\n        browse file\",\"description\":\"Standalone reduced resolution VNIR\",\"type\":\"image/jpeg\",\"roles\":[\"thumbnail\"]}},\"msft:storage_account\":\"astersa\"}'\n    headers:\n      Connection:\n      - close\n      Content-Length:\n      - '7259'\n      Content-Type:\n      - application/json\n      Date:\n      - Wed, 16 Jun 2021 03:09:46 GMT\n      Strict-Transport-Security:\n      - max-age=15724800; includeSubDomains\n      X-Azure-Ref:\n      - 0emvJYAAAAADyml5CfwWbQoWPV5PEYR4jQk9TMzFFREdFMDQyMQA5MjdhYmZhNi0xOWY2LTRhZjEtYTA5ZC1jOTU5ZDlhMWU2NDQ=\n      X-Cache:\n      - CONFIG_NOCACHE\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Connection:\n      - close\n      Host:\n      - planetarycomputer.microsoft.com\n      User-Agent:\n      - Python-urllib/3.9\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2\n  response:\n    body:\n      string: '{\"id\":\"landsat-8-c2-l2\",\"description\":\"The [Landsat](https://landsat.gsfc.nasa.gov/)\n        program has been imaging the Earth since 1972; it provides a comprehensive,\n        continuous archive of the Earth''s surface.  [Landsat 8](https://www.usgs.gov/core-science-systems/nli/landsat/landsat-8)\n        is the most recent satellite in the Landsat series.  Launched in 2013, Landsat\n        8 captures data in eleven spectral bands: ten optical/IR bands from the [Operational\n        Land Imager](https://landsat.gsfc.nasa.gov/landsat-8/operational-land-imager)\n        (OLI) instrument, and two thermal bands from the [Thermal Infrared Sensor](https://landsat.gsfc.nasa.gov/landsat-8/thermal-infrared-sensor-tirs)\n        (TIRS) instrument.\\n\\nThis dataset represents the global archive of Level-2\n        Landsat 8 data from [Landsat Collection 2](https://www.usgs.gov/core-science-systems/nli/landsat/landsat-collection-2).  Because\n        there is some latency before Level-2 data is available, a rolling window of\n        recent Level-1 data is available as well.  Images are stored in [cloud-optimized\n        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\n        domain\"}],\"stac_extensions\":[\"item-assets\",\"collection-assets\"],\"title\":\"Landsat\n        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\n        blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06},{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"description\":\"visible\n        green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06},{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"description\":\"visible\n        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\n        infrared\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08},{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2},{\"gsd\":100,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"description\":\"long-wave\n        infrared\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8},{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"},{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled radiance\"},{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric\n        transmission\"},{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance to nearest\n        cloud\"},{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"},{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"},{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"platform\":[\"landsat-8\"],\"instruments\":[\"oli\",\"tirs\"]},\"msft:storage_account\":\"landsateuwest\",\"msft:container\":\"landsat-c2\",\"msft:short_description\":\"Landsat\n        8 has captured 30m-resolution imagery of the Earth since 2013.  This dataset\n        contains global, atmospherically-corrected imagery from Landsat Collection\n        2\",\"item_assets\":{\"ANG\":{\"title\":\"Angle Coefficients File\",\"description\":\"Collection\n        2 Level-1 Angle Coefficients File (ANG)\",\"type\":\"text/plain\"},\"SR_B1\":{\"title\":\"Coastal/Aerosol\n        Band (B1)\",\"description\":\"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface\n        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\n        Band (B2)\",\"description\":\"Collection 2 Level-2 Blue Band (B2) Surface Reflectance\",\"gsd\":30.0,\"type\":\"image/tiff;\n        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\n        Band (B3)\",\"description\":\"Collection 2 Level-2 Green Band (B3) Surface Reflectance\",\"gsd\":30.0,\"type\":\"image/tiff;\n        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\n        Band (B4)\",\"description\":\"Collection 2 Level-2 Red Band (B4) Surface Reflectance\",\"gsd\":30.0,\"type\":\"image/tiff;\n        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\n        Infrared Band 0.8 (B5)\",\"description\":\"Collection 2 Level-2 Near Infrared\n        Band 0.8 (B5) Surface Reflectance\",\"gsd\":30.0,\"type\":\"image/tiff; application=geotiff;\n        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\n        Infrared Band 1.6 (B6)\",\"description\":\"Collection 2 Level-2 Short-wave Infrared\n        Band 1.6 (B6) Surface Reflectance\",\"gsd\":30.0,\"type\":\"image/tiff; application=geotiff;\n        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\n        Infrared Band 2.2 (B7)\",\"description\":\"Collection 2 Level-2 Short-wave Infrared\n        Band 2.2 (B7) Surface Reflectance\",\"gsd\":30.0,\"type\":\"image/tiff; application=geotiff;\n        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\n        Quality Analysis Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality\n        Analysis Band (ANG) Surface Reflectance\",\"gsd\":30.0,\"type\":\"image/tiff; application=geotiff;\n        profile=cloud-optimized\"},\"ST_QA\":{\"title\":\"Surface Temperature Quality Assessment\n        Band\",\"description\":\"Landsat Collection 2 Level-2 Surface Temperature Band\n        Surface Temperature Product\",\"gsd\":30.0,\"type\":\"image/tiff; application=geotiff;\n        profile=cloud-optimized\"},\"ST_B10\":{\"title\":\"Surface Temperature Band (B10)\",\"description\":\"Landsat\n        Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product\",\"gsd\":100.0,\"type\":\"image/tiff;\n        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\n        Metadata File\",\"description\":\"Collection 2 Level-1 Product Metadata File (MTL)\",\"type\":\"text/plain\"},\"MTL.xml\":{\"title\":\"Product\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        File (xml)\",\"type\":\"application/xml\"},\"ST_DRAD\":{\"title\":\"Downwelled Radiance\n        Band\",\"description\":\"Landsat Collection 2 Level-2 Downwelled Radiance Band\n        Surface Temperature Product\",\"gsd\":30.0,\"type\":\"image/tiff; application=geotiff;\n        profile=cloud-optimized\",\"eo:bands\":[{\"name\":\"ST_DRAD\",\"description\":\"downwelled\n        radiance\"}]},\"ST_EMIS\":{\"title\":\"Emissivity Band\",\"description\":\"Landsat Collection\n        2 Level-2 Emissivity Band Surface Temperature Product\",\"gsd\":30.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"eo:bands\":[{\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}]},\"ST_EMSD\":{\"title\":\"Emissivity\n        Standard Deviation Band\",\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        Standard Deviation Band Surface Temperature Product\",\"gsd\":30.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"eo:bands\":[{\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}]},\"ST_TRAD\":{\"title\":\"Thermal Radiance Band\",\"description\":\"Landsat\n        Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product\",\"gsd\":30.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"eo:bands\":[{\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}]},\"ST_URAD\":{\"title\":\"Upwelled Radiance Band\",\"description\":\"Landsat\n        Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product\",\"gsd\":30.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"eo:bands\":[{\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}]},\"MTL.json\":{\"title\":\"Product Metadata File (json)\",\"description\":\"Collection\n        2 Level-1 Product Metadata File (json)\",\"type\":\"application/json\"},\"QA_PIXEL\":{\"title\":\"Pixel\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Pixel Quality\n        Assessment Band\",\"gsd\":30.0,\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\"},\"ST_ATRAN\":{\"title\":\"Atmospheric\n        Transmittance Band\",\"description\":\"Landsat Collection 2 Level-2 Atmospheric\n        Transmittance Band Surface Temperature Product\",\"gsd\":30.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"eo:bands\":[{\"name\":\"ST_ATRAN\",\"description\":\"atmospheric\n        transmission\"}]},\"ST_CDIST\":{\"title\":\"Cloud Distance Band\",\"description\":\"Landsat\n        Collection 2 Level-2 Cloud Distance Band Surface Temperature Product\",\"gsd\":30.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"eo:bands\":[{\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}]},\"QA_RADSAT\":{\"title\":\"Radiometric Saturation Quality\n        Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        Quality Assessment Band\",\"gsd\":30.0,\"type\":\"image/tiff; application=geotiff;\n        profile=cloud-optimized\"},\"thumbnail\":{\"title\":\"Thumbnail image\",\"type\":\"image/jpeg\"},\"reduced_resolution_browse\":{\"title\":\"Reduced\n        resolution browse image\",\"type\":\"image/jpeg\"}},\"assets\":{\"thumbnail\":{\"title\":\"Landsat\n        8 C2\",\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/landsat.png\",\"media_type\":\"image/png\"}}}'\n    headers:\n      Connection:\n      - close\n      Content-Length:\n      - '10491'\n      Content-Type:\n      - application/json\n      Date:\n      - Wed, 16 Jun 2021 03:09:46 GMT\n      Strict-Transport-Security:\n      - max-age=15724800; includeSubDomains\n      X-Azure-Ref:\n      - 0e2vJYAAAAAAasa4hpnfLSrdrgmqDOF/2Qk9TMzFFREdFMDQwNwA5MjdhYmZhNi0xOWY2LTRhZjEtYTA5ZC1jOTU5ZDlhMWU2NDQ=\n      X-Cache:\n      - CONFIG_NOCACHE\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Connection:\n      - close\n      Host:\n      - planetarycomputer.microsoft.com\n      User-Agent:\n      - Python-urllib/3.9\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a\n  response:\n    body:\n      string: '{\"id\":\"sentinel-2-l2a\",\"description\":\"The [Sentinel-2](https://sentinel.esa.int/web/sentinel/missions/sentinel-2)\n        program provides global imagery in thirteen spectral bands at 10m-60m resolution\n        and a revisit time of approximately five days.  This dataset represents the\n        global Sentinel-2 archive, from 2016 to the present, processed to L2A (bottom-of-atmosphere)\n        using [Sen2Cor](https://step.esa.int/main/snap-supported-plugins/sen2cor/)\n        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\n        Sentinel data terms\"}],\"stac_extensions\":[\"item-assets\",\"collection-assets\"],\"title\":\"Sentinel-2\n        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\n        optical thickness\"},{\"gsd\":60,\"name\":\"B01\",\"common_name\":\"coastal\",\"description\":\"coastal\n        aerosol\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027},{\"gsd\":10,\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"visible\n        blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098},{\"gsd\":10,\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"visible\n        green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"gsd\":10,\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"visible\n        red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"gsd\":20,\"name\":\"B05\",\"common_name\":\"rededge\",\"description\":\"vegetation\n        classification red edge\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019},{\"gsd\":20,\"name\":\"B06\",\"common_name\":\"rededge\",\"description\":\"vegetation\n        classification red edge\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018},{\"gsd\":20,\"name\":\"B07\",\"common_name\":\"rededge\",\"description\":\"vegetation\n        classification red edge\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028},{\"gsd\":10,\"name\":\"B08\",\"common_name\":\"nir\",\"description\":\"near\n        infrared\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145},{\"gsd\":20,\"name\":\"B8A\",\"common_name\":\"rededge\",\"description\":\"vegetation\n        classification red edge\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033},{\"gsd\":60,\"name\":\"B09\",\"description\":\"water\n        vapor\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026},{\"gsd\":20,\"name\":\"B11\",\"common_name\":\"swir16\",\"description\":\"short-wave\n        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\n        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\n        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\n        1 - Coastal aerosol\"}]},\"B02\":{\"title\":\"Band 2 - Blue\",\"gsd\":10.0,\"type\":\"image/tiff;\n        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\n        2 - Blue\"}]},\"B03\":{\"title\":\"Band 3 - Green\",\"gsd\":10.0,\"type\":\"image/tiff;\n        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\n        3 - Green\"}]},\"B04\":{\"title\":\"Band 4 - Red\",\"gsd\":10.0,\"type\":\"image/tiff;\n        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\n        4 - Red\"}]},\"B05\":{\"title\":\"Band 5 - Vegetation red edge 1\",\"gsd\":60.0,\"type\":\"image/tiff;\n        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\n        5 - Vegetation red edge 1\"}]},\"B06\":{\"title\":\"Band 6 - Vegetation red edge\n        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\n        6 - Vegetation red edge 2\"}]},\"B07\":{\"title\":\"Band 7 - Vegetation red edge\n        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\n        7 - Vegetation red edge 3\"}]},\"B08\":{\"title\":\"Band 8 - NIR\",\"gsd\":10.0,\"type\":\"image/tiff;\n        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\n        8 - NIR\"}]},\"B09\":{\"title\":\"Band 9 - Water vapor\",\"gsd\":60.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"B09\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026,\"description\":\"Band\n        9 - Water vapor\"}]},\"B11\":{\"title\":\"Band 11 - SWIR (1.6)\",\"gsd\":60.0,\"type\":\"image/tiff;\n        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\n        11 - SWIR (1.6)\"}]},\"B12\":{\"title\":\"Band 12 - SWIR (2.2)\",\"gsd\":60.0,\"type\":\"image/tiff;\n        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\n        12 - SWIR (2.2)\"}]},\"B8A\":{\"title\":\"Band 8A - Vegetation red edge 4\",\"gsd\":60.0,\"type\":\"image/tiff;\n        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\n        8A - Vegetation red edge 4\"}]},\"AOT-10m\":{\"title\":\"Aerosol optical thickness\n        (AOT)\",\"gsd\":10.0,\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"]},\"AOT-20m\":{\"title\":\"Aerosol\n        optical thickness (AOT)\",\"gsd\":20.0,\"type\":\"image/tiff; application=geotiff;\n        profile=cloud-optimized\",\"roles\":[\"data\"]},\"AOT-60m\":{\"title\":\"Aerosol optical\n        thickness (AOT)\",\"gsd\":60.0,\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"]},\"SCL-20m\":{\"title\":\"Scene\n        classfication map (SCL)\",\"gsd\":20.0,\"type\":\"image/tiff; application=geotiff;\n        profile=cloud-optimized\",\"roles\":[\"data\"]},\"SCL-60m\":{\"title\":\"Scene classfication\n        map (SCL)\",\"gsd\":60.0,\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"]},\"WVP-10m\":{\"title\":\"Water\n        vapour (WVP)\",\"gsd\":10.0,\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"]},\"WVP-20m\":{\"title\":\"Water\n        vapour (WVP)\",\"gsd\":20.0,\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"]},\"WVP-60m\":{\"title\":\"Water\n        vapour (WVP)\",\"gsd\":60.0,\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"]},\"preview\":{\"title\":\"Thumbnail\",\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"thumbnail\"]},\"visual-10m\":{\"title\":\"True\n        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\n        4 - Red\"},{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045,\"description\":\"Band\n        3 - Green\"},{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098,\"description\":\"Band\n        2 - Blue\"}]},\"visual-20m\":{\"title\":\"True color image\",\"gsd\":20.0,\"type\":\"image/tiff;\n        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\n        4 - Red\"},{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045,\"description\":\"Band\n        3 - Green\"},{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098,\"description\":\"Band\n        2 - Blue\"}]},\"visual-60m\":{\"title\":\"True color image\",\"gsd\":60.0,\"type\":\"image/tiff;\n        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\n        4 - Red\"},{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045,\"description\":\"Band\n        3 - Green\"},{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098,\"description\":\"Band\n        2 - Blue\"}]},\"safe-manifest\":{\"title\":\"SAFE manifest\",\"type\":\"application/xml\",\"roles\":[\"metadata\"]},\"granule-metadata\":{\"title\":\"Granule\n        metadata\",\"type\":\"application/xml\",\"roles\":[\"metadata\"]},\"inspire-metadata\":{\"title\":\"INSPIRE\n        metadata\",\"type\":\"application/xml\",\"roles\":[\"metadata\"]},\"product-metadata\":{\"title\":\"Product\n        metadata\",\"type\":\"application/xml\",\"roles\":[\"metadata\"]},\"datastrip-metadata\":{\"title\":\"Datastrip\n        metadata\",\"type\":\"application/xml\",\"roles\":[\"metadata\"]}},\"assets\":{\"thumbnail\":{\"title\":\"Sentinel\n        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\n        Sentinel-2 program provides global imagery in thirteen spectral bands at 10m-60m\n        resolution and a revisit time of approximately five days.  This dataset contains\n        the global Sentinel-2 archive, from 2016 to the present, processed to L2A\n        (bottom-of-atmosphere).\"}'\n    headers:\n      Connection:\n      - close\n      Content-Length:\n      - '10812'\n      Content-Type:\n      - application/json\n      Date:\n      - Wed, 16 Jun 2021 03:09:46 GMT\n      Strict-Transport-Security:\n      - max-age=15724800; includeSubDomains\n      X-Azure-Ref:\n      - 0e2vJYAAAAABn/G/C44HXTafejohein3tQk9TMzFFREdFMDQxNQA5MjdhYmZhNi0xOWY2LTRhZjEtYTA5ZC1jOTU5ZDlhMWU2NDQ=\n      X-Cache:\n      - CONFIG_NOCACHE\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Connection:\n      - close\n      Host:\n      - planetarycomputer.microsoft.com\n      User-Agent:\n      - Python-urllib/3.9\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip\n  response:\n    body:\n      string: '{\"id\":\"naip\",\"description\":\"The [National Agriculture Imagery Program](https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/)\n        (NAIP) provides US-wide, high-resolution aerial imagery, with four spectral\n        bands (R, G, B, IR).  NAIP is administered by the [Aerial Field Photography\n        Office](https://www.fsa.usda.gov/programs-and-services/aerial-photography/)\n        (AFPO) within the [US Department of Agriculture](https://www.usda.gov/) (USDA).  Data\n        are captured at least once every three years for each state.  This dataset\n        represents NAIP data from 2010-present, in [cloud-optimized GeoTIFF](https://www.cogeo.org/)\n        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\n        domain\"}],\"stac_extensions\":[\"item-assets\",\"collection-assets\"],\"title\":\"NAIP:\n        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\n        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\n        red\"},{\"name\":\"Green\",\"common_name\":\"green\",\"description\":\"visible green\"},{\"name\":\"Blue\",\"common_name\":\"blue\",\"description\":\"visible\n        blue\"},{\"name\":\"NIR\",\"common_name\":\"nir\",\"description\":\"near-infrared\"}]},\"msft:container\":\"naip\",\"msft:storage_account\":\"naipeuwest\",\"item_assets\":{\"image\":{\"title\":\"RGBIR\n        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\n        Metdata\",\"type\":\"text/plain\",\"roles\":[\"metadata\"]},\"thumbnail\":{\"title\":\"Thumbnail\",\"type\":\"image/jpeg\",\"roles\":[\"thumbnail\"]}},\"msft:short_description\":\"NAIP\n        provides US-wide, high-resolution aerial imagery.  This dataset includes NAIP\n        images from 2010 to the present.\",\"assets\":{\"thumbnail\":{\"title\":\"Landsat\n        8 C2\",\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/naip.png\",\"media_type\":\"image/png\"}}}'\n    headers:\n      Connection:\n      - close\n      Content-Length:\n      - '3105'\n      Content-Type:\n      - application/json\n      Date:\n      - Wed, 16 Jun 2021 03:09:47 GMT\n      Strict-Transport-Security:\n      - max-age=15724800; includeSubDomains\n      X-Azure-Ref:\n      - 0e2vJYAAAAABS7NUUb5PNRbZ+ctssOGJiQk9TMzFFREdFMDQxMgA5MjdhYmZhNi0xOWY2LTRhZjEtYTA5ZC1jOTU5ZDlhMWU2NDQ=\n      X-Cache:\n      - CONFIG_NOCACHE\n    status:\n      code: 200\n      message: OK\nversion: 1\n"
  },
  {
    "path": "tests/cassettes/test_item_search/TestItemSearchParams.test_mixed_collection_object_and_string.yaml",
    "content": "interactions:\n- request:\n    body: null\n    headers:\n      Connection:\n      - close\n      Host:\n      - planetarycomputer.microsoft.com\n      User-Agent:\n      - Python-urllib/3.9\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t\n  response:\n    body:\n      string: '{\"id\":\"aster-l1t\",\"description\":\"The [ASTER](https://terra.nasa.gov/about/terra-instruments/aster)\n        instrument, launched on-board NASA''s [Terra](https://terra.nasa.gov/) satellite\n        in 1999, provides multispectral images of the Earth at 15m-90m resolution.  ASTER\n        images provide information about land surface temperature, color, elevation,\n        and mineral composition.\\n\\nThis dataset represents ASTER [L1T](https://lpdaac.usgs.gov/products/ast_l1tv003/)\n        data from 2000-2006.  L1T images have been terrain-corrected and rotated to\n        a north-up UTM projection.  Images are in [cloud-optimized GeoTIFF](https://www.cogeo.org/)\n        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\n        domain\"}],\"stac_extensions\":[\"item-assets\",\"collection-assets\"],\"title\":\"ASTER\n        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\n        yellow/green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.08},{\"gsd\":15,\"name\":\"VNIR_Band2\",\"common_name\":\"red\",\"description\":\"visible\n        red\",\"center_wavelength\":0.66,\"full_width_half_max\":0.06},{\"gsd\":15,\"name\":\"VNIR_Band3N\",\"common_name\":\"near\n        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\n        infrared\",\"center_wavelength\":1.65,\"full_width_half_max\":0.1},{\"gsd\":30,\"name\":\"SWIR_Band5\",\"common_name\":\"swir\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.165,\"full_width_half_max\":0.04},{\"gsd\":30,\"name\":\"SWIR_Band6\",\"common_name\":\"swir\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.205,\"full_width_half_max\":0.04},{\"gsd\":30,\"name\":\"SWIR_Band7\",\"common_name\":\"swir\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.26,\"full_width_half_max\":0.05},{\"gsd\":30,\"name\":\"SWIR_Band8\",\"common_name\":\"swir\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.339,\"full_width_half_max\":0.07},{\"gsd\":30,\"name\":\"SWIR_Band9\",\"common_name\":\"swir\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.395,\"full_width_half_max\":0.07},{\"gsd\":90,\"name\":\"TIR_Band10\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":8.3,\"full_width_half_max\":0.35},{\"gsd\":90,\"name\":\"TIR_Band11\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":8.65,\"full_width_half_max\":0.35},{\"gsd\":90,\"name\":\"TIR_Band12\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":9.11,\"full_width_half_max\":0.35},{\"gsd\":90,\"name\":\"TIR_Band13\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":10.6,\"full_width_half_max\":0.7},{\"gsd\":90,\"name\":\"TIR_Band14\",\"common_name\":\"lwir\",\"description\":\"thermal\n        infrared\",\"center_wavelength\":11.3,\"full_width_half_max\":0.7}],\"platform\":[\"terra\"],\"instruments\":[\"aster\"]},\"assets\":{\"thumbnail\":{\"title\":\"ASTER\n        L1T\",\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/aster.png\",\"media_type\":\"image/png\"}},\"msft:short_description\":\"The\n        ASTER instrument, launched on-board NASA''s Terra satellite in 1999, provides\n        multispectral images of the Earth at 15m-90m resolution.  This dataset contains\n        ASTER data from 2000-2006.\",\"msft:container\":\"aster\",\"item_assets\":{\"TIR\":{\"title\":\"TIR\n        Swath data\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"TIR_Band10\",\"common_name\":\"lwir\",\"center_wavelength\":8.3,\"full_width_half_max\":0.35,\"description\":\"thermal\n        infrared\"},{\"name\":\"TIR_Band11\",\"common_name\":\"lwir\",\"center_wavelength\":8.65,\"full_width_half_max\":0.35,\"description\":\"thermal\n        infrared\"},{\"name\":\"TIR_Band12\",\"common_name\":\"lwir\",\"center_wavelength\":9.11,\"full_width_half_max\":0.35,\"description\":\"thermal\n        infrared\"},{\"name\":\"TIR_Band13\",\"common_name\":\"lwir\",\"center_wavelength\":10.6,\"full_width_half_max\":0.7,\"description\":\"thermal\n        infrared\"},{\"name\":\"TIR_Band14\",\"common_name\":\"lwir\",\"center_wavelength\":11.3,\"full_width_half_max\":0.7,\"description\":\"thermal\n        infrared\"}]},\"xml\":{\"title\":\"XML metadata\",\"type\":\"application/xml\",\"roles\":[\"metadata\"]},\"SWIR\":{\"title\":\"SWIR\n        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\n        infrared\"},{\"name\":\"SWIR_Band5\",\"common_name\":\"swir\",\"center_wavelength\":2.165,\"full_width_half_max\":0.04,\"description\":\"short-wave\n        infrared\"},{\"name\":\"SWIR_Band6\",\"common_name\":\"swir\",\"center_wavelength\":2.205,\"full_width_half_max\":0.04,\"description\":\"short-wave\n        infrared\"},{\"name\":\"SWIR_Band7\",\"common_name\":\"swir\",\"center_wavelength\":2.26,\"full_width_half_max\":0.05,\"description\":\"short-wave\n        infrared\"},{\"name\":\"SWIR_Band8\",\"common_name\":\"swir\",\"center_wavelength\":2.339,\"full_width_half_max\":0.07,\"description\":\"short-wave\n        infrared\"},{\"name\":\"SWIR_Band9\",\"common_name\":\"swir\",\"center_wavelength\":2.395,\"full_width_half_max\":0.07,\"description\":\"short-wave\n        infrared\"}]},\"VNIR\":{\"title\":\"VNIR Swath data\",\"type\":\"image/tiff; application=geotiff;\n        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\n        yellow/green\"},{\"name\":\"VNIR_Band2\",\"common_name\":\"red\",\"center_wavelength\":0.66,\"full_width_half_max\":0.06,\"description\":\"visible\n        red\"},{\"name\":\"VNIR_Band3N\",\"common_name\":\"near infrared\",\"center_wavelength\":0.82,\"full_width_half_max\":0.08,\"description\":\"near\n        infrared\"}]},\"qa-txt\":{\"title\":\"QA browse file\",\"description\":\"Geometric quality\n        assessment report.\",\"type\":\"text/plain\",\"roles\":[\"metadata\"]},\"qa-browse\":{\"title\":\"QA\n        browse file\",\"description\":\"Single-band black and white reduced resolution\n        browse overlaid with red, green, and blue (RGB) markers for GCPs used during\n        the geometric verification quality check.\",\"type\":\"image/jpeg\",\"roles\":[\"thumbnail\"]},\"tir-browse\":{\"title\":\"Standalone\n        reduced resolution TIR\",\"type\":\"image/jpeg\",\"roles\":[\"thumbnail\"]},\"vnir-browse\":{\"title\":\"VNIR\n        browse file\",\"description\":\"Standalone reduced resolution VNIR\",\"type\":\"image/jpeg\",\"roles\":[\"thumbnail\"]}},\"msft:storage_account\":\"astersa\"}'\n    headers:\n      Connection:\n      - close\n      Content-Length:\n      - '7259'\n      Content-Type:\n      - application/json\n      Date:\n      - Wed, 16 Jun 2021 03:09:46 GMT\n      Strict-Transport-Security:\n      - max-age=15724800; includeSubDomains\n      X-Azure-Ref:\n      - 0e2vJYAAAAADongkH9PiFQar9CyEy/1IAQk9TMzFFREdFMDQwNwA5MjdhYmZhNi0xOWY2LTRhZjEtYTA5ZC1jOTU5ZDlhMWU2NDQ=\n      X-Cache:\n      - CONFIG_NOCACHE\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Connection:\n      - close\n      Host:\n      - planetarycomputer.microsoft.com\n      User-Agent:\n      - Python-urllib/3.9\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2\n  response:\n    body:\n      string: '{\"id\":\"landsat-8-c2-l2\",\"description\":\"The [Landsat](https://landsat.gsfc.nasa.gov/)\n        program has been imaging the Earth since 1972; it provides a comprehensive,\n        continuous archive of the Earth''s surface.  [Landsat 8](https://www.usgs.gov/core-science-systems/nli/landsat/landsat-8)\n        is the most recent satellite in the Landsat series.  Launched in 2013, Landsat\n        8 captures data in eleven spectral bands: ten optical/IR bands from the [Operational\n        Land Imager](https://landsat.gsfc.nasa.gov/landsat-8/operational-land-imager)\n        (OLI) instrument, and two thermal bands from the [Thermal Infrared Sensor](https://landsat.gsfc.nasa.gov/landsat-8/thermal-infrared-sensor-tirs)\n        (TIRS) instrument.\\n\\nThis dataset represents the global archive of Level-2\n        Landsat 8 data from [Landsat Collection 2](https://www.usgs.gov/core-science-systems/nli/landsat/landsat-collection-2).  Because\n        there is some latency before Level-2 data is available, a rolling window of\n        recent Level-1 data is available as well.  Images are stored in [cloud-optimized\n        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\n        domain\"}],\"stac_extensions\":[\"item-assets\",\"collection-assets\"],\"title\":\"Landsat\n        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\n        blue\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06},{\"gsd\":30,\"name\":\"SR_B3\",\"common_name\":\"green\",\"description\":\"visible\n        green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06},{\"gsd\":30,\"name\":\"SR_B4\",\"common_name\":\"red\",\"description\":\"visible\n        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\n        infrared\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08},{\"gsd\":30,\"name\":\"SR_B7\",\"common_name\":\"swir22\",\"description\":\"short-wave\n        infrared\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2},{\"gsd\":100,\"name\":\"ST_B10\",\"common_name\":\"lwir11\",\"description\":\"long-wave\n        infrared\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8},{\"gsd\":30,\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"},{\"gsd\":30,\"name\":\"ST_URAD\",\"description\":\"upwelled radiance\"},{\"gsd\":30,\"name\":\"ST_ATRAN\",\"description\":\"atmospheric\n        transmission\"},{\"gsd\":30,\"name\":\"ST_CDIST\",\"description\":\"distance to nearest\n        cloud\"},{\"gsd\":30,\"name\":\"ST_DRAD\",\"description\":\"downwelled radiance\"},{\"gsd\":30,\"name\":\"ST_EMIS\",\"description\":\"emissivity\"},{\"gsd\":30,\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}],\"platform\":[\"landsat-8\"],\"instruments\":[\"oli\",\"tirs\"]},\"msft:short_description\":\"Landsat\n        8 has captured 30m-resolution imagery of the Earth since 2013.  This dataset\n        contains global, atmospherically-corrected imagery from Landsat Collection\n        2\",\"msft:container\":\"landsat-c2\",\"msft:storage_account\":\"landsateuwest\",\"assets\":{\"thumbnail\":{\"title\":\"Landsat\n        8 C2\",\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/landsat.png\",\"media_type\":\"image/png\"}},\"item_assets\":{\"ANG\":{\"title\":\"Angle\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        File (ANG)\",\"type\":\"text/plain\"},\"SR_B1\":{\"title\":\"Coastal/Aerosol Band (B1)\",\"description\":\"Collection\n        2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance\",\"gsd\":30.0,\"type\":\"image/tiff;\n        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\n        Band (B2)\",\"description\":\"Collection 2 Level-2 Blue Band (B2) Surface Reflectance\",\"gsd\":30.0,\"type\":\"image/tiff;\n        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\n        Band (B3)\",\"description\":\"Collection 2 Level-2 Green Band (B3) Surface Reflectance\",\"gsd\":30.0,\"type\":\"image/tiff;\n        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\n        Band (B4)\",\"description\":\"Collection 2 Level-2 Red Band (B4) Surface Reflectance\",\"gsd\":30.0,\"type\":\"image/tiff;\n        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\n        Infrared Band 0.8 (B5)\",\"description\":\"Collection 2 Level-2 Near Infrared\n        Band 0.8 (B5) Surface Reflectance\",\"gsd\":30.0,\"type\":\"image/tiff; application=geotiff;\n        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\n        Infrared Band 1.6 (B6)\",\"description\":\"Collection 2 Level-2 Short-wave Infrared\n        Band 1.6 (B6) Surface Reflectance\",\"gsd\":30.0,\"type\":\"image/tiff; application=geotiff;\n        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\n        Infrared Band 2.2 (B7)\",\"description\":\"Collection 2 Level-2 Short-wave Infrared\n        Band 2.2 (B7) Surface Reflectance\",\"gsd\":30.0,\"type\":\"image/tiff; application=geotiff;\n        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\n        Quality Analysis Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality\n        Analysis Band (ANG) Surface Reflectance\",\"gsd\":30.0,\"type\":\"image/tiff; application=geotiff;\n        profile=cloud-optimized\"},\"ST_QA\":{\"title\":\"Surface Temperature Quality Assessment\n        Band\",\"description\":\"Landsat Collection 2 Level-2 Surface Temperature Band\n        Surface Temperature Product\",\"gsd\":30.0,\"type\":\"image/tiff; application=geotiff;\n        profile=cloud-optimized\"},\"ST_B10\":{\"title\":\"Surface Temperature Band (B10)\",\"description\":\"Landsat\n        Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product\",\"gsd\":100.0,\"type\":\"image/tiff;\n        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\n        Metadata File\",\"description\":\"Collection 2 Level-1 Product Metadata File (MTL)\",\"type\":\"text/plain\"},\"MTL.xml\":{\"title\":\"Product\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata\n        File (xml)\",\"type\":\"application/xml\"},\"ST_DRAD\":{\"title\":\"Downwelled Radiance\n        Band\",\"description\":\"Landsat Collection 2 Level-2 Downwelled Radiance Band\n        Surface Temperature Product\",\"gsd\":30.0,\"type\":\"image/tiff; application=geotiff;\n        profile=cloud-optimized\",\"eo:bands\":[{\"name\":\"ST_DRAD\",\"description\":\"downwelled\n        radiance\"}]},\"ST_EMIS\":{\"title\":\"Emissivity Band\",\"description\":\"Landsat Collection\n        2 Level-2 Emissivity Band Surface Temperature Product\",\"gsd\":30.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"eo:bands\":[{\"name\":\"ST_EMIS\",\"description\":\"emissivity\"}]},\"ST_EMSD\":{\"title\":\"Emissivity\n        Standard Deviation Band\",\"description\":\"Landsat Collection 2 Level-2 Emissivity\n        Standard Deviation Band Surface Temperature Product\",\"gsd\":30.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"eo:bands\":[{\"name\":\"ST_EMSD\",\"description\":\"emissivity\n        standard deviation\"}]},\"ST_TRAD\":{\"title\":\"Thermal Radiance Band\",\"description\":\"Landsat\n        Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product\",\"gsd\":30.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"eo:bands\":[{\"name\":\"ST_TRAD\",\"description\":\"thermal\n        radiance\"}]},\"ST_URAD\":{\"title\":\"Upwelled Radiance Band\",\"description\":\"Landsat\n        Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product\",\"gsd\":30.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"eo:bands\":[{\"name\":\"ST_URAD\",\"description\":\"upwelled\n        radiance\"}]},\"MTL.json\":{\"title\":\"Product Metadata File (json)\",\"description\":\"Collection\n        2 Level-1 Product Metadata File (json)\",\"type\":\"application/json\"},\"QA_PIXEL\":{\"title\":\"Pixel\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Pixel Quality\n        Assessment Band\",\"gsd\":30.0,\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\"},\"ST_ATRAN\":{\"title\":\"Atmospheric\n        Transmittance Band\",\"description\":\"Landsat Collection 2 Level-2 Atmospheric\n        Transmittance Band Surface Temperature Product\",\"gsd\":30.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"eo:bands\":[{\"name\":\"ST_ATRAN\",\"description\":\"atmospheric\n        transmission\"}]},\"ST_CDIST\":{\"title\":\"Cloud Distance Band\",\"description\":\"Landsat\n        Collection 2 Level-2 Cloud Distance Band Surface Temperature Product\",\"gsd\":30.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"eo:bands\":[{\"name\":\"ST_CDIST\",\"description\":\"distance\n        to nearest cloud\"}]},\"QA_RADSAT\":{\"title\":\"Radiometric Saturation Quality\n        Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation\n        Quality Assessment Band\",\"gsd\":30.0,\"type\":\"image/tiff; application=geotiff;\n        profile=cloud-optimized\"},\"thumbnail\":{\"title\":\"Thumbnail image\",\"type\":\"image/jpeg\"},\"reduced_resolution_browse\":{\"title\":\"Reduced\n        resolution browse image\",\"type\":\"image/jpeg\"}}}'\n    headers:\n      Connection:\n      - close\n      Content-Length:\n      - '10491'\n      Content-Type:\n      - application/json\n      Date:\n      - Wed, 16 Jun 2021 03:09:47 GMT\n      Strict-Transport-Security:\n      - max-age=15724800; includeSubDomains\n      X-Azure-Ref:\n      - 0e2vJYAAAAADJA9K9ZpeWTKw9yflAjS9eQk9TMzFFREdFMDQxMAA5MjdhYmZhNi0xOWY2LTRhZjEtYTA5ZC1jOTU5ZDlhMWU2NDQ=\n      X-Cache:\n      - CONFIG_NOCACHE\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Connection:\n      - close\n      Host:\n      - planetarycomputer.microsoft.com\n      User-Agent:\n      - Python-urllib/3.9\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a\n  response:\n    body:\n      string: '{\"id\":\"sentinel-2-l2a\",\"description\":\"The [Sentinel-2](https://sentinel.esa.int/web/sentinel/missions/sentinel-2)\n        program provides global imagery in thirteen spectral bands at 10m-60m resolution\n        and a revisit time of approximately five days.  This dataset represents the\n        global Sentinel-2 archive, from 2016 to the present, processed to L2A (bottom-of-atmosphere)\n        using [Sen2Cor](https://step.esa.int/main/snap-supported-plugins/sen2cor/)\n        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\n        Sentinel data terms\"}],\"stac_extensions\":[\"item-assets\",\"collection-assets\"],\"title\":\"Sentinel-2\n        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\n        optical thickness\"},{\"gsd\":60,\"name\":\"B01\",\"common_name\":\"coastal\",\"description\":\"coastal\n        aerosol\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027},{\"gsd\":10,\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"visible\n        blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098},{\"gsd\":10,\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"visible\n        green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"gsd\":10,\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"visible\n        red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"gsd\":20,\"name\":\"B05\",\"common_name\":\"rededge\",\"description\":\"vegetation\n        classification red edge\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019},{\"gsd\":20,\"name\":\"B06\",\"common_name\":\"rededge\",\"description\":\"vegetation\n        classification red edge\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018},{\"gsd\":20,\"name\":\"B07\",\"common_name\":\"rededge\",\"description\":\"vegetation\n        classification red edge\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028},{\"gsd\":10,\"name\":\"B08\",\"common_name\":\"nir\",\"description\":\"near\n        infrared\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145},{\"gsd\":20,\"name\":\"B8A\",\"common_name\":\"rededge\",\"description\":\"vegetation\n        classification red edge\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033},{\"gsd\":60,\"name\":\"B09\",\"description\":\"water\n        vapor\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026},{\"gsd\":20,\"name\":\"B11\",\"common_name\":\"swir16\",\"description\":\"short-wave\n        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\n        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\n        2 L2A\",\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/sentinel-2.png\",\"media_type\":\"image/png\"}},\"item_assets\":{\"B01\":{\"title\":\"Band\n        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\n        1 - Coastal aerosol\"}]},\"B02\":{\"title\":\"Band 2 - Blue\",\"gsd\":10.0,\"type\":\"image/tiff;\n        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\n        2 - Blue\"}]},\"B03\":{\"title\":\"Band 3 - Green\",\"gsd\":10.0,\"type\":\"image/tiff;\n        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\n        3 - Green\"}]},\"B04\":{\"title\":\"Band 4 - Red\",\"gsd\":10.0,\"type\":\"image/tiff;\n        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\n        4 - Red\"}]},\"B05\":{\"title\":\"Band 5 - Vegetation red edge 1\",\"gsd\":60.0,\"type\":\"image/tiff;\n        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\n        5 - Vegetation red edge 1\"}]},\"B06\":{\"title\":\"Band 6 - Vegetation red edge\n        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\n        6 - Vegetation red edge 2\"}]},\"B07\":{\"title\":\"Band 7 - Vegetation red edge\n        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\n        7 - Vegetation red edge 3\"}]},\"B08\":{\"title\":\"Band 8 - NIR\",\"gsd\":10.0,\"type\":\"image/tiff;\n        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\n        8 - NIR\"}]},\"B09\":{\"title\":\"Band 9 - Water vapor\",\"gsd\":60.0,\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"B09\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026,\"description\":\"Band\n        9 - Water vapor\"}]},\"B11\":{\"title\":\"Band 11 - SWIR (1.6)\",\"gsd\":60.0,\"type\":\"image/tiff;\n        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\n        11 - SWIR (1.6)\"}]},\"B12\":{\"title\":\"Band 12 - SWIR (2.2)\",\"gsd\":60.0,\"type\":\"image/tiff;\n        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\n        12 - SWIR (2.2)\"}]},\"B8A\":{\"title\":\"Band 8A - Vegetation red edge 4\",\"gsd\":60.0,\"type\":\"image/tiff;\n        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\n        8A - Vegetation red edge 4\"}]},\"AOT-10m\":{\"title\":\"Aerosol optical thickness\n        (AOT)\",\"gsd\":10.0,\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"]},\"AOT-20m\":{\"title\":\"Aerosol\n        optical thickness (AOT)\",\"gsd\":20.0,\"type\":\"image/tiff; application=geotiff;\n        profile=cloud-optimized\",\"roles\":[\"data\"]},\"AOT-60m\":{\"title\":\"Aerosol optical\n        thickness (AOT)\",\"gsd\":60.0,\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"]},\"SCL-20m\":{\"title\":\"Scene\n        classfication map (SCL)\",\"gsd\":20.0,\"type\":\"image/tiff; application=geotiff;\n        profile=cloud-optimized\",\"roles\":[\"data\"]},\"SCL-60m\":{\"title\":\"Scene classfication\n        map (SCL)\",\"gsd\":60.0,\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"]},\"WVP-10m\":{\"title\":\"Water\n        vapour (WVP)\",\"gsd\":10.0,\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"]},\"WVP-20m\":{\"title\":\"Water\n        vapour (WVP)\",\"gsd\":20.0,\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"]},\"WVP-60m\":{\"title\":\"Water\n        vapour (WVP)\",\"gsd\":60.0,\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"]},\"preview\":{\"title\":\"Thumbnail\",\"type\":\"image/tiff;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"thumbnail\"]},\"visual-10m\":{\"title\":\"True\n        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\n        4 - Red\"},{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045,\"description\":\"Band\n        3 - Green\"},{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098,\"description\":\"Band\n        2 - Blue\"}]},\"visual-20m\":{\"title\":\"True color image\",\"gsd\":20.0,\"type\":\"image/tiff;\n        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\n        4 - Red\"},{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045,\"description\":\"Band\n        3 - Green\"},{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098,\"description\":\"Band\n        2 - Blue\"}]},\"visual-60m\":{\"title\":\"True color image\",\"gsd\":60.0,\"type\":\"image/tiff;\n        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\n        4 - Red\"},{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045,\"description\":\"Band\n        3 - Green\"},{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098,\"description\":\"Band\n        2 - Blue\"}]},\"safe-manifest\":{\"title\":\"SAFE manifest\",\"type\":\"application/xml\",\"roles\":[\"metadata\"]},\"granule-metadata\":{\"title\":\"Granule\n        metadata\",\"type\":\"application/xml\",\"roles\":[\"metadata\"]},\"inspire-metadata\":{\"title\":\"INSPIRE\n        metadata\",\"type\":\"application/xml\",\"roles\":[\"metadata\"]},\"product-metadata\":{\"title\":\"Product\n        metadata\",\"type\":\"application/xml\",\"roles\":[\"metadata\"]},\"datastrip-metadata\":{\"title\":\"Datastrip\n        metadata\",\"type\":\"application/xml\",\"roles\":[\"metadata\"]}},\"msft:container\":\"sentinel2-l2\",\"msft:storage_account\":\"sentinel2l2a01\",\"msft:short_description\":\"The\n        Sentinel-2 program provides global imagery in thirteen spectral bands at 10m-60m\n        resolution and a revisit time of approximately five days.  This dataset contains\n        the global Sentinel-2 archive, from 2016 to the present, processed to L2A\n        (bottom-of-atmosphere).\"}'\n    headers:\n      Connection:\n      - close\n      Content-Length:\n      - '10812'\n      Content-Type:\n      - application/json\n      Date:\n      - Wed, 16 Jun 2021 03:09:47 GMT\n      Strict-Transport-Security:\n      - max-age=15724800; includeSubDomains\n      X-Azure-Ref:\n      - 0fGvJYAAAAABUQR5QwJZ8R6DvJ8D5vW7wQk9TMzFFREdFMDQxMwA5MjdhYmZhNi0xOWY2LTRhZjEtYTA5ZC1jOTU5ZDlhMWU2NDQ=\n      X-Cache:\n      - CONFIG_NOCACHE\n    status:\n      code: 200\n      message: OK\n- request:\n    body: null\n    headers:\n      Connection:\n      - close\n      Host:\n      - planetarycomputer.microsoft.com\n      User-Agent:\n      - Python-urllib/3.9\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip\n  response:\n    body:\n      string: '{\"id\":\"naip\",\"description\":\"The [National Agriculture Imagery Program](https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/)\n        (NAIP) provides US-wide, high-resolution aerial imagery, with four spectral\n        bands (R, G, B, IR).  NAIP is administered by the [Aerial Field Photography\n        Office](https://www.fsa.usda.gov/programs-and-services/aerial-photography/)\n        (AFPO) within the [US Department of Agriculture](https://www.usda.gov/) (USDA).  Data\n        are captured at least once every three years for each state.  This dataset\n        represents NAIP data from 2010-present, in [cloud-optimized GeoTIFF](https://www.cogeo.org/)\n        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\n        domain\"}],\"stac_extensions\":[\"item-assets\",\"collection-assets\"],\"title\":\"NAIP:\n        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\n        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\n        red\"},{\"name\":\"Green\",\"common_name\":\"green\",\"description\":\"visible green\"},{\"name\":\"Blue\",\"common_name\":\"blue\",\"description\":\"visible\n        blue\"},{\"name\":\"NIR\",\"common_name\":\"nir\",\"description\":\"near-infrared\"}]},\"item_assets\":{\"image\":{\"title\":\"RGBIR\n        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\n        Metdata\",\"type\":\"text/plain\",\"roles\":[\"metadata\"]},\"thumbnail\":{\"title\":\"Thumbnail\",\"type\":\"image/jpeg\",\"roles\":[\"thumbnail\"]}},\"assets\":{\"thumbnail\":{\"title\":\"Landsat\n        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\n        provides US-wide, high-resolution aerial imagery.  This dataset includes NAIP\n        images from 2010 to the present.\"}'\n    headers:\n      Connection:\n      - close\n      Content-Length:\n      - '3105'\n      Content-Type:\n      - application/json\n      Date:\n      - Wed, 16 Jun 2021 03:09:47 GMT\n      Strict-Transport-Security:\n      - max-age=15724800; includeSubDomains\n      X-Azure-Ref:\n      - 0fGvJYAAAAAD8Q2Yi8hFOQbFJ4QQzp0UHQk9TMzFFREdFMDQxMQA5MjdhYmZhNi0xOWY2LTRhZjEtYTA5ZC1jOTU5ZDlhMWU2NDQ=\n      X-Cache:\n      - CONFIG_NOCACHE\n    status:\n      code: 200\n      message: OK\nversion: 1\n"
  },
  {
    "path": "tests/cassettes/test_item_search/TestItemSearchQuery.test_query_json_syntax.yaml",
    "content": "interactions:\n- request:\n    body: '{\"bbox\": [-73.21, 43.99, -73.12, 44.05], \"collections\": [\"naip\"], \"query\":\n      {\"gsd\": {\"gte\": 0, \"lte\": 1}}}'\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '105'\n      Content-Type:\n      - application/json\n      User-Agent:\n      - python-requests/2.32.4\n    method: POST\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/search\n  response:\n    body:\n      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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\"}]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '5665'\n      Content-Type:\n      - application/geo+json\n      Date:\n      - Thu, 31 Jul 2025 15:09:15 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150915Z-r17d779659cnj9cghC1DENr2m800000004mg000000003wvc\n    status:\n      code: 200\n      message: OK\n- request:\n    body: '{\"bbox\": [-73.21, 43.99, -73.12, 44.05], \"collections\": [\"naip\"], \"query\":\n      {\"gsd\": {\"gte\": 0, \"lte\": 1}}}'\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '105'\n      Content-Type:\n      - application/json\n      User-Agent:\n      - python-requests/2.32.4\n    method: POST\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/search\n  response:\n    body:\n      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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\"}]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '5665'\n      Content-Type:\n      - application/geo+json\n      Date:\n      - Thu, 31 Jul 2025 15:09:16 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150915Z-r17d779659cgb75vhC1DEN1dss0000000640000000001qux\n    status:\n      code: 200\n      message: OK\nversion: 1\n"
  },
  {
    "path": "tests/cassettes/test_item_search/TestItemSearchQuery.test_query_shortcut_syntax.yaml",
    "content": "interactions:\n- request:\n    body: '{\"bbox\": [-73.21, 43.99, -73.12, 44.05], \"collections\": [\"naip\"], \"query\":\n      {\"gsd\": {\"eq\": 0.6}}}'\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '96'\n      Content-Type:\n      - application/json\n      User-Agent:\n      - python-requests/2.32.4\n    method: POST\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/search\n  response:\n    body:\n      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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\"}]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '2625'\n      Content-Type:\n      - application/geo+json\n      Date:\n      - Thu, 31 Jul 2025 15:09:13 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150912Z-r17d779659c6qstkhC1DENnvqn00000001zg00000000aqmh\n    status:\n      code: 200\n      message: OK\n- request:\n    body: '{\"bbox\": [-73.21, 43.99, -73.12, 44.05], \"collections\": [\"naip\"], \"query\":\n      {\"gsd\": {\"eq\": 0.6}}}'\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '96'\n      Content-Type:\n      - application/json\n      User-Agent:\n      - python-requests/2.32.4\n    method: POST\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/search\n  response:\n    body:\n      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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR\n        COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"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\n        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\n        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\n        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\"}]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '2625'\n      Content-Type:\n      - application/geo+json\n      Date:\n      - Thu, 31 Jul 2025 15:09:14 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150913Z-r17d779659c8vbd8hC1DENmu9s0000000230000000005qxb\n    status:\n      code: 200\n      message: OK\nversion: 1\n"
  },
  {
    "path": "tests/cassettes/test_item_search/test_fields.yaml",
    "content": "interactions:\n- request:\n    body: '{\"collections\": [\"sentinel-2-c1-l2a\"], \"intersects\": {\"type\": \"Point\",\n      \"coordinates\": [-105.1019, 40.1672]}, \"fields\": {\"include\": [], \"exclude\": [\"geometry\",\n      \"assets\", \"links\"]}}'\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '179'\n      Content-Type:\n      - application/json\n      User-Agent:\n      - python-requests/2.32.4\n    method: POST\n    uri: https://earth-search.aws.element84.com/v1/search\n  response:\n    body:\n      string: '{\"type\":\"FeatureCollection\",\"stac_version\":\"1.0.0\",\"stac_extensions\":[],\"context\":{\"limit\":10,\"matched\":858,\"returned\":10},\"numberMatched\":858,\"numberReturned\":10,\"features\":[{\"stac_version\":\"1.0.0\",\"bbox\":[-106.180233,39.655762,-104.885314,40.478304],\"id\":\"S2C_T13TDE_20250729T180310_L2A\",\"collection\":\"sentinel-2-c1-l2a\",\"type\":\"Feature\",\"properties\":{\"datetime\":\"2025-07-29T18:03:19.545000Z\"}},{\"stac_version\":\"1.0.0\",\"bbox\":[-106.183161,40.035521,-104.884569,40.65079],\"id\":\"S2C_T13TDE_20250729T175521_L2A\",\"collection\":\"sentinel-2-c1-l2a\",\"type\":\"Feature\",\"properties\":{\"datetime\":\"2025-07-29T18:03:12.927000Z\"}},{\"stac_version\":\"1.0.0\",\"bbox\":[-105.371484,39.661022,-104.884569,40.650824],\"id\":\"S2C_T13TDE_20250726T175050_L2A\",\"collection\":\"sentinel-2-c1-l2a\",\"type\":\"Feature\",\"properties\":{\"datetime\":\"2025-07-26T17:53:21.392000Z\"}},{\"stac_version\":\"1.0.0\",\"bbox\":[-106.183161,39.655762,-104.884569,40.65079],\"id\":\"S2B_T13TDE_20250724T180145_L2A\",\"collection\":\"sentinel-2-c1-l2a\",\"type\":\"Feature\",\"properties\":{\"datetime\":\"2025-07-24T18:02:57.483000Z\"}},{\"stac_version\":\"1.0.0\",\"bbox\":[-105.355745,39.661071,-104.884569,40.650833],\"id\":\"S2B_T13TDE_20250721T174755_L2A\",\"collection\":\"sentinel-2-c1-l2a\",\"type\":\"Feature\",\"properties\":{\"datetime\":\"2025-07-21T17:53:01.737000Z\"}},{\"stac_version\":\"1.0.0\",\"bbox\":[-106.183161,39.655762,-104.884569,40.65079],\"id\":\"S2C_T13TDE_20250719T180004_L2A\",\"collection\":\"sentinel-2-c1-l2a\",\"type\":\"Feature\",\"properties\":{\"datetime\":\"2025-07-19T18:03:18.659000Z\"}},{\"stac_version\":\"1.0.0\",\"bbox\":[-105.3723,39.661019,-104.884569,40.650823],\"id\":\"S2A_T13TDE_20250718T175132_L2A\",\"collection\":\"sentinel-2-c1-l2a\",\"type\":\"Feature\",\"properties\":{\"datetime\":\"2025-07-18T17:53:18.437000Z\"}},{\"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\"}}],\"links\":[{\"rel\":\"next\",\"title\":\"Next\n        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-07-11T18:03:14.611000Z,S2A_T13TDE_20250711T175745_L2A,sentinel-2-c1-l2a\"}},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"}]}'\n    headers:\n      Connection:\n      - keep-alive\n      Content-Encoding:\n      - gzip\n      Content-Length:\n      - '742'\n      Content-Type:\n      - application/geo+json; charset=utf-8\n      Date:\n      - Thu, 31 Jul 2025 15:09:16 GMT\n      Via:\n      - 1.1 a7bf7cf3a377b5000ee61eea3824eb74.cloudfront.net (CloudFront)\n      X-Amz-Cf-Id:\n      - OEnALjIFZsB36QRX3iyGnWLyJNRn4zwjIczgNaNzpT6HdfuzVSRAtw==\n      X-Amz-Cf-Pop:\n      - DEN52-C1\n      X-Amzn-Trace-Id:\n      - Root=1-688b871c-2704d9ca167daa334ea6b889;Parent=03753bb5dc888908;Sampled=0;Lineage=1:9e2884e9:0\n      X-Cache:\n      - Miss from cloudfront\n      access-control-allow-origin:\n      - '*'\n      etag:\n      - W/\"b60-mGs4zn1Apd4rBG5P67PqKzvJzlk\"\n      x-amz-apigw-id:\n      - OlIMkHpGvHcEdZw=\n      x-amzn-Remapped-content-length:\n      - '2912'\n      x-amzn-RequestId:\n      - ebef9fdb-8958-4185-a0e7-ffb2dc153666\n      x-powered-by:\n      - Express\n    status:\n      code: 200\n      message: OK\nversion: 1\n"
  },
  {
    "path": "tests/cassettes/test_item_search/test_multiple_collections.yaml",
    "content": "interactions:\n- request:\n    body: '{\"datetime\": \"2023-10-08T00:00:00Z/2023-10-08T23:59:59Z\", \"collections\":\n      [\"sentinel-2-l2a\", \"landsat-c2-l2\"], \"intersects\": {\"type\": \"Point\", \"coordinates\":\n      [-105.1019, 40.1672]}}'\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '179'\n      Content-Type:\n      - application/json\n      User-Agent:\n      - python-requests/2.32.4\n    method: POST\n    uri: https://earth-search.aws.element84.com/v1/search\n  response:\n    body:\n      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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol optical thickness\n        (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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue (band 2) - 10m\",\"eo:bands\":[{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue\n        (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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal aerosol (band\n        1) - 60m\",\"eo:bands\":[{\"name\":\"coastal\",\"common_name\":\"coastal\",\"description\":\"Coastal\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green (band 3) - 10m\",\"eo:bands\":[{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green\n        (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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 1 (band 8) - 10m\",\"eo:bands\":[{\"name\":\"nir\",\"common_name\":\"nir\",\"description\":\"NIR\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 2 (band 8A) - 20m\",\"eo:bands\":[{\"name\":\"nir08\",\"common_name\":\"nir08\",\"description\":\"NIR\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 3 (band 9) - 60m\",\"eo:bands\":[{\"name\":\"nir09\",\"common_name\":\"nir09\",\"description\":\"NIR\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red (band 4) - 10m\",\"eo:bands\":[{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red\n        (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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red edge 1 (band 5)\n        - 20m\",\"eo:bands\":[{\"name\":\"rededge1\",\"common_name\":\"rededge\",\"description\":\"Red\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red edge 2 (band 6)\n        - 20m\",\"eo:bands\":[{\"name\":\"rededge2\",\"common_name\":\"rededge\",\"description\":\"Red\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red edge 3 (band 7)\n        - 20m\",\"eo:bands\":[{\"name\":\"rededge3\",\"common_name\":\"rededge\",\"description\":\"Red\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Scene classification\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"SWIR 1 (band 11) -\n        20m\",\"eo:bands\":[{\"name\":\"swir16\",\"common_name\":\"swir16\",\"description\":\"SWIR\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"SWIR 2 (band 12) -\n        20m\",\"eo:bands\":[{\"name\":\"swir22\",\"common_name\":\"swir22\",\"description\":\"SWIR\n        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\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"True color image\",\"eo:bands\":[{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red\n        (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green\n        (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue\n        (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;\n        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\n        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\n        (band 2) - 10m\",\"eo:bands\":[{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue\n        (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\n        aerosol (band 1) - 60m\",\"eo:bands\":[{\"name\":\"coastal\",\"common_name\":\"coastal\",\"description\":\"Coastal\n        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\n        (band 3) - 10m\",\"eo:bands\":[{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green\n        (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\n        1 (band 8) - 10m\",\"eo:bands\":[{\"name\":\"nir\",\"common_name\":\"nir\",\"description\":\"NIR\n        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\n        2 (band 8A) - 20m\",\"eo:bands\":[{\"name\":\"nir08\",\"common_name\":\"nir08\",\"description\":\"NIR\n        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\n        3 (band 9) - 60m\",\"eo:bands\":[{\"name\":\"nir09\",\"common_name\":\"nir09\",\"description\":\"NIR\n        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\n        (band 4) - 10m\",\"eo:bands\":[{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red\n        (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\n        edge 1 (band 5) - 20m\",\"eo:bands\":[{\"name\":\"rededge1\",\"common_name\":\"rededge\",\"description\":\"Red\n        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\n        edge 2 (band 6) - 20m\",\"eo:bands\":[{\"name\":\"rededge2\",\"common_name\":\"rededge\",\"description\":\"Red\n        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\n        edge 3 (band 7) - 20m\",\"eo:bands\":[{\"name\":\"rededge3\",\"common_name\":\"rededge\",\"description\":\"Red\n        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\n        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\n        1 (band 11) - 20m\",\"eo:bands\":[{\"name\":\"swir16\",\"common_name\":\"swir16\",\"description\":\"SWIR\n        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\n        2 (band 12) - 20m\",\"eo:bands\":[{\"name\":\"swir22\",\"common_name\":\"swir22\",\"description\":\"SWIR\n        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\n        color image\",\"eo:bands\":[{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red\n        (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green\n        (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue\n        (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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        Metadata File (json)\",\"description\":\"Collection 2 Level-2 Product Metadata\n        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\n        Metadata File (txt)\",\"description\":\"Collection 2 Level-2 Product Metadata\n        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\n        Metadata File (xml)\",\"description\":\"Collection 2 Level-2 Product Metadata\n        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\n        Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment\n        Band\",\"description\":\"Collection 2 Level-1 Pixel Quality Assessment Band (QA_PIXEL)\",\"classification:bitfields\":[{\"name\":\"fill\",\"description\":\"Image\n        or fill data\",\"offset\":0,\"length\":1,\"classes\":[{\"value\":0,\"name\":\"not_fill\",\"description\":\"Image\n        data\"},{\"value\":1,\"name\":\"fill\",\"description\":\"Fill data\"}]},{\"name\":\"dilated_cloud\",\"description\":\"Dilated\n        cloud\",\"offset\":1,\"length\":1,\"classes\":[{\"value\":0,\"name\":\"not_dilated\",\"description\":\"Cloud\n        is not dilated or no cloud\"},{\"value\":1,\"name\":\"dilated\",\"description\":\"Cloud\n        dilation\"}]},{\"name\":\"cirrus\",\"description\":\"Cirrus mask\",\"offset\":2,\"length\":1,\"classes\":[{\"value\":0,\"name\":\"not_cirrus\",\"description\":\"Cirrus\n        confidence is not high\"},{\"value\":1,\"name\":\"cirrus\",\"description\":\"High confidence\n        cirrus\"}]},{\"name\":\"cloud\",\"description\":\"Cloud mask\",\"offset\":3,\"length\":1,\"classes\":[{\"value\":0,\"name\":\"not_cloud\",\"description\":\"Cloud\n        confidence is not high\"},{\"value\":1,\"name\":\"cloud\",\"description\":\"High confidence\n        cloud\"}]},{\"name\":\"cloud_shadow\",\"description\":\"Cloud shadow mask\",\"offset\":4,\"length\":1,\"classes\":[{\"value\":0,\"name\":\"not_shadow\",\"description\":\"Cloud\n        shadow confidence is not high\"},{\"value\":1,\"name\":\"shadow\",\"description\":\"High\n        confidence cloud shadow\"}]},{\"name\":\"snow\",\"description\":\"Snow/Ice mask\",\"offset\":5,\"length\":1,\"classes\":[{\"value\":0,\"name\":\"not_snow\",\"description\":\"Snow/Ice\n        confidence is not high\"},{\"value\":1,\"name\":\"snow\",\"description\":\"High confidence\n        snow cover\"}]},{\"name\":\"clear\",\"description\":\"Clear mask\",\"offset\":6,\"length\":1,\"classes\":[{\"value\":0,\"name\":\"not_clear\",\"description\":\"Cloud\n        or dilated cloud bits are set\"},{\"value\":1,\"name\":\"clear\",\"description\":\"Cloud\n        and dilated cloud bits are not set\"}]},{\"name\":\"water\",\"description\":\"Water\n        mask\",\"offset\":7,\"length\":1,\"classes\":[{\"value\":0,\"name\":\"not_water\",\"description\":\"Land\n        or cloud\"},{\"value\":1,\"name\":\"water\",\"description\":\"Water\"}]},{\"name\":\"cloud_confidence\",\"description\":\"Cloud\n        confidence levels\",\"offset\":8,\"length\":2,\"classes\":[{\"value\":0,\"name\":\"not_set\",\"description\":\"No\n        confidence level set\"},{\"value\":1,\"name\":\"low\",\"description\":\"Low confidence\n        cloud\"},{\"value\":2,\"name\":\"medium\",\"description\":\"Medium confidence cloud\"},{\"value\":3,\"name\":\"high\",\"description\":\"High\n        confidence cloud\"}]},{\"name\":\"cloud_shadow_confidence\",\"description\":\"Cloud\n        shadow confidence levels\",\"offset\":10,\"length\":2,\"classes\":[{\"value\":0,\"name\":\"not_set\",\"description\":\"No\n        confidence level set\"},{\"value\":1,\"name\":\"low\",\"description\":\"Low confidence\n        cloud shadow\"},{\"value\":2,\"name\":\"reserved\",\"description\":\"Reserved - value\n        not used\"},{\"value\":3,\"name\":\"high\",\"description\":\"High confidence cloud shadow\"}]},{\"name\":\"snow_confidence\",\"description\":\"Snow/Ice\n        confidence levels\",\"offset\":12,\"length\":2,\"classes\":[{\"value\":0,\"name\":\"not_set\",\"description\":\"No\n        confidence level set\"},{\"value\":1,\"name\":\"low\",\"description\":\"Low confidence\n        snow/ice\"},{\"value\":2,\"name\":\"reserved\",\"description\":\"Reserved - value not\n        used\"},{\"value\":3,\"name\":\"high\",\"description\":\"High confidence snow/ice\"}]},{\"name\":\"cirrus_confidence\",\"description\":\"Cirrus\n        confidence levels\",\"offset\":14,\"length\":2,\"classes\":[{\"value\":0,\"name\":\"not_set\",\"description\":\"No\n        confidence level set\"},{\"value\":1,\"name\":\"low\",\"description\":\"Low confidence\n        cirrus\"},{\"value\":2,\"name\":\"reserved\",\"description\":\"Reserved - value not\n        used\"},{\"value\":3,\"name\":\"high\",\"description\":\"High confidence cirrus\"}]}],\"raster:bands\":[{\"nodata\":1,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"unit\":\"bit\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation\n        and Terrain Occlusion Quality Assessment Band\",\"description\":\"Collection 2\n        Level-1 Radiometric Saturation and Terrain Occlusion Quality Assessment Band\n        (QA_RADSAT)\",\"classification:bitfields\":[{\"name\":\"band1\",\"description\":\"Band\n        1 radiometric saturation\",\"offset\":0,\"length\":1,\"classes\":[{\"value\":0,\"name\":\"not_saturated\",\"description\":\"Band\n        1 not saturated\"},{\"value\":1,\"name\":\"saturated\",\"description\":\"Band 1 saturated\"}]},{\"name\":\"band2\",\"description\":\"Band\n        2 radiometric saturation\",\"offset\":1,\"length\":1,\"classes\":[{\"value\":0,\"name\":\"not_saturated\",\"description\":\"Band\n        2 not saturated\"},{\"value\":1,\"name\":\"saturated\",\"description\":\"Band 2 saturated\"}]},{\"name\":\"band3\",\"description\":\"Band\n        3 radiometric saturation\",\"offset\":2,\"length\":1,\"classes\":[{\"value\":0,\"name\":\"not_saturated\",\"description\":\"Band\n        3 not saturated\"},{\"value\":1,\"name\":\"saturated\",\"description\":\"Band 3 saturated\"}]},{\"name\":\"band4\",\"description\":\"Band\n        4 radiometric saturation\",\"offset\":3,\"length\":1,\"classes\":[{\"value\":0,\"name\":\"not_saturated\",\"description\":\"Band\n        4 not saturated\"},{\"value\":1,\"name\":\"saturated\",\"description\":\"Band 4 saturated\"}]},{\"name\":\"band5\",\"description\":\"Band\n        5 radiometric saturation\",\"offset\":4,\"length\":1,\"classes\":[{\"value\":0,\"name\":\"not_saturated\",\"description\":\"Band\n        5 not saturated\"},{\"value\":1,\"name\":\"saturated\",\"description\":\"Band 5 saturated\"}]},{\"name\":\"band6\",\"description\":\"Band\n        6 radiometric saturation\",\"offset\":5,\"length\":1,\"classes\":[{\"value\":0,\"name\":\"not_saturated\",\"description\":\"Band\n        6 not saturated\"},{\"value\":1,\"name\":\"saturated\",\"description\":\"Band 6 saturated\"}]},{\"name\":\"band7\",\"description\":\"Band\n        7 radiometric saturation\",\"offset\":6,\"length\":1,\"classes\":[{\"value\":0,\"name\":\"not_saturated\",\"description\":\"Band\n        7 not saturated\"},{\"value\":1,\"name\":\"saturated\",\"description\":\"Band 7 saturated\"}]},{\"name\":\"band9\",\"description\":\"Band\n        9 radiometric saturation\",\"offset\":8,\"length\":1,\"classes\":[{\"value\":0,\"name\":\"not_saturated\",\"description\":\"Band\n        9 not saturated\"},{\"value\":1,\"name\":\"saturated\",\"description\":\"Band 9 saturated\"}]},{\"name\":\"occlusion\",\"description\":\"Terrain\n        not visible from sensor due to intervening terrain\",\"offset\":11,\"length\":1,\"classes\":[{\"value\":0,\"name\":\"not_occluded\",\"description\":\"Terrain\n        is not occluded\"},{\"value\":1,\"name\":\"occluded\",\"description\":\"Terrain is occluded\"}]}],\"raster:bands\":[{\"data_type\":\"uint16\",\"spatial_resolution\":30,\"unit\":\"bit\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\",\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band\",\"description\":\"Collection\n        2 Level-2 Blue Band (SR_B2) Surface Reflectance\",\"eo:bands\":[{\"name\":\"OLI_B2\",\"common_name\":\"blue\",\"description\":\"Visible\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band\",\"description\":\"Collection\n        2 Level-2 Green Band (SR_B3) Surface Reflectance\",\"eo:bands\":[{\"name\":\"OLI_B3\",\"common_name\":\"green\",\"description\":\"Visible\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band\",\"description\":\"Collection\n        2 Level-2 Red Band (SR_B4) Surface Reflectance\",\"eo:bands\":[{\"name\":\"OLI_B4\",\"common_name\":\"red\",\"description\":\"Visible\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band\n        0.8\",\"description\":\"Collection 2 Level-2 Near Infrared Band 0.8 (SR_B5) Surface\n        Reflectance\",\"eo:bands\":[{\"name\":\"OLI_B5\",\"common_name\":\"nir08\",\"description\":\"Near\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 1.6\",\"description\":\"Collection 2 Level-2 Short-wave Infrared Band 1.6\n        (SR_B6) Surface Reflectance\",\"eo:bands\":[{\"name\":\"OLI_B6\",\"common_name\":\"swir16\",\"description\":\"Short-wave\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared\n        Band 2.2\",\"description\":\"Collection 2 Level-2 Short-wave Infrared Band 2.2\n        (SR_B7) Surface Reflectance\",\"eo:bands\":[{\"name\":\"OLI_B7\",\"common_name\":\"swir22\",\"description\":\"Short-wave\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Assessment\n        Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Assessment Band\n        (SR_QA_AEROSOL) Surface Reflectance Product\",\"classification:bitfields\":[{\"name\":\"fill\",\"description\":\"Image\n        or fill data\",\"offset\":0,\"length\":1,\"classes\":[{\"value\":0,\"name\":\"not_fill\",\"description\":\"Pixel\n        is not fill\"},{\"value\":1,\"name\":\"fill\",\"description\":\"Pixel is fill\"}]},{\"name\":\"retrieval\",\"description\":\"Valid\n        aerosol retrieval\",\"offset\":1,\"length\":1,\"classes\":[{\"value\":0,\"name\":\"not_valid\",\"description\":\"Pixel\n        retrieval is not valid\"},{\"value\":1,\"name\":\"valid\",\"description\":\"Pixel retrieval\n        is valid\"}]},{\"name\":\"water\",\"description\":\"Water mask\",\"offset\":2,\"length\":1,\"classes\":[{\"value\":0,\"name\":\"not_water\",\"description\":\"Pixel\n        is not water\"},{\"value\":1,\"name\":\"water\",\"description\":\"Pixel is water\"}]},{\"name\":\"interpolated\",\"description\":\"Aerosol\n        interpolation\",\"offset\":5,\"length\":1,\"classes\":[{\"value\":0,\"name\":\"not_interpolated\",\"description\":\"Pixel\n        is not interpolated aerosol\"},{\"value\":1,\"name\":\"interpolated\",\"description\":\"Pixel\n        is interpolated aerosol\"}]},{\"name\":\"level\",\"description\":\"Aerosol level\",\"offset\":6,\"length\":2,\"classes\":[{\"value\":0,\"name\":\"climatology\",\"description\":\"No\n        aerosol correction applied\"},{\"value\":1,\"name\":\"low\",\"description\":\"Low aerosol\n        level\"},{\"value\":2,\"name\":\"medium\",\"description\":\"Medium aerosol level\"},{\"value\":3,\"name\":\"high\",\"description\":\"High\n        aerosol level\"}]}],\"raster:bands\":[{\"nodata\":1,\"data_type\":\"uint8\",\"spatial_resolution\":30,\"unit\":\"bit\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Band\",\"description\":\"Collection 2 Level-2 Thermal Infrared Band (ST_B10) Surface\n        Temperature\",\"eo:bands\":[{\"name\":\"TIRS_B10\",\"common_name\":\"lwir11\",\"description\":\"Long-wave\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance\n        Band\",\"description\":\"Collection 2 Level-2 Atmospheric Transmittance Band (ST_ATRAN)\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance\n        Band\",\"description\":\"Collection 2 Level-2 Downwelled Radiance Band (ST_DRAD)\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"description\":\"Collection\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard\n        Deviation Band\",\"description\":\"Collection 2 Level-2 Emissivity Standard Deviation\n        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;\n        application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature\n        Quality Assessment Band\",\"description\":\"Collection 2 Level-2 Quality Assessment\n        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\n        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\"}]}'\n    headers:\n      Connection:\n      - keep-alive\n      Content-Encoding:\n      - gzip\n      Content-Length:\n      - '5720'\n      Content-Type:\n      - application/geo+json; charset=utf-8\n      Date:\n      - Thu, 31 Jul 2025 15:09:16 GMT\n      Via:\n      - 1.1 39c272e966ab7a6f8a68d2222276a954.cloudfront.net (CloudFront)\n      X-Amz-Cf-Id:\n      - yapTe_4AyypP_FCZ_N0tctQOvqfE3F-LMmz2Fm8cly3IGSMp7mlB1w==\n      X-Amz-Cf-Pop:\n      - DEN52-C1\n      X-Amzn-Trace-Id:\n      - Root=1-688b871c-2cfda19f454306686761ccf1;Parent=47867e0d7d592f6e;Sampled=0;Lineage=1:9e2884e9:0\n      X-Cache:\n      - Miss from cloudfront\n      access-control-allow-origin:\n      - '*'\n      etag:\n      - W/\"b82d-fQljHyIcdE8f10m87XM4/q0BOmw\"\n      x-amz-apigw-id:\n      - OlIMhHuUPHcEQwA=\n      x-amzn-Remapped-content-length:\n      - '47149'\n      x-amzn-RequestId:\n      - 0300e843-4e04-4628-a9be-0fecaf1cc129\n      x-powered-by:\n      - Express\n    status:\n      code: 200\n      message: OK\n- request:\n    body: '{\"datetime\": \"2023-10-08T00:00:00Z/2023-10-08T23:59:59Z\", \"intersects\":\n      {\"type\": \"Point\", \"coordinates\": [-105.1019, 40.1672]}, \"collections\": [\"sentinel-2-l2a\",\n      \"landsat-c2-l2\"], \"next\": \"2023-10-08T17:37:26.656958Z,LC08_L2SP_033032_20231008_02_T1,landsat-c2-l2\"}'\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '264'\n      Content-Type:\n      - application/json\n      User-Agent:\n      - python-requests/2.32.4\n    method: POST\n    uri: https://earth-search.aws.element84.com/v1/search\n  response:\n    body:\n      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\"}]}'\n    headers:\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '273'\n      Content-Type:\n      - application/geo+json; charset=utf-8\n      Date:\n      - Thu, 31 Jul 2025 15:09:16 GMT\n      Via:\n      - 1.1 9d8f66b0c71d2e8a1b8c6f76102da8ca.cloudfront.net (CloudFront)\n      X-Amz-Cf-Id:\n      - 9h6rj2x319bGazzKXyAX9KrQ4gQMzGEisdb1AU4iFANnRZ0esGwh4g==\n      X-Amz-Cf-Pop:\n      - DEN52-C1\n      X-Amzn-Trace-Id:\n      - Root=1-688b871c-6ddb5679565959c86a1982dc;Parent=75a1c5107c48d5f0;Sampled=0;Lineage=1:9e2884e9:0\n      X-Cache:\n      - Miss from cloudfront\n      access-control-allow-origin:\n      - '*'\n      etag:\n      - W/\"111-7vxaAljwSdJNfA0V9FinjXcubNg\"\n      x-amz-apigw-id:\n      - OlIMjHVpvHcEtZQ=\n      x-amzn-Remapped-content-length:\n      - '273'\n      x-amzn-RequestId:\n      - b837bb1d-03f0-4be0-89aa-efdd6bea9b9b\n      x-powered-by:\n      - Express\n    status:\n      code: 200\n      message: OK\nversion: 1\n"
  },
  {
    "path": "tests/cassettes/test_stac_api_io/TestSTAC_IOOverride.test_request_input.yaml",
    "content": "interactions:\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1\n  response:\n    body:\n      string: '{\"type\":\"Catalog\",\"id\":\"microsoft-pc\",\"title\":\"Microsoft Planetary\n        Computer STAC API\",\"description\":\"Searchable spatiotemporal metadata describing\n        Earth science datasets hosted by the Microsoft Planetary Computer\",\"stac_version\":\"1.0.0\",\"conformsTo\":[\"https://api.stacspec.org/v1.0.0/item-search#fields\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30\",\"https://api.stacspec.org/v1.0.0/item-search\",\"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/collections\",\"https://api.stacspec.org/v1.0.0-rc.2/item-search#filter\",\"http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-text\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-json\",\"http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter\",\"https://api.stacspec.org/v1.0.0/core\",\"https://api.stacspec.org/v1.0.0/item-search#sort\",\"https://api.stacspec.org/v1.0.0/ogcapi-features\"],\"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\n        conformance classes implemented by this server\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/conformance\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        search\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/search\",\"method\":\"GET\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        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\n        Annual Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Seamless DEMs\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Surface Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Forest\n        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\n        Annual North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Annual Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Tables\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HGB:\n        Harmonized Global Biomass for 2010\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        DEM GLO-30\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        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\n        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\n        IMERG\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Rasters\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Height above Ground\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        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\n        1 Radiometrically Terrain Corrected (RTC)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Intensity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Source\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MTBS:\n        Monitoring Trends in Burn Severity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"C-CAP\n        Regional Land Cover and Change\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Cloud\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Burned Area Monthly\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        Forest/Non-Forest Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Returns\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MoBI:\n        Map of Biodiversity Importance\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ERA5\n        - PDS\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chloris\n        Biomass\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HydroForecast\n        - Kwando & Upper Zambezi Rivers\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Planet-NICFI\n        Basemaps (Analytic)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Gross Primary Productivity 8-Day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Daily Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        3DEP Lidar Classification\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Terrain Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        Gap Land Cover\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Basemaps (Visual)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Global\n        Biodiversity Information Facility (GBIF)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        World 3D-30m\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        PALSAR Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Water Availability\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Net Evapotranspiration Yearly Gap-Filled\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Census\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"JRC\n        Global Surface Water\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Flood Maps\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Thermal Anomalies/Fire Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HREA:\n        High Resolution Electricity Access\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Vegetation Indices 16-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Level-2A\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Land Surface Temperature/Emissivity Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Vegetation Indices 16-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Land\n        Cover of Canada\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Snow Cover 8-day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ECMWF\n        Open Data (real-time)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        HGT v001\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Esri\n        10-Meter Land Cover (10-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-1\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Denver\n        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\n        Land Cover (7-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Cover (13-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Use\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        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\n        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\n        Cropland Data Layers (CDLs)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Urban\n        Innovation Eclipse Sensor Data\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ESA\n        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\n        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\n        National Wetlands Inventory\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        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\n        US Tabular Climate Normals\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        Lightning Detection\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel\n        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\n        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\n        L1T\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"CIL\n        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:\n        National Agriculture Imagery Program\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        Intactness\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sea\n        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\n        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\n        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\n        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\n        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\n        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\n        Snow Cover Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-5P\n        Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        Building Footprints\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        service description\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json\"},{\"rel\":\"service-doc\",\"type\":\"text/html\",\"title\":\"OpenAPI\n        service documentation\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/docs\"}],\"stac_extensions\":[]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '3366'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:09:17 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150916Z-r17d779659cgb75vhC1DEN1dss00000005yg000000008gn6\n    status:\n      code: 200\n      message: OK\nversion: 1\n"
  },
  {
    "path": "tests/cassettes/test_stac_api_io/TestSTAC_IOOverride.test_str_input.yaml",
    "content": "interactions:\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1\n  response:\n    body:\n      string: '{\"type\":\"Catalog\",\"id\":\"microsoft-pc\",\"title\":\"Microsoft Planetary\n        Computer STAC API\",\"description\":\"Searchable spatiotemporal metadata describing\n        Earth science datasets hosted by the Microsoft Planetary Computer\",\"stac_version\":\"1.0.0\",\"conformsTo\":[\"https://api.stacspec.org/v1.0.0/item-search#fields\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30\",\"https://api.stacspec.org/v1.0.0/item-search\",\"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/collections\",\"https://api.stacspec.org/v1.0.0-rc.2/item-search#filter\",\"http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-text\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-json\",\"http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter\",\"https://api.stacspec.org/v1.0.0/core\",\"https://api.stacspec.org/v1.0.0/item-search#sort\",\"https://api.stacspec.org/v1.0.0/ogcapi-features\"],\"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\n        conformance classes implemented by this server\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/conformance\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        search\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/search\",\"method\":\"GET\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        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\n        Annual Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Seamless DEMs\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Surface Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Forest\n        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\n        Annual North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Annual Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Tables\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HGB:\n        Harmonized Global Biomass for 2010\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        DEM GLO-30\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        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\n        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\n        IMERG\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Rasters\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Height above Ground\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        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\n        1 Radiometrically Terrain Corrected (RTC)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Intensity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Source\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MTBS:\n        Monitoring Trends in Burn Severity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"C-CAP\n        Regional Land Cover and Change\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Cloud\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Burned Area Monthly\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        Forest/Non-Forest Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Returns\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MoBI:\n        Map of Biodiversity Importance\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ERA5\n        - PDS\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chloris\n        Biomass\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HydroForecast\n        - Kwando & Upper Zambezi Rivers\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Planet-NICFI\n        Basemaps (Analytic)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Gross Primary Productivity 8-Day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Daily Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        3DEP Lidar Classification\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Terrain Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        Gap Land Cover\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Basemaps (Visual)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Global\n        Biodiversity Information Facility (GBIF)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        World 3D-30m\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        PALSAR Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Water Availability\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Net Evapotranspiration Yearly Gap-Filled\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Census\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"JRC\n        Global Surface Water\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Flood Maps\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Thermal Anomalies/Fire Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HREA:\n        High Resolution Electricity Access\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Vegetation Indices 16-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Level-2A\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Land Surface Temperature/Emissivity Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Vegetation Indices 16-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Land\n        Cover of Canada\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Snow Cover 8-day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ECMWF\n        Open Data (real-time)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        HGT v001\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Esri\n        10-Meter Land Cover (10-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-1\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Denver\n        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\n        Land Cover (7-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Cover (13-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Use\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        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\n        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\n        Cropland Data Layers (CDLs)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Urban\n        Innovation Eclipse Sensor Data\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ESA\n        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\n        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\n        National Wetlands Inventory\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        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\n        US Tabular Climate Normals\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        Lightning Detection\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel\n        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\n        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\n        L1T\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"CIL\n        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:\n        National Agriculture Imagery Program\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        Intactness\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sea\n        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\n        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\n        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\n        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\n        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\n        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\n        Snow Cover Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-5P\n        Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        Building Footprints\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        service description\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json\"},{\"rel\":\"service-doc\",\"type\":\"text/html\",\"title\":\"OpenAPI\n        service documentation\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/docs\"}],\"stac_extensions\":[]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '3366'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:09:17 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150917Z-r17d779659cp5mbvhC1DEN7mgn00000003m0000000006ahf\n    status:\n      code: 200\n      message: OK\nversion: 1\n"
  },
  {
    "path": "tests/cassettes/test_stac_api_io/TestSTAC_IOOverride.test_timeout_smoke_test.yaml",
    "content": "interactions:\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1\n  response:\n    body:\n      string: '{\"type\":\"Catalog\",\"id\":\"microsoft-pc\",\"title\":\"Microsoft Planetary\n        Computer STAC API\",\"description\":\"Searchable spatiotemporal metadata describing\n        Earth science datasets hosted by the Microsoft Planetary Computer\",\"stac_version\":\"1.0.0\",\"conformsTo\":[\"https://api.stacspec.org/v1.0.0/item-search#fields\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30\",\"https://api.stacspec.org/v1.0.0/item-search\",\"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/collections\",\"https://api.stacspec.org/v1.0.0-rc.2/item-search#filter\",\"http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-text\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-json\",\"http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter\",\"https://api.stacspec.org/v1.0.0/core\",\"https://api.stacspec.org/v1.0.0/item-search#sort\",\"https://api.stacspec.org/v1.0.0/ogcapi-features\"],\"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\n        conformance classes implemented by this server\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/conformance\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        search\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/search\",\"method\":\"GET\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        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\n        Annual Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Seamless DEMs\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Surface Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Forest\n        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\n        Annual North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Annual Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Tables\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HGB:\n        Harmonized Global Biomass for 2010\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        DEM GLO-30\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        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\n        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\n        IMERG\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Rasters\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Height above Ground\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        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\n        1 Radiometrically Terrain Corrected (RTC)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Intensity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Source\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MTBS:\n        Monitoring Trends in Burn Severity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"C-CAP\n        Regional Land Cover and Change\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Cloud\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Burned Area Monthly\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        Forest/Non-Forest Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Returns\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MoBI:\n        Map of Biodiversity Importance\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ERA5\n        - PDS\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chloris\n        Biomass\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HydroForecast\n        - Kwando & Upper Zambezi Rivers\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Planet-NICFI\n        Basemaps (Analytic)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Gross Primary Productivity 8-Day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Daily Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        3DEP Lidar Classification\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Terrain Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        Gap Land Cover\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Basemaps (Visual)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Global\n        Biodiversity Information Facility (GBIF)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        World 3D-30m\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        PALSAR Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Water Availability\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Net Evapotranspiration Yearly Gap-Filled\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Census\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"JRC\n        Global Surface Water\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Flood Maps\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Thermal Anomalies/Fire Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HREA:\n        High Resolution Electricity Access\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Vegetation Indices 16-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Level-2A\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Land Surface Temperature/Emissivity Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Vegetation Indices 16-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Land\n        Cover of Canada\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Snow Cover 8-day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ECMWF\n        Open Data (real-time)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        HGT v001\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Esri\n        10-Meter Land Cover (10-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-1\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Denver\n        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\n        Land Cover (7-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Cover (13-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Use\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        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\n        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\n        Cropland Data Layers (CDLs)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Urban\n        Innovation Eclipse Sensor Data\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ESA\n        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\n        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\n        National Wetlands Inventory\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        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\n        US Tabular Climate Normals\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        Lightning Detection\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel\n        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\n        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\n        L1T\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"CIL\n        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:\n        National Agriculture Imagery Program\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        Intactness\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sea\n        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\n        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\n        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\n        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\n        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\n        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\n        Snow Cover Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-5P\n        Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        Building Footprints\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        service description\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json\"},{\"rel\":\"service-doc\",\"type\":\"text/html\",\"title\":\"OpenAPI\n        service documentation\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/docs\"}],\"stac_extensions\":[]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '3366'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:09:18 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150918Z-r17d779659cdp9hwhC1DEN390s00000003ng000000003kx8\n    status:\n      code: 200\n      message: OK\nversion: 1\n"
  },
  {
    "path": "tests/cassettes/test_stac_api_io/test_stac_io_in_pystac.yaml",
    "content": "interactions:\n- request:\n    body: null\n    headers:\n      Accept:\n      - '*/*'\n      Accept-Encoding:\n      - gzip, deflate\n      Connection:\n      - keep-alive\n      User-Agent:\n      - python-requests/2.32.4\n    method: GET\n    uri: https://planetarycomputer.microsoft.com/api/stac/v1/\n  response:\n    body:\n      string: '{\"type\":\"Catalog\",\"id\":\"microsoft-pc\",\"title\":\"Microsoft Planetary\n        Computer STAC API\",\"description\":\"Searchable spatiotemporal metadata describing\n        Earth science datasets hosted by the Microsoft Planetary Computer\",\"stac_version\":\"1.0.0\",\"conformsTo\":[\"https://api.stacspec.org/v1.0.0/item-search#fields\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30\",\"https://api.stacspec.org/v1.0.0/item-search\",\"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/collections\",\"https://api.stacspec.org/v1.0.0-rc.2/item-search#filter\",\"http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-text\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-json\",\"http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter\",\"https://api.stacspec.org/v1.0.0/core\",\"https://api.stacspec.org/v1.0.0/item-search#sort\",\"https://api.stacspec.org/v1.0.0/ogcapi-features\"],\"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\n        conformance classes implemented by this server\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/conformance\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        search\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/search\",\"method\":\"GET\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC\n        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\n        Annual Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Seamless DEMs\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Surface Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Forest\n        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\n        Annual North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Annual Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Hawaii\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Monthly Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Tables\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HGB:\n        Harmonized Global Biomass for 2010\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        DEM GLO-30\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus\n        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\n        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\n        IMERG\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"gNATSGO\n        Soil Database - Rasters\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Height above Ground\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        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\n        1 Radiometrically Terrain Corrected (RTC)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Intensity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Source\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MTBS:\n        Monitoring Trends in Burn Severity\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"C-CAP\n        Regional Land Cover and Change\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Point Cloud\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Burned Area Monthly\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        Forest/Non-Forest Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Returns\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MoBI:\n        Map of Biodiversity Importance\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ERA5\n        - PDS\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chloris\n        Biomass\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HydroForecast\n        - Kwando & Upper Zambezi Rivers\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Planet-NICFI\n        Basemaps (Analytic)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Gross Primary Productivity 8-Day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Daily Puerto Rico\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        3DEP Lidar Classification\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        3DEP Lidar Digital Terrain Model\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        Gap Land Cover\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Basemaps (Visual)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Global\n        Biodiversity Information Facility (GBIF)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        World 3D-30m\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ALOS\n        PALSAR Annual Mosaic\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Water Availability\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Net Evapotranspiration Yearly Gap-Filled\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Census\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"JRC\n        Global Surface Water\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Deltares\n        Global Flood Maps\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Surface Reflectance 8-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Thermal Anomalies/Fire Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"HREA:\n        High Resolution Electricity Access\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Vegetation Indices 16-Day (250m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Level-2A\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Land Surface Temperature/Emissivity Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        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\n        Vegetation Indices 16-Day (500m)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Daymet\n        Daily North America\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Land\n        Cover of Canada\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MODIS\n        Snow Cover 8-day\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ECMWF\n        Open Data (real-time)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        HGT v001\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Esri\n        10-Meter Land Cover (10-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Landsat\n        Collection 2 Level-1\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Denver\n        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\n        Land Cover (7-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Cover (13-class)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Chesapeake\n        Land Use\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        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\n        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\n        Cropland Data Layers (CDLs)\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Urban\n        Innovation Eclipse Sensor Data\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ESA\n        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\n        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\n        National Wetlands Inventory\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"USGS\n        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\n        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\n        US Tabular Climate Normals\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"NOAA\n        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\n        Lightning Detection\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel\n        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\n        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\n        L1T\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"CIL\n        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:\n        National Agriculture Imagery Program\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"10m\n        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\n        Intactness\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sea\n        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\n        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\n        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\n        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\n        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\n        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\n        Snow Cover Daily\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-5P\n        Level-2\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        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\n        Building Footprints\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-3\n        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\n        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\n        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\n        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\n        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\n        service description\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json\"},{\"rel\":\"service-doc\",\"type\":\"text/html\",\"title\":\"OpenAPI\n        service documentation\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/docs\"}],\"stac_extensions\":[]}'\n    headers:\n      Accept-Ranges:\n      - bytes\n      Access-Control-Allow-Credentials:\n      - 'true'\n      Access-Control-Allow-Headers:\n      - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization\n      Access-Control-Allow-Methods:\n      - PUT, GET, POST, OPTIONS\n      Access-Control-Allow-Origin:\n      - '*'\n      Access-Control-Max-Age:\n      - '1728000'\n      Connection:\n      - keep-alive\n      Content-Length:\n      - '3366'\n      Content-Type:\n      - application/json\n      Date:\n      - Thu, 31 Jul 2025 15:09:18 GMT\n      Strict-Transport-Security:\n      - max-age=31536000; includeSubDomains\n      X-Cache:\n      - CONFIG_NOCACHE\n      content-encoding:\n      - gzip\n      vary:\n      - Accept-Encoding\n      x-azure-ref:\n      - 20250731T150918Z-r17d779659cdp9hwhC1DEN390s00000003m0000000005haf\n    status:\n      code: 200\n      message: OK\nversion: 1\n"
  },
  {
    "path": "tests/data/astraea_api.json",
    "content": "{\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/req/collections\",\n        \"http://stacspec.org/spec/api/1.0.0-beta.1/core\",\n        \"http://stacspec.org/spec/api/1.0.0-beta.1/req/stac-search\",\n        \"http://stacspec.org/spec/api/1.0.0-beta.1/req/stac-response\",\n        \"http://stacspec.org/spec/api/1.0.0-beta.1/req/fields\",\n        \"http://stacspec.org/spec/api/1.0.0-beta.1/req/context\",\n        \"http://stacspec.org/spec/api/1.0.0-beta.1/req/sort\"\n    ],\n    \"description\": \"Astraea Earth OnDemand geospatial imagery query and analysis tool\",\n    \"id\": \"astraea\",\n    \"links\": [\n        {\n            \"href\": \"https://eod-catalog-svc-prod.astraea.earth\",\n            \"rel\": \"self\",\n            \"title\": \"Self\",\n            \"type\": \"application/json\"\n        },\n        {\n            \"href\": \"https://eod-catalog-svc-prod.astraea.earth\",\n            \"rel\": \"root\",\n            \"title\": \"Root\",\n            \"type\": \"application/json\"\n        },\n        {\n            \"href\": \"https://eod-catalog-svc-prod.astraea.earth/api\",\n            \"rel\": \"service-desc\",\n            \"title\": \"OpenAPI specification\",\n            \"type\": \"application/json\"\n        },\n        {\n            \"href\": \"https://eod-catalog-svc-prod.astraea.earth/api.html\",\n            \"rel\": \"service-doc\",\n            \"title\": \"API documentation\",\n            \"type\": \"text/html\"\n        },\n        {\n            \"href\": \"https://eod-catalog-svc-prod.astraea.earth/collections\",\n            \"rel\": \"data\",\n            \"title\": \"Collections\",\n            \"type\": \"application/json\"\n        },\n        {\n            \"href\": \"https://eod-catalog-svc-prod.astraea.earth/collections\",\n            \"rel\": \"collections\",\n            \"title\": \"Collections\",\n            \"type\": \"application/json\"\n        },\n        {\n            \"href\": \"https://eod-catalog-svc-prod.astraea.earth/collections/landsat8_l1tp\",\n            \"rel\": \"child\",\n            \"title\": \"Landsat 8 C1 T1\",\n            \"type\": \"application/json\"\n        },\n        {\n            \"href\": \"https://eod-catalog-svc-prod.astraea.earth/collections/mcd43a4\",\n            \"rel\": \"child\",\n            \"title\": \"MCD43A4 NBAR\",\n            \"type\": \"application/json\"\n        },\n        {\n            \"href\": \"https://eod-catalog-svc-prod.astraea.earth/collections/mod11a1\",\n            \"rel\": \"child\",\n            \"title\": \"MOD11A1 LST\",\n            \"type\": \"application/json\"\n        },\n        {\n            \"href\": \"https://eod-catalog-svc-prod.astraea.earth/collections/myd11a1\",\n            \"rel\": \"child\",\n            \"title\": \"MYD11A1 LST\",\n            \"type\": \"application/json\"\n        },\n        {\n            \"href\": \"https://eod-catalog-svc-prod.astraea.earth/collections/mod13a1\",\n            \"rel\": \"child\",\n            \"title\": \"MOD13A1 VI\",\n            \"type\": \"application/json\"\n        },\n        {\n            \"href\": \"https://eod-catalog-svc-prod.astraea.earth/collections/myd13a1\",\n            \"rel\": \"child\",\n            \"title\": \"MYD13A1 VI\",\n            \"type\": \"application/json\"\n        },\n        {\n            \"href\": \"https://eod-catalog-svc-prod.astraea.earth/collections/sentinel1_l1c_grd\",\n            \"rel\": \"child\",\n            \"title\": \"Sentinel-1 L1C GRD\",\n            \"type\": \"application/json\"\n        },\n        {\n            \"href\": \"https://eod-catalog-svc-prod.astraea.earth/collections/sentinel2_l2a\",\n            \"rel\": \"child\",\n            \"title\": \"Sentinel-2 L2A\",\n            \"type\": \"application/json\"\n        },\n        {\n            \"href\": \"https://eod-catalog-svc-prod.astraea.earth/collections/sentinel2_l1c\",\n            \"rel\": \"child\",\n            \"title\": \"Sentinel-2 L1C\",\n            \"type\": \"application/json\"\n        },\n        {\n            \"href\": \"https://eod-catalog-svc-prod.astraea.earth/collections/naip\",\n            \"rel\": \"child\",\n            \"title\": \"NAIP\",\n            \"type\": \"application/json\"\n        },\n        {\n            \"href\": \"https://eod-catalog-svc-prod.astraea.earth/collections/maxar_open_data\",\n            \"rel\": \"child\",\n            \"title\": \"Maxar Open Data\",\n            \"type\": \"application/json\"\n        },\n        {\n            \"href\": \"https://eod-catalog-svc-prod.astraea.earth/collections/spacenet7\",\n            \"rel\": \"child\",\n            \"title\": \"SpaceNet 7\",\n            \"type\": \"application/json\"\n        },\n        {\n            \"href\": \"https://eod-catalog-svc-prod.astraea.earth/aggregate\",\n            \"rel\": \"aggregation\",\n            \"title\": \"Aggregation\",\n            \"type\": \"application/json\"\n        },\n        {\n            \"capabilities\": {\n                \"parameters\": [\n                    {\n                        \"name\": \"composite\",\n                        \"values\": [\n                            {\n                                \"description\": \"Default View.\",\n                                \"name\": \"default\",\n                                \"title\": \"Default View\"\n                            },\n                            {\n                                \"description\": \"True Color Composite.\",\n                                \"name\": \"true_color\",\n                                \"title\": \"True Color Composite\"\n                            },\n                            {\n                                \"description\": \"Normalized Difference Vegetation Index.\",\n                                \"name\": \"ndvi\",\n                                \"title\": \"NDVI\"\n                            },\n                            {\n                                \"description\": \"Normalized Difference Water Index using Green and NIR per McFeeters(1997).\",\n                                \"name\": \"ndwi\",\n                                \"title\": \"NDWI (Green & NIR)\"\n                            },\n                            {\n                                \"description\": \"Normalized Difference Water Index using NIR and SWIR per Gao(1997).\",\n                                \"name\": \"ndwi2\",\n                                \"title\": \"NDWI (NIR & SWIR)\"\n                            },\n                            {\n                                \"description\": \"Color Infrared (Vegetation) consisting of Near-infrared, Red, and Green bands.\",\n                                \"name\": \"color_infrared_veg1\",\n                                \"title\": \"Color Infrared Vegetation (NRG)\"\n                            },\n                            {\n                                \"description\": \"Color Infrared (Vegetation) consisting of Near-infrared, Green, and Blue bands.\",\n                                \"name\": \"color_infrared_veg2\",\n                                \"title\": \"Color Infrared Vegetation 2 (NGB)\"\n                            },\n                            {\n                                \"description\": \"False Color Infrared (Urban).\",\n                                \"name\": \"false_color_urban\",\n                                \"title\": \"False Color (Urban)\"\n                            },\n                            {\n                                \"description\": \"Agriculture.\",\n                                \"name\": \"agriculture\",\n                                \"title\": \"Agriculture\"\n                            },\n                            {\n                                \"description\": \"Moisture Index.\",\n                                \"name\": \"moisture_index\",\n                                \"title\": \"Moisture Index\"\n                            },\n                            {\n                                \"description\": \"Geology.\",\n                                \"name\": \"geology\",\n                                \"title\": \"Geology\"\n                            },\n                            {\n                                \"description\": \"Bathymetric.\",\n                                \"name\": \"bathymetric\",\n                                \"title\": \"Bathymetric\"\n                            },\n                            {\n                                \"description\": \"Atmospheric Penetration.\",\n                                \"name\": \"atmospheric_penetration\",\n                                \"title\": \"Atmospheric Penetration\"\n                            },\n                            {\n                                \"description\": \"SWIR 1.\",\n                                \"name\": \"swir1\",\n                                \"title\": \"SWIR 1\"\n                            },\n                            {\n                                \"description\": \"SWIR 2.\",\n                                \"name\": \"swir2\",\n                                \"title\": \"SWIR 2\"\n                            },\n                            {\n                                \"description\": \"SAR VV Polarization.\",\n                                \"name\": \"sar_vv\",\n                                \"title\": \"SAR VV Polarization\"\n                            },\n                            {\n                                \"description\": \"SAR VH Polarization.\",\n                                \"name\": \"sar_vh\",\n                                \"title\": \"SAR VH Polarization\"\n                            },\n                            {\n                                \"description\": \"SAR HH Polarization.\",\n                                \"name\": \"sar_hh\",\n                                \"title\": \"SAR HH Polarization\"\n                            },\n                            {\n                                \"description\": \"SAR HV Polarization.\",\n                                \"name\": \"sar_hv\",\n                                \"title\": \"SAR HV Polarization\"\n                            },\n                            {\n                                \"description\": \"SAR False Color (Urban).\",\n                                \"name\": \"sar_false_color_urban\",\n                                \"title\": \"SAR False Color (Urban)\"\n                            }\n                        ]\n                    }\n                ]\n            },\n            \"href\": \"https://eod-catalog-svc-prod.astraea.earth/aggregate\",\n            \"rel\": \"aggregate\",\n            \"title\": \"Aggregate\",\n            \"type\": \"application/json\"\n        },\n        {\n            \"capabilities\": {\n                \"parameters\": [\n                    {\n                        \"name\": \"composite\",\n                        \"values\": [\n                            {\n                                \"description\": \"Default View.\",\n                                \"name\": \"default\",\n                                \"title\": \"Default View\"\n                            },\n                            {\n                                \"description\": \"True Color Composite.\",\n                                \"name\": \"true_color\",\n                                \"title\": \"True Color Composite\"\n                            },\n                            {\n                                \"description\": \"Normalized Difference Vegetation Index.\",\n                                \"name\": \"ndvi\",\n                                \"title\": \"NDVI\"\n                            },\n                            {\n                                \"description\": \"Normalized Difference Water Index using Green and NIR per McFeeters(1997).\",\n                                \"name\": \"ndwi\",\n                                \"title\": \"NDWI (Green & NIR)\"\n                            },\n                            {\n                                \"description\": \"Normalized Difference Water Index using NIR and SWIR per Gao(1997).\",\n                                \"name\": \"ndwi2\",\n                                \"title\": \"NDWI (NIR & SWIR)\"\n                            },\n                            {\n                                \"description\": \"Color Infrared (Vegetation) consisting of Near-infrared, Red, and Green bands.\",\n                                \"name\": \"color_infrared_veg1\",\n                                \"title\": \"Color Infrared Vegetation (NRG)\"\n                            },\n                            {\n                                \"description\": \"Color Infrared (Vegetation) consisting of Near-infrared, Green, and Blue bands.\",\n                                \"name\": \"color_infrared_veg2\",\n                                \"title\": \"Color Infrared Vegetation 2 (NGB)\"\n                            },\n                            {\n                                \"description\": \"False Color Infrared (Urban).\",\n                                \"name\": \"false_color_urban\",\n                                \"title\": \"False Color (Urban)\"\n                            },\n                            {\n                                \"description\": \"Agriculture.\",\n                                \"name\": \"agriculture\",\n                                \"title\": \"Agriculture\"\n                            },\n                            {\n                                \"description\": \"Moisture Index.\",\n                                \"name\": \"moisture_index\",\n                                \"title\": \"Moisture Index\"\n                            },\n                            {\n                                \"description\": \"Geology.\",\n                                \"name\": \"geology\",\n                                \"title\": \"Geology\"\n                            },\n                            {\n                                \"description\": \"Bathymetric.\",\n                                \"name\": \"bathymetric\",\n                                \"title\": \"Bathymetric\"\n                            },\n                            {\n                                \"description\": \"Atmospheric Penetration.\",\n                                \"name\": \"atmospheric_penetration\",\n                                \"title\": \"Atmospheric Penetration\"\n                            },\n                            {\n                                \"description\": \"SWIR 1.\",\n                                \"name\": \"swir1\",\n                                \"title\": \"SWIR 1\"\n                            },\n                            {\n                                \"description\": \"SWIR 2.\",\n                                \"name\": \"swir2\",\n                                \"title\": \"SWIR 2\"\n                            },\n                            {\n                                \"description\": \"SAR VV Polarization.\",\n                                \"name\": \"sar_vv\",\n                                \"title\": \"SAR VV Polarization\"\n                            },\n                            {\n                                \"description\": \"SAR VH Polarization.\",\n                                \"name\": \"sar_vh\",\n                                \"title\": \"SAR VH Polarization\"\n                            },\n                            {\n                                \"description\": \"SAR HH Polarization.\",\n                                \"name\": \"sar_hh\",\n                                \"title\": \"SAR HH Polarization\"\n                            },\n                            {\n                                \"description\": \"SAR HV Polarization.\",\n                                \"name\": \"sar_hv\",\n                                \"title\": \"SAR HV Polarization\"\n                            },\n                            {\n                                \"description\": \"SAR False Color (Urban).\",\n                                \"name\": \"sar_false_color_urban\",\n                                \"title\": \"SAR False Color (Urban)\"\n                            }\n                        ]\n                    }\n                ]\n            },\n            \"href\": \"https://eod-catalog-svc-prod.astraea.earth/search\",\n            \"rel\": \"search\",\n            \"title\": \"Search\",\n            \"type\": \"application/json\"\n        },\n        {\n            \"href\": \"https://eod-catalog-svc-prod.astraea.earth/grid_id_definitions?20200218\",\n            \"rel\": \"grid_id_definitions\",\n            \"title\": \"Grid ID Definitions\",\n            \"type\": \"application/json\"\n        }\n    ],\n    \"stac_extensions\": [\n        \"eo\",\n        \"proj\",\n        \"context\"\n    ],\n    \"stac_version\": \"1.0.0-beta.2\",\n    \"title\": \"Astraea Earth OnDemand\"\n}"
  },
  {
    "path": "tests/data/fedeo_clearinghouse.json",
    "content": "{\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    \"https://api.stacspec.org/v1.0.0-rc.2/core\",\n    \"https://api.stacspec.org/v1.0.0-rc.2/stac-search\",\n    \"https://api.stacspec.org/v1.0.0-rc.2/stac-response\",\n    \"https://api.stacspec.org/v1.0.0-rc.2/collection-search\",\n    \"https://api.stacspec.org/v1.0.0-rc.2/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-rc.2/item-search\",\n    \"https://api.stacspec.org/v1.0.0-rc.2/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    \"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}"
  },
  {
    "path": "tests/data/invalid-collection.json",
    "content": "{\n    \"id\": \"planet\",\n    \"title\": \"Planet\",\n    \"extent\": {},\n    \"license\": \"proprietary\",\n    \"description\": \"Planet\",\n    \"stac_version\": \"1.0.0\",\n    \"item_type_accessor\": \"pl:item_type\",\n    \"links\": [\n        {\n            \"rel\": \"items\",\n            \"type\": \"application/geo+json\",\n            \"href\": \"https://csdap.earthdata.nasa.gov/stac/collections/planet/items\"\n        },\n        {\n            \"rel\": \"parent\",\n            \"type\": \"application/json\",\n            \"href\": \"https://csdap.earthdata.nasa.gov/stac/\"\n        },\n        {\n            \"rel\": \"root\",\n            \"type\": \"application/json\",\n            \"href\": \"https://csdap.earthdata.nasa.gov/stac/\"\n        },\n        {\n            \"rel\": \"self\",\n            \"type\": \"application/json\",\n            \"href\": \"https://csdap.earthdata.nasa.gov/stac/collections/planet\"\n        },\n        {\n            \"rel\": \"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\n            \"type\": \"application/schema+json\",\n            \"title\": \"Queryables\",\n            \"href\": \"https://csdap.earthdata.nasa.gov/stac/collections/planet/queryables\"\n        }\n    ]\n}"
  },
  {
    "path": "tests/data/netherlands_aoi.json",
    "content": "{\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [\n          6.42425537109375,\n          53.174765470134616\n        ],\n        [\n          7.344360351562499,\n          53.174765470134616\n        ],\n        [\n          7.344360351562499,\n          53.67393435835391\n        ],\n        [\n          6.42425537109375,\n          53.67393435835391\n        ],\n        [\n          6.42425537109375,\n          53.174765470134616\n        ]\n      ]\n    ]\n}\n"
  },
  {
    "path": "tests/data/planetary-computer-aster-l1t-collection.json",
    "content": "{\n  \"id\": \"aster-l1t\",\n  \"type\": \"Collection\",\n  \"links\": [\n    {\n      \"rel\": \"items\",\n      \"type\": \"application/geo+json\",\n      \"href\": \"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t/items\"\n    },\n    {\n      \"rel\": \"parent\",\n      \"type\": \"application/json\",\n      \"href\": \"https://planetarycomputer.microsoft.com/api/stac/v1/\"\n    },\n    {\n      \"rel\": \"root\",\n      \"type\": \"application/json\",\n      \"href\": \"https://planetarycomputer.microsoft.com/api/stac/v1/\"\n    },\n    {\n      \"rel\": \"self\",\n      \"type\": \"application/json\",\n      \"href\": \"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t\"\n    },\n    {\n      \"rel\": \"license\",\n      \"href\": \"https://www.usgs.gov/core-science-systems/hdds/data-policy\",\n      \"title\": \"Public Domain\"\n    },\n    {\n      \"rel\": \"describedby\",\n      \"href\": \"https://planetarycomputer.microsoft.com/dataset/aster-l1t\",\n      \"title\": \"Human readable dataset overview and reference\",\n      \"type\": \"text/html\"\n    }\n  ],\n  \"title\": \"ASTER L1T\",\n  \"assets\": {\n    \"thumbnail\": {\n      \"href\": \"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/aster.png\",\n      \"type\": \"image/png\",\n      \"roles\": [\n        \"thumbnail\"\n      ],\n      \"title\": \"ASTER L1T\"\n    }\n  },\n  \"extent\": {\n    \"spatial\": {\n      \"bbox\": [\n        [\n          -180,\n          -90,\n          180,\n          90\n        ]\n      ]\n    },\n    \"temporal\": {\n      \"interval\": [\n        [\n          \"2000-03-04T12:00:00.000000Z\",\n          \"2006-12-31T12:00:00.000000Z\"\n        ]\n      ]\n    }\n  },\n  \"license\": \"proprietary\",\n  \"keywords\": [\n    \"ASTER\",\n    \"USGS\",\n    \"NASA\",\n    \"Satellite\",\n    \"Global\"\n  ],\n  \"providers\": [\n    {\n      \"url\": \"https://terra.nasa.gov/about/terra-instruments/aster\",\n      \"name\": \"NASA\",\n      \"roles\": [\n        \"producer\",\n        \"licensor\"\n      ]\n    },\n    {\n      \"url\": \"https://lpdaac.usgs.gov/data/get-started-data/collection-overview/missions/aster-overview/\",\n      \"name\": \"USGS\",\n      \"roles\": [\n        \"processor\",\n        \"producer\",\n        \"licensor\"\n      ]\n    },\n    {\n      \"url\": \"https://planetarycomputer.microsoft.com\",\n      \"name\": \"Microsoft\",\n      \"roles\": [\n        \"host\",\n        \"processor\"\n      ]\n    }\n  ],\n  \"summaries\": {\n    \"gsd\": [\n      15,\n      30,\n      90\n    ],\n    \"eo:bands\": [\n      {\n        \"gsd\": 15,\n        \"name\": \"VNIR_Band1\",\n        \"common_name\": \"green\",\n        \"description\": \"visible yellow/green\",\n        \"center_wavelength\": 0.56,\n        \"full_width_half_max\": 0.08\n      },\n      {\n        \"gsd\": 15,\n        \"name\": \"VNIR_Band2\",\n        \"common_name\": \"red\",\n        \"description\": \"visible red\",\n        \"center_wavelength\": 0.66,\n        \"full_width_half_max\": 0.06\n      },\n      {\n        \"gsd\": 15,\n        \"name\": \"VNIR_Band3N\",\n        \"common_name\": \"nir08\",\n        \"description\": \"near infrared\",\n        \"center_wavelength\": 0.82,\n        \"full_width_half_max\": 0.08\n      },\n      {\n        \"gsd\": 30,\n        \"name\": \"SWIR_Band4\",\n        \"common_name\": \"swir16\",\n        \"description\": \"short-wave infrared\",\n        \"center_wavelength\": 1.65,\n        \"full_width_half_max\": 0.1\n      },\n      {\n        \"gsd\": 30,\n        \"name\": \"SWIR_Band5\",\n        \"common_name\": \"swir22\",\n        \"description\": \"short-wave infrared\",\n        \"center_wavelength\": 2.165,\n        \"full_width_half_max\": 0.04\n      },\n      {\n        \"gsd\": 30,\n        \"name\": \"SWIR_Band6\",\n        \"common_name\": \"swir22\",\n        \"description\": \"short-wave infrared\",\n        \"center_wavelength\": 2.205,\n        \"full_width_half_max\": 0.04\n      },\n      {\n        \"gsd\": 30,\n        \"name\": \"SWIR_Band7\",\n        \"common_name\": \"swir22\",\n        \"description\": \"short-wave infrared\",\n        \"center_wavelength\": 2.26,\n        \"full_width_half_max\": 0.05\n      },\n      {\n        \"gsd\": 30,\n        \"name\": \"SWIR_Band8\",\n        \"description\": \"short-wave infrared\",\n        \"center_wavelength\": 2.339,\n        \"full_width_half_max\": 0.07\n      },\n      {\n        \"gsd\": 30,\n        \"name\": \"SWIR_Band9\",\n        \"description\": \"short-wave infrared\",\n        \"center_wavelength\": 2.395,\n        \"full_width_half_max\": 0.07\n      },\n      {\n        \"gsd\": 90,\n        \"name\": \"TIR_Band10\",\n        \"common_name\": \"lwir\",\n        \"description\": \"thermal infrared\",\n        \"center_wavelength\": 8.3,\n        \"full_width_half_max\": 0.35\n      },\n      {\n        \"gsd\": 90,\n        \"name\": \"TIR_Band11\",\n        \"common_name\": \"lwir\",\n        \"description\": \"thermal infrared\",\n        \"center_wavelength\": 8.65,\n        \"full_width_half_max\": 0.35\n      },\n      {\n        \"gsd\": 90,\n        \"name\": \"TIR_Band12\",\n        \"common_name\": \"lwir\",\n        \"description\": \"thermal infrared\",\n        \"center_wavelength\": 9.11,\n        \"full_width_half_max\": 0.35\n      },\n      {\n        \"gsd\": 90,\n        \"name\": \"TIR_Band13\",\n        \"common_name\": \"lwir\",\n        \"description\": \"thermal infrared\",\n        \"center_wavelength\": 10.6,\n        \"full_width_half_max\": 0.7\n      },\n      {\n        \"gsd\": 90,\n        \"name\": \"TIR_Band14\",\n        \"common_name\": \"lwir\",\n        \"description\": \"thermal infrared\",\n        \"center_wavelength\": 11.3,\n        \"full_width_half_max\": 0.7\n      }\n    ],\n    \"platform\": [\n      \"terra\"\n    ],\n    \"instruments\": [\n      \"aster\"\n    ]\n  },\n  \"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\",\n  \"item_assets\": {\n    \"TIR\": {\n      \"roles\": [\n        \"data\"\n      ],\n      \"title\": \"TIR Swath data\",\n      \"eo:bands\": [\n        {\n          \"gsd\": 90,\n          \"name\": \"TIR_Band10\",\n          \"common_name\": \"lwir\",\n          \"description\": \"thermal infrared\",\n          \"center_wavelength\": 8.3,\n          \"full_width_half_max\": 0.35\n        },\n        {\n          \"gsd\": 90,\n          \"name\": \"TIR_Band11\",\n          \"common_name\": \"lwir\",\n          \"description\": \"thermal infrared\",\n          \"center_wavelength\": 8.65,\n          \"full_width_half_max\": 0.35\n        },\n        {\n          \"gsd\": 90,\n          \"name\": \"TIR_Band12\",\n          \"common_name\": \"lwir\",\n          \"description\": \"thermal infrared\",\n          \"center_wavelength\": 9.11,\n          \"full_width_half_max\": 0.35\n        },\n        {\n          \"gsd\": 90,\n          \"name\": \"TIR_Band13\",\n          \"common_name\": \"lwir\",\n          \"description\": \"thermal infrared\",\n          \"center_wavelength\": 10.6,\n          \"full_width_half_max\": 0.7\n        },\n        {\n          \"gsd\": 90,\n          \"name\": \"TIR_Band14\",\n          \"common_name\": \"lwir\",\n          \"description\": \"thermal infrared\",\n          \"center_wavelength\": 11.3,\n          \"full_width_half_max\": 0.7\n        }\n      ]\n    },\n    \"xml\": {\n      \"type\": \"application/xml\",\n      \"roles\": [\n        \"metadata\"\n      ],\n      \"title\": \"XML metadata\"\n    },\n    \"SWIR\": {\n      \"type\": \"image/tiff; application=geotiff; profile=cloud-optimized\",\n      \"roles\": [\n        \"data\"\n      ],\n      \"title\": \"SWIR Swath data\",\n      \"eo:bands\": [\n        {\n          \"gsd\": 30,\n          \"name\": \"SWIR_Band4\",\n          \"common_name\": \"swir\",\n          \"description\": \"short-wave infrared\",\n          \"center_wavelength\": 1.65,\n          \"full_width_half_max\": 0.1\n        },\n        {\n          \"gsd\": 30,\n          \"name\": \"SWIR_Band5\",\n          \"common_name\": \"swir\",\n          \"description\": \"short-wave infrared\",\n          \"center_wavelength\": 2.165,\n          \"full_width_half_max\": 0.04\n        },\n        {\n          \"gsd\": 30,\n          \"name\": \"SWIR_Band6\",\n          \"common_name\": \"swir\",\n          \"description\": \"short-wave infrared\",\n          \"center_wavelength\": 2.205,\n          \"full_width_half_max\": 0.04\n        },\n        {\n          \"gsd\": 30,\n          \"name\": \"SWIR_Band7\",\n          \"common_name\": \"swir\",\n          \"description\": \"short-wave infrared\",\n          \"center_wavelength\": 2.26,\n          \"full_width_half_max\": 0.05\n        },\n        {\n          \"gsd\": 30,\n          \"name\": \"SWIR_Band8\",\n          \"common_name\": \"swir\",\n          \"description\": \"short-wave infrared\",\n          \"center_wavelength\": 2.339,\n          \"full_width_half_max\": 0.07\n        },\n        {\n          \"gsd\": 30,\n          \"name\": \"SWIR_Band9\",\n          \"common_name\": \"swir\",\n          \"description\": \"short-wave infrared\",\n          \"center_wavelength\": 2.395,\n          \"full_width_half_max\": 0.07\n        }\n      ]\n    },\n    \"VNIR\": {\n      \"type\": \"image/tiff; application=geotiff; profile=cloud-optimized\",\n      \"roles\": [\n        \"data\"\n      ],\n      \"title\": \"VNIR Swath data\",\n      \"eo:bands\": [\n        {\n          \"gsd\": 15,\n          \"name\": \"VNIR_Band1\",\n          \"common_name\": \"yellow/green\",\n          \"description\": \"visible yellow/green\",\n          \"center_wavelength\": 0.56,\n          \"full_width_half_max\": 0.08\n        },\n        {\n          \"gsd\": 15,\n          \"name\": \"VNIR_Band2\",\n          \"common_name\": \"red\",\n          \"description\": \"visible red\",\n          \"center_wavelength\": 0.66,\n          \"full_width_half_max\": 0.06\n        },\n        {\n          \"gsd\": 15,\n          \"name\": \"VNIR_Band3N\",\n          \"common_name\": \"near infrared\",\n          \"description\": \"near infrared\",\n          \"center_wavelength\": 0.82,\n          \"full_width_half_max\": 0.08\n        }\n      ]\n    },\n    \"qa-txt\": {\n      \"type\": \"text/plain\",\n      \"roles\": [\n        \"metadata\"\n      ],\n      \"title\": \"QA browse file\",\n      \"description\": \"Geometric quality assessment report.\"\n    },\n    \"qa-browse\": {\n      \"type\": \"image/jpeg\",\n      \"roles\": [\n        \"thumbnail\"\n      ],\n      \"title\": \"QA browse file\",\n      \"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.\"\n    },\n    \"tir-browse\": {\n      \"type\": \"image/jpeg\",\n      \"roles\": [\n        \"thumbnail\"\n      ],\n      \"title\": \"Standalone reduced resolution TIR\"\n    },\n    \"vnir-browse\": {\n      \"type\": \"image/jpeg\",\n      \"roles\": [\n        \"thumbnail\"\n      ],\n      \"title\": \"VNIR browse file\",\n      \"description\": \"Standalone reduced resolution VNIR\"\n    }\n  },\n  \"stac_version\": \"1.0.0\",\n  \"msft:container\": \"aster\",\n  \"stac_extensions\": [\n    \"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\"\n  ],\n  \"msft:storage_account\": \"astersa\",\n  \"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.\"\n}\n"
  },
  {
    "path": "tests/data/planetary-computer-collection.json",
    "content": "{\n  \"id\": \"gap\",\n  \"type\": \"Collection\",\n  \"links\": [\n    {\n      \"rel\": \"items\",\n      \"type\": \"application/geo+json\",\n      \"href\": \"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap/items\"\n    },\n    {\n      \"rel\": \"parent\",\n      \"type\": \"application/json\",\n      \"href\": \"https://planetarycomputer.microsoft.com/api/stac/v1/\"\n    },\n    {\n      \"rel\": \"root\",\n      \"type\": \"application/json\",\n      \"href\": \"https://planetarycomputer.microsoft.com/api/stac/v1/\"\n    },\n    {\n      \"rel\": \"self\",\n      \"type\": \"application/json\",\n      \"href\": \"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap\"\n    },\n    {\n      \"rel\": \"license\",\n      \"href\": \"https://www.usgs.gov/core-science-systems/hdds/data-policy\",\n      \"title\": \"public domain\"\n    },\n    {\n      \"rel\": \"describedby\",\n      \"href\": \"https://planetarycomputer.microsoft.com/dataset/gap\",\n      \"title\": \"Human readable dataset overview and reference\",\n      \"type\": \"text/html\"\n    }\n  ],\n  \"title\": \"USGS Gap Land Cover\",\n  \"assets\": {\n    \"thumbnail\": {\n      \"href\": \"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/gap.png\",\n      \"type\": \"image/png\",\n      \"roles\": [\n        \"data\"\n      ],\n      \"title\": \"USGS GAP\"\n    },\n    \"original-data-ak\": {\n      \"href\": \"https://ai4edataeuwest.blob.core.windows.net/usgs-gap/originals/gaplandcov_ak.zip\",\n      \"type\": \"application/zip\",\n      \"roles\": [\n        \"data\"\n      ],\n      \"title\": \"Alaska source data\",\n      \"description\": \"Original source data for Alaska\"\n    },\n    \"original-data-hi\": {\n      \"href\": \"https://ai4edataeuwest.blob.core.windows.net/usgs-gap/originals/gaplandcov_hi.zip\",\n      \"type\": \"application/zip\",\n      \"roles\": [\n        \"data\"\n      ],\n      \"title\": \"Hawaii source data\",\n      \"description\": \"Original source data for Hawaii\"\n    },\n    \"original-data-pr\": {\n      \"href\": \"https://ai4edataeuwest.blob.core.windows.net/usgs-gap/originals/pr_landcover.zip\",\n      \"type\": \"application/zip\",\n      \"roles\": [\n        \"data\"\n      ],\n      \"title\": \"Puerto Rico source data\",\n      \"description\": \"Original source data for Puerto Rico\"\n    },\n    \"original-data-conus\": {\n      \"href\": \"https://ai4edataeuwest.blob.core.windows.net/usgs-gap/originals/gap_landfire_nationalterrestrialecosystems2011.zip\",\n      \"type\": \"application/zip\",\n      \"roles\": [\n        \"data\"\n      ],\n      \"title\": \"CONUS source data\",\n      \"description\": \"Original source data for the continental United States (CONUS)\"\n    }\n  },\n  \"extent\": {\n    \"spatial\": {\n      \"bbox\": [\n        [\n          -127.9710481801793,\n          22.797789263564383,\n          -65.26634281147894,\n          51.64692620669362\n        ],\n        [\n          -178.13166387448902,\n          49.09079265233118,\n          179.87849702345594,\n          71.43382483774205\n        ],\n        [\n          -160.26640694607218,\n          18.851824447510786,\n          -154.66974350173518,\n          22.295114188194738\n        ],\n        [\n          -67.9573345827195,\n          17.874066536543,\n          -65.21836408976736,\n          18.5296513469496\n        ]\n      ]\n    },\n    \"temporal\": {\n      \"interval\": [\n        [\n          \"1999-01-01T00:00:00Z\",\n          \"2011-12-31T00:00:00Z\"\n        ]\n      ]\n    }\n  },\n  \"license\": \"proprietary\",\n  \"keywords\": [\n    \"USGS\",\n    \"GAP\",\n    \"LANDFIRE\",\n    \"Land Cover\",\n    \"United States\"\n  ],\n  \"providers\": [\n    {\n      \"url\": \"https://www.usgs.gov/core-science-systems/science-analytics-and-synthesis/gap/science/land-cover\",\n      \"name\": \"USGS\",\n      \"roles\": [\n        \"processor\",\n        \"producer\",\n        \"licensor\"\n      ]\n    },\n    {\n      \"url\": \"https://planetarycomputer.microsoft.com\",\n      \"name\": \"Microsoft\",\n      \"roles\": [\n        \"host\"\n      ]\n    }\n  ],\n  \"summaries\": {\n    \"gsd\": [\n      30\n    ],\n    \"label:classes\": [\n      {\n        \"classes\": [\n          \"0\",\n          \"South Florida Bayhead Swamp\",\n          \"South Florida Cypress Dome\",\n          \"South Florida Dwarf Cypress Savanna\",\n          \"South Florida Mangrove Swamp\",\n          \"South Florida Hardwood Hammock\",\n          \"Southeast Florida Coastal Strand and Maritime Hammock\",\n          \"Southwest Florida Coastal Strand and Maritime Hammock\",\n          \"South Florida Pine Rockland\",\n          \"Atlantic Coastal Plain Fall-line Sandhills Longleaf Pine Woodland - Open Understory\",\n          \"Atlantic Coastal Plain Fall-line Sandhills Longleaf Pine Woodland - Scrub/Shrub Understory\",\n          \"Atlantic Coastal Plain Upland Longleaf Pine Woodland\",\n          \"Atlantic Coastal Plain Xeric River Dune\",\n          \"East Gulf Coastal Plain Interior Upland Longleaf Pine Woodland - Open Understory Modifier\",\n          \"East Gulf Coastal Plain Interior Upland Longleaf Pine Woodland - Scrub/Shrub Modifier\",\n          \"Florida Longleaf Pine Sandhill - Scrub/Shrub Understory Modifier\",\n          \"Florida Longleaf Pine Sandhill- Open Understory Modifier\",\n          \"West Gulf Coastal Plain Upland Longleaf Pine Forest and Woodland\",\n          \"Atlantic Coastal Plain Central Maritime Forest\",\n          \"Atlantic Coastal Plain Southern Maritime Forest\",\n          \"Central and South Texas Coastal Fringe Forest and Woodland\",\n          \"East Gulf Coastal Plain Limestone Forest\",\n          \"East Gulf Coastal Plain Maritime Forest\",\n          \"East Gulf Coastal Plain Southern Loess Bluff Forest\",\n          \"East Gulf Coastal Plain Southern Mesic Slope Forest\",\n          \"Mississippi Delta Maritime Forest\",\n          \"Southern Coastal Plain Dry Upland Hardwood Forest\",\n          \"Southern Coastal Plain Oak Dome and Hammock\",\n          \"West Gulf Coastal Plain Chenier and Upper Texas Coastal Fringe Forest and Woodland\",\n          \"West Gulf Coastal Plain Mesic Hardwood Forest\",\n          \"East-Central Texas Plains Pine Forest and Woodland\",\n          \"West Gulf Coastal Plain Pine-Hardwood Forest\",\n          \"West Gulf Coastal Plain Sandhill Oak and Shortleaf Pine Forest and Woodland\",\n          \"Atlantic Coastal Plain Fall-Line Sandhills Longleaf Pine Woodland - Loblolly Modifier\",\n          \"Deciduous Plantations\",\n          \"East Gulf Coastal Plain Interior Upland Longleaf Pine Woodland - Loblolly Modifier\",\n          \"East Gulf Coastal Plain Interior Upland Longleaf Pine Woodland - Offsite Hardwood Modifier\",\n          \"East Gulf Coastal Plain Near-Coast Pine Flatwoods - Offsite Hardwood Modifier\",\n          \"Evergreen Plantation or Managed Pine\",\n          \"California Central Valley Mixed Oak Savanna\",\n          \"California Coastal Closed-Cone Conifer Forest and Woodland\",\n          \"California Coastal Live Oak Woodland and Savanna\",\n          \"California Lower Montane Blue Oak-Foothill Pine Woodland and Savanna\",\n          \"Central and Southern California Mixed Evergreen Woodland\",\n          \"Mediterranean California Lower Montane Black Oak-Conifer Forest and Woodland\",\n          \"Southern California Oak Woodland and Savanna\",\n          \"Madrean Encinal\",\n          \"Madrean Pinyon-Juniper Woodland\",\n          \"Madrean Pine-Oak Forest and Woodland\",\n          \"Madrean Upper Montane Conifer-Oak Forest and Woodland\",\n          \"Edwards Plateau Dry-Mesic Slope Forest and Woodland\",\n          \"Edwards Plateau Limestone Savanna and Woodland\",\n          \"Edwards Plateau Mesic Canyon\",\n          \"Llano Uplift Acidic Forest, Woodland and Glade\",\n          \"East Cascades Oak-Ponderosa Pine Forest and Woodland\",\n          \"Mediterranean California Mixed Evergreen Forest\",\n          \"Mediterranean California Mixed Oak Woodland\",\n          \"North Pacific Dry Douglas-fir-(Madrone) Forest and Woodland\",\n          \"North Pacific Oak Woodland\",\n          \"Edwards Plateau Limestone Shrubland\",\n          \"Allegheny-Cumberland Dry Oak Forest and Woodland - Hardwood\",\n          \"Allegheny-Cumberland Dry Oak Forest and Woodland - Pine Modifier\",\n          \"Central and Southern Appalachian Montane Oak Forest\",\n          \"Central and Southern Appalachian Northern Hardwood Forest\",\n          \"Central Appalachian Oak and Pine Forest\",\n          \"Crosstimbers Oak Forest and Woodland\",\n          \"East Gulf Coastal Plain Black Belt Calcareous Prairie and Woodland - Woodland Modifier\",\n          \"East Gulf Coastal Plain Northern Dry Upland Hardwood Forest\",\n          \"East Gulf Coastal Plain Northern Loess Plain Oak-Hickory Upland - Hardwood Modifier\",\n          \"East Gulf Coastal Plain Northern Loess Plain Oak-Hickory Upland - Juniper Modifier\",\n          \"East-Central Texas Plains Post Oak Savanna and Woodland\",\n          \"Lower Mississippi River Dune Woodland and Forest\",\n          \"Mississippi River Alluvial Plain Dry-Mesic Loess Slope Forest\",\n          \"North-Central Interior Dry Oak Forest and Woodland\",\n          \"North-Central Interior Dry-Mesic Oak Forest and Woodland\",\n          \"Northeastern Interior Dry Oak Forest - Mixed Modifier\",\n          \"Northeastern Interior Dry Oak Forest - Virginia/Pitch Pine Modifier\",\n          \"Northeastern Interior Dry Oak Forest-Hardwood Modifier\",\n          \"Northeastern Interior Dry-Mesic Oak Forest\",\n          \"Northern Atlantic Coastal Plain Dry Hardwood Forest\",\n          \"Crowley's Ridge Sand Forest\",\n          \"Ouachita Montane Oak Forest\",\n          \"Ozark-Ouachita Dry Oak Woodland\",\n          \"Ozark-Ouachita Dry-Mesic Oak Forest\",\n          \"Southern and Central Appalachian Oak Forest\",\n          \"Southern and Central Appalachian Oak Forest - Xeric\",\n          \"Southern Interior Low Plateau Dry-Mesic Oak Forest\",\n          \"Southern Ridge and Valley Dry Calcareous Forest\",\n          \"Southern Ridge and Valley Dry Calcareous Forest - Pine modifier\",\n          \"East Gulf Coastal Plain Northern Dry Upland Hardwood Forest - Offsite Pine Modifier\",\n          \"Managed Tree Plantation\",\n          \"Ruderal forest\",\n          \"Southern Piedmont Dry Oak-(Pine) Forest - Loblolly Pine Modifier\",\n          \"Acadian Low-Elevation Spruce-Fir-Hardwood Forest\",\n          \"Acadian-Appalachian Montane Spruce-Fir Forest\",\n          \"Appalachian Hemlock-Hardwood Forest\",\n          \"Central and Southern Appalachian Spruce-Fir Forest\",\n          \"0\",\n          \"Laurentian-Acadian Northern Hardwoods Forest\",\n          \"Laurentian-Acadian Northern Pine-(Oak) Forest\",\n          \"Laurentian-Acadian Pine-Hemlock-Hardwood Forest\",\n          \"Paleozoic Plateau Bluff and Talus\",\n          \"Southern Appalachian Northern Hardwood Forest\",\n          \"Atlantic Coastal Plain Dry and Dry-Mesic Oak Forest\",\n          \"Atlantic Coastal Plain Fall-line Sandhills Longleaf Pine Woodland - Offsite Hardwood\",\n          \"East Gulf Coastal Plain Interior Shortleaf Pine-Oak Forest - Hardwood Modifier\",\n          \"East Gulf Coastal Plain Interior Shortleaf Pine-Oak Forest - Mixed Modifier\",\n          \"Ozark-Ouachita Shortleaf Pine-Bluestem Woodland\",\n          \"Ozark-Ouachita Shortleaf Pine-Oak Forest and Woodland\",\n          \"Southeastern Interior Longleaf Pine Woodland\",\n          \"Southern Appalachian Low Mountain Pine Forest\",\n          \"Southern Piedmont Dry Oak-(Pine) Forest\",\n          \"Southern Piedmont Dry Oak-(Pine) Forest - Hardwood Modifier\",\n          \"Southern Piedmont Dry Oak-(Pine) Forest - Mixed Modifier\",\n          \"Southern Piedmont Dry Oak-Heath Forest - Mixed Modifier\",\n          \"Eastern Great Plains Tallgrass Aspen Parkland\",\n          \"Northwestern Great Plains Aspen Forest and Parkland\",\n          \"Northwestern Great Plains Shrubland\",\n          \"Western Great Plains Dry Bur Oak Forest and Woodland\",\n          \"Western Great Plains Wooded Draw and Ravine\",\n          \"Southern Atlantic Coastal Plain Mesic Hardwood Forest\",\n          \"East Gulf Coastal Plain Northern Loess Bluff Forest\",\n          \"East Gulf Coastal Plain Northern Mesic Hardwood Forest\",\n          \"North-Central Interior Beech-Maple Forest\",\n          \"North-Central Interior Maple-Basswood Forest\",\n          \"Ozark-Ouachita Mesic Hardwood Forest\",\n          \"South-Central Interior Mesophytic Forest\",\n          \"Southern and Central Appalachian Cove Forest\",\n          \"Crowley's Ridge Mesic Loess Slope Forest\",\n          \"Southern Piedmont Mesic Forest\",\n          \"Appalachian Shale Barrens\",\n          \"Atlantic Coastal Plain Northern Maritime Forest\",\n          \"Laurentian Pine-Oak Barrens\",\n          \"Northeastern Interior Pine Barrens\",\n          \"Northern Atlantic Coastal Plain Pitch Pine Barrens\",\n          \"Southern Appalachian Montane Pine Forest and Woodland\",\n          \"East Cascades Mesic Montane Mixed-Conifer Forest and Woodland\",\n          \"Middle Rocky Mountain Montane Douglas-fir Forest and Woodland\",\n          \"Northern Rocky Mountain Dry-Mesic Montane Mixed Conifer Forest\",\n          \"Northern Rocky Mountain Foothill Conifer Wooded Steppe\",\n          \"Northern Rocky Mountain Mesic Montane Mixed Conifer Forest\",\n          \"Northern Rocky Mountain Ponderosa Pine Woodland and Savanna\",\n          \"Northern Rocky Mountain Western Larch Savanna\",\n          \"Northwestern Great Plains - Black Hills Ponderosa Pine Woodland and Savanna\",\n          \"Rocky Mountain Foothill Limber Pine-Juniper Woodland\",\n          \"Inter-Mountain Basins Aspen-Mixed Conifer Forest and Woodland\",\n          \"Inter-Mountain Basins Subalpine Limber-Bristlecone Pine Woodland\",\n          \"Northern Rocky Mountain Subalpine Woodland and Parkland\",\n          \"Rocky Mountain Aspen Forest and Woodland\",\n          \"Rocky Mountain Lodgepole Pine Forest\",\n          \"Rocky Mountain Poor-Site Lodgepole Pine Forest\",\n          \"Rocky Mountain Subalpine Dry-Mesic Spruce-Fir Forest and Woodland\",\n          \"Rocky Mountain Subalpine Mesic Spruce-Fir Forest and Woodland\",\n          \"Rocky Mountain Subalpine-Montane Limber-Bristlecone Pine Woodland\",\n          \"Rocky Mountain Bigtooth Maple Ravine Woodland\",\n          \"Southern Rocky Mountain Dry-Mesic Montane Mixed Conifer Forest and Woodland\",\n          \"Southern Rocky Mountain Mesic Montane Mixed Conifer Forest and Woodland\",\n          \"Southern Rocky Mountain Ponderosa Pine Savanna\",\n          \"Southern Rocky Mountain Ponderosa Pine Woodland\",\n          \"California Montane Jeffrey Pine-(Ponderosa Pine) Woodland\",\n          \"Klamath-Siskiyou Lower Montane Serpentine Mixed Conifer Woodland\",\n          \"Klamath-Siskiyou Upper Montane Serpentine Mixed Conifer Woodland\",\n          \"Mediterranean California Dry-Mesic Mixed Conifer Forest and Woodland\",\n          \"Mediterranean California Mesic Mixed Conifer Forest and Woodland\",\n          \"Sierran-Intermontane Desert Western White Pine-White Fir Woodland\",\n          \"California Coastal Redwood Forest\",\n          \"North Pacific Broadleaf Landslide Forest and Shrubland\",\n          \"North Pacific Dry-Mesic Silver Fir-Western Hemlock-Douglas-fir Forest\",\n          \"North Pacific Hypermaritime Sitka Spruce Forest\",\n          \"North Pacific Hypermaritime Western Red-cedar-Western Hemlock Forest\",\n          \"North Pacific Lowland Mixed Hardwood-Conifer Forest and Woodland\",\n          \"North Pacific Maritime Dry-Mesic Douglas-fir-Western Hemlock Forest\",\n          \"North Pacific Maritime Mesic-Wet Douglas-fir-Western Hemlock Forest\",\n          \"North Pacific Mesic Western Hemlock-Silver Fir Forest\",\n          \"North Pacific Wooded Volcanic Flowage\",\n          \"Mediterranean California Red Fir Forest\",\n          \"Mediterranean California Subalpine Woodland\",\n          \"North Pacific Maritime Mesic Subalpine Parkland\",\n          \"North Pacific Mountain Hemlock Forest\",\n          \"Northern California Mesic Subalpine Woodland\",\n          \"Northern Pacific Mesic Subalpine Woodland\",\n          \"Sierra Nevada Subalpine Lodgepole Pine Forest and Woodland\",\n          \"Columbia Plateau Western Juniper Woodland and Savanna\",\n          \"Great Basin Pinyon-Juniper Woodland\",\n          \"Inter-Mountain Basins Curl-leaf Mountain Mahogany Woodland and Shrubland\",\n          \"Inter-Mountain Basins Juniper Savanna\",\n          \"Colorado Plateau Pinyon-Juniper Shrubland\",\n          \"Colorado Plateau Pinyon-Juniper Woodland\",\n          \"Southern Rocky Mountain Juniper Woodland and Savanna\",\n          \"Southern Rocky Mountain Pinyon-Juniper Woodland\",\n          \"Northwestern Great Plains Floodplain\",\n          \"Northwestern Great Plains Riparian\",\n          \"Western Great Plains Floodplain\",\n          \"Western Great Plains Floodplain Systems\",\n          \"Western Great Plains Riparian Woodland and Shrubland\",\n          \"Central Appalachian Floodplain - Forest Modifier\",\n          \"Central Appalachian Riparian - Forest Modifier\",\n          \"Central Interior and Appalachian Floodplain Systems\",\n          \"Central Interior and Appalachian Riparian Systems\",\n          \"Laurentian-Acadian Floodplain Systems\",\n          \"Ozark-Ouachita Riparian\",\n          \"South-Central Interior Large Floodplain\",\n          \"South-Central Interior Large Floodplain - Forest Modifier\",\n          \"South-Central Interior Small Stream and Riparian\",\n          \"North-Central Interior and Appalachian Rich Swamp\",\n          \"0\",\n          \"0\",\n          \"Laurentian-Acadian Swamp Systems\",\n          \"North-Central Interior Wet Flatwoods\",\n          \"0\",\n          \"South-Central Interior / Upper Coastal Plain Wet Flatwoods\",\n          \"0\",\n          \"Southern Piedmont/Ridge and Valley Upland Depression Swamp\",\n          \"Atlantic Coastal Plain Blackwater Stream Floodplain Forest - Forest Modifier\",\n          \"Atlantic Coastal Plain Brownwater Stream Floodplain Forest\",\n          \"Atlantic Coastal Plain Northern Tidal Wooded Swamp\",\n          \"Atlantic Coastal Plain Small Blackwater River Floodplain Forest\",\n          \"Atlantic Coastal Plain Small Brownwater River Floodplain Forest\",\n          \"Atlantic Coastal Plain Southern Tidal Wooded Swamp\",\n          \"East Gulf Coastal Plain Large River Floodplain Forest - Forest Modifier\",\n          \"East Gulf Coastal Plain Small Stream and River Floodplain Forest\",\n          \"East Gulf Coastal Plain Tidal Wooded Swamp\",\n          \"0\",\n          \"Southeastern Great Plains Riparian Forest\",\n          \"Southeastern Great Plains Floodplain Forest\",\n          \"Mississippi River Bottomland Depression\",\n          \"Mississippi River Floodplain and Riparian Forest\",\n          \"Mississippi River Low Floodplain (Bottomland) Forest\",\n          \"Mississippi River Riparian Forest\",\n          \"Red River Large Floodplain Forest\",\n          \"Southern Coastal Plain Blackwater River Floodplain Forest\",\n          \"Southern Piedmont Large Floodplain Forest - Forest Modifier\",\n          \"Southern Piedmont Small Floodplain and Riparian Forest\",\n          \"West Gulf Coastal Plain Large River Floodplain Forest\",\n          \"West Gulf Coastal Plain Near-Coast Large River Swamp\",\n          \"West Gulf Coastal Plain Small Stream and River Forest\",\n          \"Atlantic Coastal Plain Streamhead Seepage Swamp -  Pocosin -  and Baygall\",\n          \"Gulf and Atlantic Coastal Plain Swamp Systems\",\n          \"Southern Coastal Plain Hydric Hammock\",\n          \"Southern Coastal Plain Seepage Swamp and Baygall\",\n          \"West Gulf Coastal Plain Seepage Swamp and Baygall\",\n          \"Atlantic Coastal Plain Nonriverine Swamp and Wet Hardwood Forest  - Taxodium/Nyssa Modifier\",\n          \"Atlantic Coastal Plain Nonriverine Swamp and Wet Hardwood Forest - Oak Dominated Modifier\",\n          \"East Gulf Coastal Plain Southern Loblolly-Hardwood Flatwoods\",\n          \"Lower Mississippi River Bottomland Depressions - Forest Modifier\",\n          \"Lower Mississippi River Flatwoods\",\n          \"Northern Atlantic Coastal Plain Basin Swamp and Wet Hardwood Forest\",\n          \"Southern Coastal Plain Nonriverine Basin Swamp\",\n          \"Southern Coastal Plain Nonriverine Basin Swamp - Okefenokee Bay/Gum Modifier\",\n          \"Southern Coastal Plain Nonriverine Basin Swamp - Okefenokee Pine Modifier\",\n          \"Southern Coastal Plain Nonriverine Basin Swamp - Okefenokee Taxodium Modifier\",\n          \"West Gulf Coastal Plain Nonriverine Wet Hardwood Flatwoods\",\n          \"West Gulf Coastal Plain Pine-Hardwood Flatwoods\",\n          \"Edwards Plateau Riparian\",\n          \"Atlantic Coastal Plain Clay-Based Carolina Bay Forested Wetland\",\n          \"Atlantic Coastal Plain Clay-Based Carolina Bay Herbaceous Wetland\",\n          \"Atlantic Coastal Plain Southern Wet Pine Savanna and Flatwoods\",\n          \"Central Atlantic Coastal Plain Wet Longleaf Pine Savanna and Flatwoods\",\n          \"Central Florida Pine Flatwoods\",\n          \"East Gulf Coastal Plain Near-Coast Pine Flatwoods\",\n          \"East Gulf Coastal Plain Near-Coast Pine Flatwoods - Open Understory Modifier\",\n          \"East Gulf Coastal Plain Near-Coast Pine Flatwoods - Scrub/Shrub Understory Modifier\",\n          \"South Florida Pine Flatwoods\",\n          \"Southern Coastal Plain Nonriverine Cypress Dome\",\n          \"West Gulf Coastal Plain Wet Longleaf Pine Savanna and Flatwoods\",\n          \"Columbia Basin Foothill Riparian Woodland and Shrubland\",\n          \"Great Basin Foothill and Lower Montane Riparian Woodland and Shrubland\",\n          \"0\",\n          \"Northern Rocky Mountain Conifer Swamp\",\n          \"Northern Rocky Mountain Lower Montane Riparian Woodland and Shrubland\",\n          \"Rocky Mountain Lower Montane Riparian Woodland and Shrubland\",\n          \"Rocky Mountain Montane Riparian Systems\",\n          \"Rocky Mountain Subalpine-Montane Riparian Woodland\",\n          \"North Pacific Hardwood-Conifer Swamp\",\n          \"North Pacific Lowland Riparian Forest and Shrubland\",\n          \"North Pacific Montane Riparian Woodland and Shrubland\",\n          \"North Pacific Shrub Swamp\",\n          \"California Central Valley Riparian Woodland and Shrubland\",\n          \"Mediterranean California Foothill and Lower Montane Riparian Woodland\",\n          \"Mediterranean California Serpentine Foothill and Lower Montane Riparian Woodland and Seep\",\n          \"North American Warm Desert Lower Montane Riparian Woodland and Shrubland\",\n          \"North American Warm Desert Riparian Systems\",\n          \"North American Warm Desert Riparian Woodland and Shrubland\",\n          \"Tamaulipan Floodplain\",\n          \"Tamaulipan Riparian Systems\",\n          \"Boreal Aspen-Birch Forest\",\n          \"Boreal Jack Pine-Black Spruce Forest\",\n          \"Boreal White Spruce-Fir-Hardwood Forest\",\n          \"Boreal-Laurentian Conifer Acidic Swamp and Treed Poor Fen\",\n          \"Eastern Boreal Floodplain\",\n          \"South Florida Shell Hash Beach\",\n          \"Southeast Florida Beach\",\n          \"Southwest Florida Beach\",\n          \"South Florida Everglades Sawgrass Marsh\",\n          \"South Florida Freshwater Slough and Gator Hole\",\n          \"South Florida Wet Marl Prairie\",\n          \"California Maritime Chaparral\",\n          \"California Mesic Chaparral\",\n          \"California Xeric Serpentine Chaparral\",\n          \"Klamath-Siskiyou Xeromorphic Serpentine Savanna and Chaparral\",\n          \"Mediterranean California Mesic Serpentine Woodland and Chaparral\",\n          \"Northern and Central California Dry-Mesic Chaparral\",\n          \"Southern California Dry-Mesic Chaparral\",\n          \"Southern California Coastal Scrub\",\n          \"California Central Valley and Southern Coastal Grassland\",\n          \"California Mesic Serpentine Grassland\",\n          \"Columbia Basin Foothill and Canyon Dry Grassland\",\n          \"Columbia Basin Palouse Prairie\",\n          \"North Pacific Alpine and Subalpine Dry Grassland\",\n          \"North Pacific Montane Grassland\",\n          \"North Pacific Montane Shrubland\",\n          \"Northern Rocky Mountain Lower Montane, Foothill and Valley Grassland\",\n          \"Northern Rocky Mountain Montane-Foothill Deciduous Shrubland\",\n          \"Northern Rocky Mountain Subalpine Deciduous Shrubland\",\n          \"Northern Rocky Mountain Subalpine-Upper Montane Grassland\",\n          \"Southern Rocky Mountain Montane-Subalpine Grassland\",\n          \"Rocky Mountain Gambel Oak-Mixed Montane Shrubland\",\n          \"Rocky Mountain Lower Montane-Foothill Shrubland\",\n          \"California Northern Coastal Grassland\",\n          \"North Pacific Herbaceous Bald and Bluff\",\n          \"North Pacific Hypermaritime Shrub and Herbaceous Headland\",\n          \"Willamette Valley Upland Prairie and Savanna\",\n          \"Mediterranean California Subalpine Meadow\",\n          \"Rocky Mountain Subalpine-Montane Mesic Meadow\",\n          \"Central Mixedgrass Prairie\",\n          \"Northwestern Great Plains Mixedgrass Prairie\",\n          \"Western Great Plains Foothill and Piedmont Grassland\",\n          \"Western Great Plains Tallgrass Prairie\",\n          \"Western Great Plains Sand Prairie\",\n          \"Western Great Plains Sandhill Steppe\",\n          \"Western Great Plains Mesquite Woodland and Shrubland\",\n          \"Western Great Plains Shortgrass Prairie\",\n          \"Arkansas Valley Prairie and Woodland\",\n          \"Central Tallgrass Prairie\",\n          \"North-Central Interior Oak Savanna\",\n          \"North-Central Interior Sand and Gravel Tallgrass Prairie\",\n          \"North-Central Oak Barrens\",\n          \"Northern Tallgrass Prairie\",\n          \"Southeastern Great Plains Tallgrass Prairie\",\n          \"Texas Blackland Tallgrass Prairie\",\n          \"Texas-Louisiana Coastal Prairie\",\n          \"Central Appalachian Pine-Oak Rocky Woodland\",\n          \"Southern Appalachian Grass and Shrub Bald\",\n          \"Southern Appalachian Grass and Shrub Bald - Herbaceous Modifier\",\n          \"Southern Appalachian Grass and Shrub Bald - Shrub Modifier\",\n          \"Central Appalachian Alkaline Glade and Woodland\",\n          \"Central Interior Highlands Calcareous Glade and Barrens\",\n          \"Central Interior Highlands Dry Acidic Glade and Barrens\",\n          \"Cumberland Sandstone Glade and Barrens\",\n          \"Great Lakes Alvar\",\n          \"Nashville Basin Limestone Glade\",\n          \"Southern Ridge and Valley / Cumberland Dry Calcareous Forest\",\n          \"Southern Piedmont Glade and Barrens\",\n          \"East Gulf Coastal Plain Black Belt Calcareous Prairie and Woodland - Herbaceous Modifier\",\n          \"East Gulf Coastal Plain Jackson Prairie and Woodland\",\n          \"Eastern Highland Rim Prairie and Barrens - Dry Modifier\",\n          \"Coahuilan Chaparral\",\n          \"Madrean Oriental Chaparral\",\n          \"Mogollon Chaparral\",\n          \"Sonora-Mojave Semi-Desert Chaparral\",\n          \"California Montane Woodland and Chaparral\",\n          \"Great Basin Semi-Desert Chaparral\",\n          \"Florida Dry Prairie\",\n          \"Florida Peninsula Inland Scrub\",\n          \"West Gulf Coastal Plain Catahoula Barrens\",\n          \"West Gulf Coastal Plain Nepheline Syenite Glade\",\n          \"East Gulf Coastal Plain Jackson Plain Dry Flatwoods - Open Understory Modifier\",\n          \"West Gulf Coastal Plain Northern Calcareous Prairie\",\n          \"West Gulf Coastal Plain Southern Calcareous Prairie\",\n          \"Acadian-Appalachian Subalpine Woodland and Heath-Krummholz\",\n          \"Atlantic and Gulf Coastal Plain Interdunal Wetland\",\n          \"Atlantic Coastal Plain Southern Dune and Maritime Grassland\",\n          \"Central and Upper Texas Coast Dune and Coastal Grassland\",\n          \"East Gulf Coastal Plain Dune and Coastal Grassland\",\n          \"Great Lakes Dune\",\n          \"Northern Atlantic Coastal Plain Dune and Swale\",\n          \"Northern Atlantic Coastal Plain Heathland and Grassland\",\n          \"South Texas Dune and Coastal Grassland\",\n          \"South Texas Sand Sheet Grassland\",\n          \"Southwest Florida Dune and Coastal Grassland\",\n          \"North Pacific Coastal Cliff and Bluff\",\n          \"North Pacific Maritime Coastal Sand Dune and Strand\",\n          \"Northern California Coastal Scrub\",\n          \"Mediterranean California Coastal Bluff\",\n          \"Mediterranean California Northern Coastal Dune\",\n          \"Mediterranean California Southern Coastal Dune\",\n          \"Atlantic Coastal Plain Northern Sandy Beach\",\n          \"Atlantic Coastal Plain Sea Island Beach\",\n          \"Atlantic Coastal Plain Southern Beach\",\n          \"Florida Panhandle Beach Vegetation\",\n          \"Louisiana Beach\",\n          \"Northern Atlantic Coastal Plain Sandy Beach\",\n          \"Texas Coastal Bend Beach\",\n          \"Upper Texas Coast Beach\",\n          \"0\",\n          \"Mediterranean California Serpentine Fen\",\n          \"Mediterranean California Subalpine-Montane Fen\",\n          \"North Pacific Bog and Fen\",\n          \"Rocky Mountain Subalpine-Montane Fen\",\n          \"Atlantic Coastal Plain Peatland Pocosin\",\n          \"Southern and Central Appalachian Bog and Fen\",\n          \"Atlantic Coastal Plain Central Fresh-Oligohaline Tidal Marsh\",\n          \"Atlantic Coastal Plain Embayed Region Tidal Freshwater Marsh\",\n          \"Atlantic Coastal Plain Northern Fresh and Oligohaline Tidal Marsh\",\n          \"Florida Big Bend Fresh-Oligohaline Tidal Marsh\",\n          \"Atlantic Coastal Plain Depression Pondshore\",\n          \"Atlantic Coastal Plain Large Natural Lakeshore\",\n          \"Central Florida Herbaceous Pondshore\",\n          \"Central Florida Herbaceous Seep\",\n          \"East Gulf Coastal Plain Savanna and Wet Prairie\",\n          \"East Gulf Coastal Plain Depression Pondshore\",\n          \"Floridian Highlands Freshwater Marsh\",\n          \"Southern Coastal Plain Herbaceous Seepage Bog\",\n          \"Southern Coastal Plain Nonriverine Basin Swamp - Okefenokee Clethra Modifier\",\n          \"Southern Coastal Plain Nonriverine Basin Swamp - Okefenokee Nupea Modifier\",\n          \"Texas-Louisiana Coastal Prairie Slough\",\n          \"Central Interior and Appalachian Shrub-Herbaceous Wetland Systems\",\n          \"Great Lakes Coastal Marsh Systems\",\n          \"0\",\n          \"0\",\n          \"Laurentian-Acadian Shrub-Herbaceous Wetland Systems\",\n          \"0\",\n          \"Eastern Great Plains Wet Meadow, Prairie  and Marsh\",\n          \"Great Lakes Wet-Mesic Lakeplain Prairie\",\n          \"Great Plains Prairie Pothole\",\n          \"Western Great Plains Closed Depression Wetland\",\n          \"Western Great Plains Depressional Wetland Systems\",\n          \"Western Great Plains Open Freshwater Depression Wetland\",\n          \"Cumberland Riverscour\",\n          \"Inter-Mountain Basins Interdunal Swale Wetland\",\n          \"North Pacific Avalanche Chute Shrubland\",\n          \"North Pacific Intertidal Freshwater Wetland\",\n          \"Temperate Pacific Freshwater Emergent Marsh\",\n          \"Temperate Pacific Freshwater Mudflat\",\n          \"Columbia Plateau Vernal Pool\",\n          \"Northern California Claypan Vernal Pool\",\n          \"Northern Rocky Mountain Wooded Vernal Pool\",\n          \"Columbia Plateau Silver Sagebrush Seasonally Flooded Shrub-Steppe\",\n          \"Rocky Mountain Alpine-Montane Wet Meadow\",\n          \"Rocky Mountain Subalpine-Montane Riparian Shrubland\",\n          \"Temperate Pacific Montane Wet Meadow\",\n          \"Willamette Valley Wet Prairie\",\n          \"Chihuahuan-Sonoran Desert Bottomland and Swale Grassland\",\n          \"North American Arid West Emergent Marsh\",\n          \"North American Warm Desert Riparian Mesquite Bosque\",\n          \"Western Great Plains Saline Depression Wetland\",\n          \"Acadian Salt Marsh and Estuary Systems\",\n          \"Atlantic Coastal Plain Central Salt and Brackish Tidal Marsh\",\n          \"Atlantic Coastal Plain Embayed Region Tidal Salt and Brackish Marsh\",\n          \"Atlantic Coastal Plain Indian River Lagoon Tidal Marsh\",\n          \"Atlantic Coastal Plain Northern Tidal Salt Marsh\",\n          \"Florida Big Bend Salt-Brackish Tidal Marsh\",\n          \"Gulf and Atlantic Coastal Plain Tidal Marsh Systems\",\n          \"Mississippi Sound Salt and Brackish Tidal Marsh\",\n          \"Texas Saline Coastal Prairie\",\n          \"Temperate Pacific Tidal Salt and Brackish Marsh\",\n          \"Inter-Mountain Basins Alkaline Closed Depression\",\n          \"Inter-Mountain Basins Greasewood Flat\",\n          \"Inter-Mountain Basins Playa\",\n          \"North American Warm Desert Playa\",\n          \"Apacherian-Chihuahuan Mesquite Upland Scrub\",\n          \"Apacherian-Chihuahuan Semi-Desert Grassland and Steppe\",\n          \"Chihuahuan Creosotebush, Mixed Desert and Thorn Scrub\",\n          \"Chihuahuan Gypsophilous Grassland and Steppe\",\n          \"Chihuahuan Loamy Plains Desert Grassland\",\n          \"Chihuahuan Mixed Desert and Thorn Scrub\",\n          \"Chihuahuan Sandy Plains Semi-Desert Grassland\",\n          \"Chihuahuan Stabilized Coppice Dune and Sand Flat Scrub\",\n          \"Chihuahuan Succulent Desert Scrub\",\n          \"Madrean Juniper Savanna\",\n          \"Mojave Mid-Elevation Mixed Desert Scrub\",\n          \"North American Warm Desert Active and Stabilized Dune\",\n          \"Sonora-Mojave Creosotebush-White Bursage Desert Scrub\",\n          \"Sonoran Mid-Elevation Desert Scrub\",\n          \"Sonoran Paloverde-Mixed Cacti Desert Scrub\",\n          \"Chihuahuan Mixed Salt Desert Scrub\",\n          \"Sonora-Mojave Mixed Salt Desert Scrub\",\n          \"North American Warm Desert Wash\",\n          \"South Texas Lomas\",\n          \"Tamaulipan Calcareous Thornscrub\",\n          \"Tamaulipan Clay Grassland\",\n          \"Tamaulipan Mesquite Upland Scrub\",\n          \"Tamaulipan Mixed Deciduous Thornscrub\",\n          \"Tamaulipan Savanna Grassland\",\n          \"Inter-Mountain Basins Mat Saltbush Shrubland\",\n          \"Inter-Mountain Basins Mixed Salt Desert Scrub\",\n          \"Inter-Mountain Basins Wash\",\n          \"Columbia Plateau Steppe and Grassland\",\n          \"Great Basin Xeric Mixed Sagebrush Shrubland\",\n          \"Inter-Mountain Basins Big Sagebrush Shrubland\",\n          \"Inter-Mountain Basins Big Sagebrush Steppe\",\n          \"Inter-Mountain Basins Montane Sagebrush Steppe\",\n          \"Colorado Plateau Mixed Low Sagebrush Shrubland\",\n          \"Columbia Plateau Low Sagebrush Steppe\",\n          \"Columbia Plateau Scabland Shrubland\",\n          \"Wyoming Basins Dwarf Sagebrush Shrubland and Steppe\",\n          \"Colorado Plateau Blackbrush-Mormon-tea Shrubland\",\n          \"Inter-Mountain Basins Semi-Desert Grassland\",\n          \"Inter-Mountain Basins Semi-Desert Shrub Steppe\",\n          \"Southern Colorado Plateau Sand Shrubland\",\n          \"Acadian-Appalachian Alpine Tundra\",\n          \"Rocky Mountain Alpine Dwarf-Shrubland\",\n          \"Rocky Mountain Alpine Fell-Field\",\n          \"Rocky Mountain Alpine Turf\",\n          \"Mediterranean California Alpine Dry Tundra\",\n          \"Mediterranean California Alpine Fell-Field\",\n          \"North Pacific Dry and Mesic Alpine Dwarf-Shrubland, Fell-field and Meadow\",\n          \"Rocky Mountain Alpine Tundra/Fell-field/Dwarf-shrub Map Unit\",\n          \"Temperate Pacific Intertidal Mudflat\",\n          \"Mediterranean California Eelgrass Bed\",\n          \"North Pacific Maritime Eelgrass Bed\",\n          \"South-Central Interior Large Floodplain - Herbaceous Modifier\",\n          \"East Gulf Coastal Plain Large River Floodplain Forest - Herbaceous Modifier\",\n          \"Temperate Pacific Freshwater Aquatic Bed\",\n          \"Central California Coast Ranges Cliff and Canyon\",\n          \"Mediterranean California Serpentine Barrens\",\n          \"Southern California Coast Ranges Cliff and Canyon\",\n          \"Central Interior Acidic Cliff and Talus\",\n          \"Central Interior Calcareous Cliff and Talus\",\n          \"East Gulf Coastal Plain Dry Chalk Bluff\",\n          \"North-Central Appalachian Acidic Cliff and Talus\",\n          \"North-Central Appalachian Circumneutral Cliff and Talus\",\n          \"Southern Appalachian Montane Cliff\",\n          \"Southern Interior Acid Cliff\",\n          \"Southern Interior Calcareous Cliff\",\n          \"Southern Piedmont Cliff\",\n          \"Southern Appalachian Granitic Dome\",\n          \"Southern Appalachian Rocky Summit\",\n          \"Southern Piedmont Granite Flatrock\",\n          \"Rocky Mountain Cliff, Canyon and Massive Bedrock\",\n          \"Klamath-Siskiyou Cliff and Outcrop\",\n          \"North Pacific Montane Massive Bedrock, Cliff and Talus\",\n          \"North Pacific Serpentine Barren\",\n          \"North Pacific Active Volcanic Rock and Cinder Land\",\n          \"Sierra Nevada Cliff and Canyon\",\n          \"Western Great Plains Badland\",\n          \"Southwestern Great Plains Canyon\",\n          \"Western Great Plains Cliff and Outcrop\",\n          \"North American Warm Desert Badland\",\n          \"North American Warm Desert Bedrock Cliff and Outcrop\",\n          \"North American Warm Desert Pavement\",\n          \"North American Warm Desert Volcanic Rockland\",\n          \"Colorado Plateau Mixed Bedrock Canyon and Tableland\",\n          \"Columbia Plateau Ash and Tuff Badland\",\n          \"Geysers and Hot Springs\",\n          \"Inter-Mountain Basins Active and Stabilized Dune\",\n          \"Inter-Mountain Basins Cliff and Canyon\",\n          \"Inter-Mountain Basins Shale Badland\",\n          \"Inter-Mountain Basins Volcanic Rock and Cinder Land\",\n          \"Rocky Mountain Alpine Bedrock and Scree\",\n          \"Mediterranean California Alpine Bedrock and Scree\",\n          \"North Pacific Alpine and Subalpine Bedrock and Scree\",\n          \"Unconsolidated Shore\",\n          \"Undifferentiated Barren Land\",\n          \"North American Alpine Ice Field\",\n          \"Orchards Vineyards and Other High Structure Agriculture\",\n          \"Cultivated Cropland\",\n          \"Pasture/Hay\",\n          \"Introduced Upland Vegetation - Annual Grassland\",\n          \"Introduced Upland Vegetation - Perennial Grassland and Forbland\",\n          \"Modified/Managed Southern Tall Grassland\",\n          \"Introduced Upland Vegetation - Shrub\",\n          \"Introduced Riparian and Wetland Vegetation\",\n          \"Introduced Upland Vegetation - Treed\",\n          \"0\",\n          \"Disturbed, Non-specific\",\n          \"Recently Logged Areas\",\n          \"Harvested Forest - Grass/Forb Regeneration\",\n          \"Harvested Forest-Shrub Regeneration\",\n          \"Harvested Forest - Northwestern Conifer Regeneration\",\n          \"Recently Burned\",\n          \"Recently burned grassland\",\n          \"Recently burned shrubland\",\n          \"Recently burned forest\",\n          \"Disturbed/Successional - Grass/Forb Regeneration\",\n          \"Disturbed/Successional - Shrub Regeneration\",\n          \"Disturbed/Successional - Recently Chained Pinyon-Juniper\",\n          \"Open Water (Aquaculture)\",\n          \"Open Water (Brackish/Salt)\",\n          \"Open Water (Fresh)\",\n          \"Quarries, Mines, Gravel Pits and Oil Wells\",\n          \"Developed, Open Space\",\n          \"Developed, Low Intensity\",\n          \"Developed, Medium Intensity\",\n          \"Developed, High Intensity\"\n        ]\n      }\n    ]\n  },\n  \"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\",\n  \"item_assets\": {\n    \"data\": {\n      \"type\": \"image/tiff; application=geotiff; profile=cloud-optimized\",\n      \"roles\": [\n        \"data\"\n      ],\n      \"title\": \"GeoTIFF data\"\n    }\n  },\n  \"stac_version\": \"1.0.0\",\n  \"msft:container\": \"usgs-gap\",\n  \"stac_extensions\": [\n    \"https://stac-extensions.github.io/label/v1.0.0/schema.json\",\n    \"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\"\n  ],\n  \"msft:storage_account\": \"ai4edataeuwest\",\n  \"msft:short_description\": \"US-wide land cover information for 2011\"\n}\n"
  },
  {
    "path": "tests/data/planetary-computer-root.json",
    "content": "{\n    \"id\": \"microsoft-pc\",\n    \"description\": \"Searchable spatiotemporal metadata describing Earth science datasets hosted by the Microsoft Planetary Computer\",\n    \"title\": \"Microsoft Planetary Computer STAC API\",\n    \"stac_version\": \"1.0.0-beta.2\",\n    \"links\": [\n        {\n            \"href\": \"https://planetarycomputer.microsoft.com/api/stac/v1/\",\n            \"rel\": \"self\",\n            \"type\": \"application/json\"\n        },\n        {\n            \"rel\": \"data\",\n            \"type\": \"application/json\",\n            \"href\": \"https://planetarycomputer.microsoft.com/api/stac/v1/collections\"\n        },\n        {\n            \"href\": \"https://planetarycomputer.microsoft.com/api/stac/v1/docs\",\n            \"rel\": \"docs\",\n            \"type\": \"text/html\",\n            \"title\": \"OpenAPI docs\"\n        },\n        {\n            \"href\": \"https://planetarycomputer.microsoft.com/api/stac/v1/conformance\",\n            \"rel\": \"conformance\",\n            \"type\": \"application/json\",\n            \"title\": \"STAC/WFS3 conformance classes implemented by this server\"\n        },\n        {\n            \"href\": \"https://planetarycomputer.microsoft.com/api/stac/v1/search\",\n            \"rel\": \"search\",\n            \"type\": \"application/geo+json\",\n            \"title\": \"STAC search\"\n        },\n        {\n            \"href\": \"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t\",\n            \"rel\": \"child\",\n            \"type\": \"application/json\",\n            \"title\": \"ASTER L1T\"\n        },\n        {\n            \"href\": \"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2\",\n            \"rel\": \"child\",\n            \"type\": \"application/json\",\n            \"title\": \"Landsat 8 Collection 2 Level-2\"\n        },\n        {\n            \"href\": \"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a\",\n            \"rel\": \"child\",\n            \"type\": \"application/json\",\n            \"title\": \"Sentinel-2 Level-2A\"\n        },\n        {\n            \"href\": \"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip\",\n            \"rel\": \"child\",\n            \"type\": \"application/json\",\n            \"title\": \"NAIP: National Agriculture Imagery Program\"\n        }\n    ],\n    \"conformsTo\": [\n        \"https://api.stacspec.org/v1.0.0-beta.1/core\",\n        \"https://api.stacspec.org/v1.0.0-beta.1/collections\",\n        \"https://api.stacspec.org/v1.0.0-beta.1/item-search\",\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    ]\n}"
  },
  {
    "path": "tests/data/sample-item-collection.json",
    "content": "{\n    \"type\": \"FeatureCollection\",\n    \"stac_version\": \"1.0.0-rc.4\",\n    \"numberMatched\": 324132,\n    \"numberReturned\": 10,\n    \"features\": [\n      {\n        \"type\": \"Feature\",\n        \"id\": \"G1994512890-LPCLOUD\",\n        \"stac_version\": \"1.0.0-rc.4\",\n        \"stac_extensions\": [\n          \"https://stac-extensions.github.io/eo/v1.1.0/schema.json\"\n        ],\n        \"collection\": \"HLSL30.v1.5\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                -177.0002548,\n                -45.2413329\n              ],\n              [\n                -176.7533258,\n                -45.2410666\n              ],\n              [\n                -176.4223072,\n                -44.2514167\n              ],\n              [\n                -177.0002505,\n                -44.2528774\n              ],\n              [\n                -177.0002548,\n                -45.2413329\n              ]\n            ]\n          ]\n        },\n        \"bbox\": [\n          -177.000255,\n          -45.241333,\n          -176.422307,\n          -44.251417\n        ],\n        \"links\": [\n          {\n            \"rel\": \"self\",\n            \"href\": \"https://cmr.earthdata.nasa.gov/stac/LPCLOUD/collections/HLSL30.v1.5/items/G1994512890-LPCLOUD\"\n          },\n          {\n            \"rel\": \"parent\",\n            \"href\": \"https://cmr.earthdata.nasa.gov/stac/LPCLOUD/collections/HLSL30.v1.5\"\n          },\n          {\n            \"rel\": \"collection\",\n            \"href\": \"https://cmr.earthdata.nasa.gov/stac/LPCLOUD/collections/HLSL30.v1.5\"\n          },\n          {\n            \"rel\": \"root\",\n            \"href\": \"https://cmr.earthdata.nasa.gov/stac/\"\n          },\n          {\n            \"rel\": \"provider\",\n            \"href\": \"https://cmr.earthdata.nasa.gov/stac/LPCLOUD\"\n          },\n          {\n            \"rel\": \"via\",\n            \"href\": \"https://cmr.earthdata.nasa.gov/search/concepts/G1994512890-LPCLOUD.json\"\n          },\n          {\n            \"rel\": \"via\",\n            \"href\": \"https://cmr.earthdata.nasa.gov/search/concepts/G1994512890-LPCLOUD.umm_json\"\n          }\n        ],\n        \"properties\": {\n          \"datetime\": \"2021-01-01T21:31:13.552Z\",\n          \"start_datetime\": \"2021-01-01T21:31:13.552Z\",\n          \"end_datetime\": \"2021-01-01T21:31:13.552Z\",\n          \"eo:cloud_cover\": 17\n        },\n        \"assets\": {\n          \"B09\": {\n            \"title\": \"Download HLS.L30.T01GEL.2021001T213113.v1.5.B09.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T01GEL.2021001T213113.v1.5.B09.tif\"\n          },\n          \"B06\": {\n            \"title\": \"Download HLS.L30.T01GEL.2021001T213113.v1.5.B06.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T01GEL.2021001T213113.v1.5.B06.tif\"\n          },\n          \"B11\": {\n            \"title\": \"Download HLS.L30.T01GEL.2021001T213113.v1.5.B11.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T01GEL.2021001T213113.v1.5.B11.tif\"\n          },\n          \"B05\": {\n            \"title\": \"Download HLS.L30.T01GEL.2021001T213113.v1.5.B05.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T01GEL.2021001T213113.v1.5.B05.tif\"\n          },\n          \"SAA\": {\n            \"title\": \"Download HLS.L30.T01GEL.2021001T213113.v1.5.SAA.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T01GEL.2021001T213113.v1.5.SAA.tif\"\n          },\n          \"VAA\": {\n            \"title\": \"Download HLS.L30.T01GEL.2021001T213113.v1.5.VAA.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T01GEL.2021001T213113.v1.5.VAA.tif\"\n          },\n          \"B07\": {\n            \"title\": \"Download HLS.L30.T01GEL.2021001T213113.v1.5.B07.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T01GEL.2021001T213113.v1.5.B07.tif\"\n          },\n          \"VZA\": {\n            \"title\": \"Download HLS.L30.T01GEL.2021001T213113.v1.5.VZA.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T01GEL.2021001T213113.v1.5.VZA.tif\"\n          },\n          \"B03\": {\n            \"title\": \"Download HLS.L30.T01GEL.2021001T213113.v1.5.B03.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T01GEL.2021001T213113.v1.5.B03.tif\"\n          },\n          \"B04\": {\n            \"title\": \"Download HLS.L30.T01GEL.2021001T213113.v1.5.B04.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T01GEL.2021001T213113.v1.5.B04.tif\"\n          },\n          \"SZA\": {\n            \"title\": \"Download HLS.L30.T01GEL.2021001T213113.v1.5.SZA.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T01GEL.2021001T213113.v1.5.SZA.tif\"\n          },\n          \"B10\": {\n            \"title\": \"Download HLS.L30.T01GEL.2021001T213113.v1.5.B10.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T01GEL.2021001T213113.v1.5.B10.tif\"\n          },\n          \"B01\": {\n            \"title\": \"Download HLS.L30.T01GEL.2021001T213113.v1.5.B01.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T01GEL.2021001T213113.v1.5.B01.tif\"\n          },\n          \"Fmask\": {\n            \"title\": \"Download HLS.L30.T01GEL.2021001T213113.v1.5.Fmask.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T01GEL.2021001T213113.v1.5.Fmask.tif\"\n          },\n          \"B02\": {\n            \"title\": \"Download HLS.L30.T01GEL.2021001T213113.v1.5.B02.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T01GEL.2021001T213113.v1.5.B02.tif\"\n          },\n          \"browse\": {\n            \"title\": \"Download HLS.L30.T01GEL.2021001T213113.v1.5.jpg\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-public/HLSL30.015/HLS.L30.T01GEL.2021001T213113.v1.5.jpg\",\n            \"type\": \"image/jpeg\"\n          },\n          \"metadata\": {\n            \"href\": \"https://cmr.earthdata.nasa.gov/search/concepts/G1994512890-LPCLOUD.xml\",\n            \"type\": \"application/xml\"\n          }\n        }\n      },\n      {\n        \"type\": \"Feature\",\n        \"id\": \"G1996013881-LPCLOUD\",\n        \"stac_version\": \"1.0.0-rc.4\",\n        \"stac_extensions\": [\n          \"https://stac-extensions.github.io/eo/v1.1.0/schema.json\"\n        ],\n        \"collection\": \"HLSL30.v1.5\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                -167.8646796,\n                53.1198806\n              ],\n              [\n                -167.8111953,\n                53.8385095\n              ],\n              [\n                -169.470024,\n                54.1186972\n              ],\n              [\n                -169.5046204,\n                53.1517855\n              ],\n              [\n                -167.8646796,\n                53.1198806\n              ]\n            ]\n          ]\n        },\n        \"bbox\": [\n          -169.50462,\n          53.119881,\n          -167.811195,\n          54.118697\n        ],\n        \"links\": [\n          {\n            \"rel\": \"self\",\n            \"href\": \"https://cmr.earthdata.nasa.gov/stac/LPCLOUD/collections/HLSL30.v1.5/items/G1996013881-LPCLOUD\"\n          },\n          {\n            \"rel\": \"parent\",\n            \"href\": \"https://cmr.earthdata.nasa.gov/stac/LPCLOUD/collections/HLSL30.v1.5\"\n          },\n          {\n            \"rel\": \"collection\",\n            \"href\": \"https://cmr.earthdata.nasa.gov/stac/LPCLOUD/collections/HLSL30.v1.5\"\n          },\n          {\n            \"rel\": \"root\",\n            \"href\": \"https://cmr.earthdata.nasa.gov/stac/\"\n          },\n          {\n            \"rel\": \"provider\",\n            \"href\": \"https://cmr.earthdata.nasa.gov/stac/LPCLOUD\"\n          },\n          {\n            \"rel\": \"via\",\n            \"href\": \"https://cmr.earthdata.nasa.gov/search/concepts/G1996013881-LPCLOUD.json\"\n          },\n          {\n            \"rel\": \"via\",\n            \"href\": \"https://cmr.earthdata.nasa.gov/search/concepts/G1996013881-LPCLOUD.umm_json\"\n          }\n        ],\n        \"properties\": {\n          \"datetime\": \"2021-01-14T22:12:00.265Z\",\n          \"start_datetime\": \"2021-01-14T22:12:00.265Z\",\n          \"end_datetime\": \"2021-01-14T22:12:00.265Z\",\n          \"eo:cloud_cover\": 69\n        },\n        \"assets\": {\n          \"VZA\": {\n            \"title\": \"Download HLS.L30.T02UPE.2021014T221200.v1.5.VZA.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UPE.2021014T221200.v1.5.VZA.tif\"\n          },\n          \"B02\": {\n            \"title\": \"Download HLS.L30.T02UPE.2021014T221200.v1.5.B02.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UPE.2021014T221200.v1.5.B02.tif\"\n          },\n          \"B01\": {\n            \"title\": \"Download HLS.L30.T02UPE.2021014T221200.v1.5.B01.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UPE.2021014T221200.v1.5.B01.tif\"\n          },\n          \"SAA\": {\n            \"title\": \"Download HLS.L30.T02UPE.2021014T221200.v1.5.SAA.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UPE.2021014T221200.v1.5.SAA.tif\"\n          },\n          \"Fmask\": {\n            \"title\": \"Download HLS.L30.T02UPE.2021014T221200.v1.5.Fmask.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UPE.2021014T221200.v1.5.Fmask.tif\"\n          },\n          \"B07\": {\n            \"title\": \"Download HLS.L30.T02UPE.2021014T221200.v1.5.B07.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UPE.2021014T221200.v1.5.B07.tif\"\n          },\n          \"B04\": {\n            \"title\": \"Download HLS.L30.T02UPE.2021014T221200.v1.5.B04.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UPE.2021014T221200.v1.5.B04.tif\"\n          },\n          \"B10\": {\n            \"title\": \"Download HLS.L30.T02UPE.2021014T221200.v1.5.B10.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UPE.2021014T221200.v1.5.B10.tif\"\n          },\n          \"B05\": {\n            \"title\": \"Download HLS.L30.T02UPE.2021014T221200.v1.5.B05.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UPE.2021014T221200.v1.5.B05.tif\"\n          },\n          \"SZA\": {\n            \"title\": \"Download HLS.L30.T02UPE.2021014T221200.v1.5.SZA.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UPE.2021014T221200.v1.5.SZA.tif\"\n          },\n          \"B03\": {\n            \"title\": \"Download HLS.L30.T02UPE.2021014T221200.v1.5.B03.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UPE.2021014T221200.v1.5.B03.tif\"\n          },\n          \"B11\": {\n            \"title\": \"Download HLS.L30.T02UPE.2021014T221200.v1.5.B11.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UPE.2021014T221200.v1.5.B11.tif\"\n          },\n          \"VAA\": {\n            \"title\": \"Download HLS.L30.T02UPE.2021014T221200.v1.5.VAA.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UPE.2021014T221200.v1.5.VAA.tif\"\n          },\n          \"B06\": {\n            \"title\": \"Download HLS.L30.T02UPE.2021014T221200.v1.5.B06.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UPE.2021014T221200.v1.5.B06.tif\"\n          },\n          \"B09\": {\n            \"title\": \"Download HLS.L30.T02UPE.2021014T221200.v1.5.B09.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UPE.2021014T221200.v1.5.B09.tif\"\n          },\n          \"browse\": {\n            \"title\": \"Download HLS.L30.T02UPE.2021014T221200.v1.5.jpg\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-public/HLSL30.015/HLS.L30.T02UPE.2021014T221200.v1.5.jpg\",\n            \"type\": \"image/jpeg\"\n          },\n          \"metadata\": {\n            \"href\": \"https://cmr.earthdata.nasa.gov/search/concepts/G1996013881-LPCLOUD.xml\",\n            \"type\": \"application/xml\"\n          }\n        }\n      },\n      {\n        \"type\": \"Feature\",\n        \"id\": \"G1996014088-LPCLOUD\",\n        \"stac_version\": \"1.0.0-rc.4\",\n        \"stac_extensions\": [\n          \"https://stac-extensions.github.io/eo/v1.1.0/schema.json\"\n        ],\n        \"collection\": \"HLSL30.v1.5\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                -169.3906805,\n                52.2825976\n              ],\n              [\n                -169.355952,\n                53.238289\n              ],\n              [\n                -170.2256392,\n                53.2471116\n              ],\n              [\n                -170.5607883,\n                52.47777\n              ],\n              [\n                -169.3906805,\n                52.2825976\n              ]\n            ]\n          ]\n        },\n        \"bbox\": [\n          -170.560788,\n          52.282598,\n          -169.355952,\n          53.247112\n        ],\n        \"links\": [\n          {\n            \"rel\": \"self\",\n            \"href\": \"https://cmr.earthdata.nasa.gov/stac/LPCLOUD/collections/HLSL30.v1.5/items/G1996014088-LPCLOUD\"\n          },\n          {\n            \"rel\": \"parent\",\n            \"href\": \"https://cmr.earthdata.nasa.gov/stac/LPCLOUD/collections/HLSL30.v1.5\"\n          },\n          {\n            \"rel\": \"collection\",\n            \"href\": \"https://cmr.earthdata.nasa.gov/stac/LPCLOUD/collections/HLSL30.v1.5\"\n          },\n          {\n            \"rel\": \"root\",\n            \"href\": \"https://cmr.earthdata.nasa.gov/stac/\"\n          },\n          {\n            \"rel\": \"provider\",\n            \"href\": \"https://cmr.earthdata.nasa.gov/stac/LPCLOUD\"\n          },\n          {\n            \"rel\": \"via\",\n            \"href\": \"https://cmr.earthdata.nasa.gov/search/concepts/G1996014088-LPCLOUD.json\"\n          },\n          {\n            \"rel\": \"via\",\n            \"href\": \"https://cmr.earthdata.nasa.gov/search/concepts/G1996014088-LPCLOUD.umm_json\"\n          }\n        ],\n        \"properties\": {\n          \"datetime\": \"2021-01-14T22:12:00.265Z\",\n          \"start_datetime\": \"2021-01-14T22:12:00.265Z\",\n          \"end_datetime\": \"2021-01-14T22:12:00.265Z\",\n          \"eo:cloud_cover\": 58\n        },\n        \"assets\": {\n          \"VAA\": {\n            \"title\": \"Download HLS.L30.T02UND.2021014T221200.v1.5.VAA.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UND.2021014T221200.v1.5.VAA.tif\"\n          },\n          \"B02\": {\n            \"title\": \"Download HLS.L30.T02UND.2021014T221200.v1.5.B02.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UND.2021014T221200.v1.5.B02.tif\"\n          },\n          \"SZA\": {\n            \"title\": \"Download HLS.L30.T02UND.2021014T221200.v1.5.SZA.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UND.2021014T221200.v1.5.SZA.tif\"\n          },\n          \"B10\": {\n            \"title\": \"Download HLS.L30.T02UND.2021014T221200.v1.5.B10.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UND.2021014T221200.v1.5.B10.tif\"\n          },\n          \"B04\": {\n            \"title\": \"Download HLS.L30.T02UND.2021014T221200.v1.5.B04.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UND.2021014T221200.v1.5.B04.tif\"\n          },\n          \"B05\": {\n            \"title\": \"Download HLS.L30.T02UND.2021014T221200.v1.5.B05.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UND.2021014T221200.v1.5.B05.tif\"\n          },\n          \"VZA\": {\n            \"title\": \"Download HLS.L30.T02UND.2021014T221200.v1.5.VZA.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UND.2021014T221200.v1.5.VZA.tif\"\n          },\n          \"B11\": {\n            \"title\": \"Download HLS.L30.T02UND.2021014T221200.v1.5.B11.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UND.2021014T221200.v1.5.B11.tif\"\n          },\n          \"B06\": {\n            \"title\": \"Download HLS.L30.T02UND.2021014T221200.v1.5.B06.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UND.2021014T221200.v1.5.B06.tif\"\n          },\n          \"B01\": {\n            \"title\": \"Download HLS.L30.T02UND.2021014T221200.v1.5.B01.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UND.2021014T221200.v1.5.B01.tif\"\n          },\n          \"Fmask\": {\n            \"title\": \"Download HLS.L30.T02UND.2021014T221200.v1.5.Fmask.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UND.2021014T221200.v1.5.Fmask.tif\"\n          },\n          \"SAA\": {\n            \"title\": \"Download HLS.L30.T02UND.2021014T221200.v1.5.SAA.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UND.2021014T221200.v1.5.SAA.tif\"\n          },\n          \"B03\": {\n            \"title\": \"Download HLS.L30.T02UND.2021014T221200.v1.5.B03.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UND.2021014T221200.v1.5.B03.tif\"\n          },\n          \"B07\": {\n            \"title\": \"Download HLS.L30.T02UND.2021014T221200.v1.5.B07.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UND.2021014T221200.v1.5.B07.tif\"\n          },\n          \"B09\": {\n            \"title\": \"Download HLS.L30.T02UND.2021014T221200.v1.5.B09.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UND.2021014T221200.v1.5.B09.tif\"\n          },\n          \"browse\": {\n            \"title\": \"Download HLS.L30.T02UND.2021014T221200.v1.5.jpg\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-public/HLSL30.015/HLS.L30.T02UND.2021014T221200.v1.5.jpg\",\n            \"type\": \"image/jpeg\"\n          },\n          \"metadata\": {\n            \"href\": \"https://cmr.earthdata.nasa.gov/search/concepts/G1996014088-LPCLOUD.xml\",\n            \"type\": \"application/xml\"\n          }\n        }\n      },\n      {\n        \"type\": \"Feature\",\n        \"id\": \"G1996014249-LPCLOUD\",\n        \"stac_version\": \"1.0.0-rc.4\",\n        \"stac_extensions\": [\n          \"https://stac-extensions.github.io/eo/v1.1.0/schema.json\"\n        ],\n        \"collection\": \"HLSL30.v1.5\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                -167.9890892,\n                53.123645\n              ],\n              [\n                -167.3647298,\n                53.1376912\n              ],\n              [\n                -167.0709527,\n                53.7047108\n              ],\n              [\n                -168.0427467,\n                53.8789932\n              ],\n              [\n                -167.9890892,\n                53.123645\n              ]\n            ]\n          ]\n        },\n        \"bbox\": [\n          -168.042747,\n          53.123645,\n          -167.070953,\n          53.878993\n        ],\n        \"links\": [\n          {\n            \"rel\": \"self\",\n            \"href\": \"https://cmr.earthdata.nasa.gov/stac/LPCLOUD/collections/HLSL30.v1.5/items/G1996014249-LPCLOUD\"\n          },\n          {\n            \"rel\": \"parent\",\n            \"href\": \"https://cmr.earthdata.nasa.gov/stac/LPCLOUD/collections/HLSL30.v1.5\"\n          },\n          {\n            \"rel\": \"collection\",\n            \"href\": \"https://cmr.earthdata.nasa.gov/stac/LPCLOUD/collections/HLSL30.v1.5\"\n          },\n          {\n            \"rel\": \"root\",\n            \"href\": \"https://cmr.earthdata.nasa.gov/stac/\"\n          },\n          {\n            \"rel\": \"provider\",\n            \"href\": \"https://cmr.earthdata.nasa.gov/stac/LPCLOUD\"\n          },\n          {\n            \"rel\": \"via\",\n            \"href\": \"https://cmr.earthdata.nasa.gov/search/concepts/G1996014249-LPCLOUD.json\"\n          },\n          {\n            \"rel\": \"via\",\n            \"href\": \"https://cmr.earthdata.nasa.gov/search/concepts/G1996014249-LPCLOUD.umm_json\"\n          }\n        ],\n        \"properties\": {\n          \"datetime\": \"2021-01-14T22:12:00.265Z\",\n          \"start_datetime\": \"2021-01-14T22:12:00.265Z\",\n          \"end_datetime\": \"2021-01-14T22:12:00.265Z\",\n          \"eo:cloud_cover\": 58\n        },\n        \"assets\": {\n          \"B07\": {\n            \"title\": \"Download HLS.L30.T03UUV.2021014T221200.v1.5.B07.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T03UUV.2021014T221200.v1.5.B07.tif\"\n          },\n          \"B09\": {\n            \"title\": \"Download HLS.L30.T03UUV.2021014T221200.v1.5.B09.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T03UUV.2021014T221200.v1.5.B09.tif\"\n          },\n          \"B06\": {\n            \"title\": \"Download HLS.L30.T03UUV.2021014T221200.v1.5.B06.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T03UUV.2021014T221200.v1.5.B06.tif\"\n          },\n          \"B01\": {\n            \"title\": \"Download HLS.L30.T03UUV.2021014T221200.v1.5.B01.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T03UUV.2021014T221200.v1.5.B01.tif\"\n          },\n          \"B05\": {\n            \"title\": \"Download HLS.L30.T03UUV.2021014T221200.v1.5.B05.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T03UUV.2021014T221200.v1.5.B05.tif\"\n          },\n          \"B02\": {\n            \"title\": \"Download HLS.L30.T03UUV.2021014T221200.v1.5.B02.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T03UUV.2021014T221200.v1.5.B02.tif\"\n          },\n          \"B03\": {\n            \"title\": \"Download HLS.L30.T03UUV.2021014T221200.v1.5.B03.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T03UUV.2021014T221200.v1.5.B03.tif\"\n          },\n          \"B10\": {\n            \"title\": \"Download HLS.L30.T03UUV.2021014T221200.v1.5.B10.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T03UUV.2021014T221200.v1.5.B10.tif\"\n          },\n          \"VAA\": {\n            \"title\": \"Download HLS.L30.T03UUV.2021014T221200.v1.5.VAA.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T03UUV.2021014T221200.v1.5.VAA.tif\"\n          },\n          \"SAA\": {\n            \"title\": \"Download HLS.L30.T03UUV.2021014T221200.v1.5.SAA.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T03UUV.2021014T221200.v1.5.SAA.tif\"\n          },\n          \"VZA\": {\n            \"title\": \"Download HLS.L30.T03UUV.2021014T221200.v1.5.VZA.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T03UUV.2021014T221200.v1.5.VZA.tif\"\n          },\n          \"Fmask\": {\n            \"title\": \"Download HLS.L30.T03UUV.2021014T221200.v1.5.Fmask.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T03UUV.2021014T221200.v1.5.Fmask.tif\"\n          },\n          \"B04\": {\n            \"title\": \"Download HLS.L30.T03UUV.2021014T221200.v1.5.B04.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T03UUV.2021014T221200.v1.5.B04.tif\"\n          },\n          \"B11\": {\n            \"title\": \"Download HLS.L30.T03UUV.2021014T221200.v1.5.B11.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T03UUV.2021014T221200.v1.5.B11.tif\"\n          },\n          \"SZA\": {\n            \"title\": \"Download HLS.L30.T03UUV.2021014T221200.v1.5.SZA.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T03UUV.2021014T221200.v1.5.SZA.tif\"\n          },\n          \"browse\": {\n            \"title\": \"Download HLS.L30.T03UUV.2021014T221200.v1.5.jpg\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-public/HLSL30.015/HLS.L30.T03UUV.2021014T221200.v1.5.jpg\",\n            \"type\": \"image/jpeg\"\n          },\n          \"metadata\": {\n            \"href\": \"https://cmr.earthdata.nasa.gov/search/concepts/G1996014249-LPCLOUD.xml\",\n            \"type\": \"application/xml\"\n          }\n        }\n      },\n      {\n        \"type\": \"Feature\",\n        \"id\": \"G1996014444-LPCLOUD\",\n        \"stac_version\": \"1.0.0-rc.4\",\n        \"stac_extensions\": [\n          \"https://stac-extensions.github.io/eo/v1.1.0/schema.json\"\n        ],\n        \"collection\": \"HLSL30.v1.5\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                -167.3814687,\n                53.1061588\n              ],\n              [\n                -167.0710293,\n                53.7048111\n              ],\n              [\n                -167.9589168,\n                53.8644684\n              ],\n              [\n                -168.0115077,\n                53.12366\n              ],\n              [\n                -167.3814687,\n                53.1061588\n              ]\n            ]\n          ]\n        },\n        \"bbox\": [\n          -168.011508,\n          53.106159,\n          -167.071029,\n          53.864468\n        ],\n        \"links\": [\n          {\n            \"rel\": \"self\",\n            \"href\": \"https://cmr.earthdata.nasa.gov/stac/LPCLOUD/collections/HLSL30.v1.5/items/G1996014444-LPCLOUD\"\n          },\n          {\n            \"rel\": \"parent\",\n            \"href\": \"https://cmr.earthdata.nasa.gov/stac/LPCLOUD/collections/HLSL30.v1.5\"\n          },\n          {\n            \"rel\": \"collection\",\n            \"href\": \"https://cmr.earthdata.nasa.gov/stac/LPCLOUD/collections/HLSL30.v1.5\"\n          },\n          {\n            \"rel\": \"root\",\n            \"href\": \"https://cmr.earthdata.nasa.gov/stac/\"\n          },\n          {\n            \"rel\": \"provider\",\n            \"href\": \"https://cmr.earthdata.nasa.gov/stac/LPCLOUD\"\n          },\n          {\n            \"rel\": \"via\",\n            \"href\": \"https://cmr.earthdata.nasa.gov/search/concepts/G1996014444-LPCLOUD.json\"\n          },\n          {\n            \"rel\": \"via\",\n            \"href\": \"https://cmr.earthdata.nasa.gov/search/concepts/G1996014444-LPCLOUD.umm_json\"\n          }\n        ],\n        \"properties\": {\n          \"datetime\": \"2021-01-14T22:12:00.265Z\",\n          \"start_datetime\": \"2021-01-14T22:12:00.265Z\",\n          \"end_datetime\": \"2021-01-14T22:12:00.265Z\",\n          \"eo:cloud_cover\": 55\n        },\n        \"assets\": {\n          \"B07\": {\n            \"title\": \"Download HLS.L30.T02UQE.2021014T221200.v1.5.B07.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UQE.2021014T221200.v1.5.B07.tif\"\n          },\n          \"B03\": {\n            \"title\": \"Download HLS.L30.T02UQE.2021014T221200.v1.5.B03.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UQE.2021014T221200.v1.5.B03.tif\"\n          },\n          \"VAA\": {\n            \"title\": \"Download HLS.L30.T02UQE.2021014T221200.v1.5.VAA.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UQE.2021014T221200.v1.5.VAA.tif\"\n          },\n          \"VZA\": {\n            \"title\": \"Download HLS.L30.T02UQE.2021014T221200.v1.5.VZA.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UQE.2021014T221200.v1.5.VZA.tif\"\n          },\n          \"B02\": {\n            \"title\": \"Download HLS.L30.T02UQE.2021014T221200.v1.5.B02.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UQE.2021014T221200.v1.5.B02.tif\"\n          },\n          \"B06\": {\n            \"title\": \"Download HLS.L30.T02UQE.2021014T221200.v1.5.B06.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UQE.2021014T221200.v1.5.B06.tif\"\n          },\n          \"SZA\": {\n            \"title\": \"Download HLS.L30.T02UQE.2021014T221200.v1.5.SZA.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UQE.2021014T221200.v1.5.SZA.tif\"\n          },\n          \"B05\": {\n            \"title\": \"Download HLS.L30.T02UQE.2021014T221200.v1.5.B05.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UQE.2021014T221200.v1.5.B05.tif\"\n          },\n          \"SAA\": {\n            \"title\": \"Download HLS.L30.T02UQE.2021014T221200.v1.5.SAA.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UQE.2021014T221200.v1.5.SAA.tif\"\n          },\n          \"B11\": {\n            \"title\": \"Download HLS.L30.T02UQE.2021014T221200.v1.5.B11.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UQE.2021014T221200.v1.5.B11.tif\"\n          },\n          \"B01\": {\n            \"title\": \"Download HLS.L30.T02UQE.2021014T221200.v1.5.B01.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UQE.2021014T221200.v1.5.B01.tif\"\n          },\n          \"B09\": {\n            \"title\": \"Download HLS.L30.T02UQE.2021014T221200.v1.5.B09.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UQE.2021014T221200.v1.5.B09.tif\"\n          },\n          \"B04\": {\n            \"title\": \"Download HLS.L30.T02UQE.2021014T221200.v1.5.B04.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UQE.2021014T221200.v1.5.B04.tif\"\n          },\n          \"Fmask\": {\n            \"title\": \"Download HLS.L30.T02UQE.2021014T221200.v1.5.Fmask.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UQE.2021014T221200.v1.5.Fmask.tif\"\n          },\n          \"B10\": {\n            \"title\": \"Download HLS.L30.T02UQE.2021014T221200.v1.5.B10.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UQE.2021014T221200.v1.5.B10.tif\"\n          },\n          \"browse\": {\n            \"title\": \"Download HLS.L30.T02UQE.2021014T221200.v1.5.jpg\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-public/HLSL30.015/HLS.L30.T02UQE.2021014T221200.v1.5.jpg\",\n            \"type\": \"image/jpeg\"\n          },\n          \"metadata\": {\n            \"href\": \"https://cmr.earthdata.nasa.gov/search/concepts/G1996014444-LPCLOUD.xml\",\n            \"type\": \"application/xml\"\n          }\n        }\n      },\n      {\n        \"type\": \"Feature\",\n        \"id\": \"G1996014471-LPCLOUD\",\n        \"stac_version\": \"1.0.0-rc.4\",\n        \"stac_extensions\": [\n          \"https://stac-extensions.github.io/eo/v1.1.0/schema.json\"\n        ],\n        \"collection\": \"HLSL30.v1.5\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                -167.9283215,\n                52.222566\n              ],\n              [\n                -167.8582301,\n                53.2082014\n              ],\n              [\n                -169.5015396,\n                53.2402084\n              ],\n              [\n                -169.5332578,\n                52.3068431\n              ],\n              [\n                -169.1958954,\n                52.2487605\n              ],\n              [\n                -167.9283215,\n                52.222566\n              ]\n            ]\n          ]\n        },\n        \"bbox\": [\n          -169.533258,\n          52.222566,\n          -167.85823,\n          53.240208\n        ],\n        \"links\": [\n          {\n            \"rel\": \"self\",\n            \"href\": \"https://cmr.earthdata.nasa.gov/stac/LPCLOUD/collections/HLSL30.v1.5/items/G1996014471-LPCLOUD\"\n          },\n          {\n            \"rel\": \"parent\",\n            \"href\": \"https://cmr.earthdata.nasa.gov/stac/LPCLOUD/collections/HLSL30.v1.5\"\n          },\n          {\n            \"rel\": \"collection\",\n            \"href\": \"https://cmr.earthdata.nasa.gov/stac/LPCLOUD/collections/HLSL30.v1.5\"\n          },\n          {\n            \"rel\": \"root\",\n            \"href\": \"https://cmr.earthdata.nasa.gov/stac/\"\n          },\n          {\n            \"rel\": \"provider\",\n            \"href\": \"https://cmr.earthdata.nasa.gov/stac/LPCLOUD\"\n          },\n          {\n            \"rel\": \"via\",\n            \"href\": \"https://cmr.earthdata.nasa.gov/search/concepts/G1996014471-LPCLOUD.json\"\n          },\n          {\n            \"rel\": \"via\",\n            \"href\": \"https://cmr.earthdata.nasa.gov/search/concepts/G1996014471-LPCLOUD.umm_json\"\n          }\n        ],\n        \"properties\": {\n          \"datetime\": \"2021-01-14T22:12:00.265Z\",\n          \"start_datetime\": \"2021-01-14T22:12:00.265Z\",\n          \"end_datetime\": \"2021-01-14T22:12:00.265Z\",\n          \"eo:cloud_cover\": 37\n        },\n        \"assets\": {\n          \"VAA\": {\n            \"title\": \"Download HLS.L30.T02UPD.2021014T221200.v1.5.VAA.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UPD.2021014T221200.v1.5.VAA.tif\"\n          },\n          \"B04\": {\n            \"title\": \"Download HLS.L30.T02UPD.2021014T221200.v1.5.B04.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UPD.2021014T221200.v1.5.B04.tif\"\n          },\n          \"VZA\": {\n            \"title\": \"Download HLS.L30.T02UPD.2021014T221200.v1.5.VZA.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UPD.2021014T221200.v1.5.VZA.tif\"\n          },\n          \"B09\": {\n            \"title\": \"Download HLS.L30.T02UPD.2021014T221200.v1.5.B09.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UPD.2021014T221200.v1.5.B09.tif\"\n          },\n          \"SZA\": {\n            \"title\": \"Download HLS.L30.T02UPD.2021014T221200.v1.5.SZA.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UPD.2021014T221200.v1.5.SZA.tif\"\n          },\n          \"B02\": {\n            \"title\": \"Download HLS.L30.T02UPD.2021014T221200.v1.5.B02.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UPD.2021014T221200.v1.5.B02.tif\"\n          },\n          \"SAA\": {\n            \"title\": \"Download HLS.L30.T02UPD.2021014T221200.v1.5.SAA.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UPD.2021014T221200.v1.5.SAA.tif\"\n          },\n          \"B01\": {\n            \"title\": \"Download HLS.L30.T02UPD.2021014T221200.v1.5.B01.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UPD.2021014T221200.v1.5.B01.tif\"\n          },\n          \"B10\": {\n            \"title\": \"Download HLS.L30.T02UPD.2021014T221200.v1.5.B10.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UPD.2021014T221200.v1.5.B10.tif\"\n          },\n          \"B03\": {\n            \"title\": \"Download HLS.L30.T02UPD.2021014T221200.v1.5.B03.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UPD.2021014T221200.v1.5.B03.tif\"\n          },\n          \"B11\": {\n            \"title\": \"Download HLS.L30.T02UPD.2021014T221200.v1.5.B11.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UPD.2021014T221200.v1.5.B11.tif\"\n          },\n          \"B05\": {\n            \"title\": \"Download HLS.L30.T02UPD.2021014T221200.v1.5.B05.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UPD.2021014T221200.v1.5.B05.tif\"\n          },\n          \"B06\": {\n            \"title\": \"Download HLS.L30.T02UPD.2021014T221200.v1.5.B06.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UPD.2021014T221200.v1.5.B06.tif\"\n          },\n          \"B07\": {\n            \"title\": \"Download HLS.L30.T02UPD.2021014T221200.v1.5.B07.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UPD.2021014T221200.v1.5.B07.tif\"\n          },\n          \"Fmask\": {\n            \"title\": \"Download HLS.L30.T02UPD.2021014T221200.v1.5.Fmask.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UPD.2021014T221200.v1.5.Fmask.tif\"\n          },\n          \"browse\": {\n            \"title\": \"Download HLS.L30.T02UPD.2021014T221200.v1.5.jpg\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-public/HLSL30.015/HLS.L30.T02UPD.2021014T221200.v1.5.jpg\",\n            \"type\": \"image/jpeg\"\n          },\n          \"metadata\": {\n            \"href\": \"https://cmr.earthdata.nasa.gov/search/concepts/G1996014471-LPCLOUD.xml\",\n            \"type\": \"application/xml\"\n          }\n        }\n      },\n      {\n        \"type\": \"Feature\",\n        \"id\": \"G1994877008-LPCLOUD\",\n        \"stac_version\": \"1.0.0-rc.4\",\n        \"stac_extensions\": [\n          \"https://stac-extensions.github.io/eo/v1.1.0/schema.json\"\n        ],\n        \"collection\": \"HLSL30.v1.5\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                -178.2128449,\n                27.9318071\n              ],\n              [\n                -177.9168097,\n                27.9340963\n              ],\n              [\n                -177.9253908,\n                28.9251026\n              ],\n              [\n                -177.9690904,\n                28.9247951\n              ],\n              [\n                -178.2128449,\n                27.9318071\n              ]\n            ]\n          ]\n        },\n        \"bbox\": [\n          -178.212845,\n          27.931807,\n          -177.91681,\n          28.925103\n        ],\n        \"links\": [\n          {\n            \"rel\": \"self\",\n            \"href\": \"https://cmr.earthdata.nasa.gov/stac/LPCLOUD/collections/HLSL30.v1.5/items/G1994877008-LPCLOUD\"\n          },\n          {\n            \"rel\": \"parent\",\n            \"href\": \"https://cmr.earthdata.nasa.gov/stac/LPCLOUD/collections/HLSL30.v1.5\"\n          },\n          {\n            \"rel\": \"collection\",\n            \"href\": \"https://cmr.earthdata.nasa.gov/stac/LPCLOUD/collections/HLSL30.v1.5\"\n          },\n          {\n            \"rel\": \"root\",\n            \"href\": \"https://cmr.earthdata.nasa.gov/stac/\"\n          },\n          {\n            \"rel\": \"provider\",\n            \"href\": \"https://cmr.earthdata.nasa.gov/stac/LPCLOUD\"\n          },\n          {\n            \"rel\": \"via\",\n            \"href\": \"https://cmr.earthdata.nasa.gov/search/concepts/G1994877008-LPCLOUD.json\"\n          },\n          {\n            \"rel\": \"via\",\n            \"href\": \"https://cmr.earthdata.nasa.gov/search/concepts/G1994877008-LPCLOUD.umm_json\"\n          }\n        ],\n        \"properties\": {\n          \"datetime\": \"2021-01-14T22:18:46.319Z\",\n          \"start_datetime\": \"2021-01-14T22:18:46.319Z\",\n          \"end_datetime\": \"2021-01-14T22:19:10.219Z\",\n          \"eo:cloud_cover\": 41\n        },\n        \"assets\": {\n          \"B07\": {\n            \"title\": \"Download HLS.L30.T01RCM.2021014T221846.v1.5.B07.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T01RCM.2021014T221846.v1.5.B07.tif\"\n          },\n          \"B04\": {\n            \"title\": \"Download HLS.L30.T01RCM.2021014T221846.v1.5.B04.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T01RCM.2021014T221846.v1.5.B04.tif\"\n          },\n          \"B02\": {\n            \"title\": \"Download HLS.L30.T01RCM.2021014T221846.v1.5.B02.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T01RCM.2021014T221846.v1.5.B02.tif\"\n          },\n          \"B10\": {\n            \"title\": \"Download HLS.L30.T01RCM.2021014T221846.v1.5.B10.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T01RCM.2021014T221846.v1.5.B10.tif\"\n          },\n          \"SZA\": {\n            \"title\": \"Download HLS.L30.T01RCM.2021014T221846.v1.5.SZA.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T01RCM.2021014T221846.v1.5.SZA.tif\"\n          },\n          \"VZA\": {\n            \"title\": \"Download HLS.L30.T01RCM.2021014T221846.v1.5.VZA.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T01RCM.2021014T221846.v1.5.VZA.tif\"\n          },\n          \"Fmask\": {\n            \"title\": \"Download HLS.L30.T01RCM.2021014T221846.v1.5.Fmask.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T01RCM.2021014T221846.v1.5.Fmask.tif\"\n          },\n          \"SAA\": {\n            \"title\": \"Download HLS.L30.T01RCM.2021014T221846.v1.5.SAA.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T01RCM.2021014T221846.v1.5.SAA.tif\"\n          },\n          \"B05\": {\n            \"title\": \"Download HLS.L30.T01RCM.2021014T221846.v1.5.B05.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T01RCM.2021014T221846.v1.5.B05.tif\"\n          },\n          \"B01\": {\n            \"title\": \"Download HLS.L30.T01RCM.2021014T221846.v1.5.B01.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T01RCM.2021014T221846.v1.5.B01.tif\"\n          },\n          \"VAA\": {\n            \"title\": \"Download HLS.L30.T01RCM.2021014T221846.v1.5.VAA.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T01RCM.2021014T221846.v1.5.VAA.tif\"\n          },\n          \"B09\": {\n            \"title\": \"Download HLS.L30.T01RCM.2021014T221846.v1.5.B09.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T01RCM.2021014T221846.v1.5.B09.tif\"\n          },\n          \"B11\": {\n            \"title\": \"Download HLS.L30.T01RCM.2021014T221846.v1.5.B11.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T01RCM.2021014T221846.v1.5.B11.tif\"\n          },\n          \"B03\": {\n            \"title\": \"Download HLS.L30.T01RCM.2021014T221846.v1.5.B03.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T01RCM.2021014T221846.v1.5.B03.tif\"\n          },\n          \"B06\": {\n            \"title\": \"Download HLS.L30.T01RCM.2021014T221846.v1.5.B06.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T01RCM.2021014T221846.v1.5.B06.tif\"\n          },\n          \"browse\": {\n            \"title\": \"Download HLS.L30.T01RCM.2021014T221846.v1.5.jpg\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-public/HLSL30.015/HLS.L30.T01RCM.2021014T221846.v1.5.jpg\",\n            \"type\": \"image/jpeg\"\n          },\n          \"metadata\": {\n            \"href\": \"https://cmr.earthdata.nasa.gov/search/concepts/G1994877008-LPCLOUD.xml\",\n            \"type\": \"application/xml\"\n          }\n        }\n      },\n      {\n        \"type\": \"Feature\",\n        \"id\": \"G1994877369-LPCLOUD\",\n        \"stac_version\": \"1.0.0-rc.4\",\n        \"stac_extensions\": [\n          \"https://stac-extensions.github.io/eo/v1.1.0/schema.json\"\n        ],\n        \"collection\": \"HLSL30.v1.5\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                -178.0168131,\n                27.9333942\n              ],\n              [\n                -176.9007924,\n                27.9371126\n              ],\n              [\n                -176.8998637,\n                28.9282455\n              ],\n              [\n                -177.9690904,\n                28.9247951\n              ],\n              [\n                -178.0241477,\n                28.7015494\n              ],\n              [\n                -178.0168131,\n                27.9333942\n              ]\n            ]\n          ]\n        },\n        \"bbox\": [\n          -178.024148,\n          27.933394,\n          -176.899864,\n          28.928281\n        ],\n        \"links\": [\n          {\n            \"rel\": \"self\",\n            \"href\": \"https://cmr.earthdata.nasa.gov/stac/LPCLOUD/collections/HLSL30.v1.5/items/G1994877369-LPCLOUD\"\n          },\n          {\n            \"rel\": \"parent\",\n            \"href\": \"https://cmr.earthdata.nasa.gov/stac/LPCLOUD/collections/HLSL30.v1.5\"\n          },\n          {\n            \"rel\": \"collection\",\n            \"href\": \"https://cmr.earthdata.nasa.gov/stac/LPCLOUD/collections/HLSL30.v1.5\"\n          },\n          {\n            \"rel\": \"root\",\n            \"href\": \"https://cmr.earthdata.nasa.gov/stac/\"\n          },\n          {\n            \"rel\": \"provider\",\n            \"href\": \"https://cmr.earthdata.nasa.gov/stac/LPCLOUD\"\n          },\n          {\n            \"rel\": \"via\",\n            \"href\": \"https://cmr.earthdata.nasa.gov/search/concepts/G1994877369-LPCLOUD.json\"\n          },\n          {\n            \"rel\": \"via\",\n            \"href\": \"https://cmr.earthdata.nasa.gov/search/concepts/G1994877369-LPCLOUD.umm_json\"\n          }\n        ],\n        \"properties\": {\n          \"datetime\": \"2021-01-14T22:18:46.319Z\",\n          \"start_datetime\": \"2021-01-14T22:18:46.319Z\",\n          \"end_datetime\": \"2021-01-14T22:19:10.219Z\",\n          \"eo:cloud_cover\": 43\n        },\n        \"assets\": {\n          \"B04\": {\n            \"title\": \"Download HLS.L30.T01RDM.2021014T221846.v1.5.B04.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T01RDM.2021014T221846.v1.5.B04.tif\"\n          },\n          \"B09\": {\n            \"title\": \"Download HLS.L30.T01RDM.2021014T221846.v1.5.B09.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T01RDM.2021014T221846.v1.5.B09.tif\"\n          },\n          \"SZA\": {\n            \"title\": \"Download HLS.L30.T01RDM.2021014T221846.v1.5.SZA.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T01RDM.2021014T221846.v1.5.SZA.tif\"\n          },\n          \"B05\": {\n            \"title\": \"Download HLS.L30.T01RDM.2021014T221846.v1.5.B05.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T01RDM.2021014T221846.v1.5.B05.tif\"\n          },\n          \"Fmask\": {\n            \"title\": \"Download HLS.L30.T01RDM.2021014T221846.v1.5.Fmask.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T01RDM.2021014T221846.v1.5.Fmask.tif\"\n          },\n          \"B11\": {\n            \"title\": \"Download HLS.L30.T01RDM.2021014T221846.v1.5.B11.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T01RDM.2021014T221846.v1.5.B11.tif\"\n          },\n          \"VZA\": {\n            \"title\": \"Download HLS.L30.T01RDM.2021014T221846.v1.5.VZA.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T01RDM.2021014T221846.v1.5.VZA.tif\"\n          },\n          \"B03\": {\n            \"title\": \"Download HLS.L30.T01RDM.2021014T221846.v1.5.B03.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T01RDM.2021014T221846.v1.5.B03.tif\"\n          },\n          \"B10\": {\n            \"title\": \"Download HLS.L30.T01RDM.2021014T221846.v1.5.B10.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T01RDM.2021014T221846.v1.5.B10.tif\"\n          },\n          \"B02\": {\n            \"title\": \"Download HLS.L30.T01RDM.2021014T221846.v1.5.B02.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T01RDM.2021014T221846.v1.5.B02.tif\"\n          },\n          \"B07\": {\n            \"title\": \"Download HLS.L30.T01RDM.2021014T221846.v1.5.B07.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T01RDM.2021014T221846.v1.5.B07.tif\"\n          },\n          \"B01\": {\n            \"title\": \"Download HLS.L30.T01RDM.2021014T221846.v1.5.B01.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T01RDM.2021014T221846.v1.5.B01.tif\"\n          },\n          \"VAA\": {\n            \"title\": \"Download HLS.L30.T01RDM.2021014T221846.v1.5.VAA.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T01RDM.2021014T221846.v1.5.VAA.tif\"\n          },\n          \"B06\": {\n            \"title\": \"Download HLS.L30.T01RDM.2021014T221846.v1.5.B06.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T01RDM.2021014T221846.v1.5.B06.tif\"\n          },\n          \"SAA\": {\n            \"title\": \"Download HLS.L30.T01RDM.2021014T221846.v1.5.SAA.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T01RDM.2021014T221846.v1.5.SAA.tif\"\n          },\n          \"browse\": {\n            \"title\": \"Download HLS.L30.T01RDM.2021014T221846.v1.5.jpg\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-public/HLSL30.015/HLS.L30.T01RDM.2021014T221846.v1.5.jpg\",\n            \"type\": \"image/jpeg\"\n          },\n          \"metadata\": {\n            \"href\": \"https://cmr.earthdata.nasa.gov/search/concepts/G1994877369-LPCLOUD.xml\",\n            \"type\": \"application/xml\"\n          }\n        }\n      },\n      {\n        \"type\": \"Feature\",\n        \"id\": \"G1994873598-LPCLOUD\",\n        \"stac_version\": \"1.0.0-rc.4\",\n        \"stac_extensions\": [\n          \"https://stac-extensions.github.io/eo/v1.1.0/schema.json\"\n        ],\n        \"collection\": \"HLSL30.v1.5\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                175.289865,\n                -1.8969072\n              ],\n              [\n                175.2901904,\n                -1.530116\n              ],\n              [\n                175.2899208,\n                -1.5301158\n              ],\n              [\n                175.2124833,\n                -1.8968285\n              ],\n              [\n                175.289865,\n                -1.8969072\n              ]\n            ]\n          ]\n        },\n        \"bbox\": [\n          175.212483,\n          -1.896907,\n          175.29019,\n          -1.530116\n        ],\n        \"links\": [\n          {\n            \"rel\": \"self\",\n            \"href\": \"https://cmr.earthdata.nasa.gov/stac/LPCLOUD/collections/HLSL30.v1.5/items/G1994873598-LPCLOUD\"\n          },\n          {\n            \"rel\": \"parent\",\n            \"href\": \"https://cmr.earthdata.nasa.gov/stac/LPCLOUD/collections/HLSL30.v1.5\"\n          },\n          {\n            \"rel\": \"collection\",\n            \"href\": \"https://cmr.earthdata.nasa.gov/stac/LPCLOUD/collections/HLSL30.v1.5\"\n          },\n          {\n            \"rel\": \"root\",\n            \"href\": \"https://cmr.earthdata.nasa.gov/stac/\"\n          },\n          {\n            \"rel\": \"provider\",\n            \"href\": \"https://cmr.earthdata.nasa.gov/stac/LPCLOUD\"\n          },\n          {\n            \"rel\": \"via\",\n            \"href\": \"https://cmr.earthdata.nasa.gov/search/concepts/G1994873598-LPCLOUD.json\"\n          },\n          {\n            \"rel\": \"via\",\n            \"href\": \"https://cmr.earthdata.nasa.gov/search/concepts/G1994873598-LPCLOUD.umm_json\"\n          }\n        ],\n        \"properties\": {\n          \"datetime\": \"2021-01-14T22:27:08.323Z\",\n          \"start_datetime\": \"2021-01-14T22:27:08.323Z\",\n          \"end_datetime\": \"2021-01-14T22:27:08.323Z\",\n          \"eo:cloud_cover\": 35\n        },\n        \"assets\": {\n          \"B07\": {\n            \"title\": \"Download HLS.L30.T60MTD.2021014T222708.v1.5.B07.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T60MTD.2021014T222708.v1.5.B07.tif\"\n          },\n          \"SZA\": {\n            \"title\": \"Download HLS.L30.T60MTD.2021014T222708.v1.5.SZA.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T60MTD.2021014T222708.v1.5.SZA.tif\"\n          },\n          \"B10\": {\n            \"title\": \"Download HLS.L30.T60MTD.2021014T222708.v1.5.B10.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T60MTD.2021014T222708.v1.5.B10.tif\"\n          },\n          \"VZA\": {\n            \"title\": \"Download HLS.L30.T60MTD.2021014T222708.v1.5.VZA.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T60MTD.2021014T222708.v1.5.VZA.tif\"\n          },\n          \"VAA\": {\n            \"title\": \"Download HLS.L30.T60MTD.2021014T222708.v1.5.VAA.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T60MTD.2021014T222708.v1.5.VAA.tif\"\n          },\n          \"B09\": {\n            \"title\": \"Download HLS.L30.T60MTD.2021014T222708.v1.5.B09.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T60MTD.2021014T222708.v1.5.B09.tif\"\n          },\n          \"B01\": {\n            \"title\": \"Download HLS.L30.T60MTD.2021014T222708.v1.5.B01.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T60MTD.2021014T222708.v1.5.B01.tif\"\n          },\n          \"Fmask\": {\n            \"title\": \"Download HLS.L30.T60MTD.2021014T222708.v1.5.Fmask.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T60MTD.2021014T222708.v1.5.Fmask.tif\"\n          },\n          \"B03\": {\n            \"title\": \"Download HLS.L30.T60MTD.2021014T222708.v1.5.B03.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T60MTD.2021014T222708.v1.5.B03.tif\"\n          },\n          \"SAA\": {\n            \"title\": \"Download HLS.L30.T60MTD.2021014T222708.v1.5.SAA.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T60MTD.2021014T222708.v1.5.SAA.tif\"\n          },\n          \"B02\": {\n            \"title\": \"Download HLS.L30.T60MTD.2021014T222708.v1.5.B02.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T60MTD.2021014T222708.v1.5.B02.tif\"\n          },\n          \"B11\": {\n            \"title\": \"Download HLS.L30.T60MTD.2021014T222708.v1.5.B11.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T60MTD.2021014T222708.v1.5.B11.tif\"\n          },\n          \"B04\": {\n            \"title\": \"Download HLS.L30.T60MTD.2021014T222708.v1.5.B04.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T60MTD.2021014T222708.v1.5.B04.tif\"\n          },\n          \"B05\": {\n            \"title\": \"Download HLS.L30.T60MTD.2021014T222708.v1.5.B05.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T60MTD.2021014T222708.v1.5.B05.tif\"\n          },\n          \"B06\": {\n            \"title\": \"Download HLS.L30.T60MTD.2021014T222708.v1.5.B06.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T60MTD.2021014T222708.v1.5.B06.tif\"\n          },\n          \"browse\": {\n            \"title\": \"Download HLS.L30.T60MTD.2021014T222708.v1.5.jpg\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-public/HLSL30.015/HLS.L30.T60MTD.2021014T222708.v1.5.jpg\",\n            \"type\": \"image/jpeg\"\n          },\n          \"metadata\": {\n            \"href\": \"https://cmr.earthdata.nasa.gov/search/concepts/G1994873598-LPCLOUD.xml\",\n            \"type\": \"application/xml\"\n          }\n        }\n      },\n      {\n        \"type\": \"Feature\",\n        \"id\": \"G1994873826-LPCLOUD\",\n        \"stac_version\": \"1.0.0-rc.4\",\n        \"stac_extensions\": [\n          \"https://stac-extensions.github.io/eo/v1.1.0/schema.json\"\n        ],\n        \"collection\": \"HLSL30.v1.5\",\n        \"geometry\": {\n          \"type\": \"Polygon\",\n          \"coordinates\": [\n            [\n              [\n                176.1889808,\n                -1.8975663\n              ],\n              [\n                176.1893223,\n                -0.9042776\n              ],\n              [\n                175.4231906,\n                -0.904024\n              ],\n              [\n                175.2124833,\n                -1.8968285\n              ],\n              [\n                176.1889808,\n                -1.8975663\n              ]\n            ]\n          ]\n        },\n        \"bbox\": [\n          175.212483,\n          -1.897566,\n          176.189322,\n          -0.904024\n        ],\n        \"links\": [\n          {\n            \"rel\": \"self\",\n            \"href\": \"https://cmr.earthdata.nasa.gov/stac/LPCLOUD/collections/HLSL30.v1.5/items/G1994873826-LPCLOUD\"\n          },\n          {\n            \"rel\": \"parent\",\n            \"href\": \"https://cmr.earthdata.nasa.gov/stac/LPCLOUD/collections/HLSL30.v1.5\"\n          },\n          {\n            \"rel\": \"collection\",\n            \"href\": \"https://cmr.earthdata.nasa.gov/stac/LPCLOUD/collections/HLSL30.v1.5\"\n          },\n          {\n            \"rel\": \"root\",\n            \"href\": \"https://cmr.earthdata.nasa.gov/stac/\"\n          },\n          {\n            \"rel\": \"provider\",\n            \"href\": \"https://cmr.earthdata.nasa.gov/stac/LPCLOUD\"\n          },\n          {\n            \"rel\": \"via\",\n            \"href\": \"https://cmr.earthdata.nasa.gov/search/concepts/G1994873826-LPCLOUD.json\"\n          },\n          {\n            \"rel\": \"via\",\n            \"href\": \"https://cmr.earthdata.nasa.gov/search/concepts/G1994873826-LPCLOUD.umm_json\"\n          }\n        ],\n        \"properties\": {\n          \"datetime\": \"2021-01-14T22:27:08.323Z\",\n          \"start_datetime\": \"2021-01-14T22:27:08.323Z\",\n          \"end_datetime\": \"2021-01-14T22:27:08.323Z\",\n          \"eo:cloud_cover\": 16\n        },\n        \"assets\": {\n          \"B03\": {\n            \"title\": \"Download HLS.L30.T60MUD.2021014T222708.v1.5.B03.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T60MUD.2021014T222708.v1.5.B03.tif\"\n          },\n          \"B07\": {\n            \"title\": \"Download HLS.L30.T60MUD.2021014T222708.v1.5.B07.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T60MUD.2021014T222708.v1.5.B07.tif\"\n          },\n          \"B09\": {\n            \"title\": \"Download HLS.L30.T60MUD.2021014T222708.v1.5.B09.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T60MUD.2021014T222708.v1.5.B09.tif\"\n          },\n          \"B06\": {\n            \"title\": \"Download HLS.L30.T60MUD.2021014T222708.v1.5.B06.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T60MUD.2021014T222708.v1.5.B06.tif\"\n          },\n          \"Fmask\": {\n            \"title\": \"Download HLS.L30.T60MUD.2021014T222708.v1.5.Fmask.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T60MUD.2021014T222708.v1.5.Fmask.tif\"\n          },\n          \"VZA\": {\n            \"title\": \"Download HLS.L30.T60MUD.2021014T222708.v1.5.VZA.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T60MUD.2021014T222708.v1.5.VZA.tif\"\n          },\n          \"VAA\": {\n            \"title\": \"Download HLS.L30.T60MUD.2021014T222708.v1.5.VAA.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T60MUD.2021014T222708.v1.5.VAA.tif\"\n          },\n          \"B10\": {\n            \"title\": \"Download HLS.L30.T60MUD.2021014T222708.v1.5.B10.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T60MUD.2021014T222708.v1.5.B10.tif\"\n          },\n          \"B02\": {\n            \"title\": \"Download HLS.L30.T60MUD.2021014T222708.v1.5.B02.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T60MUD.2021014T222708.v1.5.B02.tif\"\n          },\n          \"SZA\": {\n            \"title\": \"Download HLS.L30.T60MUD.2021014T222708.v1.5.SZA.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T60MUD.2021014T222708.v1.5.SZA.tif\"\n          },\n          \"B04\": {\n            \"title\": \"Download HLS.L30.T60MUD.2021014T222708.v1.5.B04.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T60MUD.2021014T222708.v1.5.B04.tif\"\n          },\n          \"B01\": {\n            \"title\": \"Download HLS.L30.T60MUD.2021014T222708.v1.5.B01.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T60MUD.2021014T222708.v1.5.B01.tif\"\n          },\n          \"B05\": {\n            \"title\": \"Download HLS.L30.T60MUD.2021014T222708.v1.5.B05.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T60MUD.2021014T222708.v1.5.B05.tif\"\n          },\n          \"SAA\": {\n            \"title\": \"Download HLS.L30.T60MUD.2021014T222708.v1.5.SAA.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T60MUD.2021014T222708.v1.5.SAA.tif\"\n          },\n          \"B11\": {\n            \"title\": \"Download HLS.L30.T60MUD.2021014T222708.v1.5.B11.tif\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T60MUD.2021014T222708.v1.5.B11.tif\"\n          },\n          \"browse\": {\n            \"title\": \"Download HLS.L30.T60MUD.2021014T222708.v1.5.jpg\",\n            \"href\": \"https://lpdaac.earthdata.nasa.gov/lp-prod-public/HLSL30.015/HLS.L30.T60MUD.2021014T222708.v1.5.jpg\",\n            \"type\": \"image/jpeg\"\n          },\n          \"metadata\": {\n            \"href\": \"https://cmr.earthdata.nasa.gov/search/concepts/G1994873826-LPCLOUD.xml\",\n            \"type\": \"application/xml\"\n          }\n        }\n      }\n    ],\n    \"links\": [\n      {\n        \"rel\": \"self\",\n        \"href\": \"https://cmr.earthdata.nasa.gov/stac/LPCLOUD/collections/HLSL30.v1.5/items\"\n      },\n      {\n        \"rel\": \"root\",\n        \"href\": \"https://cmr.earthdata.nasa.gov/stac/\"\n      },\n      {\n        \"rel\": \"next\",\n        \"method\": \"GET\",\n        \"href\": \"https://cmr.earthdata.nasa.gov/stac/LPCLOUD/collections/HLSL30.v1.5/items?page=2\"\n      }\n    ],\n    \"context\": {\n      \"returned\": 10,\n      \"limit\": 1000000,\n      \"matched\": 324132\n    }\n  }"
  },
  {
    "path": "tests/data/sample-item.json",
    "content": "{\n    \"type\": \"Feature\",\n    \"stac_version\": \"1.0.0\",\n    \"id\": \"CS3-20160503_132131_05\",\n    \"properties\": {\n      \"datetime\": \"2016-05-03T13:22:30.040000Z\",\n      \"title\": \"A CS3 item\",\n      \"license\": \"PDDL-1.0\",\n      \"providers\": [\n        {\n          \"name\": \"CoolSat\",\n          \"roles\": [\n            \"producer\",\n            \"licensor\"\n          ],\n          \"url\": \"https://cool-sat.com/\"\n        }\n      ]\n    },\n    \"geometry\": {\n      \"type\": \"Polygon\",\n      \"coordinates\": [\n        [\n          [\n            -122.308150179,\n            37.488035566\n          ],\n          [\n            -122.597502109,\n            37.538869539\n          ],\n          [\n            -122.576687533,\n            37.613537207\n          ],\n          [\n            -122.2880486,\n            37.562818007\n          ],\n          [\n            -122.308150179,\n            37.488035566\n          ]\n        ]\n      ]\n    },\n    \"links\": [\n      {\n        \"rel\": \"collection\",\n        \"href\": \"https://raw.githubusercontent.com/radiantearth/stac-spec/v0.8.1/collection-spec/examples/sentinel2.json\"\n      }\n    ],\n    \"assets\": {\n      \"analytic\": {\n        \"href\": \"http://cool-sat.com/catalog/CS3-20160503_132130_04/analytic.tif\",\n        \"title\": \"4-Band Analytic\",\n        \"product\": \"http://cool-sat.com/catalog/products/analytic.json\",\n        \"type\": \"image/tiff; application=geotiff; profile=cloud-optimized\",\n        \"roles\": [\n          \"data\",\n          \"analytic\"\n        ]\n      },\n      \"thumbnail\": {\n        \"href\": \"http://cool-sat.com/catalog/CS3-20160503_132130_04/thumbnail.png\",\n        \"title\": \"Thumbnail\",\n        \"type\": \"image/png\",\n        \"roles\": [\n          \"thumbnail\"\n        ]\n      }\n    },\n    \"bbox\": [\n      -122.59750209,\n      37.48803556,\n      -122.2880486,\n      37.613537207\n    ],\n    \"stac_extensions\": [],\n    \"collection\": \"CS3\"\n  }"
  },
  {
    "path": "tests/data/test-case-1/catalog.json",
    "content": "{\n  \"type\": \"Catalog\",\n  \"id\": \"test\",\n  \"stac_version\": \"1.1.0\",\n  \"description\": \"test catalog\",\n  \"links\": [\n    {\n      \"rel\": \"child\",\n      \"href\": \"./country-1/catalog.json\",\n      \"type\": \"application/json\"\n    },\n    {\n      \"rel\": \"child\",\n      \"href\": \"./country-2/catalog.json\",\n      \"type\": \"application/json\"\n    },\n    {\n      \"rel\": \"root\",\n      \"href\": \"./catalog.json\",\n      \"type\": \"application/json\"\n    }\n  ],\n  \"stac_extensions\": []\n}"
  },
  {
    "path": "tests/data/test-case-1/country-1/area-1-1/area-1-1-imagery/area-1-1-imagery.json",
    "content": "{\n  \"type\": \"Feature\",\n  \"stac_version\": \"1.1.0\",\n  \"id\": \"area-1-1-imagery\",\n  \"properties\": {\n    \"datetime\": \"2019-10-04T18:55:37Z\"\n  },\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [\n          -2.5048828125,\n          3.8916575492899987\n        ],\n        [\n          -1.9610595703125,\n          3.8916575492899987\n        ],\n        [\n          -1.9610595703125,\n          4.275202171119132\n        ],\n        [\n          -2.5048828125,\n          4.275202171119132\n        ],\n        [\n          -2.5048828125,\n          3.8916575492899987\n        ]\n      ]\n    ]\n  },\n  \"links\": [\n    {\n      \"rel\": \"collection\",\n      \"href\": \"../collection.json\",\n      \"type\": \"application/json\"\n    },\n    {\n      \"rel\": \"root\",\n      \"href\": \"../../../catalog.json\",\n      \"type\": \"application/json\"\n    },\n    {\n      \"rel\": \"parent\",\n      \"href\": \"../collection.json\",\n      \"type\": \"application/json\"\n    }\n  ],\n  \"assets\": {\n    \"ortho\": {\n      \"href\": \"http://example.com/area-1-1_ortho.tif\",\n      \"type\": \"image/vnd.stac.geotiff\"\n    },\n    \"dsm\": {\n      \"href\": \"http://example.com/area-1-1_dsm.tif\",\n      \"type\": \"image/vnd.stac.geotiff\"\n    }\n  },\n  \"bbox\": [\n    -2.5048828125,\n    3.8916575492899987,\n    -1.9610595703125,\n    3.8916575492899987\n  ],\n  \"stac_extensions\": [],\n  \"collection\": \"area-1-1\"\n}"
  },
  {
    "path": "tests/data/test-case-1/country-1/area-1-1/area-1-1-labels/area-1-1-labels.json",
    "content": "{\n  \"type\": \"Feature\",\n  \"stac_version\": \"1.1.0\",\n  \"id\": \"area-1-1-labels\",\n  \"properties\": {\n    \"datetime\": \"2019-10-04T18:55:37Z\",\n    \"label:description\": \"labels for area-1-1\",\n    \"label:type\": \"vector\",\n    \"label:properties\": [\n      \"label\"\n    ],\n    \"label:classes\": [\n      {\n        \"name\": \"label\",\n        \"classes\": [\n          \"one\",\n          \"two\"\n        ]\n      }\n    ],\n    \"label:tasks\": [\n      \"classification\"\n    ],\n    \"label:methods\": [\n      \"manual\"\n    ]\n  },\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [\n          -2.5048828125,\n          3.8916575492899987\n        ],\n        [\n          -1.9610595703125,\n          3.8916575492899987\n        ],\n        [\n          -1.9610595703125,\n          4.275202171119132\n        ],\n        [\n          -2.5048828125,\n          4.275202171119132\n        ],\n        [\n          -2.5048828125,\n          3.8916575492899987\n        ]\n      ]\n    ]\n  },\n  \"links\": [\n    {\n      \"rel\": \"source\",\n      \"href\": \"../area-1-1-imagery/area-1-1-imagery.json\",\n      \"type\": \"application/json\"\n    },\n    {\n      \"rel\": \"collection\",\n      \"href\": \"../collection.json\",\n      \"type\": \"application/json\"\n    },\n    {\n      \"rel\": \"root\",\n      \"href\": \"../../../catalog.json\",\n      \"type\": \"application/json\"\n    },\n    {\n      \"rel\": \"parent\",\n      \"href\": \"../collection.json\",\n      \"type\": \"application/json\"\n    }\n  ],\n  \"assets\": {\n    \"labels\": {\n      \"href\": \"http://example.com/area-1-1-labels.geojson\",\n      \"type\": \"application/geo+json\"\n    }\n  },\n  \"bbox\": [\n    -2.5048828125,\n    3.8916575492899987,\n    -1.9610595703125,\n    3.8916575492899987\n  ],\n  \"stac_extensions\": [\n    \"https://stac-extensions.github.io/label/v1.0.1/schema.json\"\n  ],\n  \"collection\": \"area-1-1\"\n}"
  },
  {
    "path": "tests/data/test-case-1/country-1/area-1-1/collection.json",
    "content": "{\n  \"type\": \"Collection\",\n  \"id\": \"area-1-1\",\n  \"stac_version\": \"1.1.0\",\n  \"description\": \"test collection country-1\",\n  \"links\": [\n    {\n      \"rel\": \"item\",\n      \"href\": \"./area-1-1-imagery/area-1-1-imagery.json\",\n      \"type\": \"application/json\"\n    },\n    {\n      \"rel\": \"item\",\n      \"href\": \"./area-1-1-labels/area-1-1-labels.json\",\n      \"type\": \"application/json\"\n    },\n    {\n      \"rel\": \"root\",\n      \"href\": \"../../catalog.json\",\n      \"type\": \"application/json\"\n    },\n    {\n      \"rel\": \"parent\",\n      \"href\": \"../catalog.json\",\n      \"type\": \"application/json\"\n    }\n  ],\n  \"stac_extensions\": [],\n  \"extent\": {\n    \"spatial\": {\n      \"bbox\": [\n        [\n          -2.5048828125,\n          3.8916575492899987,\n          -1.9610595703125,\n          4.275202171119132\n        ]\n      ]\n    },\n    \"temporal\": {\n      \"interval\": [\n        [\n          \"2019-10-04T18:55:37Z\",\n          null\n        ]\n      ]\n    }\n  },\n  \"license\": \"other\"\n}"
  },
  {
    "path": "tests/data/test-case-1/country-1/area-1-2/area-1-2-imagery/area-1-2-imagery.json",
    "content": "{\n  \"type\": \"Feature\",\n  \"stac_version\": \"1.1.0\",\n  \"id\": \"area-1-2-imagery\",\n  \"properties\": {\n    \"datetime\": \"2019-10-04T18:55:37Z\"\n  },\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [\n          -2.5048828125,\n          3.8916575492899987\n        ],\n        [\n          -1.9610595703125,\n          3.8916575492899987\n        ],\n        [\n          -1.9610595703125,\n          4.275202171119132\n        ],\n        [\n          -2.5048828125,\n          4.275202171119132\n        ],\n        [\n          -2.5048828125,\n          3.8916575492899987\n        ]\n      ]\n    ]\n  },\n  \"links\": [\n    {\n      \"rel\": \"collection\",\n      \"href\": \"../collection.json\",\n      \"type\": \"application/json\"\n    },\n    {\n      \"rel\": \"root\",\n      \"href\": \"../../../catalog.json\",\n      \"type\": \"application/json\"\n    },\n    {\n      \"rel\": \"parent\",\n      \"href\": \"../collection.json\",\n      \"type\": \"application/json\"\n    }\n  ],\n  \"assets\": {\n    \"ortho\": {\n      \"href\": \"http://example.com/area-1-2_ortho.tif\",\n      \"type\": \"image/vnd.stac.geotiff\"\n    },\n    \"dsm\": {\n      \"href\": \"http://example.com/area-1-2_dsm.tif\",\n      \"type\": \"image/vnd.stac.geotiff\"\n    }\n  },\n  \"bbox\": [\n    -2.5048828125,\n    3.8916575492899987,\n    -1.9610595703125,\n    3.8916575492899987\n  ],\n  \"stac_extensions\": [],\n  \"collection\": \"area-1-2\"\n}"
  },
  {
    "path": "tests/data/test-case-1/country-1/area-1-2/area-1-2-labels/area-1-2-labels.json",
    "content": "{\n  \"type\": \"Feature\",\n  \"stac_version\": \"1.1.0\",\n  \"id\": \"area-1-2-labels\",\n  \"properties\": {\n    \"datetime\": \"2019-10-04T18:55:37Z\",\n    \"label:description\": \"labels for area-1-2\",\n    \"label:type\": \"vector\",\n    \"label:properties\": [\n      \"label\"\n    ],\n    \"label:classes\": [\n      {\n        \"name\": \"label\",\n        \"classes\": [\n          \"one\",\n          \"two\"\n        ]\n      }\n    ],\n    \"label:tasks\": [\n      \"classification\"\n    ],\n    \"label:methods\": [\n      \"manual\"\n    ]\n  },\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [\n          -2.5048828125,\n          3.8916575492899987\n        ],\n        [\n          -1.9610595703125,\n          3.8916575492899987\n        ],\n        [\n          -1.9610595703125,\n          4.275202171119132\n        ],\n        [\n          -2.5048828125,\n          4.275202171119132\n        ],\n        [\n          -2.5048828125,\n          3.8916575492899987\n        ]\n      ]\n    ]\n  },\n  \"links\": [\n    {\n      \"rel\": \"source\",\n      \"href\": \"../area-1-2-imagery/area-1-2-imagery.json\",\n      \"type\": \"application/json\"\n    },\n    {\n      \"rel\": \"collection\",\n      \"href\": \"../collection.json\",\n      \"type\": \"application/json\"\n    },\n    {\n      \"rel\": \"root\",\n      \"href\": \"../../../catalog.json\",\n      \"type\": \"application/json\"\n    },\n    {\n      \"rel\": \"parent\",\n      \"href\": \"../collection.json\",\n      \"type\": \"application/json\"\n    }\n  ],\n  \"assets\": {\n    \"labels\": {\n      \"href\": \"http://example.com/area-1-2-labels.geojson\",\n      \"type\": \"application/geo+json\"\n    }\n  },\n  \"bbox\": [\n    -2.5048828125,\n    3.8916575492899987,\n    -1.9610595703125,\n    3.8916575492899987\n  ],\n  \"stac_extensions\": [\n    \"https://stac-extensions.github.io/label/v1.0.1/schema.json\"\n  ],\n  \"collection\": \"area-1-2\"\n}"
  },
  {
    "path": "tests/data/test-case-1/country-1/area-1-2/collection.json",
    "content": "{\n  \"type\": \"Collection\",\n  \"id\": \"area-1-2\",\n  \"stac_version\": \"1.1.0\",\n  \"description\": \"test collection country-1\",\n  \"links\": [\n    {\n      \"rel\": \"item\",\n      \"href\": \"./area-1-2-imagery/area-1-2-imagery.json\",\n      \"type\": \"application/json\"\n    },\n    {\n      \"rel\": \"item\",\n      \"href\": \"./area-1-2-labels/area-1-2-labels.json\",\n      \"type\": \"application/json\"\n    },\n    {\n      \"rel\": \"root\",\n      \"href\": \"../../catalog.json\",\n      \"type\": \"application/json\"\n    },\n    {\n      \"rel\": \"parent\",\n      \"href\": \"../catalog.json\",\n      \"type\": \"application/json\"\n    }\n  ],\n  \"stac_extensions\": [],\n  \"extent\": {\n    \"spatial\": {\n      \"bbox\": [\n        [\n          -2.5048828125,\n          3.8916575492899987,\n          -1.9610595703125,\n          4.275202171119132\n        ]\n      ]\n    },\n    \"temporal\": {\n      \"interval\": [\n        [\n          \"2019-10-04T18:55:37Z\",\n          null\n        ]\n      ]\n    }\n  },\n  \"license\": \"other\"\n}"
  },
  {
    "path": "tests/data/test-case-1/country-1/catalog.json",
    "content": "{\n  \"type\": \"Catalog\",\n  \"id\": \"country-1\",\n  \"stac_version\": \"1.1.0\",\n  \"description\": \"test catalog country-1\",\n  \"links\": [\n    {\n      \"rel\": \"child\",\n      \"href\": \"./area-1-1/collection.json\",\n      \"type\": \"application/json\"\n    },\n    {\n      \"rel\": \"child\",\n      \"href\": \"./area-1-2/collection.json\",\n      \"type\": \"application/json\"\n    },\n    {\n      \"rel\": \"root\",\n      \"href\": \"../catalog.json\",\n      \"type\": \"application/json\"\n    },\n    {\n      \"rel\": \"parent\",\n      \"href\": \"../catalog.json\",\n      \"type\": \"application/json\"\n    }\n  ],\n  \"stac_extensions\": []\n}"
  },
  {
    "path": "tests/data/test-case-1/country-2/area-2-1/area-2-1-imagery/area-2-1-imagery.json",
    "content": "{\n  \"type\": \"Feature\",\n  \"stac_version\": \"1.1.0\",\n  \"id\": \"area-2-1-imagery\",\n  \"properties\": {\n    \"datetime\": \"2019-10-04T18:55:37Z\"\n  },\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [\n          -2.5048828125,\n          3.8916575492899987\n        ],\n        [\n          -1.9610595703125,\n          3.8916575492899987\n        ],\n        [\n          -1.9610595703125,\n          4.275202171119132\n        ],\n        [\n          -2.5048828125,\n          4.275202171119132\n        ],\n        [\n          -2.5048828125,\n          3.8916575492899987\n        ]\n      ]\n    ]\n  },\n  \"links\": [\n    {\n      \"rel\": \"collection\",\n      \"href\": \"../collection.json\",\n      \"type\": \"application/json\"\n    },\n    {\n      \"rel\": \"root\",\n      \"href\": \"../../../catalog.json\",\n      \"type\": \"application/json\"\n    },\n    {\n      \"rel\": \"parent\",\n      \"href\": \"../collection.json\",\n      \"type\": \"application/json\"\n    }\n  ],\n  \"assets\": {\n    \"ortho\": {\n      \"href\": \"http://example.com/area-2-1_ortho.tif\",\n      \"type\": \"image/vnd.stac.geotiff\"\n    },\n    \"dsm\": {\n      \"href\": \"http://example.com/area-2-1_dsm.tif\",\n      \"type\": \"image/vnd.stac.geotiff\"\n    }\n  },\n  \"bbox\": [\n    -2.5048828125,\n    3.8916575492899987,\n    -1.9610595703125,\n    3.8916575492899987\n  ],\n  \"stac_extensions\": [],\n  \"collection\": \"area-2-1\"\n}"
  },
  {
    "path": "tests/data/test-case-1/country-2/area-2-1/area-2-1-labels/area-2-1-labels.json",
    "content": "{\n  \"type\": \"Feature\",\n  \"stac_version\": \"1.1.0\",\n  \"id\": \"area-2-1-labels\",\n  \"properties\": {\n    \"datetime\": \"2019-10-04T18:55:37Z\",\n    \"label:description\": \"labels for area-2-1\",\n    \"label:type\": \"vector\",\n    \"label:properties\": [\n      \"label\"\n    ],\n    \"label:classes\": [\n      {\n        \"name\": \"label\",\n        \"classes\": [\n          \"one\",\n          \"two\"\n        ]\n      }\n    ],\n    \"label:tasks\": [\n      \"classification\"\n    ],\n    \"label:methods\": [\n      \"manual\"\n    ]\n  },\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [\n          -2.5048828125,\n          3.8916575492899987\n        ],\n        [\n          -1.9610595703125,\n          3.8916575492899987\n        ],\n        [\n          -1.9610595703125,\n          4.275202171119132\n        ],\n        [\n          -2.5048828125,\n          4.275202171119132\n        ],\n        [\n          -2.5048828125,\n          3.8916575492899987\n        ]\n      ]\n    ]\n  },\n  \"links\": [\n    {\n      \"rel\": \"source\",\n      \"href\": \"../area-2-1-imagery/area-2-1-imagery.json\",\n      \"type\": \"application/json\"\n    },\n    {\n      \"rel\": \"collection\",\n      \"href\": \"../collection.json\",\n      \"type\": \"application/json\"\n    },\n    {\n      \"rel\": \"root\",\n      \"href\": \"../../../catalog.json\",\n      \"type\": \"application/json\"\n    },\n    {\n      \"rel\": \"parent\",\n      \"href\": \"../collection.json\",\n      \"type\": \"application/json\"\n    }\n  ],\n  \"assets\": {\n    \"labels\": {\n      \"href\": \"http://example.com/area-2-1-labels.geojson\",\n      \"type\": \"application/geo+json\"\n    }\n  },\n  \"bbox\": [\n    -2.5048828125,\n    3.8916575492899987,\n    -1.9610595703125,\n    3.8916575492899987\n  ],\n  \"stac_extensions\": [\n    \"https://stac-extensions.github.io/label/v1.0.1/schema.json\"\n  ],\n  \"collection\": \"area-2-1\"\n}"
  },
  {
    "path": "tests/data/test-case-1/country-2/area-2-1/collection.json",
    "content": "{\n  \"type\": \"Collection\",\n  \"id\": \"area-2-1\",\n  \"stac_version\": \"1.1.0\",\n  \"description\": \"test collection country-2\",\n  \"links\": [\n    {\n      \"rel\": \"item\",\n      \"href\": \"./area-2-1-imagery/area-2-1-imagery.json\",\n      \"type\": \"application/json\"\n    },\n    {\n      \"rel\": \"item\",\n      \"href\": \"./area-2-1-labels/area-2-1-labels.json\",\n      \"type\": \"application/json\"\n    },\n    {\n      \"rel\": \"root\",\n      \"href\": \"../../catalog.json\",\n      \"type\": \"application/json\"\n    },\n    {\n      \"rel\": \"parent\",\n      \"href\": \"../catalog.json\",\n      \"type\": \"application/json\"\n    }\n  ],\n  \"stac_extensions\": [],\n  \"extent\": {\n    \"spatial\": {\n      \"bbox\": [\n        [\n          -2.5048828125,\n          3.8916575492899987,\n          -1.9610595703125,\n          4.275202171119132\n        ]\n      ]\n    },\n    \"temporal\": {\n      \"interval\": [\n        [\n          \"2019-10-04T18:55:37Z\",\n          null\n        ]\n      ]\n    }\n  },\n  \"license\": \"other\"\n}"
  },
  {
    "path": "tests/data/test-case-1/country-2/area-2-2/area-2-2-imagery/area-2-2-imagery.json",
    "content": "{\n  \"type\": \"Feature\",\n  \"stac_version\": \"1.1.0\",\n  \"id\": \"area-2-2-imagery\",\n  \"properties\": {\n    \"datetime\": \"2019-10-04T18:55:37Z\"\n  },\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [\n          -2.5048828125,\n          3.8916575492899987\n        ],\n        [\n          -1.9610595703125,\n          3.8916575492899987\n        ],\n        [\n          -1.9610595703125,\n          4.275202171119132\n        ],\n        [\n          -2.5048828125,\n          4.275202171119132\n        ],\n        [\n          -2.5048828125,\n          3.8916575492899987\n        ]\n      ]\n    ]\n  },\n  \"links\": [\n    {\n      \"rel\": \"collection\",\n      \"href\": \"../collection.json\",\n      \"type\": \"application/json\"\n    },\n    {\n      \"rel\": \"root\",\n      \"href\": \"../../../catalog.json\",\n      \"type\": \"application/json\"\n    },\n    {\n      \"rel\": \"parent\",\n      \"href\": \"../collection.json\",\n      \"type\": \"application/json\"\n    }\n  ],\n  \"assets\": {\n    \"ortho\": {\n      \"href\": \"http://example.com/area-2-2_ortho.tif\",\n      \"type\": \"image/vnd.stac.geotiff\"\n    },\n    \"dsm\": {\n      \"href\": \"http://example.com/area-2-2_dsm.tif\",\n      \"type\": \"image/vnd.stac.geotiff\"\n    }\n  },\n  \"bbox\": [\n    -2.5048828125,\n    3.8916575492899987,\n    -1.9610595703125,\n    3.8916575492899987\n  ],\n  \"stac_extensions\": [],\n  \"collection\": \"area-2-2\"\n}"
  },
  {
    "path": "tests/data/test-case-1/country-2/area-2-2/area-2-2-labels/area-2-2-labels.json",
    "content": "{\n  \"type\": \"Feature\",\n  \"stac_version\": \"1.1.0\",\n  \"id\": \"area-2-2-labels\",\n  \"properties\": {\n    \"datetime\": \"2019-10-04T18:55:37Z\",\n    \"label:description\": \"labels for area-2-2\",\n    \"label:type\": \"vector\",\n    \"label:properties\": [\n      \"label\"\n    ],\n    \"label:classes\": [\n      {\n        \"name\": \"label\",\n        \"classes\": [\n          \"one\",\n          \"two\"\n        ]\n      }\n    ],\n    \"label:tasks\": [\n      \"classification\"\n    ],\n    \"label:methods\": [\n      \"manual\"\n    ]\n  },\n  \"geometry\": {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n      [\n        [\n          -2.5048828125,\n          3.8916575492899987\n        ],\n        [\n          -1.9610595703125,\n          3.8916575492899987\n        ],\n        [\n          -1.9610595703125,\n          4.275202171119132\n        ],\n        [\n          -2.5048828125,\n          4.275202171119132\n        ],\n        [\n          -2.5048828125,\n          3.8916575492899987\n        ]\n      ]\n    ]\n  },\n  \"links\": [\n    {\n      \"rel\": \"source\",\n      \"href\": \"../area-2-2-imagery/area-2-2-imagery.json\",\n      \"type\": \"application/json\"\n    },\n    {\n      \"rel\": \"collection\",\n      \"href\": \"../collection.json\",\n      \"type\": \"application/json\"\n    },\n    {\n      \"rel\": \"root\",\n      \"href\": \"../../../catalog.json\",\n      \"type\": \"application/json\"\n    },\n    {\n      \"rel\": \"parent\",\n      \"href\": \"../collection.json\",\n      \"type\": \"application/json\"\n    }\n  ],\n  \"assets\": {\n    \"labels\": {\n      \"href\": \"http://example.com/area-2-2-labels.geojson\",\n      \"type\": \"application/geo+json\"\n    }\n  },\n  \"bbox\": [\n    -2.5048828125,\n    3.8916575492899987,\n    -1.9610595703125,\n    3.8916575492899987\n  ],\n  \"stac_extensions\": [\n    \"https://stac-extensions.github.io/label/v1.0.1/schema.json\"\n  ],\n  \"collection\": \"area-2-2\"\n}"
  },
  {
    "path": "tests/data/test-case-1/country-2/area-2-2/collection.json",
    "content": "{\n  \"type\": \"Collection\",\n  \"id\": \"area-2-2\",\n  \"stac_version\": \"1.1.0\",\n  \"description\": \"test collection country-2\",\n  \"links\": [\n    {\n      \"rel\": \"item\",\n      \"href\": \"./area-2-2-imagery/area-2-2-imagery.json\",\n      \"type\": \"application/json\"\n    },\n    {\n      \"rel\": \"item\",\n      \"href\": \"./area-2-2-labels/area-2-2-labels.json\",\n      \"type\": \"application/json\"\n    },\n    {\n      \"rel\": \"root\",\n      \"href\": \"../../catalog.json\",\n      \"type\": \"application/json\"\n    },\n    {\n      \"rel\": \"parent\",\n      \"href\": \"../catalog.json\",\n      \"type\": \"application/json\"\n    }\n  ],\n  \"stac_extensions\": [],\n  \"extent\": {\n    \"spatial\": {\n      \"bbox\": [\n        [\n          -2.5048828125,\n          3.8916575492899987,\n          -1.9610595703125,\n          4.275202171119132\n        ]\n      ]\n    },\n    \"temporal\": {\n      \"interval\": [\n        [\n          \"2019-10-04T18:55:37Z\",\n          null\n        ]\n      ]\n    }\n  },\n  \"license\": \"other\"\n}"
  },
  {
    "path": "tests/data/test-case-1/country-2/catalog.json",
    "content": "{\n  \"type\": \"Catalog\",\n  \"id\": \"country-2\",\n  \"stac_version\": \"1.1.0\",\n  \"description\": \"test catalog country-2\",\n  \"links\": [\n    {\n      \"rel\": \"child\",\n      \"href\": \"./area-2-1/collection.json\",\n      \"type\": \"application/json\"\n    },\n    {\n      \"rel\": \"child\",\n      \"href\": \"./area-2-2/collection.json\",\n      \"type\": \"application/json\"\n    },\n    {\n      \"rel\": \"root\",\n      \"href\": \"../catalog.json\",\n      \"type\": \"application/json\"\n    },\n    {\n      \"rel\": \"parent\",\n      \"href\": \"../catalog.json\",\n      \"type\": \"application/json\"\n    }\n  ],\n  \"stac_extensions\": []\n}"
  },
  {
    "path": "tests/helpers.py",
    "content": "import json\nfrom pathlib import Path\nfrom typing import Any\n\nTEST_DATA = Path(__file__).parent / \"data\"\n\nSTAC_URLS = {\n    \"PLANETARY-COMPUTER\": \"https://planetarycomputer.microsoft.com/api/stac/v1\",\n    \"EARTH-SEARCH\": \"https://earth-search.aws.element84.com/v1\",\n    \"MLHUB\": \"https://api.radiant.earth/mlhub/v1\",\n    \"SPACEBEL\": \"https://emc.spacebel.be\",\n}\n\n\ndef read_data_file(file_name: str, mode: str = \"r\", parse_json: bool = False) -> Any:\n    file_path = TEST_DATA / file_name\n    with file_path.open(mode=mode) as src:\n        if parse_json:\n            return json.load(src)\n        else:\n            return src.read()\n"
  },
  {
    "path": "tests/test_base_search.py",
    "content": "import json\nfrom collections.abc import Iterator\nfrom datetime import datetime\nfrom typing import Any\n\nimport pytest\nfrom dateutil.tz import gettz, tzutc\n\nfrom pystac_client import Client\nfrom pystac_client.item_search import BaseSearch\n\nfrom .helpers import STAC_URLS, read_data_file\n\nSEARCH_URL = f\"{STAC_URLS['PLANETARY-COMPUTER']}/search\"\nINTERSECTS_EXAMPLE = {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n        [\n            [-73.21, 43.99],\n            [-73.21, 44.05],\n            [-73.12, 44.05],\n            [-73.12, 43.99],\n            [-73.21, 43.99],\n        ]\n    ],\n}\n\nITEM_EXAMPLE: dict[str, Any] = {\"collections\": \"io-lulc\", \"ids\": \"60U-2020\"}\n\n\nclass TestBaseSearchParams:\n    @pytest.fixture(scope=\"function\")\n    def sample_client(self) -> Client:\n        api_content = read_data_file(\"planetary-computer-root.json\", parse_json=True)\n        return Client.from_dict(api_content)\n\n    def test_tuple_bbox(self) -> None:\n        # Tuple input\n        search = BaseSearch(url=SEARCH_URL, bbox=(-104.5, 44.0, -104.0, 45.0))\n        assert search.get_parameters()[\"bbox\"] == (-104.5, 44.0, -104.0, 45.0)\n\n    def test_list_bbox(self) -> None:\n        # List input\n        search = BaseSearch(url=SEARCH_URL, bbox=[-104.5, 44.0, -104.0, 45.0])\n        assert search.get_parameters()[\"bbox\"] == (-104.5, 44.0, -104.0, 45.0)\n\n    def test_string_bbox(self) -> None:\n        # String Input\n        search = BaseSearch(url=SEARCH_URL, bbox=\"-104.5,44.0,-104.0,45.0\")\n        assert search.get_parameters()[\"bbox\"] == (-104.5, 44.0, -104.0, 45.0)\n\n    def test_generator_bbox(self) -> None:\n        # Generator Input\n        def bboxer() -> Iterator[float]:\n            yield from [-104.5, 44.0, -104.0, 45.0]\n\n        search = BaseSearch(url=SEARCH_URL, bbox=bboxer())\n        assert search.get_parameters()[\"bbox\"] == (-104.5, 44.0, -104.0, 45.0)\n\n    def test_url_with_parameters(self) -> None:\n        # Single timestamp input\n        search = BaseSearch(\n            url=SEARCH_URL,\n            datetime=\"2020-02-01T00:00:00Z\",\n            bbox=[-104.5, 44.0, -104.0, 45.0],\n        )\n        assert \"bbox=-104.5%2C44.0%2C-104.0%2C45.0\" in search.url_with_parameters()\n\n        # Motivating example: https://github.com/stac-utils/pystac-client/issues/299\n        search = BaseSearch(\n            url=\"https://planetarycomputer.microsoft.com/api/stac/v1/search\",\n            collections=[\"cop-dem-glo-30\"],\n            bbox=[88.214, 27.927, 88.302, 28.034],\n        )\n        assert (\n            search.url_with_parameters()\n            == \"https://planetarycomputer.microsoft.com/api/stac/v1/search?\"\n            \"bbox=88.214%2C27.927%2C88.302%2C28.034&collections=cop-dem-glo-30\"\n        )\n\n    def test_single_string_datetime(self) -> None:\n        # Single timestamp input\n        search = BaseSearch(url=SEARCH_URL, datetime=\"2020-02-01T00:00:00Z\")\n        assert search.get_parameters()[\"datetime\"] == \"2020-02-01T00:00:00Z\"\n\n    def test_range_string_datetime(self) -> None:\n        # Timestamp range input\n        search = BaseSearch(\n            url=SEARCH_URL, datetime=\"2020-02-01T00:00:00Z/2020-02-02T00:00:00Z\"\n        )\n        assert (\n            search.get_parameters()[\"datetime\"]\n            == \"2020-02-01T00:00:00Z/2020-02-02T00:00:00Z\"\n        )\n\n    def test_list_of_strings_datetime(self) -> None:\n        # Timestamp list input\n        search = BaseSearch(\n            url=SEARCH_URL, datetime=[\"2020-02-01T00:00:00Z\", \"2020-02-02T00:00:00Z\"]\n        )\n        assert (\n            search.get_parameters()[\"datetime\"]\n            == \"2020-02-01T00:00:00Z/2020-02-02T00:00:00Z\"\n        )\n\n    def test_open_range_string_datetime(self) -> None:\n        # Open timestamp range input\n        search = BaseSearch(url=SEARCH_URL, datetime=\"2020-02-01T00:00:00Z/..\")\n        assert search.get_parameters()[\"datetime\"] == \"2020-02-01T00:00:00Z/..\"\n\n    def test_single_datetime_object(self) -> None:\n        start = datetime(2020, 2, 1, 0, 0, 0, tzinfo=tzutc())\n\n        # Single datetime input\n        search = BaseSearch(url=SEARCH_URL, datetime=start)\n        assert search.get_parameters()[\"datetime\"] == \"2020-02-01T00:00:00Z\"\n\n    def test_list_of_datetimes(self) -> None:\n        start = datetime(2020, 2, 1, 0, 0, 0, tzinfo=tzutc())\n        end = datetime(2020, 2, 2, 0, 0, 0, tzinfo=tzutc())\n\n        # Datetime range input\n        search = BaseSearch(url=SEARCH_URL, datetime=[start, end])\n        assert (\n            search.get_parameters()[\"datetime\"]\n            == \"2020-02-01T00:00:00Z/2020-02-02T00:00:00Z\"\n        )\n\n    def test_open_list_of_datetimes(self) -> None:\n        start = datetime(2020, 2, 1, 0, 0, 0, tzinfo=tzutc())\n\n        # Open datetime range input\n        search = BaseSearch(url=SEARCH_URL, datetime=(start, None))\n        assert search.get_parameters()[\"datetime\"] == \"2020-02-01T00:00:00Z/..\"\n\n    def test_localized_datetime_converted_to_utc(self) -> None:\n        # Localized datetime input (should be converted to UTC)\n        start_localized = datetime(2020, 2, 1, 0, 0, 0, tzinfo=gettz(\"US/Eastern\"))\n        search = BaseSearch(url=SEARCH_URL, datetime=start_localized)\n        assert search.get_parameters()[\"datetime\"] == \"2020-02-01T05:00:00Z\"\n\n    def test_single_year(self) -> None:\n        search = BaseSearch(url=SEARCH_URL, datetime=\"2020\")\n        assert (\n            search.get_parameters()[\"datetime\"]\n            == \"2020-01-01T00:00:00Z/2020-12-31T23:59:59Z\"\n        )\n\n    def test_range_of_years(self) -> None:\n        search = BaseSearch(url=SEARCH_URL, datetime=\"2019/2020\")\n        assert (\n            search.get_parameters()[\"datetime\"]\n            == \"2019-01-01T00:00:00Z/2020-12-31T23:59:59Z\"\n        )\n\n    def test_single_month(self) -> None:\n        search = BaseSearch(url=SEARCH_URL, datetime=\"2020-06\")\n        assert (\n            search.get_parameters()[\"datetime\"]\n            == \"2020-06-01T00:00:00Z/2020-06-30T23:59:59Z\"\n        )\n\n    def test_range_of_months(self) -> None:\n        search = BaseSearch(url=SEARCH_URL, datetime=\"2020-04/2020-06\")\n        assert (\n            search.get_parameters()[\"datetime\"]\n            == \"2020-04-01T00:00:00Z/2020-06-30T23:59:59Z\"\n        )\n\n    def test_single_date(self) -> None:\n        search = BaseSearch(url=SEARCH_URL, datetime=\"2020-06-10\")\n        assert (\n            search.get_parameters()[\"datetime\"]\n            == \"2020-06-10T00:00:00Z/2020-06-10T23:59:59Z\"\n        )\n\n    def test_range_of_dates(self) -> None:\n        search = BaseSearch(url=SEARCH_URL, datetime=\"2020-06-10/2020-06-20\")\n        assert (\n            search.get_parameters()[\"datetime\"]\n            == \"2020-06-10T00:00:00Z/2020-06-20T23:59:59Z\"\n        )\n\n    def test_mixed_simple_date_strings(self) -> None:\n        search = BaseSearch(url=SEARCH_URL, datetime=\"2019/2020-06-10\")\n        assert (\n            search.get_parameters()[\"datetime\"]\n            == \"2019-01-01T00:00:00Z/2020-06-10T23:59:59Z\"\n        )\n\n    def test_time(self) -> None:\n        search = BaseSearch(\n            url=SEARCH_URL, datetime=\"2019-01-01T00:00:00Z/2019-01-01T00:12:00\"\n        )\n        assert (\n            search.get_parameters()[\"datetime\"]\n            == \"2019-01-01T00:00:00Z/2019-01-01T00:12:00Z\"\n        )\n\n    def test_many_datetimes(self) -> None:\n        datetimes = [\n            \"1985-04-12T23:20:50.52Z\",\n            \"1996-12-19T16:39:57-08:00\",\n            \"1990-12-31T23:59:60Z\",\n            \"1990-12-31T15:59:60-08:00\",\n            \"1937-01-01T12:00:27.87+01:00\",\n            \"1985-04-12T23:20:50.52Z\",\n            \"1937-01-01T12:00:27.8710+01:00\",\n            \"1937-01-01T12:00:27.8+01:00\",\n            \"1937-01-01T12:00:27.8Z\",\n            \"1985-04-12t23:20:50.5202020z\",\n            \"2020-07-23T00:00:00Z\",\n            \"2020-07-23T00:00:00.0Z\",\n            \"2020-07-23T00:00:00.01Z\",\n            \"2020-07-23T00:00:00.012Z\",\n            \"2020-07-23T00:00:00.0123Z\",\n            \"2020-07-23T00:00:00.01234Z\",\n            \"2020-07-23T00:00:00.012345Z\",\n            \"2020-07-23T00:00:00.000Z\",\n            \"2020-07-23T00:00:00.000+03:00\",\n            \"2020-07-23T00:00:00+03:00\",\n            \"2020-07-23T00:00:00.000+03:00\",\n            \"2020-07-23T00:00:00.000z\",\n            \"/2023-01-01T00:00:00Z\",\n            \"2023-01-01T00:00:00Z/\",\n        ]\n        for date_time in datetimes:\n            BaseSearch(url=SEARCH_URL, datetime=date_time)\n\n    def test_three_datetimes(self) -> None:\n        start = datetime(2020, 2, 1, 0, 0, 0, tzinfo=tzutc())\n        middle = datetime(2020, 2, 2, 0, 0, 0, tzinfo=tzutc())\n        end = datetime(2020, 2, 3, 0, 0, 0, tzinfo=tzutc())\n\n        with pytest.raises(Exception):\n            BaseSearch(url=SEARCH_URL, datetime=[start, middle, end])\n\n    def test_double_open_ended_interval(self) -> None:\n        with pytest.raises(Exception):\n            BaseSearch(url=SEARCH_URL, datetime=[None, None])\n\n    def test_datetime_list_of_one_none(self) -> None:\n        with pytest.raises(Exception):\n            BaseSearch(url=SEARCH_URL, datetime=[None])\n\n    def test_poorly_formed_datetimes(self) -> None:\n        with pytest.raises(Exception):\n            BaseSearch(url=SEARCH_URL, datetime=\"2020-7/2020-8\")\n\n    def test_single_collection_string(self) -> None:\n        # Single ID string\n        search = BaseSearch(url=SEARCH_URL, collections=\"naip\")\n        assert search.get_parameters()[\"collections\"] == (\"naip\",)\n\n    def test_multiple_collection_string(self) -> None:\n        # Comma-separated ID string\n        search = BaseSearch(url=SEARCH_URL, collections=\"naip,landsat8_l1tp\")\n        assert search.get_parameters()[\"collections\"] == (\"naip\", \"landsat8_l1tp\")\n\n    def test_list_of_collection_strings(self) -> None:\n        # List of ID strings\n        search = BaseSearch(url=SEARCH_URL, collections=[\"naip\", \"landsat8_l1tp\"])\n        assert search.get_parameters()[\"collections\"] == (\"naip\", \"landsat8_l1tp\")\n\n    def test_generator_of_collection_strings(self) -> None:\n        # Generator of ID strings\n        def collectioner() -> Iterator[str]:\n            yield from [\"naip\", \"landsat8_l1tp\"]\n\n        search = BaseSearch(url=SEARCH_URL, collections=collectioner())\n        assert search.get_parameters()[\"collections\"] == (\"naip\", \"landsat8_l1tp\")\n\n    def test_single_id_string(self) -> None:\n        # Single ID\n        search = BaseSearch(url=SEARCH_URL, ids=\"m_3510836_se_12_060_20180508_20190331\")\n        assert search.get_parameters()[\"ids\"] == (\n            \"m_3510836_se_12_060_20180508_20190331\",\n        )\n\n    def test_multiple_id_string(self) -> None:\n        # Comma-separated ID string\n        search = BaseSearch(\n            url=SEARCH_URL,\n            ids=\"m_3510836_se_12_060_20180508_20190331,m_3510840_se_12_060_20180504_20190331\",\n        )\n        assert search.get_parameters()[\"ids\"] == (\n            \"m_3510836_se_12_060_20180508_20190331\",\n            \"m_3510840_se_12_060_20180504_20190331\",\n        )\n\n    def test_list_of_id_strings(self) -> None:\n        # List of IDs\n        search = BaseSearch(\n            url=SEARCH_URL,\n            ids=[\n                \"m_3510836_se_12_060_20180508_20190331\",\n                \"m_3510840_se_12_060_20180504_20190331\",\n            ],\n        )\n        assert search.get_parameters()[\"ids\"] == (\n            \"m_3510836_se_12_060_20180508_20190331\",\n            \"m_3510840_se_12_060_20180504_20190331\",\n        )\n\n    def test_generator_of_id_string(self) -> None:\n        # Generator of IDs\n        def ids() -> Iterator[str]:\n            yield from [\n                \"m_3510836_se_12_060_20180508_20190331\",\n                \"m_3510840_se_12_060_20180504_20190331\",\n            ]\n\n        search = BaseSearch(url=SEARCH_URL, ids=ids())\n        assert search.get_parameters()[\"ids\"] == (\n            \"m_3510836_se_12_060_20180508_20190331\",\n            \"m_3510840_se_12_060_20180504_20190331\",\n        )\n\n    def test_intersects_dict(self) -> None:\n        # Dict input\n        search = BaseSearch(url=SEARCH_URL, intersects=INTERSECTS_EXAMPLE)\n        assert search.get_parameters()[\"intersects\"] == INTERSECTS_EXAMPLE\n\n    def test_intersects_json_string(self) -> None:\n        # JSON string input\n        search = BaseSearch(url=SEARCH_URL, intersects=json.dumps(INTERSECTS_EXAMPLE))\n        assert search.get_parameters()[\"intersects\"] == INTERSECTS_EXAMPLE\n\n    def test_intersects_non_geo_interface_object(self) -> None:\n        with pytest.raises(Exception):\n            BaseSearch(url=SEARCH_URL, intersects=object())  # type: ignore\n\n    def test_filter_lang_default_for_method_despite_filter_as_dict(self) -> None:\n        search = BaseSearch(url=SEARCH_URL, method=\"GET\", filter={})\n        assert search.get_parameters()[\"filter-lang\"] == \"cql2-text\"\n\n    def test_filter_lang_default_for_method_despite_filter_as_str(self) -> None:\n        search = BaseSearch(url=SEARCH_URL, method=\"POST\", filter=\"\")\n        assert search.get_parameters()[\"filter-lang\"] == \"cql2-json\"\n\n    def test_filter_lang_cql2_text(self) -> None:\n        # Use specified filter_lang\n        search = BaseSearch(url=SEARCH_URL, filter_lang=\"cql2-text\", filter={})\n        assert search.get_parameters()[\"filter-lang\"] == \"cql2-text\"\n\n    def test_filter_lang_cql2_json(self) -> None:\n        # Use specified filter_lang\n        search = BaseSearch(url=SEARCH_URL, filter_lang=\"cql2-json\", filter=\"\")\n        assert search.get_parameters()[\"filter-lang\"] == \"cql2-json\"\n\n    def test_filter_lang_without_filter(self) -> None:\n        # No filter provided\n        search = BaseSearch(url=SEARCH_URL)\n        assert \"filter-lang\" not in search.get_parameters()\n\n    def test_filter_conversion_to_cql2_json(self) -> None:\n        search = BaseSearch(url=SEARCH_URL, method=\"POST\", filter=\"eo:cloud_cover<=10\")\n        assert search.get_parameters()[\"filter-lang\"] == \"cql2-json\"\n        assert search.get_parameters()[\"filter\"] == {\n            \"args\": [{\"property\": \"eo:cloud_cover\"}, 10],\n            \"op\": \"<=\",\n        }\n\n    def test_filter_conversion_to_cql2_text(self) -> None:\n        search = BaseSearch(\n            url=SEARCH_URL,\n            method=\"GET\",\n            filter={\"op\": \"<=\", \"args\": [{\"property\": \"eo:cloud_cover\"}, 10]},\n        )\n        assert search.get_parameters()[\"filter-lang\"] == \"cql2-text\"\n        assert search.get_parameters()[\"filter\"] == '(\"eo:cloud_cover\" <= 10)'\n\n    def test_filter_conversion_does_not_happen_if_filter_lang_specified_json(\n        self,\n    ) -> None:\n        search = BaseSearch(\n            url=SEARCH_URL,\n            method=\"GET\",\n            filter={\"op\": \"<=\", \"args\": [{\"property\": \"eo:cloud_cover\"}, 10]},\n            filter_lang=\"cql2-json\",\n        )\n        # assert search.get_parameters()[\"filter-lang\"] == \"cql2-json\"\n        assert (\n            search.get_parameters()[\"filter\"]\n            == '{\"op\": \"<=\", \"args\": [{\"property\": \"eo:cloud_cover\"}, 10]}'\n        )\n\n    def test_filter_conversion_does_not_happen_if_filter_lang_specified_text(\n        self,\n    ) -> None:\n        search = BaseSearch(\n            url=SEARCH_URL,\n            method=\"POST\",\n            filter=\"eo:cloud_cover<=10\",\n            filter_lang=\"cql2-text\",\n        )\n        # note that this is likely to fail when it hits the server\n        assert search.get_parameters()[\"filter-lang\"] == \"cql2-text\"\n        assert search.get_parameters()[\"filter\"] == \"eo:cloud_cover<=10\"\n\n    def test_sortby(self) -> None:\n        search = BaseSearch(url=SEARCH_URL, sortby=\"properties.datetime\")\n        assert search.get_parameters()[\"sortby\"] == [\n            {\"direction\": \"asc\", \"field\": \"properties.datetime\"}\n        ]\n\n        search = BaseSearch(url=SEARCH_URL, sortby=\"+properties.datetime\")\n        assert search.get_parameters()[\"sortby\"] == [\n            {\"direction\": \"asc\", \"field\": \"properties.datetime\"}\n        ]\n\n        search = BaseSearch(url=SEARCH_URL, sortby=\"-properties.datetime\")\n        assert search.get_parameters()[\"sortby\"] == [\n            {\"direction\": \"desc\", \"field\": \"properties.datetime\"}\n        ]\n\n        search = BaseSearch(\n            url=SEARCH_URL, sortby=\"-properties.datetime,+id,collection\"\n        )\n        assert search.get_parameters()[\"sortby\"] == [\n            {\"direction\": \"desc\", \"field\": \"properties.datetime\"},\n            {\"direction\": \"asc\", \"field\": \"id\"},\n            {\"direction\": \"asc\", \"field\": \"collection\"},\n        ]\n\n        search = BaseSearch(\n            url=SEARCH_URL,\n            sortby=[\n                {\"direction\": \"desc\", \"field\": \"properties.datetime\"},\n                {\"direction\": \"asc\", \"field\": \"id\"},\n                {\"direction\": \"asc\", \"field\": \"collection\"},\n            ],\n        )\n        assert search.get_parameters()[\"sortby\"] == [\n            {\"direction\": \"desc\", \"field\": \"properties.datetime\"},\n            {\"direction\": \"asc\", \"field\": \"id\"},\n            {\"direction\": \"asc\", \"field\": \"collection\"},\n        ]\n\n        search = BaseSearch(\n            url=SEARCH_URL, sortby=[\"-properties.datetime\", \"id\", \"collection\"]\n        )\n        assert search.get_parameters()[\"sortby\"] == [\n            {\"direction\": \"desc\", \"field\": \"properties.datetime\"},\n            {\"direction\": \"asc\", \"field\": \"id\"},\n            {\"direction\": \"asc\", \"field\": \"collection\"},\n        ]\n\n        search = BaseSearch(\n            url=SEARCH_URL,\n            method=\"GET\",\n            sortby=[\"-properties.datetime\", \"id\", \"collection\"],\n        )\n        assert (\n            search.get_parameters()[\"sortby\"] == \"-properties.datetime,+id,+collection\"\n        )\n\n        search = BaseSearch(\n            url=SEARCH_URL, method=\"GET\", sortby=\"-properties.datetime,id,collection\"\n        )\n        assert (\n            search.get_parameters()[\"sortby\"] == \"-properties.datetime,+id,+collection\"\n        )\n\n        with pytest.raises(Exception):\n            BaseSearch(url=SEARCH_URL, sortby=1)  # type: ignore\n\n        with pytest.raises(Exception):\n            BaseSearch(url=SEARCH_URL, sortby=[1])  # type: ignore\n\n    def test_fields(self) -> None:\n        with pytest.raises(Exception):\n            BaseSearch(url=SEARCH_URL, fields=1)  # type: ignore\n\n        with pytest.raises(Exception):\n            BaseSearch(url=SEARCH_URL, fields=[1])  # type: ignore\n\n        search = BaseSearch(url=SEARCH_URL, fields=\"id,collection,+foo,-bar\")\n        assert search.get_parameters()[\"fields\"] == {\n            \"exclude\": [\"bar\"],\n            \"include\": [\"id\", \"collection\", \"foo\"],\n        }\n\n        search = BaseSearch(url=SEARCH_URL, fields=[\"id\", \"collection\", \"+foo\", \"-bar\"])\n        assert search.get_parameters()[\"fields\"] == {\n            \"exclude\": [\"bar\"],\n            \"include\": [\"id\", \"collection\", \"foo\"],\n        }\n\n        search = BaseSearch(\n            url=SEARCH_URL,\n            fields={\"exclude\": [\"bar\"], \"include\": [\"id\", \"collection\"]},\n        )\n        assert search.get_parameters()[\"fields\"] == {\n            \"exclude\": [\"bar\"],\n            \"include\": [\"id\", \"collection\"],\n        }\n\n        search = BaseSearch(\n            url=SEARCH_URL, method=\"GET\", fields=\"id,collection,+foo,-bar\"\n        )\n        assert search.get_parameters()[\"fields\"] == \"+id,+collection,+foo,-bar\"\n\n        search = BaseSearch(\n            url=SEARCH_URL, method=\"GET\", fields=[\"id\", \"collection\", \"+foo\", \"-bar\"]\n        )\n        assert search.get_parameters()[\"fields\"] == \"+id,+collection,+foo,-bar\"\n\n        search = BaseSearch(\n            url=SEARCH_URL,\n            method=\"GET\",\n            fields={\"exclude\": [\"bar\"], \"include\": [\"id\", \"collection\"]},\n        )\n        assert search.get_parameters()[\"fields\"] == \"+id,+collection,-bar\"\n"
  },
  {
    "path": "tests/test_cli.py",
    "content": "import json\nimport tempfile\n\nimport pytest\nfrom pytest_console_scripts import ScriptRunner\n\nimport pystac_client.cli\nfrom tests.helpers import STAC_URLS, TEST_DATA\n\nFILTER_JSON = {\"op\": \"lte\", \"args\": [{\"property\": \"eo:cloud_cover\"}, 40]}\n\n\n# We want to ensure that the CLI is handling these warnings properly\n@pytest.mark.filterwarnings(\"ignore::pystac_client.warnings.PystacClientWarning\")\nclass TestCLISearch:\n    @pytest.mark.vcr\n    def test_item_search(self, script_runner: ScriptRunner) -> None:\n        args = [\n            \"stac-client\",\n            \"search\",\n            STAC_URLS[\"PLANETARY-COMPUTER\"],\n            \"-c\",\n            \"naip\",\n            \"--max-items\",\n            \"20\",\n        ]\n        result = script_runner.run(args, print_result=False)\n        assert result.success\n\n    @pytest.mark.vcr\n    def test_filter(self, script_runner: ScriptRunner) -> None:\n        args = [\n            \"stac-client\",\n            \"search\",\n            STAC_URLS[\"EARTH-SEARCH\"],\n            \"--filter\",\n            json.dumps(FILTER_JSON),\n            \"--max-items\",\n            \"20\",\n        ]\n        result = script_runner.run(args, print_result=False)\n        assert result.success, result.stderr\n        assert result.stdout\n\n    @pytest.mark.vcr\n    @pytest.mark.parametrize(\"filename\", [\"netherlands_aoi.json\", \"sample-item.json\"])\n    def test_intersects(self, script_runner: ScriptRunner, filename: str) -> None:\n        args = [\n            \"stac-client\",\n            \"search\",\n            STAC_URLS[\"PLANETARY-COMPUTER\"],\n            \"--collections\",\n            \"landsat-8-c2-l2\",\n            \"--intersects\",\n            str(TEST_DATA / filename),\n            \"--max-items\",\n            \"10\",\n        ]\n        result = script_runner.run(args, print_result=False)\n        assert result.success, result.stderr\n        assert result.stdout\n\n    @pytest.mark.vcr\n    def test_intersects_despite_warning(self, script_runner: ScriptRunner) -> None:\n        args = [\n            \"stac-client\",\n            \"search\",\n            STAC_URLS[\"PLANETARY-COMPUTER\"],\n            \"--collections\",\n            \"landsat-8-c2-l2\",\n            \"--intersects\",\n            str(TEST_DATA / \"sample-item-collection.json\"),\n            \"--max-items\",\n            \"10\",\n        ]\n        result = script_runner.run(args, print_result=False)\n        assert result.success\n        assert result.stdout\n        assert \"input to intersects is a FeatureCollection\" in result.stderr\n\n    @pytest.mark.parametrize(\n        \"headers,good_header_count\",\n        [\n            ([\"kick=flip\", \"home=run\"], 2),\n            ([\"mad=pow\"], 1),\n            ([\"=no-var\"], 0),\n            ([\"no-val=\"], 0),\n            ([\"good=header\", \"bad-header\"], 1),\n            ([\"header=value-with-three-=-signs-=\", \"plain=jane\"], 2),\n        ],\n    )\n    def test_headers(self, headers: list[str], good_header_count: int) -> None:\n        args = [\n            \"search\",\n            STAC_URLS[\"PLANETARY-COMPUTER\"],\n            \"-c\",\n            \"naip\",\n            \"--max-items\",\n            \"20\",\n            \"--headers\",\n        ] + headers\n        pargs = pystac_client.cli.parse_args(args)\n        assert len(pargs[\"headers\"]) == good_header_count\n\n    def test_no_arguments(self, script_runner: ScriptRunner) -> None:\n        args = [\"stac-client\"]\n        result = script_runner.run(*args, print_result=False)\n        assert not result.success\n        assert result.returncode == 1\n\n    @pytest.mark.vcr\n    def test_non_conformant_raises_by_default(\n        self, script_runner: ScriptRunner\n    ) -> None:\n        args = [\n            \"stac-client\",\n            \"search\",\n            \"https://earth-search.aws.element84.com/v0\",\n            \"-c\",\n            \"sentinel-s2-l2a-cogs\",\n            \"--matched\",\n        ]\n        result = script_runner.run(args, print_result=False)\n        assert result.success is False\n        assert \"Server does not conform to ITEM_SEARCH\" in result.stderr\n        assert result.returncode == 1\n\n    @pytest.mark.vcr\n    @pytest.mark.parametrize(\"warning_flag\", [\"--error\", \"--error=no-conforms-to\"])\n    def test_non_conformant_raises_if_warning_set_to_error(\n        self, script_runner: ScriptRunner, warning_flag: str\n    ) -> None:\n        args = [\n            \"stac-client\",\n            \"search\",\n            \"https://earth-search.aws.element84.com/v0\",\n            \"-c\",\n            \"sentinel-s2-l2a-cogs\",\n            warning_flag,\n            \"--matched\",\n        ]\n        result = script_runner.run(args, print_result=False)\n        assert result.success is False\n        assert \"Server does not advertise any conformance classes\" in result.stderr\n        assert result.returncode == 1\n\n    @pytest.mark.vcr\n    def test_non_conformant_can_be_fixed(self, script_runner: ScriptRunner) -> None:\n        args = [\n            \"stac-client\",\n            \"search\",\n            \"https://earth-search.aws.element84.com/v0\",\n            \"-c\",\n            \"sentinel-s2-l2a-cogs\",\n            \"--add-conforms-to=ITEM_SEARCH\",\n            \"--matched\",\n        ]\n        result = script_runner.run(args, print_result=False)\n        assert result.success\n\n    @pytest.mark.vcr\n    @pytest.mark.parametrize(\"warning_flag\", [\"--ignore\", \"--ignore=no-conforms-to\"])\n    def test_non_conformant_can_be_ignored(\n        self, script_runner: ScriptRunner, warning_flag: str\n    ) -> None:\n        args = [\n            \"stac-client\",\n            \"search\",\n            \"https://earth-search.aws.element84.com/v0\",\n            \"-c\",\n            \"sentinel-s2-l2a-cogs\",\n            warning_flag,\n            \"--add-conforms-to=ITEM_SEARCH\",\n            \"--matched\",\n        ]\n        result = script_runner.run(args, print_result=False)\n        assert result.success\n\n    @pytest.mark.vcr\n    @pytest.mark.parametrize(\n        \"conforms_to_flag\", [\"--clear-conforms-to\", \"--remove-conforms-to=ITEM_SEARCH\"]\n    )\n    def test_altering_conforms_to(\n        self, script_runner: ScriptRunner, conforms_to_flag: str\n    ) -> None:\n        args = [\n            \"stac-client\",\n            \"search\",\n            STAC_URLS[\"EARTH-SEARCH\"],\n            conforms_to_flag,\n        ]\n        result = script_runner.run(args, print_result=False)\n        assert result.success is False\n        assert \"Server does not conform to ITEM_SEARCH\" in result.stderr\n        assert result.returncode == 1\n\n    @pytest.mark.vcr\n    @pytest.mark.filterwarnings(\"ignore::Warning\")\n    def test_matched_not_available(self, script_runner: ScriptRunner) -> None:\n        args = [\n            \"stac-client\",\n            \"search\",\n            STAC_URLS[\"PLANETARY-COMPUTER\"],\n            \"-c\",\n            \"naip\",\n            \"--matched\",\n        ]\n        result = script_runner.run(args, print_result=False)\n        assert result.success is False\n        assert \"'matched' is not supported for this catalog\" in result.stderr\n        assert result.returncode == 1\n\n    @pytest.mark.vcr\n    def test_matched(self, script_runner: ScriptRunner) -> None:\n        args = [\n            \"stac-client\",\n            \"search\",\n            STAC_URLS[\"EARTH-SEARCH\"],\n            \"-c\",\n            \"cop-dem-glo-30\",\n            \"--max-items\",\n            \"1\",\n            \"--matched\",\n        ]\n        result = script_runner.run(args, print_result=False)\n        assert result.success\n        assert result.stdout[0].isdigit(), \"Output does not start with a number\"\n\n    @pytest.mark.vcr\n    def test_fields(self, script_runner: ScriptRunner) -> None:\n        args = [\n            \"stac-client\",\n            \"search\",\n            STAC_URLS[\"EARTH-SEARCH\"],\n            \"-c\",\n            \"cop-dem-glo-30\",\n            \"--max-items\",\n            \"1\",\n            \"--fields=-geometry,-assets\",\n        ]\n        result = script_runner.run(args, print_result=True)\n        assert result.success\n        assert \"assets\" not in result.stdout\n        assert \"geometry\" not in result.stdout\n\n    @pytest.mark.vcr\n    def test_save(self, script_runner: ScriptRunner) -> None:\n        with tempfile.NamedTemporaryFile() as fp:\n            path = fp.name\n        args = [\n            \"stac-client\",\n            \"search\",\n            STAC_URLS[\"EARTH-SEARCH\"],\n            \"-c\",\n            \"cop-dem-glo-30\",\n            \"--max-items\",\n            \"1\",\n            \"--save\",\n            path,\n        ]\n        result = script_runner.run(args, print_result=False)\n        assert result.success\n\n        with open(path) as f:\n            output = json.loads(f.read())\n\n        assert \"features\" in output\n        assert len(output[\"features\"]) == 1\n\n\n@pytest.mark.filterwarnings(\"ignore::pystac_client.warnings.PystacClientWarning\")\nclass TestCLICollections:\n    @pytest.mark.vcr\n    def test_collections(self, script_runner: ScriptRunner) -> None:\n        args = [\n            \"stac-client\",\n            \"collections\",\n            STAC_URLS[\"EARTH-SEARCH\"],\n        ]\n        result = script_runner.run(args, print_result=False)\n        assert result.success\n        assert result.stdout.startswith('[{\"type\": \"Collection\"')\n\n    @pytest.mark.vcr\n    def test_collection_search(self, script_runner: ScriptRunner) -> None:\n        args = [\n            \"stac-client\",\n            \"collections\",\n            STAC_URLS[\"EARTH-SEARCH\"],\n            \"--q\",\n            \"sentinel\",\n        ]\n        with pytest.warns(UserWarning, match=\"COLLECTION_SEARCH\"):\n            result = script_runner.run(args, print_result=False)\n\n        assert result.success\n\n        collections = json.loads(result.stdout)\n        assert len(collections) == 5\n\n    @pytest.mark.vcr\n    def test_save(self, script_runner: ScriptRunner) -> None:\n        with tempfile.NamedTemporaryFile() as fp:\n            path = fp.name\n        args = [\n            \"stac-client\",\n            \"collections\",\n            STAC_URLS[\"EARTH-SEARCH\"],\n            \"--save\",\n            path,\n        ]\n        result = script_runner.run(args, print_result=False)\n        assert result.success\n\n        with open(path) as f:\n            output = json.loads(f.read())\n\n        assert isinstance(output, list)\n        assert len(output) == 9, \"earth-search does not have 9 collections\"\n        assert all(c[\"type\"] == \"Collection\" for c in output)\n"
  },
  {
    "path": "tests/test_client.py",
    "content": "import json\nimport os.path\nimport warnings\nfrom datetime import datetime\nfrom tempfile import TemporaryDirectory\nfrom typing import Any\nfrom urllib.parse import parse_qs, urlsplit\n\nimport pystac\nimport pytest\nfrom dateutil.tz import tzutc\nfrom pystac import MediaType\nfrom requests_mock import Mocker\n\nfrom pystac_client import Client, CollectionClient\nfrom pystac_client._utils import Modifiable\nfrom pystac_client.conformance import ConformanceClasses\nfrom pystac_client.errors import ClientTypeError, IgnoredResultWarning\nfrom pystac_client.exceptions import APIError\nfrom pystac_client.stac_api_io import StacApiIO\nfrom pystac_client.warnings import (\n    DoesNotConformTo,\n    FallbackToPystac,\n    MissingLink,\n    NoConformsTo,\n    strict,\n)\n\nfrom .helpers import STAC_URLS, TEST_DATA, read_data_file\n\n\nclass TestAPI:\n    @pytest.mark.vcr\n    def test_instance(self) -> None:\n        api = Client.open(STAC_URLS[\"PLANETARY-COMPUTER\"])\n\n        # An API instance is also a Catalog instance\n        assert isinstance(api, pystac.Catalog)\n\n        assert str(api) == \"<Client id=microsoft-pc>\"\n\n    @pytest.mark.vcr\n    def test_links(self) -> None:\n        api = Client.open(STAC_URLS[\"PLANETARY-COMPUTER\"])\n\n        # Should be able to get collections via links as with a typical PySTAC Catalog\n        collection_links = api.get_links(\"child\")\n        assert len(collection_links) > 0\n\n        collections = list(api.get_collections())\n        assert len(collection_links) == len(collections)\n\n        first_child_link = api.get_single_link(\"child\")\n        assert first_child_link is not None\n        first_collection = first_child_link.resolve_stac_object(root=api).target\n        assert isinstance(first_collection, pystac.Collection)\n\n    @pytest.mark.vcr\n    def test_from_file(self) -> None:\n        api = Client.from_file(STAC_URLS[\"PLANETARY-COMPUTER\"])\n\n        assert api.title == \"Microsoft Planetary Computer STAC API\"\n\n    def test_invalid_url(self) -> None:\n        with pytest.raises(TypeError):\n            Client.open()  # type: ignore[call-arg]\n\n    def test_get_collections_with_conformance(self, requests_mock: Mocker) -> None:\n        \"\"\"Checks that the \"data\" endpoint is used if the API published the\n        STAC API Collections conformance class.\"\"\"\n        pc_root_text = read_data_file(\"planetary-computer-root.json\")\n        pc_collection_dict = read_data_file(\n            \"planetary-computer-aster-l1t-collection.json\", parse_json=True\n        )\n\n        # Mock the root catalog\n        requests_mock.get(\n            STAC_URLS[\"PLANETARY-COMPUTER\"], status_code=200, text=pc_root_text\n        )\n        api = Client.open(STAC_URLS[\"PLANETARY-COMPUTER\"])\n\n        assert api.conforms_to(ConformanceClasses.COLLECTIONS)\n\n        # Get & mock the collections (rel type \"data\") link\n        collections_link = api.get_single_link(\"data\")\n        assert collections_link is not None\n        requests_mock.get(\n            collections_link.href,\n            status_code=200,\n            json={\"collections\": [pc_collection_dict], \"links\": []},\n        )\n        _ = next(api.get_collections())\n\n        history = requests_mock.request_history\n        assert len(history) == 2\n        assert history[1].url == collections_link.href\n\n    def test_get_collections_single_slash(self, requests_mock: Mocker) -> None:\n        pc_root_text = read_data_file(\"planetary-computer-root.json\")\n        root_url = \"http://pystac-client.test/\"\n        requests_mock.get(root_url, status_code=200, text=pc_root_text)\n        api = Client.open(root_url)\n        pc_collection_dict = read_data_file(\n            \"planetary-computer-aster-l1t-collection.json\", parse_json=True\n        )\n        requests_mock.get(\n            f\"{root_url}collections\",  # note the lack of the slash\n            status_code=200,\n            json={\"collections\": [pc_collection_dict], \"links\": []},\n        )\n        api.remove_links(\"data\")\n        with pytest.warns(MissingLink, match=\"No link with rel='data'\"):\n            _ = next(api.get_collections())\n        history = requests_mock.request_history\n        assert len(history) == 2\n        assert history[1].url == f\"{root_url}collections\"\n\n    def test_keep_trailing_slash_on_root(self, requests_mock: Mocker) -> None:\n        pc_root_text = read_data_file(\"planetary-computer-root.json\")\n        root_url = \"http://pystac-client.test/\"\n        requests_mock.get(root_url, status_code=200, text=pc_root_text)\n        client = Client.open(root_url)\n        self_href = client.get_self_href()\n        assert self_href\n        assert self_href.endswith(\"/\")\n\n    def test_fall_back_to_data_link_for_collections(\n        self, requests_mock: Mocker\n    ) -> None:\n        pc_root_text = read_data_file(\"planetary-computer-root.json\")\n        root_url = \"http://pystac-client.test/\"\n        requests_mock.get(root_url, status_code=200, text=pc_root_text)\n        api = Client.open(root_url)\n        api.set_self_href(None)\n        pc_collection_dict = read_data_file(\n            \"planetary-computer-aster-l1t-collection.json\", parse_json=True\n        )\n        requests_mock.get(\n            # the href of the data link\n            \"https://planetarycomputer.microsoft.com/api/stac/v1/collections\",\n            status_code=200,\n            json={\"collections\": [pc_collection_dict], \"links\": []},\n        )\n        _ = next(api.get_collections())\n        history = requests_mock.request_history\n        assert len(history) == 2\n        assert (\n            history[1].url\n            == \"https://planetarycomputer.microsoft.com/api/stac/v1/collections\"\n        )\n\n    def test_build_absolute_href_from_data_link(self, requests_mock: Mocker) -> None:\n        pc_root = read_data_file(\"planetary-computer-root.json\", parse_json=True)\n        assert isinstance(pc_root, dict)\n        for link in pc_root[\"links\"]:\n            if link[\"rel\"] == \"data\":\n                link[\"href\"] = \"./collections\"\n        root_url = \"http://pystac-client.test/\"\n        requests_mock.get(root_url, status_code=200, text=json.dumps(pc_root))\n        api = Client.open(root_url)\n        api.set_self_href(None)\n        api.add_link(\n            pystac.Link(\n                rel=\"self\",\n                target=\"https://planetarycomputer.microsoft.com/api/stac/v1/\",\n            )\n        )\n        pc_collection_dict = read_data_file(\n            \"planetary-computer-aster-l1t-collection.json\", parse_json=True\n        )\n        requests_mock.get(\n            # the href of the data link\n            \"https://planetarycomputer.microsoft.com/api/stac/v1/collections\",\n            status_code=200,\n            json={\"collections\": [pc_collection_dict], \"links\": []},\n        )\n        _ = next(api.get_collections())\n        history = requests_mock.request_history\n        assert len(history) == 2\n        assert (\n            history[1].url\n            == \"https://planetarycomputer.microsoft.com/api/stac/v1/collections\"\n        )\n\n    def test_error_if_no_self_href_or_data_link(self, requests_mock: Mocker) -> None:\n        pc_root = read_data_file(\"planetary-computer-root.json\", parse_json=True)\n        assert isinstance(pc_root, dict)\n        pc_root[\"links\"] = [link for link in pc_root[\"links\"] if link[\"rel\"] != \"data\"]\n        root_url = \"http://pystac-client.test/\"\n        requests_mock.get(root_url, status_code=200, text=json.dumps(pc_root))\n        api = Client.open(root_url)\n        api.set_self_href(None)\n        with pytest.warns(MissingLink, match=\"No link with rel='data'\"):\n            with pytest.raises(ValueError, match=\"does not have a self_href set\"):\n                _ = api.get_collection(\"an-id\")\n\n    def test_custom_request_parameters(self, requests_mock: Mocker) -> None:\n        pc_root_text = read_data_file(\"planetary-computer-root.json\")\n        pc_collection_dict = read_data_file(\n            \"planetary-computer-collection.json\", parse_json=True\n        )\n\n        requests_mock.get(\n            STAC_URLS[\"PLANETARY-COMPUTER\"], status_code=200, text=pc_root_text\n        )\n\n        init_qp_name = \"my-param\"\n        init_qp_value = \"some-value\"\n\n        api = Client.open(\n            STAC_URLS[\"PLANETARY-COMPUTER\"], parameters={init_qp_name: init_qp_value}\n        )\n\n        # Ensure that the Client will use the /collections endpoint and not fall back\n        # to traversing child links.\n        assert api.conforms_to(ConformanceClasses.COLLECTIONS)\n\n        # Get the /collections endpoint\n        collections_link = api.get_single_link(\"data\")\n        assert collections_link is not None\n\n        # Mock the request\n        requests_mock.get(\n            collections_link.href,\n            status_code=200,\n            json={\"collections\": [pc_collection_dict], \"links\": []},\n        )\n\n        # Make the collections request\n        _ = next(api.get_collections())\n\n        history = requests_mock.request_history\n        assert len(history) == 2\n\n        actual_qs = urlsplit(history[1].url).query\n        actual_qp = parse_qs(actual_qs)\n\n        # Check that the param from the init method is present\n        assert init_qp_name in actual_qp\n        assert len(actual_qp[init_qp_name]) == 1\n        assert actual_qp[init_qp_name][0] == init_qp_value\n\n    def test_custom_query_params_get_collections_propagation(\n        self, requests_mock: Mocker\n    ) -> None:\n        \"\"\"Checks that query params passed to the init method are added to requests for\n        CollectionClients fetched from\n        the /collections endpoint.\"\"\"\n        pc_root_text = read_data_file(\"planetary-computer-root.json\")\n        pc_collection_dict = read_data_file(\n            \"planetary-computer-collection.json\", parse_json=True\n        )\n\n        requests_mock.get(\n            STAC_URLS[\"PLANETARY-COMPUTER\"], status_code=200, text=pc_root_text\n        )\n\n        init_qp_name = \"my-param\"\n        init_qp_value = \"some-value\"\n\n        client = Client.open(\n            STAC_URLS[\"PLANETARY-COMPUTER\"], parameters={init_qp_name: init_qp_value}\n        )\n\n        # Get the /collections endpoint\n        collections_link = client.get_single_link(\"data\")\n        assert collections_link is not None\n\n        # Mock the request\n        requests_mock.get(\n            collections_link.href,\n            status_code=200,\n            json={\"collections\": [pc_collection_dict], \"links\": []},\n        )\n\n        # Make the collections request\n        collection = next(client.get_collections())\n\n        # Mock the items endpoint\n        items_link = collection.get_single_link(\"items\")\n        assert items_link is not None\n        requests_mock.get(\n            items_link.href,\n            status_code=200,\n            json={\n                \"type\": \"FeatureCollection\",\n                \"stac_version\": \"1.0.0\",\n                \"features\": [],\n                \"links\": [],\n            },\n        )\n\n        # Make the items request\n        _ = list(collection.get_items())\n\n        history = requests_mock.request_history\n        assert len(history) == 3\n\n        actual_qs = urlsplit(history[2].url).query\n        actual_qp = parse_qs(actual_qs)\n\n        # Check that the query param from the root Client is present\n        assert init_qp_name in actual_qp\n        assert len(actual_qp[init_qp_name]) == 1\n        assert actual_qp[init_qp_name][0] == init_qp_value\n\n    def test_custom_query_params_get_collection_propagation(\n        self, requests_mock: Mocker\n    ) -> None:\n        \"\"\"Checks that query params passed to the init method are added to\n        requests for CollectionClients fetched from the /collections endpoint.\"\"\"\n        pc_root_text = read_data_file(\"planetary-computer-root.json\")\n        pc_collection_dict = read_data_file(\n            \"planetary-computer-collection.json\", parse_json=True\n        )\n        assert isinstance(pc_collection_dict, dict)\n        pc_collection_id = pc_collection_dict[\"id\"]\n\n        requests_mock.get(\n            STAC_URLS[\"PLANETARY-COMPUTER\"], status_code=200, text=pc_root_text\n        )\n\n        init_qp_name = \"my-param\"\n        init_qp_value = \"some-value\"\n\n        client = Client.open(\n            STAC_URLS[\"PLANETARY-COMPUTER\"], parameters={init_qp_name: init_qp_value}\n        )\n\n        # Get the /collections endpoint\n        collections_link = client.get_single_link(\"data\")\n        assert collections_link is not None\n        collection_href = collections_link.href + \"/\" + pc_collection_id\n\n        # Mock the request\n        requests_mock.get(collection_href, status_code=200, json=pc_collection_dict)\n\n        # Make the collections request\n        collection = client.get_collection(pc_collection_id)\n        assert collection is not None\n\n        # Mock the items endpoint\n        items_link = collection.get_single_link(\"items\")\n        assert items_link is not None\n        requests_mock.get(\n            items_link.href,\n            status_code=200,\n            json={\n                \"type\": \"FeatureCollection\",\n                \"stac_version\": \"1.0.0\",\n                \"features\": [],\n                \"links\": [],\n            },\n        )\n\n        # Make the items request\n        _ = list(collection.get_items())\n\n        history = requests_mock.request_history\n        assert len(history) == 3\n\n        actual_qs = urlsplit(history[2].url).query\n        actual_qp = parse_qs(actual_qs)\n\n        # Check that the query param from the root Client is present\n        assert init_qp_name in actual_qp\n        assert len(actual_qp[init_qp_name]) == 1\n        assert actual_qp[init_qp_name][0] == init_qp_value\n\n    def test_get_collections_without_conformance_fallsback_to_pystac(\n        self, requests_mock: Mocker\n    ) -> None:\n        pc_root_dict = read_data_file(\"planetary-computer-root.json\", parse_json=True)\n        pc_collection_dict = read_data_file(\n            \"planetary-computer-aster-l1t-collection.json\", parse_json=True\n        )\n\n        # Remove the collections conformance class\n        pc_root_dict[\"conformsTo\"].remove(\n            \"https://api.stacspec.org/v1.0.0-beta.1/collections\"\n        )\n\n        # Remove all child links except for the collection that we are mocking\n        pc_collection_href = next(\n            link[\"href\"]\n            for link in pc_collection_dict[\"links\"]\n            if link[\"rel\"] == \"self\"\n        )\n        pc_root_dict[\"links\"] = [\n            link\n            for link in pc_root_dict[\"links\"]\n            if link[\"rel\"] != \"child\" or link[\"href\"] == pc_collection_href\n        ]\n\n        # Mock the root catalog\n        requests_mock.get(\n            STAC_URLS[\"PLANETARY-COMPUTER\"], status_code=200, json=pc_root_dict\n        )\n        api = Client.open(STAC_URLS[\"PLANETARY-COMPUTER\"])\n\n        assert api.has_conforms_to()\n        assert not api.conforms_to(ConformanceClasses.COLLECTIONS)\n        assert not api.conforms_to(ConformanceClasses.FEATURES)\n\n        # Mock the collection\n        requests_mock.get(pc_collection_href, status_code=200, json=pc_collection_dict)\n\n        with pytest.warns(FallbackToPystac):\n            with pytest.warns(DoesNotConformTo, match=\"COLLECTIONS, FEATURES\"):\n                _ = next(api.get_collections())\n\n        history = requests_mock.request_history\n        assert len(history) == 2\n\n    def test_opening_a_collection(self) -> None:\n        path = str(TEST_DATA / \"planetary-computer-aster-l1t-collection.json\")\n        with pytest.raises(ClientTypeError):\n            Client.open(path)\n\n    def test_headers_with_custom_stac_io(self, requests_mock: Mocker) -> None:\n        pc_root_dict = read_data_file(\"planetary-computer-root.json\", parse_json=True)\n        requests_mock.get(\n            STAC_URLS[\"PLANETARY-COMPUTER\"],\n            status_code=200,\n            json=pc_root_dict,\n            request_headers={\"ski\": \"pow\", \"shred\": \"gnar\"},\n        )\n        stac_io = StacApiIO(headers={\"ski\": \"pow\"})\n        _ = Client.open(\n            STAC_URLS[\"PLANETARY-COMPUTER\"], headers={\"shred\": \"gnar\"}, stac_io=stac_io\n        )\n\n\nclass TestAPISearch:\n    @pytest.fixture(scope=\"function\")\n    def api(self) -> Client:\n        return Client.from_file(str(TEST_DATA / \"planetary-computer-root.json\"))\n\n    def test_search_conformance_error(self, api: Client) -> None:\n        # Remove item search conformance\n        api.remove_conforms_to(\"ITEM_SEARCH\")\n\n        with strict():\n            with pytest.raises(DoesNotConformTo, match=\"ITEM_SEARCH\"):\n                api.search(limit=10, max_items=10, collections=\"mr-peebles\")\n\n    def test_no_search_link(self, api: Client) -> None:\n        # Remove the search link\n        api.remove_links(\"search\")\n\n        with strict():\n            with pytest.raises(\n                MissingLink,\n                match=\"No link with rel='search' could be found on this Client\",\n            ):\n                api.search(limit=10, max_items=10, collections=\"naip\")\n\n    def test_no_conforms_to(self) -> None:\n        with open(str(TEST_DATA / \"planetary-computer-root.json\")) as f:\n            data = json.load(f)\n        del data[\"conformsTo\"]\n        with TemporaryDirectory() as temporary_directory:\n            path = os.path.join(temporary_directory, \"catalog.json\")\n            with open(path, \"w\") as f:\n                json.dump(data, f)\n            api = Client.from_file(path)\n\n        with strict():\n            with pytest.raises(DoesNotConformTo, match=\"ITEM_SEARCH\"):\n                api.search(limit=10, max_items=10, collections=\"naip\")\n\n    def test_search(self, api: Client) -> None:\n        results = api.search(\n            bbox=[-73.21, 43.99, -73.12, 44.05],\n            collections=\"naip\",\n            limit=10,\n            max_items=20,\n            datetime=[datetime(2020, 1, 1, 0, 0, 0, tzinfo=tzutc()), None],\n        )\n\n        assert results._parameters == {\n            \"bbox\": (-73.21, 43.99, -73.12, 44.05),\n            \"collections\": (\"naip\",),\n            \"limit\": 10,\n            \"datetime\": \"2020-01-01T00:00:00Z/..\",\n        }\n\n    def test_json_search_link(self, api: Client) -> None:\n        search_link = api.get_single_link(rel=\"search\")\n        assert search_link\n        api.remove_links(rel=\"search\")\n        search_link.media_type = MediaType.JSON\n        api.add_link(search_link)\n        api.search(limit=1, max_items=1, collections=\"naip\")\n\n    @pytest.mark.vcr\n    def test_search_max_items_unlimited_default(self, api: Client) -> None:\n        search = api.search(\n            bbox=[-73.21, 43.99, -73.12, 45.05],\n            collections=\"naip\",\n            datetime=\"2014-01-01/2020-12-31\",\n        )\n        items = list(search.items())\n        assert len(items) > 100\n\n\nclass TestAPICollectionSearch:\n    @pytest.fixture(scope=\"function\")\n    def api(self) -> Client:\n        return Client.from_file(str(TEST_DATA / \"fedeo_clearinghouse.json\"))\n\n    def test_search_conformance_error(self, api: Client) -> None:\n        # Remove collection search conformance\n        api.remove_conforms_to(\"COLLECTION_SEARCH\")\n        api.remove_conforms_to(\"COLLECTIONS\")\n\n        with strict():\n            with pytest.raises(DoesNotConformTo, match=\"COLLECTION_SEARCH\"):\n                api.collection_search(limit=10, max_collections=10, q=\"test\")\n\n    def test_search_conformance_warning(self) -> None:\n        api = Client.from_file(str(TEST_DATA / \"planetary-computer-root.json\"))\n\n        # Remove collection search conformance just in case...\n        api.remove_conforms_to(\"COLLECTION_SEARCH\")\n\n        with strict():\n            with pytest.warns(UserWarning, match=\"COLLECTION_SEARCH\"):\n                api.collection_search(limit=10, max_collections=10, q=\"test\")\n\n    @pytest.mark.vcr\n    def test_search(self, api: Client) -> None:\n        results = api.collection_search(\n            bbox=[-73.21, 43.99, -73.12, 44.05],\n            limit=10,\n            datetime=[datetime(2020, 1, 1, 0, 0, 0, tzinfo=tzutc()), None],\n        )\n\n        assert results._parameters == {\n            \"bbox\": (-73.21, 43.99, -73.12, 44.05),\n            \"limit\": 10,\n            \"datetime\": \"2020-01-01T00:00:00Z/..\",\n        }\n\n\nclass MySign:\n    def __init__(self) -> None:\n        self.call_count = 0\n\n    def __call__(self, x: Modifiable) -> None:\n        self.call_count += 1\n\n\nclass TestSigning:\n    @pytest.mark.vcr\n    def test_signing(self) -> None:\n        sign = MySign()\n        # sign is callable, but mypy keeps trying to interpret it as a \"MySign\" object.\n        client = Client.open(STAC_URLS[\"PLANETARY-COMPUTER\"], modifier=sign)\n        assert client.modifier is sign\n\n        collection = client.get_collection(\"cil-gdpcir-cc0\")\n        assert collection\n        assert isinstance(collection, CollectionClient)\n        assert collection.modifier is sign\n        assert sign.call_count == 1\n\n        collection.get_item(\"cil-gdpcir-INM-INM-CM5-0-ssp585-r1i1p1f1-day\")\n        assert sign.call_count == 2\n\n        next(client.get_collections())\n        assert sign.call_count == 3\n\n        search = client.search(collections=[\"sentinel-2-l2a\"], max_items=10)\n        next(search.items_as_dicts())\n        assert sign.call_count == 4\n\n        next(search.items())\n        assert sign.call_count == 5\n\n        next(search.pages_as_dicts())\n        assert sign.call_count == 6\n\n        next(search.pages())\n        assert sign.call_count == 7\n\n        search.item_collection_as_dict()\n        assert sign.call_count == 8\n\n        search.item_collection()\n        assert sign.call_count == 9\n\n    @pytest.mark.vcr\n    def test_sign_with_return_warns(self) -> None:\n        def modifier_ok(x: Any) -> Any:\n            return x\n\n        def modifier_bad(x: Any) -> Any:\n            return 0\n\n        client = Client.open(STAC_URLS[\"PLANETARY-COMPUTER\"], modifier=modifier_ok)\n        with warnings.catch_warnings():\n            warnings.simplefilter(\"error\")\n            client.get_collection(\"sentinel-2-l2a\")\n\n        client = Client.open(STAC_URLS[\"PLANETARY-COMPUTER\"], modifier=modifier_bad)\n        with pytest.warns(IgnoredResultWarning):\n            client.get_collection(\"sentinel-2-l2a\")\n\n\nclass TestQueryables:\n    @pytest.mark.vcr\n    def test_get_queryables_collections(self) -> None:\n        api = Client.open(STAC_URLS[\"PLANETARY-COMPUTER\"])\n        with pytest.warns(MissingLink, match=\"queryables\"):\n            col = api.get_collection(\"3dep-seamless\")\n            assert isinstance(col, CollectionClient)\n            tdep_seamless_props = col.get_queryables()[\"properties\"]\n            col = api.get_collection(\"fia\")\n            assert isinstance(col, CollectionClient)\n            fia_props = col.get_queryables()[\"properties\"]\n            result = api.get_merged_queryables([\"fia\", \"3dep-seamless\"])\n        assert \"properties\" in result\n        assert \"id\" in result[\"properties\"]\n        assert set(fia_props.keys()).issubset(result[\"properties\"])\n        assert set(tdep_seamless_props.keys()).issubset(result[\"properties\"])\n\n    def test_get_queryables_errors(self, requests_mock: Mocker) -> None:\n        pc_root_text = read_data_file(\"planetary-computer-root.json\")\n        root_url = \"http://pystac-client.test/\"\n        requests_mock.get(root_url, status_code=200, text=pc_root_text)\n        api = Client.open(root_url)\n        with pytest.raises(DoesNotConformTo, match=\"FILTER\"):\n            api.get_queryables()\n\n        assert api._stac_io is not None\n        api.add_conforms_to(\"FILTER\")\n        self_href = api.get_self_href()\n        api.set_self_href(None)\n        with pytest.warns(MissingLink, match=\"queryables\"):\n            with pytest.raises(ValueError, match=\"does not have a self_href set\"):\n                api.get_queryables()\n\n        api.set_self_href(self_href)\n        api._stac_io = None\n        with pytest.warns(MissingLink, match=\"queryables\"):\n            with pytest.raises(APIError, match=\"API access is not properly configured\"):\n                api.get_queryables()\n\n\nclass TestConformsTo:\n    def test_ignore_conformance_is_deprecated_and_noop(self) -> None:\n        with pytest.warns(\n            FutureWarning, match=\"`ignore_conformance` option is deprecated\"\n        ):\n            client = Client.open(\n                str(TEST_DATA / \"planetary-computer-root.json\"),\n                ignore_conformance=True,\n            )\n        assert client.has_conforms_to()\n        assert client.conforms_to(ConformanceClasses.CORE)\n\n    def test_set_conforms_to_using_list_of_uris(self) -> None:\n        client = Client.from_file(str(TEST_DATA / \"planetary-computer-root.json\"))\n        client.set_conforms_to([\"https://api.stacspec.org/v1.0.0-rc.2/core\"])\n\n        assert client.conforms_to(ConformanceClasses.CORE)\n\n    def test_add_and_remove_conforms_to_by_string(self) -> None:\n        client = Client.from_file(str(TEST_DATA / \"planetary-computer-root.json\"))\n\n        client.remove_conforms_to(\"core\")\n        assert not client.conforms_to(ConformanceClasses.CORE)\n\n        client.add_conforms_to(\"core\")\n        assert client.conforms_to(\"CORE\")\n\n    def test_clear_all_conforms_to(self) -> None:\n        client = Client.from_file(str(TEST_DATA / \"planetary-computer-root.json\"))\n        client.clear_conforms_to()\n        assert not client.has_conforms_to()\n\n    def test_empty_conforms_to(self) -> None:\n        client = Client.from_file(str(TEST_DATA / \"planetary-computer-root.json\"))\n        client.set_conforms_to([])\n        assert client.has_conforms_to(), \"The conformsTo field should still exist\"\n\n        assert not client.conforms_to(ConformanceClasses.CORE)\n        assert not client.conforms_to(ConformanceClasses.ITEM_SEARCH)\n\n    def test_no_conforms_to_falls_back_to_pystac(self) -> None:\n        client = Client.from_file(str(TEST_DATA / \"planetary-computer-root.json\"))\n        client.clear_conforms_to()\n\n        with strict():\n            with pytest.raises(FallbackToPystac):\n                next(client.get_collections())\n\n    @pytest.mark.vcr\n    def test_changing_conforms_to_changes_behavior(self) -> None:\n        with pytest.warns(NoConformsTo):\n            client = Client.open(\"https://earth-search.aws.element84.com/v0\")\n\n        with pytest.warns(FallbackToPystac):\n            next(client.get_collections())\n\n        client.add_conforms_to(\"COLLECTIONS\")\n\n        with pytest.warns(MissingLink, match=\"rel='data'\"):\n            next(client.get_collections())\n\n\n@pytest.mark.vcr\ndef test_collections_are_clients() -> None:\n    # https://github.com/stac-utils/pystac-client/issues/548\n    catalog = Client.open(\n        \"https://planetarycomputer.microsoft.com/api/stac/v1/\",\n    )\n    collection = catalog.get_collection(\"cil-gdpcir-cc-by\")\n    assert collection is not None\n    item = collection.get_item(\"cil-gdpcir-NUIST-NESM3-ssp585-r1i1p1f1-day\")\n    assert item is not None\n    item.get_collection()\n\n\n@pytest.mark.vcr\ndef test_get_items_without_ids() -> None:\n    client = Client.open(\n        \"https://stac.eoapi.dev\",\n    )\n    next(client.get_items())\n\n\n@pytest.mark.vcr\ndef test_non_recursion_on_fallback() -> None:\n    path = \"https://raw.githubusercontent.com/stac-utils/pystac/v1.9.0/docs/example-catalog/catalog.json\"\n    catalog = Client.from_file(path)\n    with pytest.warns(FallbackToPystac):\n        [i for i in catalog.get_items()]\n\n\n@pytest.mark.vcr\ndef test_fallback_strategy() -> None:\n    \"\"\"Make sure links get recreated correctly using APILayoutStrategy.\"\"\"\n\n    client = Client.open(\n        \"https://planetarycomputer.microsoft.com/api/stac/v1/\",\n    )\n    col = client.get_collection(\"landsat-c2-l2\")\n    assert col is not None\n\n    item = next(col.get_items())\n\n    item_href = item.self_href\n    col_href = col.self_href\n    root_href = client.self_href\n\n    col.links = []\n    item.links = []\n\n    client.add_child(col)\n    col.add_item(item)\n\n    assert col.self_href == col_href\n\n    assert (col_parent := col.get_single_link(\"parent\"))\n    assert col_parent.href == root_href\n\n    assert (col_root := col.get_single_link(\"root\"))\n    assert col_root.href == root_href\n\n    assert item.self_href == item_href\n\n    assert (item_col := item.get_single_link(\"collection\"))\n    assert item_col.href == col_href\n\n    assert (item_parent := item.get_single_link(\"parent\"))\n    assert item_parent.href == col_href\n\n    assert (item_root := item.get_single_link(\"root\"))\n    assert item_root.href == root_href\n\n\ndef test_get_collection_fallback_strategy_for_static_catalogs() -> None:\n    client = Client.from_file(\n        str(TEST_DATA / \"test-case-1\" / \"country-1\" / \"catalog.json\")\n    )\n\n    with pytest.warns(FallbackToPystac):\n        area_1_1 = client.get_collection(\"area-1-1\")\n        assert area_1_1 is not None\n\n    with pytest.warns(FallbackToPystac):\n        area_1_2 = client.get_collection(\"area-1-2\")\n        assert area_1_2 is not None\n\n    assert area_1_1.id == \"area-1-1\"\n    assert area_1_2.id == \"area-1-2\"\n\n\ndef test_get_collection_for_static_catalogs_returns_none_if_not_found() -> None:\n    client = Client.from_file(str(TEST_DATA / \"test-case-1\" / \"catalog.json\"))\n    with pytest.warns(FallbackToPystac):\n        collection = client.get_collection(\"country-1\")\n        assert collection is None\n\n\ndef test_get_collection_raises_if_collection_id_is_empty() -> None:\n    client = Client.from_file(str(TEST_DATA / \"test-case-1\" / \"catalog.json\"))\n    with pytest.raises(ValueError, match=\"A `collection_id` must be provided\"):\n        client.get_collection(\"\")\n\n    with pytest.raises(ValueError, match=\"A `collection_id` must be provided\"):\n        client.get_collection(None)\n\n\n@pytest.mark.vcr\ndef test_get_collection_returns_none_if_not_found() -> None:\n    client = Client.open(STAC_URLS[\"EARTH-SEARCH\"])\n    collection = client.get_collection(\"foo\")\n    assert collection is None\n\n\n@pytest.mark.vcr\ndef test_query_string_in_collections_url() -> None:\n    # https://github.com/stac-utils/pystac-client/issues/745\n    client = Client.open(\"https://paituli.csc.fi/geoserver/ogc/stac/v1\")\n    client.get_collection(\"sentinel2-l2a\")\n"
  },
  {
    "path": "tests/test_collection_client.py",
    "content": "import pytest\n\nfrom pystac_client import CollectionClient\nfrom pystac_client.client import Client\nfrom pystac_client.warnings import FallbackToPystac, MissingLink\n\nfrom .helpers import STAC_URLS\n\n\nclass TestCollectionClient:\n    @pytest.mark.vcr\n    def test_instance(self) -> None:\n        client = Client.open(STAC_URLS[\"PLANETARY-COMPUTER\"])\n        collection = client.get_collection(\"aster-l1t\")\n\n        assert isinstance(collection, CollectionClient)\n        assert str(collection) == \"<CollectionClient id=aster-l1t>\"\n\n    @pytest.mark.vcr\n    def test_get_items(self) -> None:\n        client = Client.open(STAC_URLS[\"PLANETARY-COMPUTER\"])\n        collection = client.get_collection(\"aster-l1t\")\n        assert collection is not None\n        for item in collection.get_items():\n            assert item.collection_id == collection.id\n            return\n\n    @pytest.mark.vcr\n    def test_get_items_with_ids(self) -> None:\n        client = Client.open(STAC_URLS[\"PLANETARY-COMPUTER\"])\n        collection = client.get_collection(\"aster-l1t\")\n        ids = [\n            \"AST_L1T_00312272006020322_20150518201805\",\n            \"AST_L1T_00312272006020313_20150518201753\",\n            \"AST_L1T_00312272006020304_20150518201753\",\n        ]\n        assert collection is not None\n        for item in collection.get_items(*ids):\n            assert item.collection_id == collection.id\n            assert item.id in ids\n\n    @pytest.mark.vcr\n    def test_get_item(self) -> None:\n        client = Client.open(STAC_URLS[\"PLANETARY-COMPUTER\"])\n        collection = client.get_collection(\"aster-l1t\")\n        assert collection is not None\n        item = collection.get_item(\"AST_L1T_00312272006020322_20150518201805\")\n        assert item\n        assert item.id == \"AST_L1T_00312272006020322_20150518201805\"\n\n        item = collection.get_item(\"for-sure-not-a-real-id\")\n        assert item is None\n\n    @pytest.mark.vcr\n    def test_get_item_with_item_search(self) -> None:\n        client = Client.open(STAC_URLS[\"PLANETARY-COMPUTER\"])\n        collection = client.get_collection(\"aster-l1t\")\n        assert collection is not None\n\n        client.set_conforms_to(\n            [\n                \"https://api.stacspec.org/v1.0.0-rc.2/core\",\n                \"https://api.stacspec.org/v1.0.0-rc.2/item-search\",\n            ]\n        )\n\n        item = collection.get_item(\"AST_L1T_00312272006020322_20150518201805\")\n        assert item\n        assert item.id == \"AST_L1T_00312272006020322_20150518201805\"\n\n        item = collection.get_item(\"for-sure-not-a-real-id\")\n        assert item is None\n        with pytest.warns(FallbackToPystac):\n            item = collection.get_item(\n                \"AST_L1T_00312272006020322_20150518201805\", recursive=True\n            )\n        assert item\n        assert item.id == \"AST_L1T_00312272006020322_20150518201805\"\n\n    @pytest.mark.vcr\n    def test_get_queryables(self) -> None:\n        api = Client.open(STAC_URLS[\"PLANETARY-COMPUTER\"])\n        collection_client = api.get_collection(\"landsat-c2-l2\")\n        assert collection_client is not None\n        assert isinstance(collection_client, CollectionClient)\n        with pytest.warns(MissingLink, match=\"/queryables\"):\n            result = collection_client.get_queryables()\n        assert \"instrument\" in result[\"properties\"]\n        assert \"landsat:scene_id\" in result[\"properties\"]\n"
  },
  {
    "path": "tests/test_collection_search.py",
    "content": "import json\nfrom datetime import datetime\nfrom math import ceil\nfrom typing import Any\n\nimport pystac\nimport pytest\nimport requests\nfrom dateutil.tz import tzutc\nfrom pytest_benchmark.fixture import BenchmarkFixture\n\nfrom pystac_client.client import Client\nfrom pystac_client.collection_search import (\n    CollectionSearch,\n    bboxes_overlap,\n    collection_matches,\n    temporal_intervals_overlap,\n)\nfrom pystac_client.warnings import PystacClientWarning\n\nfrom .helpers import STAC_URLS, read_data_file\n\nCOLLECTION_SEARCH_URL = f\"{STAC_URLS['SPACEBEL']}/collections\"\n\nCOLLECTION_EXAMPLE: dict[str, Any] = {\n    \"id\": \"F-TCC\",\n    \"q\": '\"cloudless mosaics\"',\n    \"datetime\": \"2021-09-15T00:00:00Z\",\n}\n\n\nclass TestCollectionPerformance:\n    @pytest.fixture(scope=\"function\")\n    def single_href(self) -> str:\n        collection_href = COLLECTION_SEARCH_URL + f\"/{COLLECTION_EXAMPLE['id']}\"\n        return collection_href\n\n    def test_requests(self, benchmark: BenchmarkFixture, single_href: str) -> None:\n        response = benchmark(requests.get, single_href)\n        assert response.status_code == 200\n\n        assert response.json()[\"id\"] == COLLECTION_EXAMPLE[\"id\"]\n\n    def test_single_collection(\n        self, benchmark: BenchmarkFixture, single_href: str\n    ) -> None:\n        collection = benchmark(pystac.Collection.from_file, single_href)\n\n        assert collection.id == COLLECTION_EXAMPLE[\"id\"]\n\n    def test_single_collection_search(\n        self, benchmark: BenchmarkFixture, single_href: str\n    ) -> None:\n        search = CollectionSearch(url=COLLECTION_SEARCH_URL, **COLLECTION_EXAMPLE)\n\n        collection_list = benchmark(search.collection_list())\n\n        assert len(collection_list) == 1\n        assert collection_list[0].id == COLLECTION_EXAMPLE[\"id\"]\n\n\nclass TestCollectionSearch:\n    @pytest.fixture(scope=\"function\")\n    def fedeo_api(self) -> Client:\n        api_content = read_data_file(\"fedeo_clearinghouse.json\", parse_json=True)\n        return Client.from_dict(api_content)\n\n    def test_method(self) -> None:\n        # Default method should be POST...\n        search = CollectionSearch(url=COLLECTION_SEARCH_URL)\n        assert search.method == \"GET\"\n\n    def test_method_params(self) -> None:\n        params_in: dict[str, Any] = {\n            \"bbox\": (-72, 41, -71, 42),\n            \"datetime\": \"2021-01-01T00:00:00Z/2021-12-31T23:59:59Z\",\n            \"q\": \"vegetation AND biomass\",\n        }\n        # For POST this is pass through\n        search = CollectionSearch(\n            url=COLLECTION_SEARCH_URL,\n            collection_search_extension_enabled=True,\n            collection_search_free_text_enabled=True,\n            **params_in,\n        )\n        params = search.get_parameters()\n        assert params == search.get_parameters()\n\n        # For GET requests, parameters are in query string and must be serialized\n        search = CollectionSearch(\n            url=COLLECTION_SEARCH_URL,\n            collection_search_extension_enabled=True,\n            collection_search_free_text_enabled=True,\n            **params_in,\n        )\n        params = search.get_parameters()\n        assert search.method == \"GET\"\n        assert all(key in params for key in params_in)\n        assert all(isinstance(params[key], str) for key in params_in)\n\n    @pytest.mark.vcr\n    def test_q_results(self) -> None:\n        search_string = \"monthly cloudless mosaics\"\n        search = CollectionSearch(\n            url=COLLECTION_SEARCH_URL,\n            collection_search_extension_enabled=True,\n            collection_search_free_text_enabled=True,\n            q=f'\"{search_string}\"',\n            max_collections=20,\n            limit=10,\n        )\n        results = search.collection_list()\n\n        assert all(isinstance(collection, pystac.Collection) for collection in results)\n        assert all(search_string in collection.description for collection in results)\n\n        assert search.matched() == 1\n\n    @pytest.mark.vcr\n    def test_datetime_results(self) -> None:\n        min_datetime = datetime(2024, 1, 1, 0, 0, 1, tzinfo=tzutc())\n        max_datetime = datetime(2024, 1, 1, 0, 0, 10, tzinfo=tzutc())\n        datetime_ = \"/\".join(\n            ts.isoformat().replace(\"+00:00\", \"Z\") for ts in [min_datetime, max_datetime]\n        )\n\n        search = CollectionSearch(\n            url=COLLECTION_SEARCH_URL,\n            collection_search_extension_enabled=True,\n            collection_search_free_text_enabled=True,\n            datetime=datetime_,\n            max_collections=20,\n        )\n\n        for collection in search.collections():\n            for temporal_intervals in collection.extent.temporal.intervals:\n                assert temporal_intervals_overlap(\n                    (temporal_intervals[0], temporal_intervals[1]),\n                    (min_datetime, max_datetime),\n                )\n\n        search = CollectionSearch(\n            url=COLLECTION_SEARCH_URL,\n            collection_search_extension_enabled=True,\n            collection_search_free_text_enabled=True,\n            datetime=(min_datetime, max_datetime),\n            max_collections=20,\n        )\n\n        new_results = search.collections()\n        for collection in new_results:\n            for temporal_intervals in collection.extent.temporal.intervals:\n                assert temporal_intervals_overlap(\n                    (temporal_intervals[0], temporal_intervals[1]),\n                    (min_datetime, max_datetime),\n                )\n\n    @pytest.mark.vcr\n    def test_bbox_results(self) -> None:\n        bbox = (-159.893, 21.843, -159.176, 22.266)\n        search = CollectionSearch(\n            url=COLLECTION_SEARCH_URL,\n            collection_search_extension_enabled=True,\n            collection_search_free_text_enabled=True,\n            bbox=bbox,\n            limit=10,\n            max_collections=10,\n        )\n\n        for collection in search.collections():\n            for _bbox in collection.extent.spatial.bboxes:\n                assert bboxes_overlap(bbox, tuple(float(coord) for coord in _bbox))\n\n    @pytest.mark.vcr\n    def test_result_paging(self) -> None:\n        search = CollectionSearch(\n            url=COLLECTION_SEARCH_URL,\n            collection_search_extension_enabled=True,\n            collection_search_free_text_enabled=True,\n            q=\"sentinel\",\n            limit=10,\n            max_collections=20,\n        )\n\n        # Check that the current page changes on the ItemSearch instance when a new page\n        # is requested\n        pages = list(search.pages())\n\n        assert pages[0] != pages[1]\n\n    @pytest.mark.vcr\n    def test_matched(self) -> None:\n        q = \"sentinel\"\n        search = CollectionSearch(\n            url=f\"{STAC_URLS['EARTH-SEARCH']}/collections\",\n            collection_search_extension_enabled=False,\n            collection_search_free_text_enabled=False,\n            q=q,\n            limit=4,\n        )\n\n        assert search.matched() == 5\n\n    @pytest.mark.vcr\n    def test_enabled_but_client_side_q(self) -> None:\n        q = \"sentinel\"\n        limit = 5\n        search = CollectionSearch(\n            url=COLLECTION_SEARCH_URL,\n            collection_search_extension_enabled=True,\n            collection_search_free_text_enabled=False,\n            limit=limit,\n            max_collections=limit,\n            q=q,\n        )\n\n        collection_list = search.collection_list()\n        assert len(collection_list) <= limit\n        collection_list_dict = search.collection_list_as_dict()\n        assert len(collection_list_dict[\"collections\"]) == len(collection_list)\n\n        for collection in search.collections():\n            text_fields = []\n            if collection.description:\n                text_fields.append(collection.description)\n            if collection.title:\n                text_fields.append(collection.title)\n            if collection.keywords:\n                text_fields.extend(collection.keywords)\n\n            assert any(q in text_field.lower() for text_field in text_fields), (\n                f\"{collection.id} failed check\"\n            )\n\n    @pytest.mark.vcr\n    def test_client_side_q(self) -> None:\n        q = \"sentinel\"\n        limit = 10\n        search = CollectionSearch(\n            url=f\"{STAC_URLS['EARTH-SEARCH']}/collections\",\n            collection_search_extension_enabled=False,\n            collection_search_free_text_enabled=False,\n            limit=limit,\n            max_collections=limit,\n            q=q,\n        )\n\n        collection_list = search.collection_list()\n        assert len(collection_list) <= limit\n\n        for collection in search.collections():\n            text_fields = []\n            if collection.description:\n                text_fields.append(collection.description)\n            if collection.title:\n                text_fields.append(collection.title)\n            if collection.keywords:\n                text_fields.extend(collection.keywords)\n\n            assert any(q in text_field.lower() for text_field in text_fields), (\n                f\"{collection.id} failed check\"\n            )\n\n    @pytest.mark.vcr\n    def test_client_side_bbox(self) -> None:\n        bbox = (60, 0, 70, 10)\n        limit = 10\n        search = CollectionSearch(\n            url=f\"{STAC_URLS['EARTH-SEARCH']}/collections\",\n            collection_search_extension_enabled=False,\n            collection_search_free_text_enabled=False,\n            limit=limit,\n            max_collections=limit,\n            bbox=bbox,\n        )\n\n        collection_list = search.collection_list()\n        assert len(collection_list) <= limit\n\n        for collection in search.collections():\n            assert any(\n                bboxes_overlap(bbox, tuple(float(coord) for coord in collection_bbox))\n                for collection_bbox in collection.extent.spatial.bboxes\n            ), f\"{collection.id} failed check\"\n\n    @pytest.mark.vcr\n    def test_client_side_datetime(self) -> None:\n        _datetime_interval = (\"2024-09-15T00:00:00+00:00\", \"2024-09-16T00:00:00+00:00\")\n        limit = 10\n        search = CollectionSearch(\n            url=f\"{STAC_URLS['EARTH-SEARCH']}/collections\",\n            collection_search_extension_enabled=False,\n            collection_search_free_text_enabled=False,\n            limit=limit,\n            max_collections=limit,\n            datetime=\"/\".join(_datetime_interval),\n        )\n\n        collection_list = search.collection_list()\n        assert len(collection_list) <= limit\n\n        temporal_interval = (\n            datetime.fromisoformat(_datetime_interval[0]),\n            datetime.fromisoformat(_datetime_interval[1]),\n        )\n        for collection in search.collections():\n            assert any(\n                temporal_intervals_overlap(\n                    temporal_interval,\n                    (collection_temporal_interval[0], collection_temporal_interval[1]),\n                )\n                for collection_temporal_interval in collection.extent.temporal.intervals\n            ), f\"{collection.id} failed check\"\n\n    def test_client_side_extra_args(self) -> None:\n        with pytest.raises(ValueError):\n            CollectionSearch(\n                url=f\"{STAC_URLS['EARTH-SEARCH']}/collections\",\n                collection_search_extension_enabled=False,\n                collection_search_free_text_enabled=False,\n                filter=\"title LIKE '%nope%'\",\n            )\n\n    @pytest.mark.vcr\n    def test_result_paging_max_collections(self) -> None:\n        max_collections = 15\n        limit = 10\n        search = CollectionSearch(\n            url=COLLECTION_SEARCH_URL,\n            collection_search_extension_enabled=True,\n            collection_search_free_text_enabled=True,\n            bbox=(-92.379, 46.662, -91.788, 46.919),\n            limit=limit,\n            max_collections=max_collections,\n        )\n        num_pages = 0\n        collections = list()\n        for page in search.pages_as_dicts():\n            num_pages += 1\n            collections.extend(page[\"collections\"])\n        assert num_pages == ceil(max_collections / limit)\n        assert len(collections) == max_collections\n\n\ndef test_bboxes_overlap() -> None:\n    assert bboxes_overlap(\n        (0, 0, 2, 2),\n        (1, 1, 3, 3),\n    )\n\n    assert not bboxes_overlap(\n        (0, 0, 2, 2),\n        (3, 3, 4, 4),\n    )\n\n\ndef test_temporal_intervals_overlap() -> None:\n    assert temporal_intervals_overlap(\n        (datetime(2024, 9, 1, tzinfo=tzutc()), datetime(2024, 9, 2, tzinfo=tzutc())),\n        (\n            datetime(2024, 9, 1, 12, tzinfo=tzutc()),\n            datetime(2024, 9, 2, 12, tzinfo=tzutc()),\n        ),\n    )\n    assert temporal_intervals_overlap(\n        (datetime(2024, 9, 1, tzinfo=tzutc()), None),\n        (\n            datetime(2024, 9, 1, 12, tzinfo=tzutc()),\n            datetime(2024, 9, 2, 12, tzinfo=tzutc()),\n        ),\n    )\n    assert temporal_intervals_overlap(\n        (None, None),\n        (\n            datetime(2024, 9, 1, 12, tzinfo=tzutc()),\n            datetime(2024, 9, 2, 12, tzinfo=tzutc()),\n        ),\n    )\n    assert not temporal_intervals_overlap(\n        (datetime(2023, 9, 1, tzinfo=tzutc()), datetime(2023, 9, 2, tzinfo=tzutc())),\n        (\n            datetime(2024, 9, 1, 12, tzinfo=tzutc()),\n            datetime(2024, 9, 2, 12, tzinfo=tzutc()),\n        ),\n    )\n    assert not temporal_intervals_overlap(\n        (datetime(2023, 9, 1, tzinfo=tzutc()), datetime(2023, 9, 2, tzinfo=tzutc())),\n        (\n            datetime(2024, 9, 1, 12, tzinfo=tzutc()),\n            None,\n        ),\n    )\n\n\ndef test_invalid_collection() -> None:\n    # https://github.com/stac-utils/pystac-client/issues/786\n    data = json.loads(read_data_file(\"invalid-collection.json\"))\n    with pytest.warns(PystacClientWarning):\n        collection_matches(data)\n"
  },
  {
    "path": "tests/test_conformance.py",
    "content": "import pytest\n\nfrom pystac_client.conformance import ConformanceClasses\n\n\nclass TestConformanceClasses:\n    def test_get_by_name_raises_for_invalid_names(self) -> None:\n        \"\"\"Test get_by_name raises ValueError for invalid conformance class names.\"\"\"\n        with pytest.raises(ValueError, match=\"Invalid conformance class 'invalid'\"):\n            ConformanceClasses.get_by_name(\"invalid\")\n\n        with pytest.raises(ValueError, match=\"Invalid conformance class 'nonexistent'\"):\n            ConformanceClasses.get_by_name(\"nonexistent\")\n\n        with pytest.raises(ValueError, match=\"Invalid conformance class ''\"):\n            ConformanceClasses.get_by_name(\"\")\n\n    def test_get_by_name_valid(self) -> None:\n        \"\"\"Test get_by_name with valid conformance class names.\"\"\"\n        assert ConformanceClasses.get_by_name(\"core\") == ConformanceClasses.CORE\n        assert ConformanceClasses.get_by_name(\"CORE\") == ConformanceClasses.CORE\n\n    def test_valid_uri_property(self) -> None:\n        \"\"\"Test valid_uri property returns correct URI pattern.\"\"\"\n        assert (\n            ConformanceClasses.CORE.valid_uri == \"https://api.stacspec.org/v1.0.*/core\"\n        )\n\n    def test_pattern_property(self) -> None:\n        \"\"\"Test pattern property returns compiled regex.\"\"\"\n        core_pattern = ConformanceClasses.CORE.pattern\n        assert core_pattern.match(\"https://api.stacspec.org/v1.0.0/core\")\n"
  },
  {
    "path": "tests/test_free_text.py",
    "content": "from pystac_client.free_text import (\n    sqlite_text_search,\n)\n\n\ndef test_sqlite_single_term() -> None:\n    query = \"sentinel\"\n    assert sqlite_text_search(query, {\"description\": \"The sentinel node was true\"})\n    assert not sqlite_text_search(query, {\"description\": \"No match here\"})\n\n\ndef test_sqlite_special_characters() -> None:\n    query = \"sentinel-2\"\n    assert sqlite_text_search(query, {\"description\": \"The sentinel-2 node was true\"})\n    assert not sqlite_text_search(query, {\"description\": \"No, just sentinel-1 here\"})\n\n    query = \"sentinel+2\"\n    assert sqlite_text_search(query, {\"description\": \"The sentinel+2 node was true\"})\n    assert not sqlite_text_search(query, {\"description\": \"No, just sentinel+1 here\"})\n\n    query = \"sentinel@2\"\n    assert sqlite_text_search(query, {\"description\": \"The sentinel@2 node was true\"})\n    assert not sqlite_text_search(query, {\"description\": \"No, just sentinel@1 here\"})\n\n\ndef test_sqlite_exact_phrase() -> None:\n    query = '\"climate model\"'\n    assert sqlite_text_search(query, {\"description\": \"The climate model is impressive\"})\n    assert not sqlite_text_search(\n        query, {\"description\": \"This model is for climate modeling\"}\n    )\n\n    # an exact phrase with a comma inside\n    query = '\"models, etc\"'\n    assert sqlite_text_search(\n        query, {\"description\": \"Produced with equations, and models, etc.\"}\n    )\n    assert not sqlite_text_search(query, {\"description\": \"Produced with models\"})\n\n\ndef test_sqlite_and_terms_default() -> None:\n    query = \"climate model\"\n    assert sqlite_text_search(\n        query,\n        {\n            \"description\": \"Climate change is a significant challenge\",\n            \"keywords\": \"model, prediction\",\n        },\n    )\n    assert sqlite_text_search(\n        query, {\"description\": \"The model was developed using climate observation data\"}\n    )\n    assert not sqlite_text_search(query, {\"description\": \"This is an advanced model\"})\n    assert not sqlite_text_search(query, {\"description\": \"No relevant terms here\"})\n\n\ndef test_sqlite_or_terms_explicit() -> None:\n    query = \"climate OR model\"\n    assert sqlite_text_search(query, {\"description\": \"Climate discussion\"})\n    assert sqlite_text_search(query, {\"description\": \"FPGA model creation\"})\n    assert not sqlite_text_search(query, {\"description\": \"No matching term here\"})\n\n\ndef test_sqlite_or_terms_commas() -> None:\n    query = \"climate,model\"\n    assert sqlite_text_search(query, {\"description\": \"Climate change is here\"})\n    assert sqlite_text_search(query, {\"description\": \"They built a model train\"})\n    assert sqlite_text_search(query, {\"description\": \"It's a climate model!\"})\n    assert not sqlite_text_search(\n        query, {\"description\": \"It's a mathematical equation\"}\n    )\n\n\ndef test_sqlite_and_terms() -> None:\n    query = \"climate AND model\"\n    assert sqlite_text_search(query, {\"description\": \"The climate model is impressive\"})\n    assert not sqlite_text_search(\n        query, {\"description\": \"This climate change discussion\"}\n    )\n    assert not sqlite_text_search(query, {\"description\": \"Advanced model system\"})\n\n\ndef test_sqlite_parentheses_grouping() -> None:\n    query = \"(quick OR brown) AND fox\"\n    assert sqlite_text_search(query, {\"description\": \"The quick brown fox\"})\n    assert sqlite_text_search(query, {\"description\": \"A quick fox jumps\"})\n    assert sqlite_text_search(query, {\"description\": \"brown bear and a fox\"})\n    assert not sqlite_text_search(query, {\"description\": \"The fox is clever\"})\n\n    query = \"(quick AND brown) OR (fast AND red)\"\n    assert sqlite_text_search(query, {\"description\": \"quick brown fox\"})\n    assert sqlite_text_search(query, {\"description\": \"fast red car\"})\n    assert not sqlite_text_search(query, {\"description\": \"quick red car\"})\n\n\ndef test_sqlite_inclusions_exclusions() -> None:\n    query = \"quick +brown -fox\"\n    assert sqlite_text_search(query, {\"description\": \"The quick brown bear\"})\n    assert not sqlite_text_search(query, {\"description\": \"The quick fox\"})\n    assert not sqlite_text_search(query, {\"description\": \"The quickest\"})\n    assert sqlite_text_search(query, {\"description\": \"A quick light brown jumper\"})\n\n\ndef test_sqlite_partial_match() -> None:\n    query = \"climat\"\n    assert not sqlite_text_search(query, {\"description\": \"climatology\"})\n    assert not sqlite_text_search(query, {\"description\": \"climate\"})\n    assert not sqlite_text_search(query, {\"description\": \"climbing\"})\n"
  },
  {
    "path": "tests/test_item_search.py",
    "content": "import operator\nimport urllib.parse\nfrom datetime import datetime, timedelta\nfrom typing import Any\n\nimport pystac\nimport pytest\nimport requests\nfrom dateutil.tz import tzutc\nfrom pytest_benchmark.fixture import BenchmarkFixture\nfrom requests_mock import Mocker\n\nfrom pystac_client import Client\nfrom pystac_client.item_search import ItemSearch\n\nfrom .helpers import STAC_URLS, read_data_file\n\nSEARCH_URL = f\"{STAC_URLS['PLANETARY-COMPUTER']}/search\"\nINTERSECTS_EXAMPLE = {\n    \"type\": \"Polygon\",\n    \"coordinates\": [\n        [\n            [-73.21, 43.99],\n            [-73.21, 44.05],\n            [-73.12, 44.05],\n            [-73.12, 43.99],\n            [-73.21, 43.99],\n        ]\n    ],\n}\n\nITEM_EXAMPLE: dict[str, Any] = {\"collections\": \"io-lulc\", \"ids\": \"60U-2020\"}\n\n\nclass TestItemPerformance:\n    @pytest.fixture(scope=\"function\")\n    def single_href(self) -> str:\n        item_href = (\n            \"https://planetarycomputer.microsoft.com/api/stac/v1/collections/\"\n            f\"{ITEM_EXAMPLE['collections']}/items/{ITEM_EXAMPLE['ids']}\"\n        )\n        return item_href\n\n    def test_requests(self, benchmark: BenchmarkFixture, single_href: str) -> None:\n        response = benchmark(requests.get, single_href)\n        assert response.status_code == 200\n\n        assert response.json()[\"id\"] == ITEM_EXAMPLE[\"ids\"]\n\n    def test_single_item(self, benchmark: BenchmarkFixture, single_href: str) -> None:\n        item = benchmark(pystac.Item.from_file, single_href)\n\n        assert item.id == ITEM_EXAMPLE[\"ids\"]\n\n    def test_single_item_search(\n        self, benchmark: BenchmarkFixture, single_href: str\n    ) -> None:\n        search = ItemSearch(url=SEARCH_URL, **ITEM_EXAMPLE)\n\n        item_collection = benchmark(search.item_collection())\n\n        assert len(item_collection.items) == 1\n        assert item_collection.items[0].id == ITEM_EXAMPLE[\"ids\"]\n\n\nclass TestItemSearch:\n    @pytest.fixture(scope=\"function\")\n    def astraea_api(self) -> Client:\n        api_content = read_data_file(\"astraea_api.json\", parse_json=True)\n        return Client.from_dict(api_content)\n\n    def test_method(self) -> None:\n        # Default method should be POST...\n        search = ItemSearch(url=SEARCH_URL)\n        assert search.method == \"POST\"\n\n        # \"method\" argument should take precedence over presence of \"intersects\"\n        search = ItemSearch(url=SEARCH_URL, method=\"GET\", intersects=INTERSECTS_EXAMPLE)\n        assert search.method == \"GET\"\n\n    def test_method_params(self) -> None:\n        params_in: dict[str, Any] = {\n            \"bbox\": (-72, 41, -71, 42),\n            \"ids\": (\n                \"idone\",\n                \"idtwo\",\n            ),\n            \"collections\": (\"collectionone\",),\n            \"intersects\": INTERSECTS_EXAMPLE,\n        }\n        # For POST this is pass through\n        search = ItemSearch(url=SEARCH_URL, **params_in)\n        params = search.get_parameters()\n        assert params == search.get_parameters()\n\n        # For GET requests, parameters are in query string and must be serialized\n        search = ItemSearch(url=SEARCH_URL, method=\"GET\", **params_in)\n        params = search.get_parameters()\n        assert all(key in params for key in params_in)\n        assert all(isinstance(params[key], str) for key in params_in)\n\n    @pytest.mark.vcr\n    def test_results(self) -> None:\n        search = ItemSearch(\n            url=SEARCH_URL,\n            collections=\"naip\",\n            max_items=20,\n            limit=10,\n        )\n        results = search.items()\n\n        assert all(isinstance(item, pystac.Item) for item in results)\n\n    @pytest.mark.vcr\n    def test_ids_results(self) -> None:\n        ids = [\n            \"S2B_MSIL2A_20210610T115639_N0212_R066_T33XXG_20210613T185024.SAFE\",\n            \"fl_m_2608004_nw_17_060_20191215_20200113\",\n        ]\n        search = ItemSearch(\n            url=SEARCH_URL,\n            collections=[\"naip\"],\n            ids=ids,\n        )\n        results = list(search.items())\n\n        assert len(results) == 1\n        assert all(item.id in ids for item in results)\n\n    @pytest.mark.vcr\n    def test_datetime_results(self) -> None:\n        min_datetime = datetime(2019, 1, 1, 0, 0, 1, tzinfo=tzutc())\n        max_datetime = datetime(2019, 1, 1, 0, 0, 10, tzinfo=tzutc())\n        datetime_ = \"2019-01-01T00:00:01Z/2019-01-01T00:00:10Z\"\n        search = ItemSearch(\n            url=SEARCH_URL,\n            datetime=datetime_,\n            collections=[\"sentinel-2-l2a\"],\n            max_items=20,\n        )\n        for item in search.items():\n            assert item.datetime is not None\n            assert (\n                min_datetime <= item.datetime <= (max_datetime + timedelta(seconds=1))\n            )\n        search = ItemSearch(\n            url=SEARCH_URL,\n            datetime=(min_datetime, max_datetime),\n            collections=[\"sentinel-2-l2a\"],\n            max_items=20,\n        )\n        new_results = search.items()\n        for item in new_results:\n            assert item.datetime is not None\n            assert (\n                min_datetime <= item.datetime <= (max_datetime + timedelta(seconds=1))\n            )\n\n    @pytest.mark.vcr\n    def test_intersects_results(self) -> None:\n        # GeoJSON-like dict\n        intersects_dict = {\n            \"type\": \"Polygon\",\n            \"coordinates\": [\n                [\n                    [-73.21, 43.99],\n                    [-73.21, 44.05],\n                    [-73.12, 44.05],\n                    [-73.12, 43.99],\n                    [-73.21, 43.99],\n                ]\n            ],\n        }\n        search = ItemSearch(\n            url=SEARCH_URL, intersects=intersects_dict, collections=\"naip\"\n        )\n        results = list(search.items())\n        assert len(results) == 42\n\n        # Geo-interface object\n        class MockGeoObject:\n            @property\n            def __geo_interface__(self) -> dict[str, Any]:\n                return intersects_dict\n\n        intersects_obj = MockGeoObject()\n        search = ItemSearch(\n            url=SEARCH_URL, intersects=intersects_obj, collections=\"naip\"\n        )\n        new_results = search.items()\n        assert all(isinstance(item, pystac.Item) for item in new_results)\n\n    def test_get_with_query(self, requests_mock: Mocker) -> None:\n        requests_mock.get(\n            (\n                f\"{SEARCH_URL}?query=%7B%22eo%3Acloud_cover%22%3A%7B%22gte%22%3A0%2C%22lte%22%3A10%7D%7D\"\n            ),\n            status_code=200,\n            json={\"features\": [{\"foo\": \"bar\"}], \"links\": []},\n        )\n        items = list(\n            ItemSearch(\n                url=SEARCH_URL,\n                method=\"GET\",\n                query={\"eo:cloud_cover\": {\"gte\": 0, \"lte\": 10}},\n            ).items_as_dicts()\n        )\n        assert len(items) == 1\n\n    @pytest.mark.vcr\n    def test_result_paging(self) -> None:\n        search = ItemSearch(\n            url=SEARCH_URL,\n            bbox=(-73.21, 43.99, -73.12, 44.05),\n            collections=\"naip\",\n            limit=10,\n            max_items=20,\n        )\n\n        # Check that the current page changes on the ItemSearch instance when a new page\n        # is requested\n        pages = list(search.pages())\n\n        assert pages[0] != pages[1]\n        assert pages[0].items != pages[1].items\n\n    @pytest.mark.vcr\n    def test_result_paging_max_items(self) -> None:\n        search = ItemSearch(\n            url=SEARCH_URL,\n            collections=\"naip\",\n            limit=10,\n            max_items=25,\n        )\n        num_pages = 0\n        items = list()\n        for page in search.pages_as_dicts():\n            num_pages += 1\n            items.extend(page[\"features\"])\n        assert num_pages == 3\n        assert len(items) == 25\n\n    @pytest.mark.vcr\n    def test_item_collection(self) -> None:\n        search = ItemSearch(\n            url=SEARCH_URL,\n            bbox=(-73.21, 43.99, -73.12, 44.05),\n            collections=\"naip\",\n            limit=10,\n            max_items=20,\n        )\n        item_collection = search.item_collection()\n        assert isinstance(item_collection, pystac.ItemCollection)\n        assert len(item_collection) == 20\n\n    @pytest.mark.vcr\n    @pytest.mark.parametrize(\n        \"method, alternative, is_sequence, is_pystac\",\n        [\n            (\"get_item_collections\", \"pages\", True, True),\n            (\"item_collections\", \"pages\", True, True),\n            (\"get_items\", \"items\", True, True),\n            (\"get_all_items\", \"item_collection\", False, True),\n            (\"get_all_items_as_dict\", \"item_collection_as_dict\", False, False),\n        ],\n    )\n    def test_deprecations(\n        self, method: str, alternative: str, is_sequence: bool, is_pystac: bool\n    ) -> None:\n        search = ItemSearch(\n            url=SEARCH_URL,\n            bbox=(-73.21, 43.99, -73.12, 44.05),\n            collections=\"naip\",\n            limit=10,\n            max_items=20,\n        )\n\n        with pytest.warns(FutureWarning, match=method):\n            result = operator.methodcaller(method)(search)\n\n        expected = operator.methodcaller(alternative)(search)\n\n        if is_sequence:\n            result = list(result)\n            expected = list(expected)\n            if is_pystac:\n                result = [x.to_dict() for x in result]\n                expected = [x.to_dict() for x in expected]\n        else:\n            if is_pystac:\n                result = result.to_dict()\n                expected = expected.to_dict()\n\n        assert result == expected\n\n    @pytest.mark.vcr\n    def test_items_as_dicts(self) -> None:\n        search = ItemSearch(\n            url=SEARCH_URL,\n            bbox=(-73.21, 43.99, -73.12, 44.05),\n            collections=\"naip\",\n            limit=10,\n            max_items=20,\n        )\n        assert len(list(search.items_as_dicts())) == 20\n\n\nclass TestItemSearchQuery:\n    @pytest.mark.vcr\n    def test_query_shortcut_syntax(self) -> None:\n        search = ItemSearch(\n            url=SEARCH_URL,\n            collections=\"naip\",\n            bbox=(-73.21, 43.99, -73.12, 44.05),\n            query=[\"gsd=0.6\"],\n            max_items=1,\n        )\n        items1 = list(search.items())\n\n        search = ItemSearch(\n            url=SEARCH_URL,\n            collections=\"naip\",\n            bbox=(-73.21, 43.99, -73.12, 44.05),\n            query={\"gsd\": {\"eq\": 0.6}},\n            max_items=1,\n        )\n        items2 = list(search.items())\n\n        assert len(items1) == 1\n        assert len(items2) == 1\n        assert items1[0].id == items2[0].id\n\n    @pytest.mark.vcr\n    def test_query_json_syntax(self) -> None:\n        # with a list of json strs (format of CLI argument to ItemSearch)\n        search = ItemSearch(\n            url=SEARCH_URL,\n            collections=\"naip\",\n            bbox=(-73.21, 43.99, -73.12, 44.05),\n            query=['{\"gsd\": { \"gte\": 0, \"lte\": 1 }}'],\n            max_items=1,\n        )\n        item1 = list(search.items())[0]\n        assert item1.properties[\"gsd\"] <= 1\n\n        # with a single dict\n        search = ItemSearch(\n            url=SEARCH_URL,\n            collections=\"naip\",\n            bbox=(-73.21, 43.99, -73.12, 44.05),\n            query={\"gsd\": {\"gte\": 0, \"lte\": 1}},\n            max_items=1,\n        )\n        item2 = list(search.items())[0]\n        assert item2.properties[\"gsd\"] <= 1\n\n        assert item1.id == item2.id\n\n\ndef test_query_json_syntax() -> None:\n    item_search = ItemSearch(\"\")\n    assert item_search._format_query(\n        ['{\"eo:cloud_cover\": { \"gte\": 0, \"lte\": 1 }}']\n    ) == {\"eo:cloud_cover\": {\"gte\": 0, \"lte\": 1}}\n    assert item_search._format_query({\"eo:cloud_cover\": {\"gte\": 0, \"lte\": 1}}) == {\n        \"eo:cloud_cover\": {\"gte\": 0, \"lte\": 1}\n    }\n    assert item_search._format_query([\"eo:cloud_cover<=1\"]) == {\n        \"eo:cloud_cover\": {\"lte\": \"1\"}\n    }\n    assert item_search._format_query([\"eo:cloud_cover<=1\", \"eo:cloud_cover>0\"]) == {\n        \"eo:cloud_cover\": {\"lte\": \"1\", \"gt\": \"0\"}\n    }\n\n\ndef test_url_with_query_parameter() -> None:\n    # https://github.com/stac-utils/pystac-client/issues/522\n    search = ItemSearch(\n        url=\"http://pystac-client.test\", query={\"eo:cloud_cover\": {\"lt\": 42}}\n    )\n    url = urllib.parse.urlparse(search.url_with_parameters())\n    query = urllib.parse.parse_qs(url.query)\n    assert query[\"query\"] == [r'{\"eo:cloud_cover\":{\"lt\":42}}']\n\n\n@pytest.mark.vcr\ndef test_multiple_collections() -> None:\n    search = ItemSearch(\n        url=\"https://earth-search.aws.element84.com/v1/search\",\n        collections=[\"sentinel-2-l2a\", \"landsat-c2-l2\"],\n        intersects={\"type\": \"Point\", \"coordinates\": [-105.1019, 40.1672]},\n        datetime=\"2023-10-08\",\n    )\n    collections = {item.collection_id for item in search.items()}\n    assert collections == {\"sentinel-2-l2a\", \"landsat-c2-l2\"}\n\n\ndef test_naive_datetime() -> None:\n    search = ItemSearch(\n        url=\"https://earth-search.aws.element84.com/v1/search\",\n        datetime=datetime(2024, 5, 14, 4, 25, 42, tzinfo=None),\n        method=\"POST\",\n    )\n    assert search.get_parameters()[\"datetime\"] == \"2024-05-14T04:25:42Z\"\n\n\n@pytest.mark.vcr\ndef test_fields() -> None:\n    search = ItemSearch(\n        url=\"https://earth-search.aws.element84.com/v1/search\",\n        collections=[\"sentinel-2-c1-l2a\"],\n        intersects={\"type\": \"Point\", \"coordinates\": [-105.1019, 40.1672]},\n        max_items=1,\n        fields=[\"-geometry\", \"-assets\", \"-links\"],\n    )\n    item = next(search.items_as_dicts())\n    assert \"geometry\" not in item\n    assert \"assets\" not in item\n    assert \"links\" not in item\n\n\ndef test_feature() -> None:\n    search = ItemSearch(\n        url=\"https://earth-search.aws.element84.com/v1/search\",\n        intersects={\n            \"type\": \"Feature\",\n            \"geometry\": {\"type\": \"Point\", \"coordinates\": [-105.1019, 40.1672]},\n        },\n    )\n    assert search.get_parameters()[\"intersects\"] == {\n        \"type\": \"Point\",\n        \"coordinates\": [-105.1019, 40.1672],\n    }\n"
  },
  {
    "path": "tests/test_stac_api_io.py",
    "content": "import typing\nfrom pathlib import Path\nfrom urllib.parse import parse_qs, urlsplit\n\nimport pystac\nimport pytest\nfrom pytest import MonkeyPatch\nfrom requests_mock.mocker import Mocker\n\nfrom pystac_client.exceptions import APIError\nfrom pystac_client.stac_api_io import StacApiIO\n\nfrom .helpers import STAC_URLS\n\n\nclass TestSTAC_IOOverride:\n    @pytest.mark.vcr\n    def test_request_input(self) -> None:\n        stac_api_io = StacApiIO()\n        response = stac_api_io.read_text(STAC_URLS[\"PLANETARY-COMPUTER\"])\n        assert isinstance(response, str)\n\n    @pytest.mark.vcr\n    def test_str_input(self) -> None:\n        stac_api_io = StacApiIO()\n        response = stac_api_io.read_text(STAC_URLS[\"PLANETARY-COMPUTER\"])\n\n        assert isinstance(response, str)\n\n    @pytest.mark.vcr\n    def test_http_error(self) -> None:\n        stac_api_io = StacApiIO()\n        # Attempt to access an authenticated endpoint\n        with pytest.raises(APIError) as excinfo:\n            stac_api_io.read_text(f\"{STAC_URLS['MLHUB']}/search\")\n\n        assert isinstance(excinfo.value, APIError)\n\n    def test_local_file(self, tmp_path: Path) -> None:\n        stac_api_io = StacApiIO()\n        test_file = tmp_path / \"test.txt\"\n        with test_file.open(\"w\") as dst:\n            dst.write(\"Hi there!\")\n\n        response = stac_api_io.read_text(str(test_file))\n\n        assert response == \"Hi there!\"\n\n    def test_conformance_deprecated(self) -> None:\n        with pytest.warns(FutureWarning, match=\"`conformance` option is deprecated\"):\n            stac_api_io = StacApiIO(conformance=[])\n        assert not hasattr(stac_api_io, \"conformance\")\n\n    def test_custom_headers(self, requests_mock: Mocker) -> None:\n        \"\"\"Checks that headers passed to the init method are added to requests.\"\"\"\n        header_name = \"x-my-header\"\n        header_value = \"Some Value\"\n        url = \"https://some-url.com/some-file.json\"\n        stac_api_io = StacApiIO(headers={header_name: header_value})\n\n        requests_mock.get(url, status_code=200, json={})\n\n        stac_api_io.read_json(url)\n\n        history = requests_mock.request_history\n        assert len(history) == 1\n        assert header_name in history[0].headers\n        assert history[0].headers[header_name] == header_value\n\n    def test_modifier(self, requests_mock: Mocker) -> None:\n        \"\"\"Verify the modifier is correctly called with a returned object.\"\"\"\n        header_name = \"x-my-header\"\n        header_value = \"Some Value\"\n        url = \"https://some-url.com/some-file.json\"\n\n        def custom_modifier(request: typing.Any) -> typing.Any | None:\n            request.headers[\"x-pirate-name\"] = \"yellowbeard\"\n            return request\n\n        stac_api_io = StacApiIO(\n            headers={header_name: header_value}, request_modifier=custom_modifier\n        )\n\n        requests_mock.get(url, status_code=200, json={})\n\n        stac_api_io.read_json(url)\n\n        history = requests_mock.request_history\n        assert len(history) == 1\n        assert header_name in history[0].headers\n        assert history[0].headers[\"x-pirate-name\"] == \"yellowbeard\"\n\n    def test_modifier_noreturn(self, requests_mock: Mocker) -> None:\n        \"\"\"Verify the modifier is correctly called when None is returned.\"\"\"\n        header_name = \"x-my-header\"\n        header_value = \"Some Value\"\n        url = \"https://some-url.com/some-file.json\"\n\n        def custom_modifier(request: typing.Any) -> typing.Any | None:\n            request.headers[\"x-pirate-name\"] = \"yellowbeard\"\n            return None\n\n        stac_api_io = StacApiIO(\n            headers={header_name: header_value}, request_modifier=custom_modifier\n        )\n\n        requests_mock.get(url, status_code=200, json={})\n\n        stac_api_io.read_json(url)\n\n        history = requests_mock.request_history\n        assert len(history) == 1\n        assert header_name in history[0].headers\n        assert history[0].headers[\"x-pirate-name\"] == \"yellowbeard\"\n\n    def test_custom_query_params(self, requests_mock: Mocker) -> None:\n        \"\"\"Checks that query params passed to the init method are added to requests.\"\"\"\n        init_qp_name = \"my-param\"\n        init_qp_value = \"something\"\n        url = \"https://some-url.com/some-file.json\"\n        stac_api_io = StacApiIO(parameters={init_qp_name: init_qp_value})\n\n        request_qp_name = \"another-param\"\n        request_qp_value = \"another_value\"\n        requests_mock.get(url, status_code=200, json={})\n\n        stac_api_io.read_json(url, parameters={request_qp_name: request_qp_value})\n\n        history = requests_mock.request_history\n        assert len(history) == 1\n\n        actual_qs = urlsplit(history[0].url).query\n        actual_qp = parse_qs(actual_qs)\n\n        # Check that the param from the init method is present\n        assert init_qp_name in actual_qp\n        assert len(actual_qp[init_qp_name]) == 1\n        assert actual_qp[init_qp_name][0] == init_qp_value\n\n        # Check that the param from the request is present\n        assert request_qp_name in actual_qp\n        assert len(actual_qp[request_qp_name]) == 1\n        assert actual_qp[request_qp_name][0] == request_qp_value\n\n    def test_write(self, tmp_path: Path) -> None:\n        stac_api_io = StacApiIO()\n        test_file = tmp_path / \"test.txt\"\n        stac_api_io.write_text_to_href(str(test_file), \"Hi there!\")\n        with open(test_file) as file:\n            data = file.read()\n        assert data == \"Hi there!\"\n\n    @pytest.mark.parametrize(\n        (\"attribute\", \"endpoint\"),\n        ((\"features\", \"search\"), (\"collections\", \"collections\")),\n    )\n    def test_stop_on_empty_page(\n        self, requests_mock: Mocker, attribute: str, endpoint: str\n    ) -> None:\n        url = f\"https://pystac-client.test/{endpoint}\"\n        requests_mock.get(\n            url,\n            status_code=200,\n            json={\n                attribute: [{\"foo\": \"bar\"}],\n                \"links\": [\n                    {\n                        \"rel\": \"next\",\n                        \"href\": url + \"?token=baz\",\n                    }\n                ],\n            },\n        )\n        requests_mock.get(\n            url + \"?token=baz\",\n            status_code=200,\n            json={\n                attribute: [],\n                \"links\": [\n                    {\n                        \"rel\": \"next\",\n                        \"href\": url + \"?token=bam\",\n                    }\n                ],\n            },\n        )\n        requests_mock.get(\n            url + \"?token=bam\",\n            status_code=500,\n        )\n        stac_api_io = StacApiIO()\n        pages = list(stac_api_io.get_pages(url))\n        assert len(pages) == 1\n        assert pages[0][attribute][0][\"foo\"] == \"bar\"\n\n    @pytest.mark.parametrize(\n        (\"attribute\", \"endpoint\"),\n        ((\"features\", \"search\"), (\"collections\", \"collections\")),\n    )\n    def test_stop_on_attributeless_page(\n        self, requests_mock: Mocker, attribute: str, endpoint: str\n    ) -> None:\n        url = f\"https://pystac-client.test/{endpoint}\"\n        requests_mock.get(\n            url,\n            status_code=200,\n            json={\n                attribute: [{\"foo\": \"bar\"}],\n                \"links\": [\n                    {\n                        \"rel\": \"next\",\n                        \"href\": url + \"?token=baz\",\n                    }\n                ],\n            },\n        )\n        requests_mock.get(\n            url + \"?token=baz\",\n            status_code=200,\n            json={\n                \"links\": [\n                    {\n                        \"rel\": \"next\",\n                        \"href\": url + \"?token=bam\",\n                    }\n                ],\n            },\n        )\n        requests_mock.get(\n            url + \"?token=bam\",\n            status_code=500,\n        )\n        stac_api_io = StacApiIO()\n        pages = list(stac_api_io.get_pages(url))\n        assert len(pages) == 1\n        assert pages[0][attribute][0][\"foo\"] == \"bar\"\n\n    @pytest.mark.parametrize(\n        (\"attribute\", \"endpoint\"),\n        ((\"features\", \"search\"), (\"collections\", \"collections\")),\n    )\n    def test_stop_on_first_empty_page(\n        self, requests_mock: Mocker, attribute: str, endpoint: str\n    ) -> None:\n        url = f\"https://pystac-client.test/{endpoint}\"\n        requests_mock.get(\n            url,\n            status_code=200,\n            json={\n                attribute: [],\n                \"links\": [\n                    {\n                        \"rel\": \"next\",\n                        \"href\": url + \"?token=bam\",\n                    }\n                ],\n            },\n        )\n        requests_mock.get(url + \"?token=bam\", status_code=500)\n        stac_api_io = StacApiIO()\n        pages = list(stac_api_io.get_pages(url))\n        assert len(pages) == 0\n\n    @pytest.mark.vcr\n    def test_timeout_smoke_test(self) -> None:\n        # Testing timeout behavior is hard, so we just have a simple smoke test to make\n        # sure that providing a timeout doesn't break anything.\n        stac_api_io = StacApiIO(timeout=42)\n        response = stac_api_io.read_text(STAC_URLS[\"PLANETARY-COMPUTER\"])\n        assert isinstance(response, str)\n\n    @pytest.mark.parametrize(\"name\", (\"REQUESTS_CA_BUNDLE\", \"CURL_CA_BUNDLE\"))\n    def test_respect_env_for_certs(self, monkeypatch: MonkeyPatch, name: str) -> None:\n        monkeypatch.setenv(name, \"/not/a/real/file\")\n        stac_api_io = StacApiIO()\n        with pytest.raises(APIError):\n            stac_api_io.request(\"https://earth-search.aws.element84.com/v1/\")\n\n\n@pytest.mark.vcr\ndef test_stac_io_in_pystac() -> None:\n    # https://github.com/stac-utils/pystac-client/issues/706\n    collection = pystac.read_file(\n        href=\"tests/data/planetary-computer-collection.json\",\n        stac_io=StacApiIO(timeout=42),\n    )\n    root = collection.get_root()\n    assert root\n    stac_io = root._stac_io\n    assert isinstance(stac_io, StacApiIO)\n    assert stac_io.timeout == 42\n"
  },
  {
    "path": "tests/test_warnings.py",
    "content": "import pytest\n\nfrom pystac_client import Client\nfrom pystac_client.warnings import DoesNotConformTo, ignore, strict\n\nfrom .helpers import TEST_DATA\n\n\nclass TestWarningContextManagers:\n    def test_ignore_context_manager(self) -> None:\n        \"\"\"Test that ignore() context manager suppresses warnings.\"\"\"\n        api = Client.from_file(str(TEST_DATA / \"planetary-computer-root.json\"))\n        api.remove_conforms_to(\"COLLECTION_SEARCH\")\n\n        with ignore():\n            api.collection_search(limit=10, max_collections=10, q=\"test\")\n\n    def test_strict_context_manager(self) -> None:\n        \"\"\"Test that strict() context manager converts warnings to exceptions.\"\"\"\n        api = Client.from_file(str(TEST_DATA / \"planetary-computer-root.json\"))\n        api.remove_conforms_to(\"COLLECTION_SEARCH\")\n\n        with strict():\n            with pytest.raises(DoesNotConformTo, match=\"COLLECTION_SEARCH\"):\n                api.collection_search(limit=10, max_collections=10, q=\"test\")\n\n    def test_ignore_context_manager_cleanup(self) -> None:\n        \"\"\"Test that ignore() properly restores warning filters after exit.\"\"\"\n        api = Client.from_file(str(TEST_DATA / \"planetary-computer-root.json\"))\n        api.remove_conforms_to(\"COLLECTION_SEARCH\")\n\n        with ignore():\n            api.collection_search(limit=10, max_collections=10, q=\"test\")\n\n        with strict():\n            with pytest.raises(DoesNotConformTo, match=\"COLLECTION_SEARCH\"):\n                api.collection_search(limit=10, max_collections=10, q=\"test\")\n"
  }
]